/* ============================================================
   Augmenta Group - landing page
   Brand marks sampled from the logo: #9900FF #FF00FF #FF66FF
   ============================================================ */

:root {
  --bg:        #FFFFFF;
  --bg-alt:    #FAF7FE;
  --surface:   #FFFFFF;
  --surface-2: #F5F1FB;
  --ink:       #150E1E;
  --muted:     #574C66;
  --faint:     #6E6280;
  --line:      #E8E1F3;
  --line-soft: #F1ECF8;

  --v1: #9900FF;
  --v2: #FF00FF;
  --v3: #FF66FF;
  --brand-text: #8400DB;
  --brand-wash: #F6EDFF;
  --on-brand: #FFFFFF;

  --grad: linear-gradient(120deg, #9900FF 0%, #FF00FF 55%, #FF66FF 100%);

  --shadow-s: 0 1px 2px rgba(21,14,30,.05), 0 4px 12px -6px rgba(21,14,30,.10);
  --shadow-m: 0 2px 4px rgba(21,14,30,.05), 0 16px 40px -20px rgba(21,14,30,.22);
  --shadow-l: 0 30px 70px -34px rgba(120,0,190,.42);

  --r-s: 8px;
  --r-m: 14px;
  --r-l: 22px;

  --f-disp: "Outfit", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  --f-body: "Source Sans 3", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, Consolas, monospace;

  --nav-h: 68px;
  --pad: clamp(20px, 5vw, 40px);
  --maxw: 1200px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #0A0610;
    --bg-alt:    #100A19;
    --surface:   #150E20;
    --surface-2: #1C1329;
    --ink:       #F4F0F9;
    --muted:     #A99DBB;
    --faint:     #9C92B0;
    --line:      #271B37;
    --line-soft: #1E1429;
    --brand-text: #D194FF;
    --brand-wash: #1F0A33;
    --shadow-s: 0 1px 2px rgba(0,0,0,.4), 0 4px 12px -6px rgba(0,0,0,.5);
    --shadow-m: 0 2px 4px rgba(0,0,0,.4), 0 16px 40px -20px rgba(0,0,0,.7);
    --shadow-l: 0 30px 70px -34px rgba(153,0,255,.5);
  }
}

:root[data-theme="dark"] {
  --bg:        #0A0610;
  --bg-alt:    #100A19;
  --surface:   #150E20;
  --surface-2: #1C1329;
  --ink:       #F4F0F9;
  --muted:     #A99DBB;
  --faint:     #9C92B0;
  --line:      #271B37;
  --line-soft: #1E1429;
  --brand-text: #D194FF;
  --brand-wash: #1F0A33;
  --shadow-s: 0 1px 2px rgba(0,0,0,.4), 0 4px 12px -6px rgba(0,0,0,.5);
  --shadow-m: 0 2px 4px rgba(0,0,0,.4), 0 16px 40px -20px rgba(0,0,0,.7);
  --shadow-l: 0 30px 70px -34px rgba(153,0,255,.5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-text); text-underline-offset: 3px; }

:focus-visible { outline: 2px solid var(--v2); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-text); margin: 0 0 16px;
}

h1, h2, h3, h4 { font-family: var(--f-disp); font-weight: 600; letter-spacing: -.025em; text-wrap: balance; margin: 0; }

/* ---------------- scroll reveal ---------------- */

/* Progressive enhancement: content is visible by default. The hidden state
   only exists once JS has confirmed it can drive the reveal, so a script
   failure or an observer that never fires can never leave the page blank. */
.reveal { transition: opacity .75s var(--ease), transform .75s var(--ease); }

:root.reveal-on .reveal {
  opacity: 0;
  transform: translateY(44px) scale(.972);
  will-change: opacity, transform;
}
:root.reveal-on .reveal.shown { opacity: 1; transform: none; will-change: auto; }

/* ---------------- skip link ---------------- */

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bg);
  padding: 12px 18px; border-radius: 0 0 var(--r-s) 0; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------------- nav ---------------- */

.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 26px; height: 100%; position: relative; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.brand .logo-light, .foot-brand .logo-light { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand .logo-dark,
  :root:not([data-theme="light"]) .foot-brand .logo-dark  { display: none; }
  :root:not([data-theme="light"]) .brand .logo-light,
  :root:not([data-theme="light"]) .foot-brand .logo-light { display: block; }
}
:root[data-theme="dark"] .brand .logo-dark,
:root[data-theme="dark"] .foot-brand .logo-dark  { display: none; }
:root[data-theme="dark"] .brand .logo-light,
:root[data-theme="dark"] .foot-brand .logo-light { display: block; }

.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a {
  font-size: 15.5px; font-weight: 500; color: var(--muted);
  text-decoration: none; white-space: nowrap; transition: color .16s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-inline-cta { display: none; }
.nav-links a.btn-primary { color: var(--on-brand); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* language selector */
.langsel {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px; background: var(--surface);
}
.langbtn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; background: transparent; border-radius: 7px;
  padding: 5px; cursor: pointer; line-height: 0;
  transition: background .16s ease;
}
/* Real SVG flags. Emoji flags are not an option here: Windows ships no glyphs
   for regional indicator pairs and renders them as the letters "GB" / "ES". */
.langbtn .flag {
  width: 25px; height: auto; aspect-ratio: 3 / 2; display: block;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
  transition: filter .18s ease, transform .18s ease;
}
.langbtn:not(.on) .flag { filter: grayscale(1) opacity(.5); }
.langbtn:hover .flag { filter: none; transform: scale(1.06); }
.langbtn.on { background: var(--brand-wash); }
.langbtn.on .flag { filter: none; }

.burger {
  display: none; background: none;
  border: 1px solid var(--line); border-radius: var(--r-s);
  width: 42px; height: 38px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: background .18s ease; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
  transition: transform .22s var(--ease), top .22s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger.x span { background: transparent; }
.burger.x span::before { top: 0; transform: rotate(45deg); }
.burger.x span::after  { top: 0; transform: rotate(-45deg); }

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-body); font-size: 16px; font-weight: 600;
  padding: 12px 24px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn-primary { background: var(--grad); color: var(--on-brand); box-shadow: 0 8px 22px -10px rgba(153,0,255,.65); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(153,0,255,.75); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--v2); color: var(--brand-text); }
.btn-sm { padding: 9px 18px; font-size: 15px; }

/* ---------------- hero ---------------- */

.hero { position: relative; padding: clamp(64px, 11vw, 128px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.hero > .wrap { position: relative; z-index: 1; }
.hero-in { max-width: 720px; }

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg svg { position: absolute; top: -10%; right: -14%; width: min(880px, 82vw); height: auto; opacity: .5; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .hero-bg svg { opacity: .34; } }
:root[data-theme="dark"] .hero-bg svg { opacity: .34; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 55% at 78% 8%, color-mix(in srgb, var(--v1) 12%, transparent) 0%, transparent 62%);
}

.hero h1 { font-size: clamp(2.55rem, 6.4vw, 4.4rem); line-height: 1.09; margin: 0 0 22px; }
.hero h1 span { display: block; }
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  /* room for descenders: the gradient is clipped to the box, not the glyph */
  padding-bottom: .14em;
  margin-bottom: -.14em;
}
.hero-sub { font-size: clamp(1.08rem, 2.1vw, 1.3rem); color: var(--muted); max-width: 60ch; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin: 22px 0 0; font-size: 14.5px; color: var(--faint); }

/* ---------------- stat strip ---------------- */

.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.stats-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.stat { background: var(--bg-alt); padding: 30px 24px; text-align: center; }
.stat b {
  display: block; font-family: var(--f-disp);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight: 600; line-height: 1.1;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { display: block; margin-top: 5px; font-size: 14px; color: var(--muted); }

/* ---------------- generic section ---------------- */

.sect { padding: clamp(64px, 9vw, 116px) 0; }
.sect-alt { background: var(--bg-alt); }
.sect-head { max-width: 660px; margin: 0 0 clamp(36px, 5vw, 60px); }
.sect-head h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); line-height: 1.1; margin: 0 0 16px; }
.sect-head > p { font-size: 1.1rem; color: var(--muted); margin: 0; }

/* ---------------- suites ---------------- */

.suites { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.suite {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-l);
  overflow: hidden; box-shadow: var(--shadow-s);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.suite:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: color-mix(in srgb, var(--v1) 34%, var(--line)); }

.suite-cover {
  position: relative; height: 138px; overflow: hidden;
  display: flex; align-items: center; padding-left: 30px;
  border-bottom: 1px solid var(--line);
}
.cover-health  { background: linear-gradient(105deg, color-mix(in srgb, var(--v1) 15%, var(--surface)) 0%, var(--surface) 72%); }
.cover-home    { background: linear-gradient(105deg, color-mix(in srgb, var(--v2) 13%, var(--surface)) 0%, var(--surface) 72%); }
.cover-finance { background: linear-gradient(105deg, color-mix(in srgb, var(--v3) 18%, var(--surface)) 0%, var(--surface) 72%); }
.cover-legal   { background: linear-gradient(105deg, color-mix(in srgb, var(--v1) 10%, var(--surface)) 0%, color-mix(in srgb, var(--v2) 8%, var(--surface)) 70%, var(--surface) 100%); }

.cover-slashes {
  position: absolute; right: -4%; top: 0; height: 100%; width: 62%;
  transition: transform .5s var(--ease);
}
.suite:hover .cover-slashes { transform: translateX(-8px); }

.suite-tile {
  position: relative; z-index: 1;
  width: 78px; height: 78px; border-radius: 20px;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--brand-text);
  box-shadow: var(--shadow-s);
  transition: transform .22s var(--ease);
}
.suite:hover .suite-tile { transform: scale(1.05) rotate(-3deg); }
.suite-tile svg { width: 44px; height: 44px; }

.suite-body { padding: 26px 30px 28px; }
.suite-body h3 { font-size: 1.3rem; margin: 0 0 10px; }
.suite-body > p { color: var(--muted); font-size: 15.5px; margin: 0 0 20px; }

.applist { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.applist li { display: flex; align-items: baseline; gap: 11px; font-size: 15px; }
.applist li::before {
  content: ""; width: 7px; height: 7px; flex: 0 0 7px;
  border-radius: 2px; background: var(--v2); transform: rotate(45deg);
}
.applist .live > span:first-of-type { color: var(--ink); font-weight: 600; }
.applist em {
  font-style: normal; font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-text); background: var(--brand-wash);
  padding: 2px 7px; border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}
.suite-foot { padding-top: 18px; border-top: 1px solid var(--line-soft); }
.suite-count { font-family: var(--f-mono); font-size: 12.5px; color: var(--faint); letter-spacing: .04em; }
.suite-count b { color: var(--brand-text); font-weight: 600; }

.more-note {
  margin-top: 28px; padding: 20px 24px; border: 1px dashed var(--line);
  border-radius: var(--r-m); color: var(--muted); font-size: 15.5px; background: var(--surface);
}
.more-note strong { color: var(--ink); }

/* ---------------- app launcher ---------------- */

.apps { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 22px; }

.appcard {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-l); padding: 26px 26px 22px;
  box-shadow: var(--shadow-s); text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.appcard::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity .22s var(--ease);
}
.appcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: color-mix(in srgb, var(--v1) 34%, var(--line)); }
.appcard:hover::after { opacity: 1; }

.appcard-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }

.appicon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 15px; display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: transform .22s var(--ease);
}
.appicon svg { width: 32px; height: 32px; }
.appcard:hover .appicon { transform: scale(1.06) rotate(-3deg); }

/* one hue per application, so the grid reads as a set without being uniform */
.icon-health { color: #C2185B; background: color-mix(in srgb, #FF00FF 10%, var(--surface)); }
.icon-power  { color: var(--brand-text); background: color-mix(in srgb, #9900FF 10%, var(--surface)); }
.icon-menu   { color: #0B7F63; background: color-mix(in srgb, #0B7F63 10%, var(--surface)); }
.icon-learn  { color: #B0691A; background: color-mix(in srgb, #B0691A 10%, var(--surface)); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .icon-health { color: #FF8ED4; }
  :root:not([data-theme="light"]) .icon-menu   { color: #4FC7A4; }
  :root:not([data-theme="light"]) .icon-learn  { color: #E0A458; }
}
:root[data-theme="dark"] .icon-health { color: #FF8ED4; }
:root[data-theme="dark"] .icon-menu   { color: #4FC7A4; }
:root[data-theme="dark"] .icon-learn  { color: #E0A458; }

.applock {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}

.appname {
  font-family: var(--f-disp); font-size: 1.16rem; font-weight: 600;
  letter-spacing: -.015em; margin-bottom: 9px; text-wrap: balance;
}
.appdesc { color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1 1 auto; margin-bottom: 20px; }

.appopen {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 15px; color: var(--brand-text);
  padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.appopen svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.appcard:hover .appopen svg { transform: translate(2px, -2px); }

@media (max-width: 980px) { .apps { grid-template-columns: 1fr; } }

/* ---------------- value props ---------------- */

.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.prop-mark { width: 38px; height: 38px; margin-bottom: 16px; }
.prop h3 { font-size: 1.16rem; margin: 0 0 9px; }
.prop p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ---------------- pricing ---------------- */

.price-note {
  display: block; font-size: 14px; color: var(--muted); line-height: 1.5;
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 11px 18px; border-radius: var(--r-m); margin: 18px 0 0; max-width: 62ch;
}
.price-note b { color: var(--ink); }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.tier {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 32px 30px; box-shadow: var(--shadow-s); position: relative;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.tier.featured { border-color: transparent; box-shadow: var(--shadow-l); }
.tier.featured::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r-l);
  padding: 1px; background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.tier-flag {
  position: absolute; top: -12px; left: 30px;
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--grad); color: var(--on-brand); padding: 5px 12px; border-radius: 999px;
}
.tier h3 { font-size: 1.2rem; margin: 0 0 6px; }
.tier p.tier-for { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; min-height: 42px; }
.tier-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 4px; }
.tier-price b { font-family: var(--f-disp); font-size: 2.85rem; font-weight: 600; letter-spacing: -.035em; line-height: 1; }
.tier-price span { color: var(--muted); font-size: 15px; }
.tier-bill { font-size: 13.5px; color: var(--faint); margin: 0 0 24px; }
.tier ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.tier li { display: grid; grid-template-columns: 18px 1fr; gap: 11px; font-size: 15px; align-items: start; }
.tier li svg { width: 18px; height: 18px; margin-top: 3px; color: var(--v1); flex-shrink: 0; }
.tier .btn { width: 100%; }

/* ---------------- cta band ---------------- */

.cta {
  position: relative; overflow: hidden; background: var(--grad); color: #fff;
  border-radius: var(--r-l); padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 64px); text-align: center;
}
.cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 14px; color: #fff; }
.cta p { max-width: 54ch; margin: 0 auto 30px; color: rgba(255,255,255,.92); font-size: 1.08rem; }
.cta .btn-white { background: #fff; color: #7A00CC; }
.cta .btn-white:hover { transform: translateY(-1px); }
.cta-inner { position: relative; z-index: 1; }
.cta-slashes { position: absolute; inset: 0; opacity: .16; pointer-events: none; z-index: 0; }
.cta-slashes svg { position: absolute; right: -6%; top: -30%; width: 520px; height: auto; }

/* ---------------- footer ---------------- */

.foot { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--bg-alt); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.foot-brand p { color: var(--muted); font-size: 15px; max-width: 34ch; margin: 0; }
.foot h4 {
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot ul a { color: var(--muted); text-decoration: none; font-size: 15px; }
.foot ul a:hover { color: var(--ink); }
.foot-bot {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid var(--line); color: var(--faint); font-size: 14px;
}

/* ---------------- responsive ---------------- */

@media (max-width: 980px) {
  .suites, .tiers, .props { grid-template-columns: 1fr; }
  .tiers { max-width: 480px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-in { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-right { margin-left: auto; }
  .nav-talk, .nav-start { display: none; }
  .burger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 10px var(--pad) 22px; box-shadow: var(--shadow-m); margin-left: 0;
  }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px; }
  .nav-links.open .nav-inline-cta {
    display: inline-flex; margin-top: 18px; border-bottom: 0; padding: 12px 24px; color: var(--on-brand);
  }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .hero-bg svg { right: -40%; top: -4%; width: 620px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .suite-cover { height: 118px; padding-left: 22px; }
  .suite-tile { width: 66px; height: 66px; border-radius: 17px; }
  .suite-tile svg { width: 38px; height: 38px; }
  .suite-body { padding: 22px 22px 24px; }
  .tier { padding: 28px 24px; }
  .langbtn .flag { width: 23px; }
}

@media (max-width: 460px) {
  .stats-in { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
