/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --ink: #112b2b;
  --ink-2: #3d5252;
  --ink-3: #7a8888;
  --white: #ffffff;
  --surface: #f3f4f2;
  --surface-2: #e8ebe9;
  --blue: #1f78bd; /* summer sky: the hue of the hero photo's sky, lifted */
  --orange: #ff713d;
  --orange-hover: #ff8757;

  /* Spacing: one 4px scale. Every margin, padding and gap uses a step from it. */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;  --s-5: 20px;  --s-6: 24px;  --s-8: 32px;
  --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Type: one scale. Sizes and line heights both land on the 4px grid. */
  --t-12: 12px; --lh-12: 16px;
  --t-14: 14px; --lh-14: 20px;
  --t-16: 16px; --lh-16: 24px;
  --t-18: 18px; --lh-18: 28px;
  --t-20: 20px; --lh-20: 28px;
  --t-24: 24px; --lh-24: 32px;
  --t-28: 28px; --lh-28: 32px;
  --t-36: 36px; --lh-36: 44px;
  --t-48: 48px; --lh-48: 56px;
  --t-64: 64px; --lh-64: 64px;
  --t-88: 88px; --lh-88: .86; /* tight display leading: the g of "right" still clears "little" */

  /* Layout: a 12-column content grid, and two edges only.
     Text and UI sit on the content edge. Photo panels sit --inset from the screen edge. */
  --content: 1248px;
  --gutter: var(--s-12);
  --gap: var(--s-4);
  --inset: var(--s-4);
  --section: var(--s-32);
  --head-gap: var(--s-16);
  --edge: max(var(--gutter), (100vw - var(--content)) / 2);

  --radius-sm: 16px;
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --lift: cubic-bezier(.34, 1.4, .64, 1); /* a small overshoot, so a lift feels physical */
}
@media (max-width: 1100px) {
  :root { --gutter: var(--s-10); --section: var(--s-24); --head-gap: var(--s-12);
    --t-88: 72px; --t-64: 56px; --lh-64: 56px; --t-48: 40px; --lh-48: 48px; --t-36: 32px; --lh-36: 40px; }
}
@media (max-width: 640px) {
  :root { --gutter: var(--s-6); --gap: var(--s-3); --inset: var(--s-3); --section: var(--s-20); --head-gap: var(--s-10);
    --t-88: 48px; --t-64: 40px; --lh-64: 44px; --t-48: 32px; --lh-48: 40px; --t-36: 28px; --lh-36: 36px;
    --t-28: 24px; --lh-28: 28px; --t-20: 18px; --lh-20: 28px; }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--s-20); }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-16);
  line-height: var(--lh-16);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, blockquote, figure { margin: 0; }
em { font-style: normal; }

.wrap { width: min(100% - 2 * var(--gutter), var(--content)); margin-inline: auto; }
/* Inside an inset panel the panel already took --inset, so content still lands on the page's content edge */
.arc .wrap, .close .wrap, .footer .wrap { width: min(100% - 2 * (var(--gutter) - var(--inset)), var(--content)); }
.nw { white-space: nowrap; }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); }

/* Inline logo: wherever the copy says FUO, the wordmark appears in the text colour */
.fuo {
  display: inline-block;
  height: .92em; aspect-ratio: 2664 / 1571;
  vertical-align: -.08em;
  margin: 0 .04em;
  background: currentColor;
  -webkit-mask: url("assets/fuo-mark.svg") no-repeat left bottom / contain;
          mask: url("assets/fuo-mark.svg") no-repeat left bottom / contain;
}

/* ─── Type ───────────────────────────────────────────── */
.hero-title, .display-2, .moment-list button, .arc-words .w, .close-title, .footer-line, .stat-n,
.dup-k, .invite-title, .app-hello, .ahc-title, .ahc-stats b, .live-count span, .ui-count b, .ui-stats b, .cmp-head > span {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  word-spacing: .02em;
}
/* Large display sizes get a touch of negative tracking, scaled to size */
.hero-title, .close-title, .arc-words .w { letter-spacing: -.012em; }
.display-2, .stat-n { letter-spacing: -.008em; }
.footer-line { letter-spacing: -.004em; }

/* Trim text boxes to cap height and baseline, so every gap is measured letter to letter */
.hero-title, .hero-lede, .display-2, .section-lede, .label, .logos-title,
.stat-k, .stat-n, .dup-k, .close-title, .footer-line, .moment-text, .cmp-head > span {
  text-box: trim-both cap alphabetic;
}
.hero-lede, .display-2, .close-title { text-wrap: balance; }
.section-lede, .moment-text, .stat-d, .faq-list details p, .quote blockquote { text-wrap: pretty; }

.label { font-family: var(--standard); font-size: var(--t-14); line-height: var(--lh-14); font-weight: 500; color: var(--ink-3); margin-bottom: var(--s-6); }
.label-accent { color: var(--blue); }
.label-light { color: rgba(255,255,255,.72); }

.display-2 { font-size: var(--t-64); line-height: var(--lh-64); }
.display-2 em { color: var(--ink-3); }

/* ─── Buttons: raised pills, lit from above ──────────── */
/* Each button is a small object: a top-lit gradient, a bright top edge, a soft
   darker lip at the bottom and a shadow tinted by its own colour. On hover it
   lifts and a band of light sweeps across once; on press it sinks. */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  height: var(--s-12); padding: 0 var(--s-6); border-radius: 999px;
  font-family: var(--standard); font-size: var(--t-16); line-height: var(--lh-16); font-weight: 500;
  white-space: nowrap;
  transition: transform .4s var(--lift), box-shadow .35s var(--ease), filter .25s var(--ease);
}
.btn::after {
  content: ""; position: absolute; z-index: -1; inset-block: 0; left: -48%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,var(--sheen, .45)), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-sm { height: var(--s-10); padding: 0 var(--s-4); font-size: var(--t-14); line-height: var(--lh-14); }
.btn-arrow { width: var(--s-4); height: var(--s-4); margin-inline-end: -2px; flex: none; transition: transform .4s var(--lift); }
.btn-arrow:dir(rtl) { scale: -1 1; }
@media (hover: hover) {
  .btn:hover { transform: translateY(-1px); }
  .btn:hover::after { animation: sheen .8s cubic-bezier(.4, 0, .3, 1); }
  .btn:hover .btn-arrow { transform: translateX(3px); }
  .btn:hover .btn-arrow:dir(rtl) { transform: translateX(-3px); }
}
@keyframes sheen { to { transform: translateX(370%) skewX(-18deg); } } /* crosses the full width, exits just as it ends */
.btn:active { transform: translateY(0) scale(.98); transition-duration: .08s; }

.btn-primary {
  color: var(--white); text-shadow: 0 1px 1px rgba(140,40,5,.35);
  background: linear-gradient(180deg, #ff8d58 0%, #f5692f 50%, #e8561e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -2px 4px rgba(176,56,12,.22),
    0 1px 2px rgba(150,50,10,.25),
    0 6px 16px -6px rgba(255,100,45,.6);
}
.btn-primary:active { box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 2px 6px rgba(176,56,12,.3), 0 1px 1px rgba(150,50,10,.2); }

.btn-soft {
  --sheen: .9;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f1f3f1 55%, #e9ecea 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -2px 3px rgba(17,43,43,.06),
    0 1px 2px rgba(17,43,43,.12),
    0 6px 14px -6px rgba(17,43,43,.2);
}
.btn-soft:active { box-shadow: inset 0 2px 5px rgba(17,43,43,.1), 0 1px 1px rgba(17,43,43,.1); }

.btn-dark {
  --sheen: .16;
  color: var(--white);
  background: linear-gradient(180deg, #2f4f4b 0%, #16302f 55%, #0c2323 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    inset 0 -2px 4px rgba(0,0,0,.3),
    0 1px 2px rgba(0,0,0,.2),
    0 6px 16px -6px rgba(17,43,43,.55);
}
.btn-dark:active { box-shadow: inset 0 2px 6px rgba(0,0,0,.35), 0 1px 1px rgba(0,0,0,.2); }

.btn-ghost-light {
  --sheen: .35;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255,255,255,.32) 0%, rgba(255,255,255,.12) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -1px 2px rgba(255,255,255,.06),
    0 6px 16px -8px rgba(0,0,0,.45);
  backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
}
@media (hover: hover) {
  .btn-primary:hover { filter: brightness(1.04) saturate(1.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.6), inset 0 -2px 4px rgba(176,56,12,.2), 0 2px 3px rgba(150,50,10,.22), 0 12px 24px -8px rgba(255,100,45,.7); }
  .btn-soft:hover { box-shadow: inset 0 1px 0 #fff, inset 0 -2px 3px rgba(17,43,43,.06), 0 2px 3px rgba(17,43,43,.12), 0 10px 20px -8px rgba(17,43,43,.24); }
  .btn-dark:hover { filter: brightness(1.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.24), inset 0 -2px 4px rgba(0,0,0,.3), 0 2px 3px rgba(0,0,0,.2), 0 12px 24px -8px rgba(17,43,43,.6); }
  .btn-ghost-light:hover { background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,.18) 100%); }
}

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

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(1.6); -webkit-backdrop-filter: blur(18px) saturate(1.6);
}
.nav-inner { width: min(100% - 2 * var(--gutter), var(--content)); margin-inline: auto; height: var(--s-16); display: flex; align-items: center; gap: var(--s-12); }
.nav-mark { display: block; flex: none; height: 28px; }
.nav-mark img { height: 100%; width: auto; transform: translateY(-1px); /* optical: sits the logo's baseline on the links' baseline */ }
.nav-links { display: flex; gap: var(--s-8); font-family: var(--standard); font-size: var(--t-14); line-height: var(--lh-14); font-weight: 500; color: var(--ink-2); }
.nav-links a, .nav-login { transition: color .2s; }
.nav-links a:hover, .nav-login:hover { color: var(--ink); }
.nav-actions { margin-inline-start: auto; display: flex; align-items: center; gap: var(--s-6); font-family: var(--standard); font-size: var(--t-14); line-height: var(--lh-14); font-weight: 500; color: var(--ink-2); }

/* ─── Shared photo texture ───────────────────────────── */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .08; mix-blend-mode: overlay;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 45%, rgba(0,0,0,0) 65%);
}

/* ─── Hero ───────────────────────────────────────────── */
/* Rhythm: nav · 48 · pill · 32 · title · 40 · lede · 32 · buttons · 24 · proof · 48 · photo
   (title → lede is wider than the title's own line gap, so the lede reads as its own step) */
.hero { padding-top: calc(var(--s-16) + var(--s-12)); }
.hero-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-title { font-size: var(--t-88); line-height: var(--lh-88); margin-top: var(--s-8); }
.hero-lede { margin-top: var(--s-10); max-width: 34rem; font-size: var(--t-20); line-height: var(--lh-20); color: var(--ink-2); }
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; justify-content: center; margin-top: var(--s-8); }

.hero-media {
  position: relative; overflow: hidden;
  margin: var(--s-12) var(--inset) 0;
  height: clamp(560px, 80vh, 880px);
  border-radius: var(--radius-lg);
  background: var(--blue);
}
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }

/* Live card: the product inside the life. Its trailing edge sits on the content edge. */
.live {
  position: absolute; z-index: 3;
  inset-inline-end: calc(var(--edge) - var(--inset)); top: var(--s-8);
  width: 304px; padding: var(--s-4) var(--s-4) var(--s-3); border-radius: var(--radius);
  background: rgba(255,255,255,.94); color: var(--ink);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.06);
  font-size: 13px; line-height: var(--lh-12);
}
.live-head { display: flex; align-items: center; gap: var(--s-2); color: var(--ink-2); font-weight: 500; }
.live-time { margin-inline-start: auto; color: var(--ink-3); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #1fbf6a; box-shadow: 0 0 0 0 rgba(31,191,106,.5); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(31,191,106,0); } 100% { box-shadow: 0 0 0 0 rgba(31,191,106,0); } }
.live-event { margin-top: var(--s-3); font-size: var(--t-14); line-height: var(--lh-14); font-weight: 600; }
.live-count { display: flex; align-items: baseline; gap: var(--s-2); margin: var(--s-1) 0 var(--s-3); }
.live-count span { font-size: 56px; line-height: 1; color: var(--blue); }
.live-count small { font-size: var(--t-12); color: var(--ink-3); }
.live-feed li { display: flex; gap: var(--s-2); align-items: baseline; padding: var(--s-2) var(--s-3); border-radius: 12px; background: var(--surface); color: var(--ink-2); }
.live-feed li + li { margin-top: var(--s-1); }
.live-feed li b { color: var(--ink); font-weight: 600; }
.live-feed li span { margin-inline-start: auto; color: var(--ink-3); font-size: var(--t-12); }
.live-feed li.is-new { animation: slidein .7s var(--ease); background: #fff0e9; }
@keyframes slidein { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ─── Wristband: FUO's event band ───────────────────── */
.band { position: relative; z-index: 4; background: var(--orange); color: var(--ink); overflow: hidden; }
.band-track { display: flex; align-items: center; gap: var(--s-6); width: max-content; padding: var(--s-4) 0 var(--s-4) var(--s-6); white-space: nowrap; animation: band 60s linear infinite; }
.band span { font-family: var(--display); font-weight: 600; font-size: var(--t-20); line-height: var(--lh-20); text-transform: uppercase; letter-spacing: .03em; }
/* separator: the diamond from the wordmark's full stop */
.band i { width: 8px; height: 8px; border-radius: 2px; background: var(--ink); transform: rotate(45deg); flex: none; }
@keyframes band { to { transform: translateX(-50%); } }
.band-hero { position: absolute; inset-inline: 0; bottom: 0; }
.band-close { position: absolute; inset-inline: -4%; top: 20%; transform: rotate(-4deg); box-shadow: 0 20px 40px -20px rgba(0,0,0,.4); }

/* ─── Announcement pill ──────────────────────────────── */
.pill { display: inline-flex; align-items: center; gap: var(--s-3); height: var(--s-8); padding: 0 var(--s-4) 0 var(--s-1); border-radius: 999px; background: var(--surface); font-family: var(--standard); font-size: var(--t-14); line-height: var(--lh-14); font-weight: 500; color: var(--ink-2); transition: background-color .2s; }
.pill:hover { background: var(--surface-2); }
.pill-tag { display: inline-flex; align-items: center; height: var(--s-6); padding: 0 10px; border-radius: 999px; background: var(--ink); color: var(--white); font-size: var(--t-12); line-height: var(--lh-12); font-weight: 600; }
.pill-arrow { width: 6px; height: 6px; border: solid currentColor; border-width: 1.6px 1.6px 0 0; transform: rotate(45deg); margin-inline-start: -2px; }
.pill-arrow:dir(rtl) { transform: rotate(-135deg); }

/* ─── Social proof line ──────────────────────────────── */
.proof { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-6); }
.proof-avatars { display: flex; }
.proof-avatars img { width: var(--s-8); height: var(--s-8); border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--white); }
.proof-avatars img + img { margin-inline-start: calc(-1 * var(--s-2)); }
.proof-text { text-align: start; font-size: var(--t-14); line-height: var(--lh-14); color: var(--ink-2); }
.proof-text b { color: var(--ink); font-weight: 600; }
.stars { display: flex; gap: 2px; margin-bottom: var(--s-1); }
.stars svg { width: var(--s-3); height: var(--s-3); fill: var(--orange); }

/* ─── Logo strip ─────────────────────────────────────── */
.logos { padding-top: var(--s-20); }
.logos-title { text-align: center; font-family: var(--standard); font-size: var(--t-14); line-height: var(--lh-14); font-weight: 500; color: var(--ink-3); margin-bottom: var(--s-10); }
.logo-row { display: flex; justify-content: space-between; align-items: center; gap: var(--s-8) var(--s-10); flex-wrap: wrap; color: #909c9c; }
.lg { display: inline-flex; align-items: center; gap: var(--s-2); line-height: 1; white-space: nowrap; transition: color .25s; }
.lg:hover { color: var(--ink); }
.lg-north { font-family: Futura, "Century Gothic", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: .3em; }
.lg-north i { width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent; border-bottom: 15px solid currentColor; }
.lg-aurelia { font-family: Didot, "Bodoni 72", Georgia, serif; font-style: italic; font-size: 31px; letter-spacing: -.01em; }
.lg-meridian { font-family: "Avenir Next", Avenir, sans-serif; font-weight: 600; font-size: 25px; letter-spacing: -.02em; }
.lg-meridian i { width: 20px; height: 20px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, transparent 5px, currentColor 5.5px); }
.lg-kova { font-family: Futura, "Arial Black", sans-serif; font-weight: 800; font-size: 26px; font-style: italic; letter-spacing: -.02em; }
.lg-halden { font-family: Baskerville, "Libre Baskerville", Georgia, serif; font-size: 18px; letter-spacing: .16em; }
.lg-atlas { font-family: "Helvetica Neue", Helvetica, sans-serif; font-size: 23px; letter-spacing: -.03em; gap: 3px; }
.lg-atlas b { font-weight: 700; }
.lg-lumen { font-family: Optima, Candara, sans-serif; font-size: 27px; font-weight: 600; gap: var(--s-1); }
.lg-lumen i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); opacity: .85; transform: translateY(-9px); }

/* ─── Section rhythm ─────────────────────────────────── */
.moments, .product, .leaders, .dup, .compare, .faq { padding-top: var(--section); }
.arc, .close { margin-top: var(--section); }

/* Section heads: headline on columns 1–8, lede on 9–12. Both trimmed, so bottoms meet on one baseline. */
.section-head { margin-bottom: var(--head-gap); }
.section-head-split { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); align-items: end; }
.section-head-split > .display-2 { grid-column: 1 / 9; }
.section-head-split > .section-lede { grid-column: 9 / -1; }
.section-lede { font-size: var(--t-18); line-height: var(--lh-18); color: var(--ink-2); }

/* ─── Four moments ───────────────────────────────────── */
.moments-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); align-items: center; }
.moment-stage { grid-column: 1 / 7; position: relative; aspect-ratio: 4 / 4.6; max-height: 84vh; width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.moment-copy { grid-column: 8 / -1; }
.moment { position: absolute; inset: 0; opacity: 0; transition: opacity .7s var(--ease); }
.moment.is-on { opacity: 1; }
.moment > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform 1.4s var(--ease); }
.moment.is-on > img { transform: none; }

.ui {
  position: absolute; inset-inline: var(--s-6); bottom: var(--s-6);
  max-width: 400px; padding: var(--s-4); border-radius: var(--radius);
  background: rgba(255,255,255,.92); color: var(--ink);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.35);
  font-size: var(--t-14); line-height: var(--lh-14);
  transform: translateY(10px); opacity: 0; transition: opacity .6s var(--ease) .15s, transform .8s var(--ease) .15s;
}
.moment.is-on .ui { transform: none; opacity: 1; }
.ui-kicker { color: var(--ink-3); font-size: var(--t-12); line-height: var(--lh-12); margin-bottom: var(--s-2); }
.ui-bar { display: flex; align-items: center; gap: var(--s-2); padding: 6px 6px 6px var(--s-3); border-radius: 12px; background: var(--surface); }
.ui-link { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ui-btn { margin-inline-start: auto; padding: var(--s-2) var(--s-3); border-radius: 999px; background: linear-gradient(180deg, #2f4f4b 0%, #16302f 55%, #0c2323 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 3px 8px -3px rgba(17,43,43,.5); color: var(--white); font-size: var(--t-12); line-height: var(--lh-12); font-weight: 600; flex: none; }
.ui-note { margin-top: var(--s-3); color: var(--ink-2); font-size: var(--t-12); line-height: var(--lh-12); }
.ui-row { display: flex; align-items: center; gap: var(--s-3); }
.ui-row p { font-weight: 500; }
.ui-row em { margin-inline-start: auto; color: var(--ink-3); font-size: var(--t-12); }
.ui-row + .ui-row { margin-top: var(--s-3); }
.ui-row-soft p { color: var(--ink-2); font-weight: 400; }
.ui-person { display: flex; align-items: center; gap: var(--s-3); margin: var(--s-3) 0; padding: var(--s-2); border-radius: 12px; background: var(--surface); }
.ui-person b { display: block; font-weight: 600; }
.ui-person small { color: var(--ink-3); font-size: var(--t-12); line-height: var(--lh-12); }
.ui-count { display: flex; align-items: baseline; gap: var(--s-2); }
.ui-count b { font-size: 40px; line-height: 1; color: var(--blue); }
.ui-count small { color: var(--ink-3); }
.ui-live-tag { padding: 2px var(--s-2); border-radius: 999px; background: #e5342a; color: var(--white); font-size: 11px; line-height: var(--lh-12); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.ui-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); margin-top: var(--s-3); }
.ui-stats div { padding: var(--s-3); border-radius: 12px; background: var(--surface); }
.ui-stats b { display: block; font-size: 28px; line-height: 1; margin-bottom: var(--s-1); }
.ui-stats small { color: var(--ink-3); font-size: var(--t-12); }
.ui-check { width: 18px; height: 18px; border-radius: 50%; background: var(--blue); flex: none; position: relative; }
.ui-check::after { content: ""; position: absolute; left: 6px; top: 4px; width: 4px; height: 8px; border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg); }

.moment-copy .label { margin-bottom: var(--s-6); }
.moment-h { margin-bottom: var(--s-10); }
.moment-list button {
  position: relative; display: flex; align-items: center;
  font-size: var(--t-36); line-height: var(--lh-36); color: rgba(17,43,43,.28);
  transition: color .3s var(--ease);
}
.moment-list button:hover { color: rgba(17,43,43,.55); }
.moment-list button.is-on { color: var(--ink); }
/* The marker hangs outside the text column, so every word starts on the same edge */
.moment-list i { position: absolute; inset-inline-start: calc(-1 * var(--s-6)); width: 10px; height: 10px; border-radius: 3px; background: var(--orange); transform: rotate(45deg) scale(0); transition: transform .4s var(--ease); flex: none; }
.moment-list button.is-on i { transform: rotate(45deg) scale(1); }
.moment-texts { display: grid; margin: var(--s-8) 0; max-width: 28rem; }
.moment-text { grid-area: 1 / 1; font-size: var(--t-18); line-height: var(--lh-18); color: var(--ink-2); opacity: 0; transition: opacity .4s var(--ease); }
.moment-text.is-on { opacity: 1; }

/* ─── Product ────────────────────────────────────────── */
/* The panel sits on the photo edge; the app inside it sits back on the content edge. */
.stage {
  position: relative; overflow: hidden;
  margin-inline: var(--inset); border-radius: var(--radius-lg); background: var(--blue);
  padding: var(--s-24) calc(var(--edge) - var(--inset)) 0;
}
.stage-bg { position: absolute; inset: 0; }
.stage-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.stage-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.3)); }

.app {
  position: relative; z-index: 3; display: grid; grid-template-columns: 224px 1fr;
  background: var(--white); color: var(--ink); border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -30px 80px -20px rgba(0,0,0,.35);
  font-size: 13px; line-height: var(--lh-12); overflow: hidden; min-height: 560px;
}
.app-side { background: var(--surface); padding: var(--s-4) var(--s-3); display: flex; flex-direction: column; gap: var(--s-6); }
.app-org { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-1); }
.app-org-badge { width: var(--s-8); height: var(--s-8); border-radius: 10px; background: var(--ink); color: var(--white); display: grid; place-items: center; font-weight: 600; }
.app-org b { display: block; font-size: 13px; }
.app-org small { color: var(--ink-3); font-size: var(--t-12); }
.app-nav li { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-2) var(--s-3); border-radius: 10px; color: var(--ink-2); font-weight: 500; }
.app-nav li + li { margin-top: 2px; }
.app-nav li.is-on { background: var(--white); color: var(--ink); box-shadow: 0 1px 2px rgba(17,43,43,.06), 0 4px 12px -4px rgba(17,43,43,.08); }
.ico { width: var(--s-4); height: var(--s-4); border-radius: 5px; background: currentColor; opacity: .22; flex: none; }
.app-nav li.is-on .ico { background: var(--blue); opacity: 1; }
.ico-cal { border-radius: 4px; } .ico-send { border-radius: 50% 50% 50% 4px; } .ico-people, .ico-team { border-radius: 50%; } .ico-loop { border-radius: 50% 4px 50% 4px; }
.app-side-foot { margin-top: auto; padding: var(--s-1); }
.app-side-foot img { width: 40px; opacity: .5; }

.app-main { padding: var(--s-6) var(--s-8) var(--s-8); display: flex; flex-direction: column; gap: var(--s-4); }
.app-top { display: flex; justify-content: space-between; align-items: center; }
.app-kicker { color: var(--ink-3); font-size: var(--t-12); line-height: var(--lh-12); margin-bottom: var(--s-1); }
.app-hello { font-size: var(--t-28); line-height: var(--lh-28); }
.app-pill { background: linear-gradient(180deg, #ff8d58 0%, #f5692f 50%, #e8561e 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 2px rgba(176,56,12,.2), 0 3px 8px -3px rgba(255,100,45,.55); color: var(--white); text-shadow: 0 1px 1px rgba(140,40,5,.35); border-radius: 999px; padding: var(--s-2) var(--s-4); font-weight: 600; font-size: var(--t-12); line-height: var(--lh-12); }

.app-hero-card { border-radius: var(--radius-sm); padding: var(--s-6); background: var(--blue); color: var(--white); display: grid; grid-template-columns: 1fr auto; gap: var(--s-4) var(--s-8); align-items: end; }
.ahc-tag { display: flex; align-items: center; gap: var(--s-2); font-size: var(--t-12); color: rgba(255,255,255,.85); margin-bottom: var(--s-2); }
.ahc-title { font-size: 32px; line-height: 1; }
.ahc-meta { margin-top: var(--s-2); color: rgba(255,255,255,.75); font-size: var(--t-12); }
.ahc-stats { display: flex; gap: var(--s-6); }
.ahc-stats b { display: block; font-size: 28px; line-height: 1; margin-bottom: var(--s-1); }
.ahc-stats small { color: rgba(255,255,255,.75); font-size: 11px; }
.ahc-bar { grid-column: 1 / -1; height: 6px; border-radius: 6px; background: rgba(255,255,255,.2); overflow: hidden; }
.ahc-bar span { display: block; height: 100%; border-radius: 6px; background: var(--orange); }

.app-cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s-4); }
.app-panel { background: var(--surface); border-radius: var(--radius-sm); padding: var(--s-4); }
.app-panel-title { font-weight: 600; margin: var(--s-1) var(--s-2) var(--s-3); }
.app-list li { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-2); border-radius: 10px; }
.app-list li:first-child { background: var(--white); box-shadow: 0 1px 2px rgba(17,43,43,.05); }
.app-list b { display: block; font-weight: 600; }
.app-list small { color: var(--ink-3); font-size: var(--t-12); }
.app-list em { margin-inline-start: auto; color: var(--ink-3); font-size: var(--t-12); }
.av { width: var(--s-8); height: var(--s-8); border-radius: 50%; display: grid; place-items: center; font-weight: 600; font-size: var(--t-12); color: var(--white); flex: none; }
.av1 { background: var(--blue); } .av2 { background: var(--ink); } .av3 { background: var(--orange); color: var(--ink); } .av4 { background: #8fa0a0; }
.app-team li { display: grid; grid-template-columns: 64px 1fr 28px; align-items: center; gap: var(--s-3); padding: var(--s-2); }
.app-team span { color: var(--ink-2); font-weight: 500; }
.app-team i { height: 8px; border-radius: 8px; background: var(--surface-2); position: relative; overflow: hidden; }
.app-team i::after { content: ""; position: absolute; inset-block: 0; inset-inline-start: 0; width: var(--w); border-radius: 8px; background: var(--ink); }
.app-team li:first-child i::after { background: var(--blue); }
.app-team b { text-align: end; font-weight: 600; }

/* ─── Customers: numbers and stories ─────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap); margin-bottom: var(--gap); }
.stat { background: var(--surface); border-radius: var(--radius); padding: var(--s-6); }
.stat-k { font-family: var(--standard); font-size: var(--t-14); line-height: var(--lh-14); font-weight: 500; color: var(--ink-3); margin-bottom: var(--s-12); }
.stat-n { font-size: var(--t-64); line-height: var(--lh-64); }
.stat-n .unit { font-size: .5em; vertical-align: .6em; margin-inline-start: .04em; color: var(--orange); font-weight: 600; }
.stat-d { margin-top: var(--s-4); font-size: var(--t-16); line-height: var(--lh-16); color: var(--ink-2); max-width: 18rem; }

.quotes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap); }
.quote { position: relative; aspect-ratio: 3 / 4.1; border-radius: var(--radius); overflow: hidden; color: var(--white); display: flex; flex-direction: column; justify-content: space-between; padding: var(--s-6); isolation: isolate; }
.quote > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.quote:hover > img { transform: scale(1.04); }
.quote::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 38%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.62) 100%); }
.quote blockquote { font-family: var(--standard); font-size: var(--t-18); line-height: var(--lh-18); font-weight: 500; }
.quote figcaption { display: flex; align-items: center; gap: var(--s-3); font-size: var(--t-14); line-height: var(--lh-14); }
.quote figcaption img { width: var(--s-10); height: var(--s-10); border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(255,255,255,.9); }
.quote figcaption b { display: block; font-weight: 600; }
.quote figcaption small { color: rgba(255,255,255,.78); font-size: var(--t-14); white-space: nowrap; }

/* ─── Duplication ────────────────────────────────────── */
.dup-flow { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--s-12); background: var(--surface); border-radius: var(--radius-lg); padding: var(--s-12); }
.dup-tag { font-family: var(--standard); font-size: var(--t-14); line-height: var(--lh-14); font-weight: 500; color: var(--ink-3); margin-bottom: var(--s-4); }
.invite { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 2px rgba(17,43,43,.04), 0 18px 40px -24px rgba(17,43,43,.25); }
.invite-img { aspect-ratio: 16 / 9; overflow: hidden; }
.invite-img img { width: 100%; height: 100%; object-fit: cover; }
.invite-body { padding: var(--s-4); }
.invite-org { font-size: 11px; line-height: var(--lh-12); font-weight: 700; letter-spacing: .14em; margin-bottom: var(--s-2); }
.invite-title { font-size: var(--t-24); line-height: var(--lh-24); }
.invite-meta { margin-top: var(--s-2); font-size: var(--t-14); line-height: var(--lh-14); color: var(--ink-3); }
.invite-host { display: flex; align-items: center; gap: var(--s-2); margin-top: var(--s-3); font-size: 13px; color: var(--ink-2); }
.invite-host .av { width: var(--s-6); height: var(--s-6); font-size: 10px; }
.invite-lg .invite-img { aspect-ratio: 4 / 3; }
.invite-lg .invite-body { padding: var(--s-6) var(--s-8) var(--s-6); }
.invite-lg .invite-title { font-size: var(--t-36); line-height: var(--lh-36); }
.invite-btn { display: inline-flex; margin-top: var(--s-6); height: var(--s-10); align-items: center; padding: 0 var(--s-6); border-radius: 999px; background: linear-gradient(180deg, #ff8d58 0%, #f5692f 50%, #e8561e 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 2px rgba(176,56,12,.2), 0 4px 10px -4px rgba(255,100,45,.55); color: var(--white); text-shadow: 0 1px 1px rgba(140,40,5,.35); font-size: var(--t-14); font-weight: 600; }
.invite-powered { display: flex; align-items: center; gap: 6px; margin-top: var(--s-6); font-size: 11px; color: var(--ink-3); }
.invite-powered img { width: 26px; opacity: .6; }
.dup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.dup-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); margin-top: var(--gap); }
.dup-points > div { background: var(--surface); border-radius: var(--radius); padding: var(--s-6); }
.dup-points > div:nth-child(2) { background: var(--ink); color: var(--white); }
.dup-points > div:nth-child(2) p:not(.dup-k) { color: rgba(255,255,255,.75); }
.dup-k { font-size: var(--t-28); line-height: var(--lh-28); margin-bottom: var(--s-4); }
.dup-points p:not(.dup-k) { color: var(--ink-2); }

/* ─── Comparison: rows share the page's 12 columns, so "With fuo." sits on the lede edge ── */
.cmp { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); row-gap: var(--s-2); }
.cmp-row { grid-column: 1 / -1; display: grid; grid-template-columns: subgrid; align-items: center; padding: var(--s-5) var(--s-6); border-radius: var(--radius-sm); background: var(--surface); }
.cmp-row > :nth-child(1) { grid-column: 1 / 4; }
.cmp-row > :nth-child(2) { grid-column: 4 / 9; }
.cmp-row > :nth-child(3) { grid-column: 9 / -1; }
.cmp-row:nth-child(odd):not(.cmp-head) { background: #f8f9f8; }
.cmp-row b { font-weight: 600; }
.cmp-row > :nth-child(2) { color: var(--ink-3); }
.cmp-row:not(.cmp-head) > :nth-child(3) { position: relative; }
/* Marker hangs in the gutter, so the answers start exactly on the lede edge */
.cmp-row:not(.cmp-head) > :nth-child(3)::before { content: ""; position: absolute; inset-inline-start: calc(-1 * var(--s-5)); top: 8px; width: 8px; height: 8px; border-radius: 2px; background: var(--orange); transform: rotate(45deg); }
.cmp-head { background: none !important; padding-block: 0 var(--s-4); }
.cmp-head > span { font-size: var(--t-24); line-height: var(--lh-24); display: block !important; }

/* ─── Arc ────────────────────────────────────────────── */
.arc { position: relative; height: 400vh; margin-inline: var(--inset); border-radius: var(--radius-lg); overflow: clip; background: #0b3a8c; color: var(--white); }
/* The gradient rises with the story: deep navy at Control, warm light by Freedom */
.arc-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.arc-bg img { width: 100%; height: 130%; object-fit: cover; transform: translate3d(0, calc(var(--arc-p, 0) * -23%), 0); will-change: transform; }
.arc-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,18,48,.42) 0%, rgba(3,18,48,.16) 45%, rgba(3,18,48,0) 65%); }
.arc-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.arc-grid { position: relative; z-index: 2; }
.arc-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); align-items: center; }
.arc-copy { grid-column: 1 / 7; }
.arc-copy .label { margin-bottom: var(--s-8); }
.arc-words li + li { margin-top: var(--s-2); }
.arc-words .w { display: block; font-size: var(--t-88); line-height: var(--lh-88); color: rgba(255,255,255,.3); transition: color .6s var(--ease); }
.arc-words .d { display: block; max-width: 25rem; font-size: var(--t-18); line-height: var(--lh-18); color: rgba(255,255,255,.88); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .7s var(--ease), opacity .5s var(--ease), margin .7s var(--ease); }
.arc-words .d { text-shadow: 0 1px 16px rgba(3,18,48,.45); } /* holds contrast where the light streak passes behind */
.arc-words li.is-on .w { color: var(--white); }
.arc-words li.is-on .d { max-height: 96px; opacity: 1; margin: var(--s-4) 0 var(--s-6); }
.arc-media { grid-column: 8 / -1; position: relative; aspect-ratio: 4 / 5; max-height: 74vh; border-radius: var(--radius); overflow: hidden; justify-self: end; width: 100%; box-shadow: 0 40px 80px -32px rgba(2,12,34,.6); }
.arc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s var(--ease); }
.arc-media img.is-on { opacity: 1; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); align-items: start; }
.faq-grid > .display-2 { grid-column: 1 / 6; position: sticky; top: calc(var(--s-16) + var(--s-12)); }
.faq-list { grid-column: 6 / -1; }
.faq-list details { background: var(--surface); border-radius: var(--radius-sm); transition: background-color .2s; }
.faq-list details + details { margin-top: var(--s-2); }
.faq-list details[open] { background: #edf0ee; }
.faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); padding: var(--s-6); font-family: var(--standard); font-size: var(--t-20); line-height: var(--lh-20); font-weight: 500; }
.faq-list details[open] summary { padding-bottom: var(--s-3); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; width: 12px; height: 12px; flex: none; background: linear-gradient(var(--ink), var(--ink)) center / 12px 2px no-repeat, linear-gradient(var(--ink), var(--ink)) center / 2px 12px no-repeat; transition: transform .3s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 var(--s-6) var(--s-6); max-width: 40rem; color: var(--ink-2); font-size: var(--t-16); line-height: var(--lh-16); }

/* ─── Close ──────────────────────────────────────────── */
.close { position: relative; overflow: hidden; margin-inline: var(--inset); min-height: 86vh; border-radius: var(--radius-lg); display: flex; align-items: flex-end; background: var(--ink); color: var(--white); }
.close-media { position: absolute; inset: 0; }
.close-media img { width: 100%; height: 100%; object-fit: cover; }
.close-inner { position: relative; z-index: 3; padding-block: var(--s-32) var(--s-16); }
.close-title { font-size: var(--t-88); line-height: var(--lh-88); max-width: 11em; margin-bottom: var(--s-12); }
.close-foot { display: flex; justify-content: space-between; align-items: center; gap: var(--s-8); flex-wrap: wrap; }
.close-proof { display: flex; align-items: center; gap: var(--s-3); font-size: var(--t-18); line-height: var(--lh-18); color: rgba(255,255,255,.92); }
.close-proof .proof-avatars img { box-shadow: 0 0 0 2px rgba(0,0,0,.35); }
.close .hero-ctas { margin-top: 0; }

/* ─── Footer: a panel like the others, 16px below the close panel ── */
.footer { margin: var(--inset); border-radius: var(--radius-lg); background: var(--ink); color: var(--white); padding: var(--s-24) 0 var(--s-6); }
.footer-top { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); row-gap: var(--s-12); align-items: start; margin-bottom: var(--s-32); }
.footer-line { grid-column: 1 / 9; font-size: var(--t-48); line-height: var(--lh-48); }
.footer-line em { color: var(--orange); }
.footer-cols { grid-column: 9 / -1; display: grid; grid-template-columns: repeat(3, auto); justify-content: space-between; column-gap: var(--s-6); font-size: var(--t-14); line-height: var(--lh-14); }
.footer-cols ul { display: grid; gap: var(--s-3); align-content: start; }
.footer-cols li { color: rgba(255,255,255,.72); }
.footer-cols li a:hover { color: var(--white); }
.footer-cols .h { color: rgba(255,255,255,.42); font-size: var(--t-12); line-height: var(--lh-12); margin-bottom: var(--s-1); }
.footer-mark { width: 100%; height: auto; }
.footer-base { display: flex; justify-content: space-between; gap: var(--s-4); margin-top: var(--s-6); font-size: var(--t-12); line-height: var(--lh-12); color: rgba(255,255,255,.5); }

/* ─── Motion: one signature moment ────────────────── */
/* The headline rises out of its own lines once, on load. Everything after it settles in quietly.
   Below the hero nothing fades in: only the product and the story move. */
.hero-title .line { display: block; }
.hero-title .line > span { display: inline-block; animation: rise-soft 1.3s cubic-bezier(.16, 1, .3, 1) both; }
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
/* Hold the entrance until Degular has loaded, so letters never swap font mid-rise */
.js:not(.is-ready) .hero-title .line > span, .js:not(.is-ready) .intro { animation-play-state: paused; }
@keyframes rise-soft { from { opacity: 0; transform: translateY(.4em); } }
@supports (overflow-clip-margin: 1px) {
  /* Where the browser can widen the clip past descenders, the lines rise from behind a mask */
  .hero-title .line { overflow: clip; overflow-clip-margin: .36em; }
  .hero-title .line > span { animation-name: rise; }
  @keyframes rise { from { transform: translateY(1.3em); } }
}
.intro { animation: settle 1s cubic-bezier(.16, 1, .3, 1) both; animation-delay: calc(.55s + var(--i, 0) * .07s); }
@keyframes settle { from { opacity: 0; transform: translateY(10px); } }
.hero-media.intro { animation-name: media-in; animation-duration: 1.4s; }
@keyframes media-in { from { opacity: 0; transform: translateY(32px) scale(.985); } }

/* The dashboard comes alive when it scrolls into view */
.js .app:not(.is-live) .ahc-bar span, .js .app:not(.is-live) .app-team i::after { width: 0; }
.ahc-bar span { width: var(--w); transition: width 1.6s cubic-bezier(.16, 1, .3, 1) .2s; }
.app-team i::after { transition: width 1.4s cubic-bezier(.16, 1, .3, 1); }
.app-team li:nth-child(2) i::after { transition-delay: .08s; }
.app-team li:nth-child(3) i::after { transition-delay: .16s; }
.app-team li:nth-child(4) i::after { transition-delay: .24s; }
.ahc-stats b, .live-count span { font-variant-numeric: tabular-nums; }
.app-list li.is-new { animation: slidein .7s var(--ease); }

/* ─── Responsive: breakpoints sit where the content stops fitting ── */
@media (max-width: 1180px) {
  .logo-row { justify-content: center; column-gap: var(--s-12); }
}
@media (max-width: 1100px) {
  .stats, .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links { gap: var(--s-6); }
  .app { grid-template-columns: 1fr; }
  .app-side { display: none; }
  .section-head-split > .display-2 { grid-column: 1 / -1; }
  .section-head-split > .section-lede { grid-column: 1 / 9; margin-top: var(--s-8); }
  .footer-line { grid-column: 1 / -1; }
  .footer-cols { grid-column: 1 / 9; justify-content: start; column-gap: var(--s-16); }
}
@media (max-width: 900px) {
  .nav-links, .nav-login { display: none; }
  .moment-stage, .moment-copy { grid-column: 1 / -1; }
  .moment-copy { order: -1; margin-bottom: var(--s-8); }
  .moment-stage { aspect-ratio: 4 / 4.4; max-height: none; }
  .app-cols { grid-template-columns: 1fr; }
  .app-hero-card { grid-template-columns: 1fr; }
  .dup-flow { grid-template-columns: 1fr; gap: var(--s-8); padding: var(--s-6); }
  .dup-points { grid-template-columns: 1fr; }
  .cmp-row > :nth-child(1) { grid-column: 1 / 4; }
  .cmp-row > :nth-child(2) { grid-column: 4 / 8; }
  .cmp-row > :nth-child(3) { grid-column: 8 / -1; }
  .faq-grid > .display-2, .faq-list { grid-column: 1 / -1; }
  .faq-grid > .display-2 { position: static; margin-bottom: var(--head-gap); }
  .arc { height: auto; }
  .arc-sticky { position: relative; height: auto; padding-block: var(--s-24); }
  .arc-copy { grid-column: 1 / -1; }
  .arc-words .w { color: var(--white); }
  .arc-words .d { max-height: none; opacity: 1; margin: var(--s-3) 0 var(--s-8); }
  .arc-media { display: none; }
  .arc-bg img { height: 100%; transform: none; }
  .arc-bg::after { background: linear-gradient(180deg, rgba(3,18,48,.18) 0%, rgba(3,18,48,.1) 70%, rgba(3,18,48,0) 100%); }
  .arc-sticky { padding-bottom: var(--s-32); }
}
@media (max-width: 640px) {
  .section-head-split > .section-lede { grid-column: 1 / -1; }
  .hero { padding-top: calc(var(--s-16) + var(--s-10)); }
  .hero-title { margin-top: var(--s-6); }
  .hero-lede { margin-top: var(--s-6); }
  .hero-ctas { margin-top: var(--s-6); }
  .hero-media { margin-top: var(--s-10); height: 600px; }
  .hero-media > img { object-position: 42% 40%; }
  .proof-avatars img { width: 28px; height: 28px; }
  .hide-sm { display: none; }
  .moment-list i { inset-inline-start: calc(-1 * var(--s-4)); width: 8px; height: 8px; border-radius: 2px; }
  .logos { padding-top: var(--s-16); }
  .logos-title { margin-bottom: var(--s-8); }
  .logo-row { column-gap: var(--s-8); row-gap: var(--s-6); }
  .lg { transform: scale(.82); }
  .live { inset-inline: var(--s-3); width: auto; top: auto; bottom: calc(var(--s-12) + var(--s-3)); padding: var(--s-3) var(--s-3) var(--s-2); }
  .live-feed li:nth-child(n+2) { display: none; }
  .live-count span { font-size: 44px; }
  .band span { font-size: var(--t-16); line-height: var(--lh-16); }
  .band-track { padding-block: var(--s-3); gap: var(--s-4); }
  .ui { inset-inline: var(--s-3); bottom: var(--s-3); padding: var(--s-3); }
  .stat { padding: var(--s-4); }
  .stat-k { margin-bottom: var(--s-8); }
  .quotes { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); scrollbar-width: none; }
  .quotes::-webkit-scrollbar { display: none; }
  .quote { scroll-snap-align: start; padding: var(--s-4); }
  .dup-grid .invite-title { font-size: var(--t-18); line-height: var(--lh-18); }
  .dup-grid .invite-body { padding: var(--s-3); }
  .invite-lg .invite-body { padding: var(--s-4); }
  .cmp { display: block; }
  .cmp-row { display: grid; grid-template-columns: 1fr; row-gap: var(--s-2); padding: var(--s-4); }
  .cmp-row + .cmp-row { margin-top: var(--s-2); }
  .cmp-row > * { grid-column: auto !important; }
  .cmp-head { display: none; }
  .cmp-row:not(.cmp-head) > :nth-child(3) { padding-inline-start: var(--s-5); }
  .cmp-row:not(.cmp-head) > :nth-child(3)::before { inset-inline-start: 0; }
  .cmp-row > :nth-child(2) { text-decoration: line-through; text-decoration-color: rgba(122,136,136,.5); }
  .app-main { padding: var(--s-4); }
  .ahc-stats { gap: var(--s-4); }
  .faq-list summary { padding: var(--s-4); }
  .faq-list details[open] summary { padding-bottom: var(--s-2); }
  .faq-list details p { padding: 0 var(--s-4) var(--s-4); }
  .close { min-height: 640px; }
  .close-inner { padding-block: var(--s-24) var(--s-10); }
  .close-title { margin-bottom: var(--s-8); }
  .close-proof { font-size: var(--t-16); line-height: var(--lh-16); }
  .footer { padding-top: var(--s-16); }
  .footer-top { margin-bottom: var(--s-20); }
  .footer-cols { grid-column: 1 / -1; column-gap: var(--s-10); }
  .footer-base { flex-direction: column; gap: var(--s-1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .arc-bg img { height: 100%; transform: none; }
}
