/* ============================================================
   RingaMo — Landing page
   Direction: luxurious minimalism.
   Background art (gradient + grain + bloom) taken directly from
   the user's logo replica. 3D used sparingly for ambient depth.
   ============================================================ */

:root {
  /* From the logo replica */
  --navy-900: #070d1d;   /* page base */
  --navy-800: #03152f;
  --navy-700: #06245b;
  --blue-600: #196ab1;
  --blue-500: #2385ca;
  --blue-400: #4499db;
  --blue-300: #8fd9f4;
  --blue-100: #c7f4ff;

  --ice:   #d9e0f2;      /* logo dot colour */
  --white: #eaffff;      /* brightest highlight */
  --text:  #eef3fb;      /* readable body/heading */
  --mute:  #8ba0c6;      /* muted blue-grey */
  --line:  rgba(217, 224, 242, 0.10);
  --line-2:rgba(217, 224, 242, 0.17);

  --radius:    20px;
  --radius-sm: 13px;
  --maxw:      1160px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  /* === Your exact gradient, re-expressed responsively (ref 736 x 650) === */
  --logo-gradient:
    radial-gradient(ellipse 73% 65% at -3% -5%,
      rgba(240, 253, 255, .96) 0%,
      rgba(199, 244, 255, .82) 16%,
      rgba(111, 199, 242, .58) 34%,
      rgba(32, 122, 192, .48) 53%,
      rgba(14, 65, 127, .34) 69%,
      rgba(5, 21, 52, .18) 84%,
      transparent 100%),
    radial-gradient(ellipse 83% 80% at 21% 55%,
      rgba(35, 133, 202, .93) 0%,
      rgba(25, 106, 177, .78) 31%,
      rgba(15, 70, 132, .56) 54%,
      rgba(7, 31, 72, .36) 75%,
      transparent 100%),
    radial-gradient(ellipse 56% 55% at 88% 9%,
      rgba(0, 12, 35, .94) 0%,
      rgba(1, 14, 39, .88) 42%,
      rgba(4, 18, 45, .55) 66%,
      transparent 100%),
    linear-gradient(116deg,
      #eaffff 0%,
      #8fd9f4 12%,
      #2178bb 35%,
      #06245b 58%,
      #03152f 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
svg { display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.grad {
  background: linear-gradient(110deg, var(--blue-300), var(--white) 50%, var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.thin { font-weight: 200; color: var(--mute); }

/* ===== Your grain texture (global) ===== */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.34; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-size: 190px 190px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 12px 24px;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.btn--lg { padding: 16px 32px; font-size: 16.5px; }

.btn--primary {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 10px 30px -10px rgba(143, 217, 244, .45);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(143, 217, 244, .65); }

.btn--ghost {
  background: rgba(217, 224, 242, .05);
  color: var(--text);
  border-color: var(--line-2);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--blue-400); color: var(--blue-300); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 13, 29, .72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 13px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; font-size: 21px; letter-spacing: -.4px; color: var(--text); }
.brand__mark { width: 27px; height: 27px; color: var(--ice); transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(6deg) scale(1.05); }

.nav__links { display: flex; gap: 32px; font-weight: 400; font-size: 15px; color: var(--mute); }
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }

/* ===== Hero — your gradient art as the backdrop ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: var(--logo-gradient);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .6; }
.hero__bloom {
  position: absolute; inset: -24px; z-index: 2; pointer-events: none;
  /* the soft-light sheen from your ::before */
  background:
    radial-gradient(ellipse 53% 54% at 30% 28%, rgba(144, 220, 255, .27) 0%, rgba(68, 153, 219, .13) 42%, transparent 72%),
    linear-gradient(121deg, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .08) 19%, rgba(0, 0, 0, 0) 41%, rgba(0, 0, 0, .18) 100%);
  mix-blend-mode: soft-light;
  filter: blur(13px);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 13, 29, .6) 86%, var(--navy-900) 100%);
}
.hero__inner { position: relative; z-index: 3; text-align: center; padding: 130px 0 90px; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(7, 13, 29, .28); border: 1px solid rgba(217, 224, 242, .22);
  color: var(--white); padding: 8px 17px; border-radius: 999px;
  font-size: 13px; font-weight: 500; margin-bottom: 30px; backdrop-filter: blur(8px);
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-100); box-shadow: 0 0 0 0 rgba(199, 244, 255, .6); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(199,244,255,.5);} 70%{ box-shadow:0 0 0 8px rgba(199,244,255,0);} 100%{ box-shadow:0 0 0 0 rgba(199,244,255,0);} }

.hero__title {
  font-size: clamp(38px, 6.4vw, 74px);
  line-height: 1.06; font-weight: 600; letter-spacing: -2.4px; margin-bottom: 26px;
  color: var(--white); text-shadow: 0 2px 40px rgba(7, 13, 29, .35);
}
.hero__title .thin { color: rgba(234, 255, 255, .7); }
.hero__sub {
  max-width: 580px; margin: 0 auto 38px;
  font-size: clamp(16px, 2.1vw, 19px); font-weight: 300; color: rgba(234, 255, 255, .82);
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 42px; }

.hero__trust { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 300; color: rgba(234, 255, 255, .72); }
.stars { color: var(--blue-100); letter-spacing: 2px; }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 25px; height: 40px; border: 1.5px solid rgba(217, 224, 242, .35); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--blue-100); border-radius: 2px; animation: scrolldot 1.7s infinite;
}
@keyframes scrolldot { 0%{opacity:0;top:8px;}30%{opacity:1;}60%{opacity:1;top:22px;}100%{opacity:0;top:22px;} }

/* ===== Strip ===== */
.strip { padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-800); }
.strip__inner { text-align: center; }
.strip__label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 2.4px; color: var(--mute); margin-bottom: 16px; }
.strip__items { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; font-weight: 400; font-size: 15px; color: var(--ice); }
.strip__items .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--blue-400); opacity: .7; }

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-300); margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 600; letter-spacing: -1.6px; line-height: 1.08; margin-bottom: 16px; color: var(--white); }
.section-head p { color: var(--mute); font-size: 18px; font-weight: 300; }

/* ===== How ===== */
.how { padding: 130px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; background: rgba(217, 224, 242, .025);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: var(--line-2); background: rgba(217, 224, 242, .045); }
.step:hover::before { opacity: 1; }
.step__num { font-size: 13px; font-weight: 600; color: var(--blue-300); letter-spacing: 1px; display: inline-block; margin-bottom: 20px; }
.step h3 { font-size: 21px; font-weight: 600; margin-bottom: 11px; letter-spacing: -.4px; color: var(--text); }
.step p { color: var(--mute); font-size: 15.5px; font-weight: 300; }

/* ===== Features ===== */
.features { padding: 130px 0; background:
  radial-gradient(120% 80% at 85% 0%, rgba(35, 133, 202, .12), transparent 55%), var(--navy-900); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; background: rgba(217, 224, 242, .03);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.card--wide { grid-column: span 2; }
.card:hover { transform: translateY(-6px); border-color: var(--line-2); background: rgba(217, 224, 242, .05); }
.card__mark {
  display: block; width: 22px; height: 22px; margin-bottom: 20px; border-radius: 6px;
  background:
    radial-gradient(circle at 30% 30%, var(--ice) 0 2px, transparent 2.4px),
    radial-gradient(circle at 70% 30%, var(--blue-300) 0 1.4px, transparent 1.8px),
    radial-gradient(circle at 30% 70%, var(--blue-300) 0 1.4px, transparent 1.8px),
    radial-gradient(circle at 70% 70%, var(--ice) 0 2px, transparent 2.4px);
  filter: drop-shadow(0 0 6px rgba(143, 217, 244, .5));
}
.card h3 { font-size: 21px; font-weight: 600; margin-bottom: 11px; letter-spacing: -.4px; color: var(--text); }
.card p { color: var(--mute); font-size: 15.5px; font-weight: 300; }

/* ===== Stats ===== */
.stats { padding: 100px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: radial-gradient(80% 120% at 50% 0%, rgba(25, 106, 177, .32), transparent 60%), var(--navy-800); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__row { display: flex; align-items: baseline; }
.stat__num { font-size: clamp(40px, 6vw, 58px); font-weight: 600; letter-spacing: -2px; color: var(--white); line-height: 1; }
.stat__suffix { font-size: clamp(26px, 4vw, 38px); font-weight: 600; color: var(--blue-300); }
.stat__label { margin-top: 14px; color: var(--mute); font-size: 14.5px; font-weight: 300; }

/* ===== CTA ===== */
.cta { padding: 140px 0; }
.cta__inner {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-600), var(--navy-800) 55%, var(--navy-900));
  border: 1px solid var(--line-2); border-radius: 32px; padding: 88px 32px;
}
.cta__bloom { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(45% 70% at 50% -5%, rgba(143, 217, 244, .4), transparent 65%); }
.cta__inner > *:not(.cta__bloom) { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 600; letter-spacing: -1.6px; line-height: 1.08; margin-bottom: 16px; color: var(--white); }
.cta p { color: rgba(217, 224, 242, .75); font-size: 18px; font-weight: 300; max-width: 480px; margin: 0 auto 32px; }
.cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta__fine { font-size: 13px; font-weight: 300; color: var(--mute); }

/* ===== Footer ===== */
.footer { background: var(--navy-900); border-top: 1px solid var(--line); padding: 72px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; }
.footer__brand { max-width: 290px; }
.footer__brand .brand__mark { width: 25px; height: 25px; }
.footer__brand p { color: var(--mute); font-size: 15px; font-weight: 300; margin-top: 16px; }
.footer__cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__cols h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--ice); }
.footer__cols a { display: block; color: var(--mute); font-size: 15px; font-weight: 300; margin-bottom: 10px; transition: color .2s; }
.footer__cols a:hover { color: var(--text); }
.footer__bar {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--line); color: var(--mute); font-size: 13px; font-weight: 300;
}

/* ===== Brand wordmark ===== */
.brand__name { display: inline-flex; align-items: baseline; gap: 7px; }
.brand__sub { font-size: 12px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-300); }

/* ===== Nav menu (desktop inline, mobile dropdown) ===== */
.nav__menu { display: flex; align-items: center; gap: 34px; }

/* ===== Feature grid (8 cards) ===== */
.grid--feat { grid-template-columns: repeat(4, 1fr); }
.grid--feat .card { padding: 30px 26px; }
.grid--feat .card h3 { font-size: 19px; }

/* ===== Steps (4) ===== */
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps--4 .step { padding: 34px 26px; }

/* ===== About ===== */
.about { padding: 130px 0; background:
  radial-gradient(110% 80% at 15% 0%, rgba(35, 133, 202, .12), transparent 55%), var(--navy-800); }
.about__ideal { text-align: center; margin: 0 auto 56px; max-width: 760px; }
.about__ideal-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-300); margin-bottom: 18px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chips li {
  font-size: 14px; color: var(--ice); font-weight: 400;
  background: rgba(217, 224, 242, .05); border: 1px solid var(--line-2);
  padding: 9px 16px; border-radius: 999px;
}
.mv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mv__card {
  background: rgba(217, 224, 242, .03); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
}
.mv__card h3 { font-size: 20px; font-weight: 600; margin-bottom: 14px; letter-spacing: -.3px; color: var(--text); }
.mv__card p { color: var(--mute); font-size: 15.5px; font-weight: 300; }
.values { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.values li { font-size: 14px; color: var(--ice); font-weight: 300; }
.values li::before { content: "◦ "; color: var(--blue-300); }

/* ===== Pricing ===== */
.pricing { padding: 130px 0; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: rgba(217, 224, 242, .03); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 32px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: var(--line-2); }
.plan--featured {
  border-color: rgba(143, 217, 244, .4);
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(35, 133, 202, .16), transparent 60%),
    rgba(217, 224, 242, .04);
  box-shadow: 0 24px 60px -32px rgba(35, 133, 202, .7);
}
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--navy-900);
  font-size: 11.5px; font-weight: 600; letter-spacing: .5px;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 22px; font-weight: 600; letter-spacing: -.4px; margin-bottom: 14px; color: var(--white); }
.plan__price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 10px; }
.plan__amt { font-size: 42px; font-weight: 600; letter-spacing: -1.8px; line-height: 1; color: var(--white); }
.plan__per { font-size: 15px; font-weight: 300; color: var(--mute); }
.plan__tag { color: var(--mute); font-size: 15px; font-weight: 300; margin-bottom: 24px; }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.plan__list li { position: relative; padding-left: 26px; font-size: 15px; font-weight: 300; color: var(--ice); }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-300) 0 4px, transparent 5px);
  box-shadow: 0 0 8px rgba(143, 217, 244, .6);
}
.plan__btn { width: 100%; }

/* ===== Contact ===== */
.contact { padding: 130px 0; background:
  radial-gradient(100% 80% at 85% 0%, rgba(25, 106, 177, .14), transparent 55%), var(--navy-800); }
.contact__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 820px; margin: 0 auto 36px; }
.contact__card {
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(217, 224, 242, .03); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.contact__card:hover { transform: translateY(-4px); border-color: var(--line-2); background: rgba(217, 224, 242, .05); }
.contact__role { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--blue-300); }
.contact__mail { font-size: 17px; font-weight: 400; color: var(--text); }
.contact__hours { text-align: center; color: var(--mute); font-size: 15.5px; font-weight: 300; }
.contact__hours strong { color: var(--ice); font-weight: 600; }

/* ===== Subpages (careers / terms / privacy) ===== */
.page-hero {
  position: relative; padding: 170px 0 70px; overflow: hidden;
  background: var(--logo-gradient);
}
.page-hero__veil { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,13,29,.25) 0%, rgba(7,13,29,.55) 70%, var(--navy-900) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--blue-100); }
.page-hero h1 { font-size: clamp(34px, 5.5vw, 58px); font-weight: 600; letter-spacing: -1.8px; line-height: 1.06; color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(234, 255, 255, .82); font-size: 18px; font-weight: 300; max-width: 620px; }

.prose { max-width: 780px; margin: 0 auto; padding: 80px 0 120px; }
.prose section { margin-bottom: 44px; }
.prose h2 { font-size: 24px; font-weight: 600; letter-spacing: -.5px; color: var(--white); margin-bottom: 14px; }
.prose h3 { font-size: 18px; font-weight: 600; color: var(--ice); margin: 26px 0 10px; }
.prose p { color: var(--mute); font-size: 16px; font-weight: 300; margin-bottom: 14px; }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 6px 0 14px; }
.prose ul li { position: relative; padding-left: 24px; color: var(--ice); font-size: 15.5px; font-weight: 300; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-300) 0 3px, transparent 4px); }
.prose a { color: var(--blue-300); }
.prose a:hover { color: var(--white); }
.prose .lead { font-size: 19px; color: var(--text); font-weight: 300; margin-bottom: 32px; }

/* ===== Reveal base ===== */
[data-reveal] { opacity: 0; transform: translateY(34px); }
[data-anim="hero"] { opacity: 0; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid--feat { grid-template-columns: repeat(2, 1fr); }
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 20px;
    padding: 22px 28px 28px;
    background: rgba(7, 13, 29, .97); backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav__menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; gap: 18px; font-size: 16px; }
  .nav__actions .btn { width: 100%; }

  .steps, .grid, .mv, .plans { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .contact__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .plan--featured { order: -1; }
}
@media (max-width: 600px) {
  .grid--feat, .steps--4 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .hero__inner { padding: 120px 0 80px; }
  .how, .features, .about, .pricing, .contact { padding: 90px 0; }
  .cta { padding: 100px 0; }
  .cta__inner { padding: 60px 22px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal], [data-anim="hero"] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
