:root {
  --bg: #070707;
  --bg-soft: #0f1013;
  --panel: rgba(18, 20, 24, 0.82);
  --panel-strong: rgba(12, 14, 18, 0.92);
  --panel-light: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);

  --text: #f5f7fb;
  --muted: #9da6b3;
  --muted-2: #7d8694;

  --red: #ff3b30;
  --red-2: #ff5e57;
  --orange: #ff8a1c;
  --gold: #ffd24a;
  --blue: #3d7cff;
  --blue-2: #68a0ff;

  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 34px;
  --radius-xl: 44px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.45);
  --shadow-glow-red:
    0 0 0 1px rgba(255, 59, 48, 0.08), 0 24px 60px rgba(255, 59, 48, 0.18);
  --shadow-glow-blue:
    0 0 0 1px rgba(61, 124, 255, 0.1), 0 24px 60px rgba(61, 124, 255, 0.2);

  --container: 1240px;
  --header-height: 88px;

  --transition: 0.35s ease;
  --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 59, 48, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 138, 28, 0.1),
      transparent 24%
    ),
    linear-gradient(180deg, #050505 0%, #0b0b0d 40%, #07080b 100%);
  color: var(--text);
  overflow-x: hidden;
  min-width: 320px;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-noise,
.page-grid,
.page-orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-noise {
  opacity: 0.08;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px
    );
  background-size: 220px 220px;
  mix-blend-mode: soft-light;
}

.page-grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

.page-orb {
  filter: blur(90px);
  opacity: 0.35;
}

.orb-red {
  background: radial-gradient(circle, rgba(255, 59, 48, 0.6), transparent 70%);
  width: 520px;
  height: 520px;
  left: -120px;
  top: 120px;
}

.orb-orange {
  background: radial-gradient(circle, rgba(255, 138, 28, 0.4), transparent 70%);
  width: 460px;
  height: 460px;
  right: -80px;
  top: 260px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(7, 8, 11, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgba(7, 8, 11, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

.site-logo__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: var(--shadow-glow-red);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.site-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn--accent {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow-red);
}

.btn--accent:hover {
  box-shadow:
    0 0 0 1px rgba(255, 59, 48, 0.08),
    0 24px 70px rgba(255, 59, 48, 0.28);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #f4c7be;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  padding: 56px 0 36px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 40px);
}

.hero-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 780px;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(135deg, #ffffff, #ffaba2 35%, #ffd59c 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 620px;
}

.mini-stat {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.mini-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-stage {
  position: relative;
  min-height: 760px;
  perspective: 1600px;
}

.hero-glow {
  position: absolute;
  inset: 80px 80px 120px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 59, 48, 0.25),
      transparent 35%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 138, 28, 0.22),
      transparent 35%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  filter: blur(20px);
  border-radius: 40px;
}

.hero-phone {
  position: absolute;
  width: 290px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-phone img,
.stack-card img,
.showcase-slide img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 24px;
}

.hero-phone--main {
  width: 330px;
  right: 90px;
  top: 70px;
  z-index: 3;
  transform: rotate(-6deg);
}

.hero-phone--top {
  width: 230px;
  left: 30px;
  top: 0;
  z-index: 2;
  transform: rotate(-12deg);
}

.hero-phone--bottom {
  width: 230px;
  left: 10px;
  bottom: 80px;
  z-index: 1;
  transform: rotate(10deg);
}

.hero-ticker {
  margin-top: 24px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.hero-ticker__track {
  display: flex;
  gap: 54px;
  width: max-content;
  padding: 16px 0;
  animation: tickerMove 28s linear infinite;
}

.hero-ticker__track span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section--dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    linear-gradient(180deg, rgba(10, 10, 12, 0.96), rgba(8, 8, 10, 0.96));
}

.section--split {
  overflow: hidden;
}

.section--cta {
  padding-top: 70px;
  padding-bottom: 120px;
}

.section-grid,
.split-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.section-grid {
  grid-template-columns: 1fr 1fr;
}

.split-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2,
.section-copy h2,
.split-copy h2,
.cta-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading p,
.section-copy p,
.split-copy p,
.cta-copy p,
.glass-panel p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.bullet-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 0 18px rgba(255, 59, 48, 0.5);
}

.glass-panel,
.feature-card,
.cta-box,
.privacy-card,
.privacy-summary__box {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(10, 12, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.glass-panel {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.panel-badge {
  display: inline-flex;
  min-height: 34px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: rgba(61, 124, 255, 0.15);
  color: #aecdff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.glass-panel h3 {
  font-size: 1.9rem;
  line-height: 1.1;
  margin: 20px 0 12px;
  letter-spacing: -0.04em;
}

.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.showcase-view {
  position: relative;
  min-height: 780px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(61, 124, 255, 0.12), transparent 35%),
    radial-gradient(circle at bottom, rgba(255, 59, 48, 0.08), transparent 35%),
    rgba(8, 10, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  padding: 22px;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  pointer-events: none;
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.showcase-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.showcase-slide img {
  height: 100%;
}

.showcase-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 780px;
}

.showcase-label {
  color: #ffb7a9;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.showcase-copy h3 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  max-width: 520px;
}

.showcase-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-btn {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.showcase-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.showcase-dots {
  display: flex;
  gap: 10px;
}

.showcase-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.showcase-dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 28px;
  min-height: 250px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 59, 48, 0.18),
    rgba(255, 138, 28, 0.14)
  );
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.split-visual {
  position: relative;
  min-height: 760px;
}

.stack-card {
  position: absolute;
  width: 290px;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.stack-card--one {
  left: 0;
  top: 60px;
  transform: rotate(-10deg);
}

.stack-card--two {
  right: 60px;
  top: 180px;
  transform: rotate(8deg);
}

.stack-card--three {
  left: 80px;
  bottom: 40px;
  transform: rotate(-4deg);
}

.detail-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.detail-item strong {
  font-size: 1rem;
}

.detail-item span {
  color: var(--muted);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  box-shadow: var(--shadow-glow-red);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: auto -10% -60% auto;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.28), transparent 70%);
  filter: blur(30px);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

/* PRIVACY */
.privacy-mode {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 59, 48, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 138, 28, 0.1),
      transparent 26%
    ),
    linear-gradient(180deg, #050506 0%, #0a0b0f 48%, #08090b 100%);
}

.privacy-shell {
  padding: 60px 0 110px;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 24px;
}

.privacy-hero {
  padding: 46px;
  border-radius: 36px;
  background:
    radial-gradient(
      circle at right top,
      rgba(255, 138, 28, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at left center,
      rgba(255, 59, 48, 0.18),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03)
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}

.privacy-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.privacy-effective {
  color: #ffd4c5;
  font-weight: 700;
  margin: 0 0 16px;
}

.privacy-lead {
  max-width: 880px;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.privacy-card {
  padding: 28px;
}

.privacy-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.privacy-card__number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-weight: 800;
  box-shadow: var(--shadow-glow-red);
}

.privacy-card h2,
.privacy-summary__box h2 {
  margin: 0;
  font-size: 1.38rem;
  letter-spacing: -0.03em;
}

.privacy-card p,
.privacy-summary__box li,
.privacy-footer-note p {
  color: var(--muted);
  line-height: 1.85;
}

.privacy-summary {
  margin-top: 24px;
}

.privacy-summary__box {
  padding: 30px;
}

.privacy-summary__box ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.privacy-footer-note {
  margin-top: 18px;
}

.privacy-footer-note a,
.privacy-card a {
  color: #ffcab7;
}

/* REVEAL / TILT / FLOAT */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal-delay {
  transition-delay: 0.16s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease;
}

.tilt-card:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.float {
  animation: floatY 7.5s ease-in-out infinite;
}

.float-slow {
  animation-duration: 9s;
}

.float-reverse {
  animation-duration: 8.5s;
  animation-direction: reverse;
}

/* ANIMATIONS */
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-grid,
  .section-grid,
  .showcase,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-stage {
    min-height: 660px;
  }

  .hero-phone--main {
    right: 60px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-info,
  .showcase-view {
    min-height: unset;
  }

  .showcase-view {
    min-height: 680px;
  }

  .split-visual {
    min-height: 680px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(8, 10, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn--small {
    display: none;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-stage {
    min-height: 600px;
  }

  .hero-phone--main {
    width: 270px;
    right: 20px;
    top: 80px;
  }

  .hero-phone--top {
    width: 190px;
    left: 0;
  }

  .hero-phone--bottom {
    width: 190px;
    left: 0;
    bottom: 40px;
  }

  .feature-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .hero {
    padding-top: 34px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-text,
  .section-heading p,
  .section-copy p,
  .split-copy p,
  .glass-panel p,
  .showcase-copy p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-phone {
    padding: 10px;
    border-radius: 24px;
  }

  .hero-phone img,
  .stack-card img,
  .showcase-slide img {
    border-radius: 18px;
  }

  .hero-phone--main {
    width: 220px;
    right: 10px;
    top: 90px;
  }

  .hero-phone--top {
    width: 150px;
    top: 20px;
  }

  .hero-phone--bottom {
    width: 150px;
    bottom: 25px;
  }

  .section {
    padding: 82px 0;
  }

  .glass-panel,
  .feature-card,
  .cta-box,
  .privacy-card,
  .privacy-summary__box,
  .showcase-info {
    padding: 22px;
    border-radius: 24px;
  }

  .showcase-view {
    min-height: 500px;
    border-radius: 24px;
  }

  .showcase-slide {
    padding: 14px;
  }

  .showcase-btn {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .split-visual {
    min-height: 540px;
  }

  .stack-card {
    width: 190px;
    padding: 10px;
    border-radius: 22px;
  }

  .stack-card--one {
    left: 0;
    top: 10px;
  }

  .stack-card--two {
    right: 0;
    top: 160px;
  }

  .stack-card--three {
    left: 30px;
    bottom: 20px;
  }

  .privacy-hero {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
