:root {
  --bg: #fbfbf9;
  --fg: #0c0c0b;
  --dim: #c8c6bf;
  --muted: #8a8985;
  --line: rgba(0, 0, 0, 0.12);
  --bk: rgba(0, 0, 0, 0.16);
  --red: #ff3b2f;
  --green: #34d36b;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
  --gutter: clamp(1.25rem, 3vw, 2.28rem);   /* min side margin; centering takes over on wide screens */
  --maxw: 1366px;                            /* centered container (brackets sit at its edge) */
  --inner: clamp(1.25rem, 4.6vw, 4rem);      /* ~64px inner padding inside non-hero sections */
  /* side-gutter (full-bleed) vs centered content panel */
  --side: #efece4;
  --panel: #ffffff;
  --hatch: repeating-linear-gradient(-45deg, rgba(0,0,0,.022) 0 1px, transparent 1px 11px);
  --mark: url("assets/black.svg");           /* corner bracket SVG (light sections) */
  --seam: #0a0a0a0d;                         /* section border (light sections) */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html { background: #ffffff; }
/* continuous side-background layers (colour + texture, driven by scroll) */
.sidebg { position: fixed; inset: 0; z-index: -2; background: #ffffff; }
.sidehatch { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 1px, transparent 1px 6px); }
/* pixel curtain — load-in reveal (orange) */
.curtain { position: fixed; inset: 0; z-index: 10000; display: grid; grid-auto-rows: 1fr;
  background: var(--red); pointer-events: none; }
.curtain__px { background: var(--red); box-shadow: 0 0 0 1px var(--red); will-change: opacity; }
body { background: transparent; color: var(--fg); font-family: "Inter", system-ui, sans-serif;
  font-size: 16px; line-height: 1.45; overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
a { color: inherit; text-decoration: none; }
i { font-style: italic; }
b, strong { font-weight: 600; }
::selection { background: var(--fg); color: var(--bg); }

/* ---------- Cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; z-index: 9999; mix-blend-mode: difference; transform: translate(-50%, -50%); }
.cursor { width: 34px; height: 34px; border: 1px solid #fff;
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease); }
.cursor-dot { width: 5px; height: 5px; background: #fff; }
.cursor.is-hover { width: 70px; height: 70px; background: #fff; }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ---------- Preloader ---------- */
.loader { position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: none; align-items: center; justify-content: center; }
.js .loader { display: flex; }
.loader__inner { overflow: hidden; }
.loader__row { display: flex; gap: .3em; font-size: clamp(1.6rem, 6vw, 3.4rem); font-weight: 600; letter-spacing: -.03em; }
.loader__word { display: inline-block; transform: translateY(110%); }
.loader__count { position: absolute; bottom: var(--gutter); right: var(--gutter);
  font-size: clamp(2.5rem, 12vw, 7rem); line-height: .8; font-weight: 600; display: flex; align-items: flex-start; }
.loader__pct { font-size: .25em; margin-top: .4em; color: var(--muted); }
.loader__bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--line); }
.loader__bar span { display: block; height: 100%; width: 0%; background: var(--fg); }

/* ---------- Per-section corner brackets ---------- */
[data-framed] { position: relative; }
.sframe { position: absolute; top: 0; bottom: 0;
  left: max(var(--gutter), (100% - var(--maxw)) / 2);
  right: max(var(--gutter), (100% - var(--maxw)) / 2);
  pointer-events: none; z-index: 1; }
.sc { position: absolute; width: 18px; height: 23px;
  background: var(--mark) no-repeat center / contain; }
/* markers sit centred on the section's top seam */
.sc--tl { top: 0; left: 0; transform: translateY(-50%); }
.sc--tr { top: 0; right: 0; transform: translateY(-50%) scaleX(-1); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 1.5rem;
  border-radius: 100px; font-size: .98rem; font-weight: 500; white-space: nowrap;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s; }
.btn__arrow { font-size: 1.05em; }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--fg); }
.btn--light { background: #f2f0ea; color: #111; }
.btn--outline { background: transparent; color: #f2f0ea; border: 1px solid rgba(255,255,255,.22); }
.btn--outline:hover { border-color: rgba(255,255,255,.55); }

/* ---------- Nav ---------- */
.nav { position: absolute; top: 0; left: 0; width: 100%; z-index: 900;
  display: flex; align-items: center; justify-content: space-between; padding: 1rem var(--gutter); }
.nav__logo { color: var(--fg); display: inline-flex; align-items: center; }
.nav__wm { font-family: "Inter", sans-serif; font-weight: 700; font-size: 1.4rem; letter-spacing: -.04em; line-height: 1; }
.nav__links { display: flex; align-items: center; gap: .15rem; }
.nav__item { position: relative; }
.nav__trigger, .nav__plain { display: inline-flex; align-items: center; gap: .3rem; font-family: inherit;
  font-size: .95rem; font-weight: 500; color: var(--fg); line-height: 1; text-decoration: none;
  background: none; border: 0; cursor: pointer; padding: .55rem .75rem; border-radius: 10px;
  transition: background .2s var(--ease); }
.nav__trigger:hover, .nav__plain:hover, .nav__item:hover .nav__trigger { background: rgba(0,0,0,.05); }
.nav__chev { width: 13px; height: 13px; opacity: .7; transition: transform .25s var(--ease); }
.nav__item:hover .nav__chev { transform: rotate(180deg); }

/* dropdown panel */
.dd { position: absolute; top: calc(100% + 12px); left: 0; z-index: 950;
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 30px 70px -24px rgba(12,12,11,.30), 0 8px 24px -16px rgba(12,12,11,.16);
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(.985); transform-origin: top left;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; }
.dd::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 16px; }
.nav__item:hover .dd { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.dd__ico { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,59,47,.09); color: var(--red); }
.dd__ico svg { width: 19px; height: 19px; }

/* simple list dropdown */
.dd--list { width: 264px; padding: .45rem; }
.dd__row { display: flex; align-items: center; gap: .75rem; padding: .6rem .65rem; border-radius: 11px;
  font-size: .95rem; font-weight: 500; color: var(--fg); text-decoration: none; transition: background .15s; }
.dd__row .dd__ico { width: 34px; height: 34px; }
.dd__row:hover { background: rgba(0,0,0,.045); }

/* mega menu */
.dd--mega { width: min(740px, 94vw); }
.dd__grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: .4rem; padding: .8rem; }
.dd__col { display: flex; flex-direction: column; gap: .1rem; }
.dd__item { display: flex; align-items: flex-start; gap: .8rem; padding: .65rem .7rem; border-radius: 12px;
  text-decoration: none; color: var(--fg); transition: background .15s; }
.dd__item:hover { background: rgba(0,0,0,.045); }
.dd__txt { display: flex; flex-direction: column; }
.dd__it-title { font-size: .94rem; font-weight: 600; letter-spacing: -.01em; }
.dd__it-desc { font-size: .8rem; color: var(--muted); margin-top: .12rem; line-height: 1.3; }

/* featured card */
.dd__feature { display: flex; flex-direction: column; padding: .9rem; border-radius: 14px;
  background: #f6f4ee; text-decoration: none; color: var(--fg); transition: background .2s; }
.dd__feature:hover { background: #f0ece4; }
.dd__feature-img { position: relative; aspect-ratio: 16 / 10; border-radius: 10px; margin-bottom: .7rem;
  background: radial-gradient(120% 120% at 22% 12%, #ff8a7d, #ff3b2f 42%, #17150f 100%); }
.dd__badge { position: absolute; top: 8px; left: 8px; background: rgba(10,10,10,.72); color: #fff;
  font-size: .62rem; font-weight: 600; letter-spacing: .04em; padding: .2rem .5rem; border-radius: 6px; }
.dd__feature-title { font-size: .98rem; font-weight: 600; }
.dd__feature-desc { font-size: .82rem; color: var(--muted); margin-top: .25rem; line-height: 1.4; }
.dd__feature-link { font-size: .85rem; font-weight: 600; color: var(--red); margin-top: .6rem; }

/* bottom bar */
.dd__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem 1.2rem; border-top: 1px solid var(--line); }
.dd__bar-text { font-size: .88rem; color: var(--muted); }
.dd__bar-text b { color: var(--fg); font-weight: 600; }
.dd__bar-btn { font-size: .86rem; font-weight: 500; color: var(--fg); text-decoration: none; white-space: nowrap;
  border: 1px solid var(--line); border-radius: 10px; padding: .5rem .9rem; transition: border-color .2s, background .2s; }
.dd__bar-btn:hover { border-color: var(--fg); background: rgba(0,0,0,.03); }
.nav__soon sup { color: var(--red); font-size: .55em; margin-left: 2px; font-weight: 600; vertical-align: super; }
.chatpill { display: inline-flex; align-items: center; gap: .6rem; padding: .45rem 1.1rem .45rem .45rem;
  border: 1px solid var(--line); border-radius: 100px; font-size: .95rem; font-weight: 500;
  transition: transform .4s var(--ease), border-color .3s; }
.chatpill:hover { border-color: var(--fg); }
.chatpill__ava { width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd0a8, #b06a3a); }
@media (max-width: 760px) { .nav__links { display: none; } }

/* ---------- Shared type ---------- */
.eyebrow { display: inline-block; font-size: .85rem; color: var(--muted); margin-bottom: 1.4rem; }
.eyebrow--red { color: var(--red); }
.dim { color: var(--dim); }
.display { font-size: clamp(2.2rem, 6.5vw, 4.6rem); line-height: 1.04; font-weight: 600; letter-spacing: -.03em; }
.display .line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.display [data-hero-line] { display: block; }
.js .display [data-hero-line] { transform: translateY(110%); }
.display .muted { color: var(--muted); font-weight: 300; }

section { padding-left: var(--gutter); padding-right: var(--gutter); }

/* ===== Full-bleed sections: textured side gutters + centered content panel =====
   Every section's background runs edge-to-edge. The center content sits on a panel
   (--panel) while the gutters show the side colour (--side) + a faint hatch.
   All sections share one content width; the hero skips --inner so it's the widest. */
main > section, main > footer {
  position: relative;
  max-width: none !important;
  margin-inline: 0 !important;
  padding-inline: calc(max(var(--gutter), (100% - var(--maxw)) / 2) + var(--inner)) !important;
  background-color: transparent;
  background-image: none;
}
/* content panel: spans the centered max-width column; margins show the side bg */
main > section::before, main > footer::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: max(var(--gutter), (100% - var(--maxw)) / 2);
  right: max(var(--gutter), (100% - var(--maxw)) / 2);
  background: var(--panel); z-index: 0;
  /* top + sides only, so adjacent sections share one seam line (no double-thick) */
  border: 1px solid var(--seam);
  border-bottom: 0;
}
/* the last section closes the bottom of the frame */
main > footer::before { border-bottom: 1px solid var(--seam); }
main > section > *, main > footer > * { position: relative; z-index: 1; }
/* hero: centered container with no inner padding -> widest content */
.hero { padding-inline: max(var(--gutter), (100% - var(--maxw)) / 2) !important; background: transparent; }
/* hero: no borders at all (open section) */
.hero::before { display: none; }

/* on phones, drop the side gutters so content uses the full width */
@media (max-width: 600px) {
  /* box, corner markers and content all align to the gutter so markers sit on the box corners */
  main > section, main > footer { padding-inline: calc(var(--gutter) + 1rem) !important; background-image: none; }
  main > section::before, main > footer::before { left: var(--gutter); right: var(--gutter); }
  .sframe { left: var(--gutter) !important; right: var(--gutter) !important; }
}

/* ---------- 1 · Hero ---------- */
.hero { max-width: var(--maxw); margin: 0 auto; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: clamp(5rem, 11vh, 9rem); padding-bottom: clamp(1.5rem, 5vh, 4rem); }
/* size by the smaller of width / height so the headline always fits a laptop viewport */
.hero__title { font-size: clamp(2rem, min(6.1vw, 11vh), 5.1rem); line-height: 1.07; font-weight: 600;
  letter-spacing: -.035em; max-width: 14.5em; }
/* padding-bottom + negative margin gives descenders (g, y, p) room inside the masked line */
.hero__title .line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.hero__title [data-hero-line] { display: block; }
.js .hero__title [data-hero-line] { transform: translateY(112%); }
.hero__title b { font-weight: 600; color: var(--fg); }
.hero__title .ast { color: var(--dim); font-size: .6em; vertical-align: super; }
.hero__btns { display: flex; gap: .8rem; margin-top: clamp(1.4rem, 3.5vh, 2.6rem); }

/* ---------- 2 · Browser showcase ---------- */
.showcase { max-width: var(--maxw); margin: 0 auto; padding-top: 2vh; padding-bottom: 12vh; }
.browser { border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: #fff; box-shadow: 0 50px 100px -40px rgba(0,0,0,.28);
  position: relative; z-index: 2; margin-top: -56px; }
.browser__tabs { display: flex; align-items: center; gap: 1rem; padding: .7rem 1rem;
  border-bottom: 1px solid var(--line); background: #fafafa; }
.browser__lights { display: flex; gap: 6px; }
.browser__lights i { width: 11px; height: 11px; border-radius: 50%; background: #e0e0e0; }
.browser__lights i:nth-child(1){background:#ff5f57;} .browser__lights i:nth-child(2){background:#febc2e;} .browser__lights i:nth-child(3){background:#28c840;}
.tabset { display: flex; gap: .3rem; overflow-x: auto; scrollbar-width: none; }
.tabset::-webkit-scrollbar { display: none; }
.tab { display: inline-flex; align-items: center; gap: .45rem; padding: .35rem .8rem; border-radius: 8px;
  border: 1px solid transparent; background: transparent; font: inherit; font-size: .85rem; color: var(--muted);
  cursor: pointer; white-space: nowrap; transition: background .25s, color .25s, border-color .25s; }
.tab:hover { color: var(--fg); }
.tab.is-active { background: #fff; color: var(--fg); border-color: var(--line); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.tab__ico { width: 18px; height: 18px; border-radius: 5px; display: grid; place-items: center;
  font-size: .6rem; font-weight: 700; color: #fff; }
.ico-nova{background:#111;} .ico-orbi{background:#7b6cff;} .ico-any{background:#34d36b;} .ico-aim{background:#3b9dff;} .ico-saa{background:#111;}
.browser__url { display: flex; align-items: center; gap: .8rem; padding: .55rem 1rem; border-bottom: 1px solid var(--line); }
.browser__nav { display: flex; gap: .7rem; color: var(--muted); }
.browser__nav i { font-style: normal; font-size: 1rem; }
.browser__addr { flex: 1; display: flex; align-items: center; gap: .5rem; background: #f1f1ee;
  border-radius: 8px; padding: .4rem .9rem; font-size: .82rem; color: #555; font-family: "JetBrains Mono", monospace; }
.browser__lock { font-size: .7rem; }
.browser__view { position: relative; aspect-ratio: 16 / 9; background: #0a0a0a; }
.site { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .5s var(--ease);
  overflow: hidden; display: flex; }
.site.is-active { opacity: 1; pointer-events: auto; }

/* nova dashboard */
.site--nova { background: #070707; color: #fff; }
.grid-bg { position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px; }
.connectors { position: absolute; inset: 0; width: 100%; height: 100%; }
.conn { fill: none; stroke-width: 2; stroke-dasharray: 7 7; animation: marchdash 1.1s linear infinite; }
@keyframes marchdash { to { stroke-dashoffset: -28; } }
.conn--blue { stroke: #3b9dff; } .conn--yellow { stroke: #ffd23b; } .conn--red { stroke: #ff5a5a; } .conn--green { stroke: #34d36b; }
.chip { position: absolute; width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center;
  background: #15171c; border: 1px solid rgba(255,255,255,.12); font-size: .8rem; color: #fff;
  animation: chipfloat 4s ease-in-out infinite; }
.chip--1 { top: 21%; left: 11%; color: #3b9dff; } .chip--2 { top: 25%; right: 11%; color: #ffd23b; }
.chip--3 { bottom: 18%; right: 15%; color: #ff5a5a; } .chip--4 { bottom: 22%; left: 22%; color: #34d36b; }
@keyframes chipfloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }
.site__topnav { position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center;
  justify-content: space-between; padding: clamp(.7rem,2vw,1.3rem) clamp(1rem,3vw,2rem); font-size: clamp(.55rem,1.3vw,.8rem); z-index: 3; }
.site__brand { font-weight: 700; letter-spacing: .02em; }
.site__menu { color: rgba(255,255,255,.55); }
.site__try { background: #fff; color: #000; padding: .35rem .8rem; border-radius: 7px; font-weight: 500; }
.site__center { margin: auto; text-align: center; position: relative; z-index: 2; padding: 0 1rem; }
.site__pill { display: inline-block; border: 1px solid rgba(255,255,255,.18); border-radius: 100px;
  padding: .3rem .9rem; font-size: clamp(.55rem,1.3vw,.78rem); color: rgba(255,255,255,.7); margin-bottom: 1.1rem; }
.site__h { font-size: clamp(1.6rem, 5.5vw, 3.6rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.02; }
.site__sub { max-width: 46ch; margin: 1rem auto 1.4rem; color: rgba(255,255,255,.55); font-size: clamp(.6rem,1.5vw,.92rem); }
.site__btns { display: flex; gap: .7rem; justify-content: center; }
.site__cta { background: #ffd23b; color: #111; padding: .5rem 1rem; border-radius: 8px; font-size: clamp(.6rem,1.4vw,.85rem); font-weight: 600; }
.site__ghost { color: #fff; padding: .5rem 1rem; font-size: clamp(.6rem,1.4vw,.85rem); }

/* ring site */
.site--ring { background: #060606; align-items: center; justify-content: center; }
.site__ring { position: absolute; width: 70%; aspect-ratio: 1; }
.site__ringcopy { position: relative; z-index: 2; text-align: center; color: #fff; }
.site__ringcopy h2 { font-size: clamp(1.4rem,4vw,3rem); font-weight: 700; line-height: 1.05; }
.site__ringcopy h2 span { font-weight: 300; opacity: .85; }
.site__cta--red { display: inline-block; margin-top: 1rem; background: var(--red); color: #fff; padding: .5rem 1.1rem; border-radius: 100px; font-size: .8rem; font-weight: 500; }

/* light app site */
.site--light { background: #f4f3ef; color: #111; flex-direction: column; }
.lite__bar { height: 14%; background: #fff; border-bottom: 1px solid #e5e3dc; }
.lite__body { margin: auto; text-align: center; }
.lite__body h2 { font-size: clamp(1.6rem,5vw,3.4rem); font-weight: 600; letter-spacing: -.03em; }
.lite__chip { display: inline-block; margin-top: .9rem; background: #111; color: #fff; padding: .4rem .9rem; border-radius: 100px; font-size: .75rem; }

/* blue site */
.site--blue { background: radial-gradient(130% 130% at 50% 0%, #1e6bff, #0a1f55 70%, #050b1f);
  color: #fff; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.blue__h { font-size: clamp(1.5rem,4.5vw,3.2rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.blue__h span { color: #8ab8ff; }
.blue__cta { margin-top: 1.1rem; background: #fff; color: #111; padding: .5rem 1.1rem; border-radius: 8px; font-size: .82rem; font-weight: 600; }

/* saaspo site */
.site--saaspo { background: #070707; color: #fff; align-items: center; justify-content: center; flex-direction: column; text-align: center; overflow: hidden; }
.saa__glow { position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%); width: 120%; height: 80%;
  background: radial-gradient(closest-side, rgba(52,211,107,.55), transparent 70%); }
.saa__h { position: relative; z-index: 2; font-size: clamp(1.5rem,4.5vw,3.2rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.saa__cta { position: relative; z-index: 2; margin-top: 1.1rem; background: #34d36b; color: #062b14; padding: .5rem 1.1rem; border-radius: 8px; font-size: .82rem; font-weight: 600; }

/* shared conic gradient ring */
.grad-6 { position: relative; background: #0c0c0c; }
.grad-6::before { content: ""; position: absolute; inset: 8%;
  background: conic-gradient(from 0deg, #ff5d3b, #ffd23b, #34d36b, #3b9dff, #b14bff, #ff5d3b);
  filter: blur(26px); opacity: .9; border-radius: 50%;
  -webkit-mask: radial-gradient(closest-side, transparent 40%, #000 56%, transparent 76%);
          mask: radial-gradient(closest-side, transparent 40%, #000 56%, transparent 76%); }

/* ---------- 3 · Testimonials ---------- */
.quotes { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 8vh; padding-bottom: 8vh; }
.quote { padding: 4vh clamp(1rem, 4vw, 4rem); text-align: center;
  display: flex; flex-direction: column; justify-content: center; }
.quotes::after { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
  background: var(--seam); transform: translateX(-50%); z-index: 1; pointer-events: none; }
.quote p { font-size: clamp(1.05rem, 1.8vw, 1.4rem); line-height: 1.45; }
.quote footer { display: flex; align-items: center; justify-content: center; gap: .7rem; margin-top: 1.8rem; color: var(--muted); font-size: .92rem; }
.quote__ava { width: 42px; height: 42px; border-radius: 50%; flex: none; }
@media (min-width: 761px) {
  /* grid spans frame-to-frame so each review centres in its own half, not pulled toward the divider */
  .quotes { padding-inline: max(var(--gutter), (100% - var(--maxw)) / 2) !important; }
}
@media (max-width: 760px) {
  .quotes { grid-template-columns: 1fr; padding-top: 0; padding-bottom: 0; }
  .quotes::after { display: none; }
  /* full-width divider between the stacked quotes: break out 1rem each side to reach the frame borders */
  .quote:first-child::after { content: ""; position: absolute; left: -1rem; right: -1rem; bottom: 0; height: 1px; background: var(--seam); }
}

/* ---------- 3b · 8 Rules ---------- */
.rules { padding-top: 16vh; padding-bottom: 16vh; }
.rules .eyebrow { margin-bottom: 2.4rem; }
.rules__list { display: flex; flex-direction: column; gap: 1rem; }
.rules__item { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; padding: .15em 0; }
.rules__h { font-size: clamp(1.9rem, 4.9vw, 3.5rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.1;
  color: rgba(10, 10, 10, .22); transition: color .55s var(--ease); }
.rules__item.is-active .rules__h { color: var(--fg); }
.rules__n { color: var(--red); font-size: .9rem; font-variant-numeric: tabular-nums; flex: none; }
@media (max-width: 600px) { .rules__h { font-size: clamp(1.5rem, 7.4vw, 2.5rem); } }

/* ---------- 4 · Selected works ---------- */
.works { max-width: var(--maxw); margin: 0 auto; padding-top: 8vh; padding-bottom: 10vh; }
.works__head { text-align: center; margin-bottom: 5vh; }
.works__title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; letter-spacing: -.03em; }
.works__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 22px); }
.card { grid-column: span 1; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  transition: transform .6s var(--ease); will-change: transform; }
.card--wide { grid-column: 1 / -1; aspect-ratio: 16/8; }
.card:hover { transform: translateY(-6px); }
.card__inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 3vw, 2.4rem); text-align: center; position: relative; }
.glow-dark { box-shadow: 0 34px 70px -34px rgba(0,0,0,.5); }
.glow-light { box-shadow: 0 24px 60px -34px rgba(0,0,0,.25); border: 1px solid var(--line); }
.glow-green { box-shadow: 0 40px 80px -34px rgba(52,211,107,.55); }
.glow-blue { box-shadow: 0 40px 80px -34px rgba(59,157,255,.6); }
.glow-yellow { box-shadow: 0 40px 80px -34px rgba(255,210,59,.5); }
.glow-purple { box-shadow: 0 34px 70px -34px rgba(177,75,255,.5); }
.glow-orange { box-shadow: 0 34px 70px -34px rgba(255,93,59,.5); }
.mini__brand { position: absolute; top: 16px; left: 18px; font-weight: 700; color: #fff; font-size: .8rem; }
.mini__h { font-size: clamp(1.1rem, 2.6vw, 2.1rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.05; color: #fff; }
.mini__h--c { color: #fff; }
.mini__h--serif { font-family: Georgia, serif; font-weight: 400; }
.mini__tag { font-size: clamp(.85rem,1.6vw,1.1rem); font-weight: 500; color: #111; }
.mini__tag--w { color: #fff; }
.site--nova-mini { background: #070707;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 38px 38px; }
.card__light { background: #f1efe9; }
.card__dark { background: #111; } .card__dark2 { background: #0d1117; } .card__dark3 { background: #14110f; } .card__dark4 { background: radial-gradient(120% 120% at 50% 120%, #5a1f0f, #0c0c0c 65%); }
.card__green { background: radial-gradient(120% 130% at 50% 130%, #1f8f4d, #061a0f 70%); }
.card__ring { display: grid; place-items: center; }
.card__blue2 { background: radial-gradient(130% 130% at 50% 0%, #1e6bff, #07153a 75%); }
.card__blue3 { background: radial-gradient(120% 120% at 70% 20%, #2b6fff, #0a1330 75%); }
.card__yellow { background: linear-gradient(135deg, #2a2a1a, #0c0c0c); }
.card__purple { background: radial-gradient(120% 120% at 30% 20%, #7b3bff, #160a33 75%); }

/* ---------- Reference card skins (modern motion-design trends) ---------- */
/* 1 · dark tech hero — aurora glow rising over a fading grid */
.mock--synapse { background: #05060a; overflow: hidden; }
.mock--synapse::before { content: ""; position: absolute; left: -15%; right: -15%; bottom: -60%; height: 120%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(124,77,255,.6), rgba(32,156,255,.28) 45%, transparent 72%);
  filter: blur(16px); }
.mock--synapse::after { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.9), transparent 70%);
  mask-image: linear-gradient(to top, rgba(0,0,0,.9), transparent 70%); }
.mock--synapse .mini__h, .mock--synapse .mini__brand { position: relative; z-index: 1; }

/* 2 · glassmorphism agency — frosted chip over a vivid gradient */
.mock--glass { background: linear-gradient(120deg, #ff9a8b, #ff6a88 38%, #7c4dff 85%); overflow: hidden; }
.mock--glass::before { content: ""; position: absolute; width: 46%; aspect-ratio: 1; border-radius: 50%;
  top: -14%; right: -10%; background: rgba(255,255,255,.35); filter: blur(34px); }
.mock--glass::after { content: ""; position: absolute; width: 38%; aspect-ratio: 1; border-radius: 50%;
  bottom: -16%; left: -8%; background: rgba(60,20,120,.45); filter: blur(38px); }
.glass-chip { position: relative; z-index: 1; display: inline-block; padding: .85rem 1.3rem; border-radius: 14px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.42);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -18px rgba(20,8,60,.45); }

/* 3 · AI neon orb — glowing sphere with an orbit ring */
.mock--neon { background: #070709; overflow: hidden; flex-direction: column; gap: clamp(.7rem, 2vw, 1.2rem); }
.mock--neon::before { content: ""; width: clamp(56px, 30%, 110px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffa27f, #ff3b2f 58%, #6f1a0e);
  box-shadow: 0 0 44px 8px rgba(255,90,60,.5); }
.mock--neon::after { content: ""; position: absolute; width: clamp(120px, 62%, 230px); aspect-ratio: 1;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.14);
  top: 50%; left: 50%; transform: translate(-50%, -62%) rotateX(64deg); }
.mock--neon .mini__tag { position: relative; z-index: 1; }

/* 4 · premium nature — deep botanical gradient with a light leak */
.mock--jungle { background: radial-gradient(130% 150% at 20% 115%, #2f9e5b, #0b3d22 48%, #041a0e 85%); overflow: hidden; }
.mock--jungle::before { content: ""; position: absolute; top: -30%; left: 18%; width: 30%; height: 160%;
  background: linear-gradient(rgba(255,255,240,.16), transparent 70%); transform: rotate(24deg); filter: blur(22px); }
.mock--jungle .mini__h { position: relative; z-index: 1; color: #eaf5ec; }

/* 5 · dreamcore liquid gradient — pastel aurora with a soft glass panel */
.mock--dream { background: linear-gradient(115deg, #a18cd1, #fbc2eb 32%, #8fd3f4 66%, #84fab0); overflow: hidden; }
.mock--dream::before { content: ""; position: absolute; width: 55%; aspect-ratio: 1; border-radius: 50%;
  top: -22%; left: 30%; background: rgba(255,255,255,.5); filter: blur(46px); }
.glass-chip--soft { background: rgba(255,255,255,.34); border-color: rgba(255,255,255,.65);
  box-shadow: 0 18px 40px -20px rgba(80,60,140,.4); }
.mini__h--ink { color: #221a3f; }

/* ---------- Reference cards as looping "video" showcases ---------- */
.card__inner.vshow { display: block; padding: 0; overflow: hidden; }
/* real media showcase (animated webp / video drop-in) */
.vmedia { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* video-showcase card: same 16:9 aspect as the media so the whole page is visible */
.card--sc { aspect-ratio: 16 / 9; align-self: start; }
/* static poster shown at rest; fades out on hover while the video plays underneath */
.vposter { z-index: 1; transition: opacity .35s var(--ease); }
.card:hover .vposter { opacity: 0; }
.vshow__page { position: absolute; top: 0; left: 0; width: 100%; min-height: 290%;
  display: flex; flex-direction: column;
  animation: vscroll 11s ease-in-out infinite; animation-delay: var(--vdel, 0s); will-change: transform; }
.vpage__hero { position: relative; flex: none; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6%; aspect-ratio: 4 / 3; }
.card--wide .vpage__hero { aspect-ratio: 2 / 1; }
.vpage__body { flex: 1; background: #f4f2ec; padding: clamp(14px, 3vw, 30px);
  display: flex; flex-direction: column; gap: clamp(8px, 1.4vw, 16px); }
.vrow { height: clamp(7px, .9vw, 11px); border-radius: 99px; background: #ddd8cc; }
.vrow--title { height: clamp(12px, 1.6vw, 20px); width: 46%; background: #c9c3b4; }
.vimg { aspect-ratio: 21 / 9; border-radius: 10px; flex: none;
  background: linear-gradient(120deg, #e8e4da, #d4cfc2 60%, #e2ddd1); }
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1.4vw, 16px); }
.vgrid span { aspect-ratio: 4 / 3; border-radius: 8px; background: #e6e1d5; }
.vband { aspect-ratio: 21 / 6; border-radius: 10px; flex: none; }
.vcap { position: absolute; left: 12px; bottom: 12px; z-index: 2; padding: .45rem .85rem;
  border-radius: 9px; background: rgba(10,10,10,.6); color: #fff; font-size: .8rem; font-weight: 500;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
@keyframes vscroll {
  0%, 10% { transform: translateY(0); }
  42%, 54% { transform: translateY(-30%); }
  84%, 92% { transform: translateY(-58%); }
  100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .vshow__page { animation: none; } }
.card__orange { background: radial-gradient(120% 130% at 50% 120%, #ff5d3b, #1a0a06 70%); }
.works__cta { text-align: center; margin-top: 6vh; }
@media (max-width: 640px) { .works__grid { grid-template-columns: 1fr; } .card, .card--wide { grid-column: 1 / -1; } }

/* ---------- Dark regions ---------- */
.mission, .problems, .benefits, .process, .cta, .bstrip, .footer {
  --fg: #f3f1ec; --muted: #8d8c87; --line: rgba(255,255,255,.10); --bk: rgba(255,255,255,.14);
  --side: #050505; --panel: #0b0b0a;
  --hatch: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 1px, transparent 1px 11px);
  --mark: url("assets/white.svg");
  --seam: rgba(255, 255, 255, 0.1);          /* section divider line (~--white-10) */
  color: var(--fg);
}

/* ---------- 5 · Mission ---------- */
.mission { padding-top: 12vh; padding-bottom: 12vh; }
.mission__card { max-width: 760px; margin: 0 auto; position: relative;
  background: #161615; border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  padding: clamp(1.8rem, 4vw, 3.4rem); }
.rivet { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #3a3a38; }
.rivet--tl { top: 16px; left: 16px; } .rivet--tr { top: 16px; right: 16px; }
.rivet--bl { bottom: 16px; left: 16px; } .rivet--br { bottom: 16px; right: 16px; }
.mission__body p { font-size: clamp(1rem, 1.6vw, 1.15rem); margin-bottom: 1.1rem; color: #ecebe6; }
.mission__list { list-style: none; margin: .2rem 0 1.1rem; }
.mission__list li { display: flex; gap: .7rem; padding: .18rem 0; font-size: clamp(1rem,1.6vw,1.15rem); color: #ecebe6; }
.mission__list span { color: var(--red); font-weight: 600; }
.mission__author { display: flex; align-items: center; gap: .8rem; margin: 1.6rem 0 2rem; font-size: .95rem; }
.mission__author strong { font-weight: 600; }
.mission__ava { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.mission__btns { display: flex; gap: .7rem; flex-wrap: wrap; }

/* ---------- Process (carried over) ---------- */
.process { max-width: 1080px; margin: 0 auto; padding-top: 16vh; padding-bottom: 8vh; text-align: center; }
.process__head { margin-bottom: 6vh; }
.display--mix .muted { font-weight: 300; }
.step { margin-bottom: 12vh; }
.step__visual { position: relative; min-height: 240px; display: flex; align-items: center; justify-content: center; margin-bottom: 2.5rem; }
.step__text { max-width: 44ch; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }
.step__text strong { color: var(--fg); }
.tagcloud { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; max-width: 720px; }
.tag { border: 1px solid var(--line); border-radius: 100px; padding: .55rem 1.1rem; font-size: .82rem;
  color: var(--muted); white-space: nowrap; background: rgba(255,255,255,.02); will-change: transform;
  transition: color .3s, border-color .3s; }
.tag:hover { color: var(--fg); border-color: rgba(255,255,255,.4); }
.chart { position: relative; width: 100%; max-width: 720px; height: clamp(200px, 30vw, 300px); }
.chart__svg { width: 100%; height: 100%; display: block; overflow: visible; }
.chart__area { opacity: 0; }
.chart__dot { position: absolute; left: 27.5%; top: 66%; width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 5px rgba(52,211,107,.25); transform: translate(-50%,-50%) scale(0); }
.process__cta { margin-top: 2vh; }

/* process ruler */
.pruler { position: absolute; left: clamp(4px, 1vw, 10px); top: 22px; bottom: 22px; width: 26px; z-index: 2; pointer-events: none; }
.pruler__track, .pruler__fill { position: absolute; top: 0; left: 11px; width: 7px;
  background-image: repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 12px); }
.pruler__track { bottom: 0; color: var(--line); }
.pruler__fill { height: calc(var(--p, 0) * 100%); color: var(--red); overflow: hidden; }
.pruler__dot { position: absolute; left: 14px; top: calc(var(--p, 0) * 100%); width: 7px; height: 7px;
  border-radius: 50%; background: var(--red); transform: translate(-50%, -50%); box-shadow: 0 0 0 4px rgba(255,59,47,.18); }
.pruler__val { position: absolute; left: 24px; top: calc(var(--p, 0) * 100%); transform: translateY(-50%);
  font-family: "JetBrains Mono", monospace; font-size: .68rem; color: var(--red); }
@media (max-width: 760px) { .pruler { display: none; } }

/* ---------- 11 · Final CTA ---------- */
.cta { padding: 9vh var(--gutter); }
.browser--cta { max-width: var(--maxw); margin: 0 auto; }
.cta__stage { position: relative; background: #fb3a20; aspect-ratio: 16/9; overflow: hidden;
  display: flex; align-items: center; justify-content: center; }
.cta__panel { position: relative; z-index: 3; text-align: center; color: #fff; padding: 0 1rem; max-width: 92%; }
.cta__title { font-size: clamp(1.9rem, 5.6vw, 4.6rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.02; }
.cta__title .dim { color: rgba(255,255,255,.52); }
.cta__sub { margin: 1.1rem 0 1.8rem; font-size: clamp(.95rem, 1.8vw, 1.3rem); color: rgba(255,255,255,.95); }
.cta__btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta__card { position: absolute; width: clamp(160px, 27%, 340px); border-radius: 12px; overflow: hidden;
  background: #151515; border: 1px solid rgba(0,0,0,.25); box-shadow: 0 26px 50px -18px rgba(0,0,0,.55); z-index: 1; }
.cta__card .mock__body { aspect-ratio: 16/10; padding: 1.1rem; }
.cta__card .mini__h, .cta__card .mini__tag { font-size: clamp(.8rem, 1.6vw, 1.2rem); }
.cta__card--tl { top: -7%; left: -5%; transform: rotate(-8deg); }
.cta__card--tr { top: -9%; right: -5%; transform: rotate(7deg); }
.cta__card--bl { bottom: -9%; left: -4%; transform: rotate(6deg); }
.cta__card--br { bottom: -7%; right: -5%; transform: rotate(-7deg); }
.chatpill--ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); color: #fff; }
.chatpill--ghost:hover { border-color: rgba(255,255,255,.75); }
@media (max-width: 760px) { .cta__stage { aspect-ratio: 3/4; } .cta__card { width: 46%; } }

/* ---------- 12 · Benefit strip ---------- */
.bstrip { padding: 0 var(--gutter); }
.bstrip__row { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.bstrip__item { display: flex; align-items: center; gap: .9rem; padding: 1.7rem 1rem; border-right: 1px solid var(--line); font-size: 1.05rem; font-weight: 500; }
.bstrip__item:last-child { border-right: none; }
.bstrip__item .bicon { width: 40px; height: 40px; border-radius: 9px; margin-bottom: 0; flex: none; }
@media (max-width: 760px) { .bstrip__row { grid-template-columns: 1fr; } .bstrip__item { border-right: none; border-bottom: 1px solid var(--line); } .bstrip__item:last-child { border-bottom: none; } }

/* ---------- 13 · Footer ---------- */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 10vh var(--gutter) 2.5rem; text-align: center; }
.footer__mark { font-size: clamp(5rem, 31vw, 25rem); font-weight: 700; letter-spacing: -.05em;
  line-height: .82; text-align: center; color: var(--fg); margin: 9vh 0 3vh; overflow: hidden; }
.footer__title { margin-bottom: 0; }
.footer__title i { font-weight: 300; color: var(--muted); }
.footer__mail { display: inline-block; margin-top: 2.2rem; font-size: clamp(1.2rem, 3.4vw, 2.2rem); position: relative; }
.footer__mail::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.footer__mail:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 12vh;
  padding-top: 2rem; border-top: 1px solid var(--line); text-align: left; }
.footer__col { display: flex; flex-direction: column; gap: .55rem; font-size: .95rem; }
.footer__col a { color: var(--muted); transition: color .3s; width: fit-content; }
.footer__col a:hover { color: var(--fg); }
.footer__h { color: var(--fg); margin-bottom: .3rem; }
.footer__base { display: flex; justify-content: space-between; margin-top: 6vh; font-size: .85rem; color: var(--muted); }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ---------- 6 · Benefits ---------- */
.benefits { max-width: var(--maxw); margin: 0 auto; padding-top: 14vh; padding-bottom: 10vh; }
.benefits__title { font-size: clamp(2rem, 5.5vw, 4rem); font-weight: 600; letter-spacing: -.03em;
  line-height: 1.05; max-width: 18ch; margin-bottom: 6vh; }
.benefits__title .dim { color: var(--muted); }
.benefits__wrap { position: relative; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: 16px; }
.bcard { padding: clamp(1.4rem, 3vw, 2.6rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; min-height: clamp(220px, 22vw, 280px); }
.bcard:nth-child(3n) { border-right: none; }
.bcard:nth-last-child(-n+3) { border-bottom: none; }
.bicon { width: 46px; height: 46px; border-radius: 11px; background: rgba(255,255,255,.06);
  display: grid; place-items: center; color: #fff; margin-bottom: auto; }
.bicon svg { width: 22px; height: 22px; }
.bcard h3 { font-size: 1.25rem; font-weight: 600; margin: 2.2rem 0 .6rem; letter-spacing: -.01em; }
.bcard p { color: var(--muted); font-size: .98rem; max-width: 32ch; }
.badge { position: absolute; top: -15px; right: 24px; background: var(--red); color: #fff;
  font-family: "JetBrains Mono", monospace; font-size: .75rem; padding: .4rem 1.1rem; border-radius: 6px;
  transform: rotate(-3deg); z-index: 3; box-shadow: 0 8px 20px -6px rgba(255,59,47,.5); }
.badge::before, .badge::after { content: ""; position: absolute; top: 50%; width: 5px; height: 5px;
  border-radius: 50%; background: #fff; transform: translateY(-50%); }
.badge::before { left: 6px; } .badge::after { right: 6px; }
@media (max-width: 760px) { .benefits__grid { grid-template-columns: 1fr 1fr; }
  .bcard:nth-child(3n) { border-right: 1px solid var(--line); } .bcard:nth-child(2n) { border-right: none; }
  .bcard:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); } }
@media (max-width: 520px) { .benefits__grid { grid-template-columns: 1fr; } .bcard { border-right: none !important; } }

/* ---------- 5b · The problem ---------- */
.problems { padding-top: 14vh; padding-bottom: 12vh; }
.problems__head { text-align: center; max-width: 44rem; margin: 0 auto 9vh; }
.problems__head .eyebrow { margin-bottom: 1.6rem; }
.problems__title { font-size: clamp(2rem, 5.2vw, 3.6rem); font-weight: 600; letter-spacing: -.03em;
  line-height: 1.06; color: var(--muted); }
.problems__title .on { color: var(--fg); }
.problems__sub { margin-top: 1.8rem; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.5; }
.problems__sub b { color: var(--fg); font-weight: 500; }
.problems__list { display: flex; flex-direction: column; gap: clamp(2.5rem, 7vh, 6rem); }
.problems__item { display: grid; grid-template-columns: clamp(300px, 42vw, 510px) clamp(240px, 30vw, 360px);
  justify-content: center; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.problems__viz { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: clamp(1.4rem, 3vw, 2.6rem); }
.problems__ctitle { font-size: clamp(1.3rem, 2.3vw, 1.7rem); font-weight: 600; letter-spacing: -.02em; }
.problems__ctext { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; line-height: 1.55; max-width: 34ch; }
.problems__ctext b { color: var(--fg); font-weight: 500; }

/* problem visualisations */
.pviz-grid { display: grid; grid-template-columns: repeat(8, 1fr); aspect-ratio: 8 / 5; gap: 6px; }
.pviz-sq { background: #252525; border-radius: 6px; }
.pviz-sq.on { background: var(--red); }
.pviz-sq.dim { background: #4a2825; }
.pviz-bars, .pviz-accel { display: flex; align-items: flex-end; gap: 6px; aspect-ratio: 8 / 5; }
.pviz-bars .b { flex: 1; background: #252525; border-radius: 6px; min-height: 6px;
  transition: height 1s ease, background-color .4s ease; }
.pviz-bars .b.on { background: var(--red); }
.pviz-accel .b { flex: 1; height: 100%; background: #252525; border-radius: 6px; }

@media (max-width: 760px) {
  .problems__item { grid-template-columns: minmax(0, 480px); gap: 1.6rem; }
  .problems__content { text-align: center; }
  .problems__ctext { margin-inline: auto; }
}

/* ---------- Process mocks (Design + Build) ---------- */
.mock { border-radius: 12px; overflow: hidden; background: #151515; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); }
.mock__bar { height: 30px; display: flex; align-items: center; gap: 7px; padding: 0 12px; background: #1c1c1c; border-bottom: 1px solid rgba(255,255,255,.05); }
.mock__bar i { width: 9px; height: 9px; border-radius: 50%; background: #3a3a3a; }
.mock__body { aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center; }
.mock__copy { color: #fff; font-size: clamp(1rem, 2.4vw, 1.7rem); font-weight: 600; line-height: 1.1; }
.mock__copy span { font-weight: 300; opacity: .85; }
.mock__copy--center { text-align: center; }
.mock__label { position: absolute; top: -22px; left: 6px; font-size: .72rem; color: #6ea8ff; font-family: "JetBrains Mono", monospace; }
.mock__pillbtn { position: absolute; bottom: 14%; background: var(--red); color: #fff; font-size: .65rem; padding: .35rem .8rem; border-radius: 100px; font-weight: 500; }
.grad-5 { background: radial-gradient(130% 130% at 30% 10%, #b9a6ff, #5a3fd6 55%, #140d33); }
.designcards { position: relative; width: 100%; max-width: 720px; height: clamp(280px, 40vw, 420px); perspective: 1400px; }
.designcards .mock { position: absolute; width: clamp(220px, 46%, 420px); top: 50%; left: 50%; }
.mock--tilt-a { transform: translate(-78%, -52%) rotate(-9deg) translateY(var(--py, 0px)); filter: brightness(.78); }
.mock--tilt-b { transform: translate(-22%, -48%) rotate(5deg) translateY(var(--py, 0px)); z-index: 2; }
.mock--tilt-b .mock__body { aspect-ratio: 16/11; }
.editor { position: relative; width: 100%; max-width: 820px; border-radius: 12px; overflow: hidden; background: #131313; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 50px 90px -40px rgba(0,0,0,.85); }
.editor__chrome { height: 30px; display: flex; align-items: center; gap: 7px; padding: 0 12px; background: #1b1b1b; }
.editor__chrome i { width: 9px; height: 9px; border-radius: 50%; background: #3a3a3a; }
.editor__body { display: grid; grid-template-columns: 140px 1fr 150px; height: clamp(260px, 34vw, 380px); }
.editor__side, .editor__panel { padding: 14px 12px; display: flex; flex-direction: column; gap: 11px; background: #161616; }
.editor__panel { border-left: 1px solid rgba(255,255,255,.05); }
.editor__side { border-right: 1px solid rgba(255,255,255,.05); }
.editor__row { height: 8px; border-radius: 3px; background: #2a2a2a; }
.editor__row--on { background: #3b9dff; }
.editor__ctl { height: 22px; border-radius: 4px; background: #232323; }
.editor__ctl--sm { height: 14px; width: 60%; }
.editor__canvas { position: relative; background: #0d0d0d; padding: 18px; }
.editor__site { position: relative; width: 100%; height: 100%; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.editor__float { position: absolute; display: inline-flex; align-items: center; gap: .5rem; background: rgba(20,20,20,.7); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: .55rem 1rem; font-size: .85rem; font-weight: 500; z-index: 5; box-shadow: 0 10px 30px -10px rgba(0,0,0,.7); }
.editor__float--l { top: 30%; left: 24%; } .editor__float--r { top: 26%; right: 22%; }
.editor__ava { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #ff5d3b, #b14bff); }
@media (max-width: 760px) { .editor__body { grid-template-columns: 70px 1fr; } .editor__panel { display: none; } }

/* ---------- 8 · Pricing ---------- */
.pricing { max-width: var(--maxw); margin: 0 auto; padding-top: 12vh; padding-bottom: 12vh;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
/* heading pins to the top, then releases at the bottom of the section */
.pricing__head { align-self: start; position: sticky; top: clamp(2.5rem, 9vh, 6rem); }
.pricing__title { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.pricing__title .dim { color: var(--dim); }
.pricing__card { position: relative; background: #f4f3ee; border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.6rem); }
.badge--card { top: -14px; right: 30px; }
.pricing__plan { font-size: 1.2rem; font-weight: 600; margin-bottom: .4rem; }
.pricing__tag { color: var(--muted); margin-bottom: 1.2rem; }
.pricing__price { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 1.6rem; }
.pricing__price span { font-size: .36em; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.pricing__btns { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pricing__feats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; margin-bottom: 1.8rem; }
.pricing__feats li { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.pricing__table { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.ptrow { display: flex; justify-content: space-between; padding: .85rem 1.1rem; font-size: .95rem; border-bottom: 1px solid var(--line); }
.ptrow:last-child { border-bottom: none; }
.ptrow--head { font-weight: 600; }
.ptrow span:last-child { color: var(--muted); }
.ptrow--head span:last-child { color: var(--fg); }
@media (max-width: 820px) { .pricing { grid-template-columns: 1fr; } .pricing__head { order: -1; position: static; } }

/* ---------- 9 · Single testimonial + logos ---------- */
.single { max-width: var(--maxw); margin: 0 auto; padding: 14vh var(--gutter) 12vh; text-align: center; }
/* logo strip: its own framed section, content spans the full container (like the hero) */
.logorow { padding-inline: max(var(--gutter), (100% - var(--maxw)) / 2) !important; }
.single__quote p { font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.4; max-width: 26ch; margin: 0 auto; }
.single__quote footer { display: flex; align-items: center; justify-content: center; gap: .7rem; margin-top: 2rem; color: var(--muted); }
.single__ava { width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #6fe3c8, #2aa088); }
.logos { display: grid; grid-template-columns: repeat(4, 1fr); }
.logo { padding: 2.2rem 1rem; text-align: center; border-right: 1px solid var(--seam); color: #a4a39d; font-size: 1.1rem; font-weight: 600; letter-spacing: -.01em; }
.logo:last-child { border-right: none; }
@media (max-width: 640px) { .logos { grid-template-columns: 1fr 1fr; } .logo:nth-child(2n) { border-right: none; } }

/* ---------- 10 · FAQ ---------- */
.faq { max-width: 1000px; margin: 0 auto; padding-top: 6vh; padding-bottom: 16vh; }
.faq__head { margin-bottom: 5vh; }
.faq__title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -.03em; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.qa { background: #f1efe9; border-radius: 12px; overflow: hidden; }
.qa__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 1.6rem; background: none; border: none; font: inherit; font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--fg); cursor: pointer; text-align: left; }
.qa__ico { font-size: 1.5rem; line-height: 1; flex: none; transition: transform .4s var(--ease); }
.qa.is-open .qa__ico { transform: rotate(45deg); }
.qa__a { height: 0; overflow: hidden; }
.qa__a p { padding: 0 1.6rem 1.5rem; color: var(--muted); max-width: 64ch; }

/* ============ Mobile nav ============ */
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .35s var(--ease), opacity .2s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navmenu { position: fixed; inset: 0; z-index: 950; background: var(--bg); display: none;
  flex-direction: column; justify-content: flex-start; gap: 0; padding: 5rem var(--gutter) 2rem;
  transform: translateY(-100%); transition: transform .55s var(--ease); overflow-y: auto; }
.navmenu__group { border-bottom: 1px solid var(--line); }
.navmenu__head { display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: inherit; font-size: 1.5rem; font-weight: 600; letter-spacing: -.02em; color: var(--fg);
  background: none; border: 0; cursor: pointer; padding: 1.05rem 0; text-align: left; }
.navmenu__head svg { width: 20px; height: 20px; opacity: .55; transition: transform .3s var(--ease); flex: none; }
.navmenu__group.is-open .navmenu__head svg { transform: rotate(180deg); }
.navmenu__sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.navmenu__group.is-open .navmenu__sub { grid-template-rows: 1fr; }
.navmenu__sub-in { overflow: hidden; min-height: 0; display: flex; flex-direction: column; }
.navmenu__sub a { font-size: 1.05rem; font-weight: 500; color: var(--muted); padding: .5rem 0; }
.navmenu__sub a:first-child { padding-top: .2rem; }
.navmenu__sub a:last-child { padding-bottom: 1.1rem; }
.navmenu__link { font-size: 1.5rem; font-weight: 600; letter-spacing: -.02em; color: var(--fg);
  padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.navmenu__chat { font-size: 1.5rem; font-weight: 600; color: var(--red) !important; padding: 1.4rem 0; }

/* ============ Floating CTA pill ============ */
.floatcta { position: fixed; left: 50%; bottom: clamp(1rem, 3vh, 2rem); transform: translate(-50%, 26px);
  z-index: 940; display: flex; align-items: center; gap: .15rem; padding: .3rem;
  background: rgba(245,243,238,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,.08); border-radius: 100px; box-shadow: 0 14px 40px -12px rgba(0,0,0,.35);
  opacity: 0; pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.floatcta.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.floatcta__link { padding: .55rem 1.1rem; font-size: .92rem; font-weight: 500; color: #111; border-radius: 100px; }
.floatcta__chat { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1.1rem .4rem .4rem;
  background: #fff; border-radius: 100px; font-size: .92rem; font-weight: 500; color: #111; box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.floatcta__ava { width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffd0a8, #b06a3a); }

/* ============ Floating CTA pill ============ */
.floatcta {
  position: fixed; left: 50%; bottom: clamp(1rem, 3.5vh, 2rem);
  transform: translate(-50%, 24px); z-index: 940;
  display: flex; align-items: center; gap: .25rem; padding: .35rem;
  background: rgba(244, 242, 236, 0.82); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,.08); border-radius: 100px;
  box-shadow: 0 16px 44px -14px rgba(0,0,0,.35);
  opacity: 0; pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.floatcta.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.floatcta__link { padding: .58rem 1.2rem; font-size: .92rem; font-weight: 500; color: #111; border-radius: 100px;
  transition: background .25s; }
.floatcta__link:hover { background: rgba(0,0,0,.05); }
.floatcta__chat { display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem 1.1rem .4rem .4rem; background: #fff; color: #111; border-radius: 100px;
  font-size: .92rem; font-weight: 500; box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: transform .25s var(--ease); }
.floatcta__chat:hover { transform: scale(1.02); }
.floatcta__ava { width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd0a8, #b06a3a); flex: none; }
@media (max-width: 420px) { .floatcta__link, .floatcta__chat { font-size: .85rem; } .floatcta__ava { width: 24px; height: 24px; } }
@media (max-width: 760px) {
  .navmenu { display: flex; }
  .navmenu.is-open { transform: translateY(0); }
  .nav { z-index: 1000; }
  .nav__burger { display: flex; }
  .nav__chat { display: none; }
}

/* ============ Responsive refinements ============ */
@media (max-width: 1024px) { .step__visual { min-height: 200px; } }
@media (max-width: 760px) {
  .hero { min-height: 86svh; }
  .hero__btns { flex-wrap: wrap; }
  .quote { padding: 7vh 1rem; }
}
@media (max-width: 560px) {
  .footer__base { flex-direction: column; gap: .4rem; align-items: center; text-align: center; }
  .single__quote footer { flex-direction: column; gap: .6rem; }
  .hero__btns .btn, .cta__btns .btn, .cta__btns .chatpill { width: 100%; justify-content: center; }
}
@media (max-width: 520px) {
  .pricing__feats { grid-template-columns: 1fr; }
}

/* ---- Global media safety: nothing overflows its container ---- */
img, svg, video, canvas { max-width: 100%; }
.navmenu { overflow-y: auto; }

/* ---- Tablet (portrait/landscape) ---- */
@media (min-width: 761px) and (max-width: 1024px) {
  .work, .process, .footer, .faq { padding-top: 12vh; }
  .quote p { font-size: clamp(1.05rem, 2.4vw, 1.35rem); }
}

/* ---- Small phones (≤400px) ---- */
@media (max-width: 400px) {
  :root { --gutter: 1.1rem; }
  .badge { right: 12px; }
  .pricing__price { font-size: clamp(2.2rem, 11vw, 2.8rem); }
  .mission__card { padding: 1.5rem 1.2rem; }
  .qa__q { padding: 1.15rem 1.2rem; font-size: 1rem; }
  .qa__a p { padding: 0 1.2rem 1.2rem; }
  .bcard { min-height: 0; padding: 1.6rem 1.1rem; }
  .bicon { margin-bottom: 1.4rem; }
  .cta__card { width: 42%; }
}

/* ---- Very small phones (≤340px) ---- */
@media (max-width: 340px) {
  .hero__title { font-size: clamp(1.9rem, 9.5vw, 2.4rem); }
  .nav { padding: .8rem var(--gutter); }
}

/* ---- Landscape phones / short viewports ---- */
@media (max-height: 540px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 16vh; padding-bottom: 8vh; }
  .navmenu { padding-top: 3.5rem; }
  .navmenu__head, .navmenu__link, .navmenu__chat { font-size: 1.25rem; padding-top: .75rem; padding-bottom: .75rem; }
}

/* ---- Ultra-wide / 4K: widen the column a touch so margins don't get huge ---- */
@media (min-width: 2200px) {
  :root { --maxw: 1560px; }
  body { font-size: 17px; }
}
@media (min-width: 2600px) { body { font-size: 19px; } :root { --maxw: 1760px; } }

/* ---------- Reveal helpers ---------- */
.js [data-fade] { opacity: 0; transform: translateY(20px); }
.js [data-card] { opacity: 0; transform: translateY(44px); }
.js [data-tilt-group] { opacity: 0; transform: translateY(50px); }

.reveal-all .loader { display: none !important; }
.reveal-all [data-hero-line] { transform: translateY(0) !important; }
.reveal-all [data-fade], .reveal-all [data-card], .reveal-all [data-tilt-group] { opacity: 1 !important; transform: none !important; }
.reveal-all .chart__area { opacity: 1 !important; }
.reveal-all .chart__dot { transform: translate(-50%,-50%) scale(1) !important; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .loader { display: none !important; }
  [data-fade], [data-hero-line], .loader__word { opacity: 1 !important; transform: none !important; }
  .chart__area { opacity: 1 !important; } .chart__line { stroke-dashoffset: 0 !important; }
  .chart__dot { transform: translate(-50%,-50%) scale(1) !important; }
}
