:root {
  color-scheme: light;
  --ink: #07152f;
  --ink-soft: #354361;
  --muted: #68748f;
  --terracotta: #355cff;
  --terracotta-dark: #1639d8;
  --paper: #f5f7ff;
  --surface: #ffffff;
  --white: #ffffff;
  --cobalt: #355cff;
  --lime: #b8ff5a;
  --coral: #ff8066;
  --violet: #7a5cff;
  --sky: #dff3ff;
  --line: rgba(7, 21, 47, 0.13);
  --line-strong: rgba(7, 21, 47, 0.24);
  --shadow: 0 28px 80px rgba(25, 56, 142, 0.16);
  --display: "Avenir Next", Avenir, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
::selection { background: var(--terracotta); color: var(--white); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 36px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 10px 9px 19px;
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 244, 231, 0.88);
  box-shadow: 0 10px 40px rgba(62, 35, 21, 0.09);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 25px;
  grid-template-columns: repeat(4, 4px);
  gap: 3px;
}
.brand-mark i { width: 4px; height: 4px; border-radius: 50%; background: var(--terracotta); }
.brand-mark i:nth-child(4n + 2), .brand-mark i:nth-child(4n + 3) { background: var(--ink); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}
.site-nav a:hover { color: var(--terracotta-dark); }
.site-nav .nav-cta {
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 13px 19px;
}
.site-nav .nav-cta:hover { color: var(--white); background: var(--terracotta-dark); }
.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 48px 100px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -220px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(197, 106, 60, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(197,106,60,.035), 0 0 0 160px rgba(197,106,60,.025);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; }
.eyebrow-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }
.eyebrow-dot::after { content: ""; position: absolute; inset: -5px; border: 1px solid var(--terracotta); border-radius: 50%; animation: breathe 2.4s ease-in-out infinite; }
.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(4rem, 6.5vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}
.hero h1 em { color: var(--terracotta); font-weight: 500; }
.hero-support { max-width: 570px; margin-bottom: 32px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-bottom: 30px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--terracotta); color: var(--white); box-shadow: 0 12px 30px rgba(155, 73, 40, 0.2); }
.button-primary:hover { background: var(--terracotta-dark); box-shadow: 0 16px 36px rgba(155, 73, 40, 0.26); }
.button:disabled { opacity: .7; cursor: default; transform: none; }
.text-link { font-size: .9rem; font-weight: 720; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.hero-note { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: .78rem; }
.hero-note span { color: var(--terracotta); }

.hero-product { position: relative; z-index: 2; min-height: 610px; display: grid; place-items: center; }
.product-shell {
  position: relative;
  z-index: 3;
  width: min(100%, 540px);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(89, 52, 31, 0.2);
  border-radius: 40px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.9);
  padding: 24px;
  transform: rotate(1.8deg);
  backdrop-filter: blur(14px);
}
.product-topbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.mini-brand { font-family: var(--display); font-size: 1.05rem; font-weight: 700; }
.today-label { color: var(--muted); font-size: .66rem; letter-spacing: .04em; }
.avatar { justify-self: end; width: 32px; height: 32px; border: 0; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .58rem; font-weight: 800; }
.product-greeting { padding: 26px 3px 20px; }
.product-greeting p { margin-bottom: 3px; font-family: var(--display); font-size: 1.8rem; letter-spacing: -.04em; }
.product-greeting span { color: var(--muted); font-size: .76rem; }
.hero-card-stack { display: grid; gap: 10px; }
.living-card { position: relative; overflow: hidden; border: 1px solid rgba(81, 52, 36, .16); border-radius: 22px; padding: 17px 18px; box-shadow: 0 10px 24px rgba(69, 39, 22, .055); }
.card-weather { min-height: 205px; background: #dceaf1; }
.card-weather::after { content: ""; position: absolute; right: -40px; top: -65px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,248,207,.82); box-shadow: 0 0 50px rgba(255,242,166,.7); }
.card-transit { background: #f9f1e6; }
.card-arsenal { background: #efe1dc; }
.card-row { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-label { display: flex; align-items: center; gap: 8px; margin: 0; font-size: .72rem; font-weight: 800; }
.card-symbol { font-size: .9rem; }
.fresh-badge { display: flex; align-items: center; gap: 5px; border: 1px solid rgba(44, 92, 76, .18); border-radius: 999px; background: rgba(255,255,255,.4); color: #355f51; padding: 5px 8px; font-size: .55rem; font-weight: 800; }
.fresh-badge i { width: 5px; height: 5px; border-radius: 50%; background: #4e8b73; }
.card-time { color: var(--muted); font-size: .56rem; }
.line-dot { width: 8px; height: 8px; border-radius: 50%; background: #0098d4; box-shadow: 0 0 0 3px rgba(0,152,212,.12); }
.weather-reading { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 18px; margin-top: 20px; }
.weather-reading strong { font-family: var(--display); font-size: 4rem; font-weight: 500; letter-spacing: -.08em; line-height: .8; }
.weather-reading span { color: #53636b; font-size: .68rem; line-height: 1.4; }
.weather-hours { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 24px; border-top: 1px solid rgba(54,74,84,.15); padding-top: 12px; }
.weather-hours span { display: grid; gap: 4px; }
.weather-hours small { color: #687b84; font-size: .52rem; }
.weather-hours b { font-family: var(--display); font-size: .9rem; font-weight: 600; }
.card-answer { margin: 12px 0 3px; font-family: var(--display); font-size: 1.08rem; font-weight: 600; letter-spacing: -.02em; }
.card-detail { margin: 0; color: var(--muted); font-size: .62rem; line-height: 1.45; }
.ask-bar { display: flex; align-items: center; gap: 9px; margin-top: 14px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.46); color: var(--muted); padding: 12px 13px; font-size: .64rem; }
.ask-bar kbd { margin-left: auto; border: 1px solid var(--line); border-radius: 5px; background: var(--paper); color: var(--muted); padding: 3px 5px; font: inherit; }
.orbit-label { position: absolute; z-index: 5; border: 1px solid rgba(89, 52, 31, .19); border-radius: 999px; background: rgba(251,244,231,.92); box-shadow: 0 12px 30px rgba(69,39,22,.11); color: var(--ink-soft); padding: 10px 14px; font-size: .65rem; font-weight: 750; backdrop-filter: blur(9px); animation: float 5s ease-in-out infinite; }
.orbit-label-weather { top: 8%; left: -4%; transform: rotate(-7deg); }
.orbit-label-team { top: 22%; right: -5%; transform: rotate(8deg); animation-delay: -1.2s; }
.orbit-label-route { bottom: 19%; left: -7%; transform: rotate(5deg); animation-delay: -2.6s; }
.orbit-label-parcel { bottom: 5%; right: 3%; transform: rotate(-5deg); animation-delay: -3.8s; }

.scale-statement { border-block: 1px solid var(--line); background: var(--ink); color: var(--surface); padding: clamp(90px, 12vw, 170px) max(24px, calc((100vw - 1180px) / 2)); }
.scale-statement .section-kicker { margin-bottom: 34px; color: #d99a79; }
.scale-statement h2 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -.06em; line-height: .88; }
.scale-statement h2 span { display: block; color: #8f7768; font-size: clamp(2.3rem, 5vw, 5rem); }
.scale-statement h2 strong { display: block; max-width: 1040px; margin-top: 16px; font-size: clamp(4rem, 9vw, 8.7rem); font-weight: 500; }
.scale-foot { display: grid; grid-template-columns: minmax(130px, 240px) 1fr minmax(230px, 430px); gap: 24px; align-items: center; margin-top: 70px; }
.scale-foot p { margin: 0; color: #bca99b; font-size: .8rem; line-height: 1.6; }
.scale-foot p:last-child { color: var(--surface); }
.scale-line { position: relative; height: 1px; background: #6f584a; }
.scale-line i { position: absolute; right: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 7px rgba(197,106,60,.14); }

.old-new, .how, .why { max-width: 1180px; margin: 0 auto; padding: clamp(90px, 12vw, 160px) 24px; }
.section-heading { max-width: 660px; margin-bottom: 58px; }
.section-heading-narrow { max-width: 600px; }
.section-heading .section-kicker { margin-bottom: 18px; }
.section-heading h2, .showcase-copy h2, .closing h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .9;
}
.section-heading > p:last-child, .showcase-copy > p { max-width: 590px; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.primitive-list { border-top: 1px solid var(--line-strong); }
.primitive-row { display: grid; grid-template-columns: 1fr 56px 1.2fr; align-items: center; border-bottom: 1px solid var(--line-strong); padding: 28px 4px; }
.primitive-old { display: grid; grid-template-columns: 40px 1fr; align-items: baseline; gap: 2px 12px; }
.primitive-old > span { grid-row: 1 / 3; color: var(--terracotta); font-size: .64rem; font-weight: 800; }
.primitive-old strong { font-family: var(--display); font-size: 1.35rem; }
.primitive-old p { margin: 0; color: var(--muted); font-size: .82rem; }
.primitive-arrow { color: var(--terracotta); font-size: 1.4rem; }
.primitive-new { display: flex; justify-content: space-between; align-items: center; gap: 16px; border-radius: 16px; background: var(--surface); padding: 18px 20px; }
.primitive-new span { color: var(--terracotta-dark); font-size: .62rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.primitive-new strong { font-family: var(--display); font-size: 1.25rem; font-weight: 600; }

.how { max-width: none; background: #eadac6; padding-inline: max(24px, calc((100vw - 1180px) / 2)); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); padding: 24px; }
.step-number { display: inline-grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted); font-size: .62rem; font-weight: 800; }
.step-visual { position: relative; height: 245px; margin: 28px 0 30px; }
.step-card h3 { margin-bottom: 10px; font-family: var(--display); font-size: 1.8rem; font-weight: 600; letter-spacing: -.04em; }
.step-card > p { color: var(--muted); font-size: .84rem; line-height: 1.55; }
.browser-window { overflow: hidden; border: 1px solid #cbb8a4; border-radius: 15px; background: white; box-shadow: 0 16px 35px rgba(75,44,27,.1); transform: rotate(-2deg); }
.window-bar { display: flex; align-items: center; gap: 5px; background: #efe7de; padding: 10px; }
.window-bar i { width: 6px; height: 6px; border-radius: 50%; background: #c9b7a4; }
.window-bar span { flex: 1; margin-left: 8px; border-radius: 999px; background: white; color: #a28e7c; padding: 5px 10px; font-size: .5rem; text-align: center; }
.search-line { margin: 24px 18px 0; border: 1px solid #d7c8b8; border-radius: 999px; color: #806c5d; padding: 13px; font-size: .62rem; }
.search-line b { float: right; color: var(--terracotta); }
.result-lines { display: grid; gap: 11px; padding: 22px 24px; }
.result-lines i { display: block; height: 6px; border-radius: 3px; background: #eee5db; }
.result-lines i:nth-child(2) { width: 77%; }
.result-lines i:nth-child(3) { width: 48%; }
.ask-window { display: grid; align-content: center; gap: 18px; transform: rotate(1.5deg); }
.ask-window p { border-radius: 20px 20px 6px 20px; background: var(--ink); color: var(--surface); padding: 23px; font-family: var(--display); font-size: 1.25rem; line-height: 1.25; box-shadow: 0 18px 36px rgba(43,29,20,.16); }
.ask-window span { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .62rem; }
.ask-window span i { width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); animation: breathe 1.5s infinite; }
.keep-window { display: grid; align-content: center; overflow: hidden; border: 1px solid #bdd2dd; border-radius: 22px; background: #dfeef4; padding: 26px; box-shadow: 0 18px 38px rgba(51,89,107,.12); transform: rotate(-1deg); }
.keep-window .tiny-label { color: #416777; font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.keep-window strong { margin-top: 22px; font-family: var(--display); font-size: 2.2rem; letter-spacing: -.05em; }
.keep-window p { margin: 6px 0 0; color: #66818e; font-size: .62rem; }
.pulse-ring { position: absolute; right: -50px; top: -40px; width: 150px; height: 150px; border: 1px solid rgba(56,128,159,.18); border-radius: 50%; box-shadow: 0 0 0 30px rgba(56,128,159,.05), 0 0 0 60px rgba(56,128,159,.035); }

.showcase { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); align-items: center; min-height: 800px; background: var(--surface); padding: clamp(90px, 12vw, 160px) max(24px, calc((100vw - 1180px) / 2)); }
.showcase-copy .section-kicker { margin-bottom: 18px; }
.showcase-copy h2 em { color: var(--terracotta); font-weight: 500; }
.interest-picker { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.interest-picker button { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink-soft); padding: 10px 13px; font-size: .7rem; font-weight: 700; cursor: pointer; transition: 160ms ease; }
.interest-picker button:hover { border-color: var(--terracotta); }
.interest-picker button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--white); }
.interest-picker button span { color: var(--terracotta); }
.showcase-stage { position: relative; display: grid; min-height: 580px; place-items: center; }
.showcase-stage::before { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 70px rgba(197,106,60,.03); }
.showcase-card { position: relative; z-index: 3; display: grid; width: min(100%, 590px); min-height: 440px; grid-template-rows: auto 1fr auto; border: 1px solid rgba(63,47,35,.18); border-radius: 34px; box-shadow: 0 36px 80px rgba(76,43,24,.16); padding: 27px; transition: opacity 160ms ease, transform 160ms ease, background 300ms ease; }
.showcase-card.is-changing { opacity: 0; transform: translateY(9px) scale(.99); }
.showcase-card.is-entering { animation: cardIn 350ms ease both; }
.theme-weather { background: #dcebf1; }
.theme-transit { background: #e9e3f1; }
.theme-arsenal { background: #edddd9; }
.theme-parcel { background: #e6eadc; }
.showcase-card-top { display: flex; justify-content: space-between; align-items: center; }
.showcase-card-top > p { margin: 0; font-size: .72rem; font-weight: 850; }
.showcase-card-top > p span:first-child { margin-right: 5px; color: var(--terracotta-dark); }
.source-pill { display: flex; align-items: center; gap: 6px; border: 1px solid rgba(49,77,67,.15); border-radius: 999px; background: rgba(255,255,255,.36); color: #466c5e; padding: 6px 9px; font-size: .56rem; font-weight: 800; }
.source-pill i { width: 5px; height: 5px; border-radius: 50%; background: #518a75; }
.showcase-answer { align-self: center; max-width: 500px; padding: 52px 0; }
.showcase-eyebrow { margin-bottom: 12px; color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.showcase-answer h3 { margin-bottom: 18px; font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.3rem); font-weight: 500; letter-spacing: -.06em; line-height: .92; }
.showcase-answer > p:last-child { max-width: 440px; margin: 0; color: var(--ink-soft); font-size: .8rem; line-height: 1.55; }
.showcase-card-bottom { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 10px; border-top: 1px solid rgba(70,52,40,.14); padding-top: 16px; }
.showcase-card-bottom p { display: grid; gap: 4px; margin: 0; }
.showcase-card-bottom span { color: var(--muted); font-size: .48rem; text-transform: uppercase; letter-spacing: .1em; }
.showcase-card-bottom strong { overflow: hidden; font-size: .57rem; text-overflow: ellipsis; white-space: nowrap; }
.source-orbit { position: absolute; z-index: 4; display: grid; width: 60px; height: 60px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); box-shadow: 0 12px 28px rgba(70,42,26,.1); color: var(--muted); font-size: .5rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.source-orbit-one { top: 2%; right: 10%; }
.source-orbit-two { bottom: 5%; left: 3%; }
.source-orbit-three { right: -1%; bottom: 23%; }

.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 15px; }
.why-card { position: relative; overflow: hidden; min-height: 315px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); padding: 28px; }
.why-card h3 { max-width: 350px; margin: 35px 0 10px; font-family: var(--display); font-size: 2rem; font-weight: 600; letter-spacing: -.045em; }
.why-card > p { max-width: 440px; color: var(--muted); font-size: .83rem; line-height: 1.6; }
.why-icon { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--terracotta); }
.why-card-large { display: grid; min-height: 410px; grid-template-columns: 1fr .8fr; align-items: center; background: var(--ink); color: var(--surface); }
.why-card-large .why-icon { position: absolute; top: 28px; left: 28px; border-color: #675145; }
.why-card-large h3 { margin-top: 45px; font-size: 3.4rem; }
.why-card-large p { color: #b9a698; }
.done-demo { display: grid; min-height: 190px; place-items: center; border: 1px solid #654f43; border-radius: 24px; background: #35251c; transform: rotate(3deg); }
.done-demo span { color: #a99486; font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; }
.done-demo i { display: grid; width: 62px; height: 62px; place-items: center; border-radius: 50%; background: var(--terracotta); color: white; font-family: var(--sans); font-size: 1.4rem; font-style: normal; box-shadow: 0 0 0 12px rgba(197,106,60,.12); }
.rhythm-lines { position: absolute; right: 26px; bottom: 27px; left: 26px; display: flex; height: 60px; align-items: end; gap: 8px; }
.rhythm-lines i { flex: 1; height: 30%; border-radius: 999px 999px 0 0; background: #d7b09b; }
.rhythm-lines i:nth-child(2) { height: 70%; }.rhythm-lines i:nth-child(3) { height: 42%; }.rhythm-lines i:nth-child(4) { height: 86%; }.rhythm-lines i:nth-child(5) { height: 55%; }.rhythm-lines i:nth-child(6) { height: 100%; background: var(--terracotta); }
.source-stack { position: absolute; right: 24px; bottom: 25px; left: 24px; display: grid; gap: 5px; }
.source-stack span { border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--muted); padding: 9px 12px; font-size: .58rem; }
.source-stack span:nth-child(2) { margin-left: 25px; }.source-stack span:nth-child(3) { margin-left: 50px; }
.why-card-quote { display: grid; align-content: center; background: #dca17f; }
.why-card-quote > p { max-width: none; color: var(--ink); font-family: var(--display); font-size: clamp(2rem, 3.5vw, 3.35rem); font-weight: 500; letter-spacing: -.05em; line-height: 1; }

.closing { position: relative; overflow: hidden; border-radius: 44px 44px 0 0; background: #e4c2ad; padding: clamp(100px, 13vw, 170px) 24px; text-align: center; }
.closing::before, .closing::after { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(111,68,45,.15); border-radius: 50%; }
.closing::before { top: -230px; left: -170px; box-shadow: 0 0 0 80px rgba(111,68,45,.025); }
.closing::after { right: -190px; bottom: -250px; box-shadow: 0 0 0 80px rgba(111,68,45,.025); }
.closing .section-kicker { position: relative; z-index: 2; }
.closing h2 { position: relative; z-index: 2; max-width: 1060px; margin: 22px auto 24px; }
.closing h2 em { color: var(--terracotta-dark); font-weight: 500; }
.closing > p:not(.section-kicker):not(.form-note):not(.form-status) { position: relative; z-index: 2; max-width: 570px; margin: 0 auto 34px; color: var(--ink-soft); line-height: 1.6; }
.signup-form { position: relative; z-index: 3; display: flex; width: min(100%, 590px); gap: 8px; margin: 0 auto; border: 1px solid rgba(80,51,34,.2); border-radius: 999px; background: var(--surface); padding: 6px; box-shadow: 0 18px 45px rgba(76,43,24,.12); }
.signup-form input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); padding: 0 16px; }
.signup-form input::placeholder { color: #a38a77; }
.signup-form input:focus-visible { border-radius: 999px; box-shadow: inset 0 0 0 2px var(--terracotta); }
.signup-form .button { min-height: 48px; }
.form-note, .form-status { position: relative; z-index: 2; margin: 14px auto 0; color: #806451; font-size: .65rem; }
.form-status { min-height: 1.2rem; color: #3f6d59; font-weight: 700; }
.form-status.is-error { color: #9b4928; }
.closing-orbit span { position: absolute; border: 1px solid rgba(91,63,46,.19); border-radius: 999px; background: rgba(251,244,231,.5); color: var(--ink-soft); padding: 9px 13px; font-size: .58rem; font-weight: 750; }
.closing-orbit span:nth-child(1) { top: 20%; left: 7%; transform: rotate(-8deg); }.closing-orbit span:nth-child(2) { top: 16%; right: 8%; transform: rotate(6deg); }.closing-orbit span:nth-child(3) { bottom: 20%; left: 9%; transform: rotate(5deg); }.closing-orbit span:nth-child(4) { right: 10%; bottom: 23%; transform: rotate(-7deg); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: end; background: var(--ink); color: var(--surface); padding: 55px max(24px, calc((100vw - 1180px) / 2)); }
.site-footer .brand { color: var(--surface); }
.footer-brand > p { margin: 12px 0 0; color: #a99587; font-size: .72rem; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer nav a { color: #c7b5a8; font-size: .67rem; text-decoration: none; }
.site-footer nav a:hover { color: white; }
.footer-meta { justify-self: end; margin: 0; color: #a99587; font-size: .62rem; text-align: right; }
.footer-meta span { display: block; margin-top: 6px; }

:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }
@keyframes breathe { 0%,100% { opacity: .25; transform: scale(.85); } 50% { opacity: .9; transform: scale(1.15); } }
@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
@keyframes cardIn { from { opacity: 0; transform: translateY(9px) scale(.99); } to { opacity: 1; transform: none; } }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(100%, 680px); margin: 0 auto; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-copy { max-width: 680px; }
  .showcase-stage { width: min(100%, 700px); margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: auto; display: grid; grid-template-columns: 50px minmax(250px, .8fr) 1fr; gap: 24px; align-items: center; }
  .step-visual { margin: 0; }
  .step-card h3 { align-self: end; margin: 0; }
  .step-card > p { grid-column: 3; align-self: start; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card-large { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 84px; }
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 58px; padding-left: 16px; border-color: var(--line); background: rgba(251,244,231,.9); backdrop-filter: blur(18px); }
  .menu-button { display: flex; align-items: center; gap: 10px; border: 0; background: transparent; color: var(--ink); padding: 10px; cursor: pointer; }
  .menu-button-label { font-size: .68rem; font-weight: 750; }
  .menu-lines { display: grid; gap: 5px; }
  .menu-lines i { display: block; width: 17px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: absolute; top: calc(100% + 8px); left: 0; display: none; width: 100%; align-items: stretch; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); padding: 12px; }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 13px; }
  .site-nav .nav-cta { text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 125px 20px 90px; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-product { min-height: 555px; margin-top: 20px; }
  .product-shell { min-height: 565px; border-radius: 30px; padding: 18px; transform: none; }
  .product-greeting { padding-top: 20px; }
  .card-weather { min-height: 190px; }
  .orbit-label-team, .orbit-label-route { display: none; }
  .orbit-label-weather { top: 0; left: -7px; }.orbit-label-parcel { right: -5px; bottom: 1%; }
  .scale-statement { padding-inline: 20px; }
  .scale-statement h2 strong { font-size: clamp(3.9rem, 17vw, 6rem); }
  .scale-foot { grid-template-columns: 1fr; margin-top: 45px; }
  .scale-line { width: 100%; }
  .old-new, .why { padding-inline: 20px; }
  .primitive-row { grid-template-columns: 1fr; gap: 13px; padding: 22px 0; }
  .primitive-arrow { transform: rotate(90deg); transform-origin: left; margin-left: 20px; }
  .primitive-new { align-items: flex-start; flex-direction: column; }
  .how, .showcase { padding-inline: 20px; }
  .step-card { display: block; padding: 20px; }
  .step-number { margin-bottom: 18px; }
  .step-visual { height: 220px; margin: 0 0 25px; }
  .step-card h3 { margin-bottom: 9px; }
  .showcase-stage { min-height: 510px; }
  .showcase-stage::before { width: 360px; height: 360px; }
  .showcase-card { min-height: 420px; border-radius: 26px; padding: 21px; }
  .showcase-answer { padding: 42px 0; }
  .showcase-card-bottom { grid-template-columns: 1fr 1fr; }
  .showcase-card-bottom p:last-child { display: none; }
  .source-orbit { display: none; }
  .why-card-large { display: block; }
  .why-card-large h3 { margin-top: 65px; font-size: 2.8rem; }
  .done-demo { min-height: 150px; margin-top: 30px; }
  .why-card-quote > p { font-size: 2.25rem; }
  .closing { border-radius: 30px 30px 0 0; padding-inline: 20px; }
  .closing h2 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .closing-orbit { display: none; }
  .signup-form { align-items: stretch; flex-direction: column; border-radius: 22px; padding: 7px; }
  .signup-form input { min-height: 50px; }
  .signup-form .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { flex-wrap: wrap; }
  .footer-meta { justify-self: start; text-align: left; }
}

@media (max-width: 430px) {
  .hero-product { min-height: 525px; }
  .product-shell { min-height: 535px; }
  .today-label { display: none; }
  .product-topbar { grid-template-columns: 1fr 1fr; }
  .weather-reading strong { font-size: 3.4rem; }
  .card-arsenal { display: none; }
  .showcase-card-top .source-pill { display: none; }
  .interest-picker button { flex: 1 1 calc(50% - 8px); justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 2026 campaign art direction — electric, bright, and unmistakably digital. */
body {
  background:
    radial-gradient(circle at 8% 14%, rgba(184,255,90,.22), transparent 22rem),
    var(--paper);
}
.brand { font-family: var(--sans); font-weight: 850; letter-spacing: -.05em; }
.brand-mark i { background: var(--cobalt, #355cff); }
.brand-mark i:nth-child(4n + 2) { background: var(--lime); }
.brand-mark i:nth-child(4n + 3) { background: var(--coral); }
.site-header.is-scrolled { background: rgba(255,255,255,.78); box-shadow: 0 14px 50px rgba(20,51,130,.1); }
.site-nav .nav-cta { background: var(--ink); }

.hero {
  max-width: none;
  min-height: 900px;
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr);
  padding-inline: max(48px, calc((100vw - 1280px) / 2));
  background: linear-gradient(105deg, rgba(245,247,255,1) 0%, rgba(245,247,255,.97) 40%, rgba(245,247,255,.1) 70%);
  isolation: isolate;
}
.hero::before {
  top: -120px;
  right: -80px;
  width: min(68vw, 980px);
  height: 1040px;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  opacity: .92;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--paper) 0 38%, rgba(245,247,255,.86) 49%, transparent 72%);
  pointer-events: none;
}
.eyebrow { color: var(--cobalt, #355cff); }
.eyebrow-dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(184,255,90,.2); }
.eyebrow-dot::after { border-color: var(--cobalt, #355cff); }
.hero h1 { max-width: 760px; font-weight: 760; letter-spacing: -.07em; line-height: .92; }
.hero h1 em {
  display: inline-block;
  color: var(--cobalt, #355cff);
  font-style: normal;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: .12em;
  text-underline-offset: .08em;
}
.button-primary { background: var(--cobalt, #355cff); box-shadow: 0 15px 38px rgba(53,92,255,.27); }
.button-primary:hover { background: #183edc; box-shadow: 0 18px 44px rgba(53,92,255,.34); }
.hero-note span { color: var(--coral); }
.product-shell {
  width: min(100%, 500px);
  border-color: rgba(255,255,255,.78);
  border-radius: 34px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 40px 100px rgba(17,52,132,.25), inset 0 1px rgba(255,255,255,.95);
  transform: rotate(1deg) translateX(5%);
}
.avatar { background: var(--cobalt, #355cff); }
.card-weather { background: linear-gradient(145deg, #d8f4ff, #f6fbff); border-color: rgba(39,113,184,.15); }
.card-weather::after { background: var(--lime); box-shadow: 0 0 80px rgba(184,255,90,.65); opacity: .7; }
.card-transit { background: linear-gradient(135deg, #ece9ff, #fbfaff); }
.card-arsenal { background: linear-gradient(135deg, #ffe6e1, #fff8f6); }
.fresh-badge { color: #174f44; }
.fresh-badge i { background: #00a67d; }
.orbit-label { border-color: rgba(53,92,255,.2); background: rgba(255,255,255,.88); box-shadow: 0 14px 38px rgba(21,54,140,.16); color: var(--ink); }
.orbit-label-weather { background: var(--lime); }
.orbit-label-team { background: #ffe0d9; }
.orbit-label-route { background: #ded9ff; }
.orbit-label-parcel { background: white; }

.scale-statement {
  border: 0;
  background:
    radial-gradient(circle at 87% 18%, rgba(122,92,255,.52), transparent 26rem),
    radial-gradient(circle at 12% 100%, rgba(53,92,255,.58), transparent 28rem),
    var(--ink);
}
.scale-statement .section-kicker { color: var(--lime); }
.scale-statement h2 span { color: #7785a7; }
.scale-statement h2 strong { color: white; font-weight: 720; }
.scale-foot p { color: #8f9ab4; }
.scale-foot p:last-child { color: white; }
.scale-line { background: #42506d; }
.scale-line i { background: var(--lime); box-shadow: 0 0 0 8px rgba(184,255,90,.15), 0 0 22px rgba(184,255,90,.65); }

.old-new { background: var(--paper); }
.section-heading h2, .showcase-copy h2, .closing h2 { font-weight: 730; line-height: .94; }
.primitive-new { background: white; box-shadow: 0 8px 28px rgba(31,57,125,.06); }
.primitive-new span { color: var(--cobalt, #355cff); }
.primitive-new strong { font-family: var(--sans); font-weight: 730; }
.primitive-arrow { color: var(--cobalt, #355cff); }

.how {
  background:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,.8), transparent 20rem),
    #dcffae;
}
.step-card { border-color: rgba(7,21,47,.12); background: rgba(255,255,255,.86); box-shadow: 0 20px 50px rgba(42,80,47,.09); }
.step-card h3 { font-family: var(--sans); font-weight: 760; }
.ask-window p { background: var(--cobalt, #355cff); box-shadow: 0 18px 38px rgba(53,92,255,.26); font-family: var(--sans); font-weight: 650; }
.keep-window { border-color: #99c8ff; background: linear-gradient(145deg, #dff4ff, #eef8ff); }
.keep-window strong { font-family: var(--sans); font-weight: 760; }
.pulse-ring { border-color: rgba(53,92,255,.18); box-shadow: 0 0 0 30px rgba(53,92,255,.05), 0 0 0 60px rgba(53,92,255,.035); }

.showcase {
  color: white;
  background:
    radial-gradient(circle at 75% 22%, rgba(53,92,255,.22), transparent 22rem),
    var(--ink);
}
.showcase-copy .section-kicker { color: var(--lime); }
.showcase-copy h2 em { color: var(--lime); font-style: normal; }
.showcase-copy > p { color: #aab4cb; }
.interest-picker button { border-color: #41506e; color: #b8c0d1; }
.interest-picker button:hover { border-color: var(--lime); }
.interest-picker button[aria-pressed="true"] { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.interest-picker button span { color: var(--coral); }
.showcase-stage::before { border-color: #34425e; box-shadow: 0 0 0 70px rgba(53,92,255,.035); }
.showcase-card { color: var(--ink); border-color: rgba(255,255,255,.5); box-shadow: 0 36px 90px rgba(0,0,0,.34); }
.theme-weather { background: linear-gradient(145deg, #dff6ff, #f8fdff); }
.theme-transit { background: linear-gradient(145deg, #ded8ff, #f3f0ff); }
.theme-arsenal { background: linear-gradient(145deg, #ffd8d0, #fff2ef); }
.theme-parcel { background: linear-gradient(145deg, #e6ffc4, #f8ffed); }
.source-orbit { border-color: #4a5874; background: var(--ink); color: #c0c9db; box-shadow: 0 12px 30px rgba(0,0,0,.24); }

.why { max-width: 1280px; }
.why-card { background: white; box-shadow: 0 16px 40px rgba(33,58,128,.07); }
.why-card-large { background: linear-gradient(145deg, #274ced, #724eff); }
.why-card-large .why-icon { border-color: rgba(255,255,255,.35); color: var(--lime); }
.why-card-large p { color: #d9defd; }
.done-demo { border-color: rgba(255,255,255,.22); background: rgba(4,18,54,.3); }
.done-demo span { color: #ced6ff; }
.done-demo i { background: var(--lime); color: var(--ink); box-shadow: 0 0 0 12px rgba(184,255,90,.15); }
.rhythm-lines i { background: #b9c7ff; }
.rhythm-lines i:nth-child(6) { background: var(--cobalt, #355cff); }
.why-icon { color: var(--cobalt, #355cff); }
.why-card-quote { background: var(--coral); }
.why-card-quote > p { color: var(--ink); font-family: var(--sans); font-weight: 720; }

.closing {
  color: white;
  background:
    radial-gradient(circle at 8% 12%, rgba(184,255,90,.48), transparent 20rem),
    radial-gradient(circle at 90% 85%, rgba(255,128,102,.56), transparent 22rem),
    linear-gradient(135deg, #264cf0, #7453ff);
}
.closing::before, .closing::after { border-color: rgba(255,255,255,.2); }
.closing .section-kicker { color: var(--lime); }
.closing h2 em { color: var(--lime); font-style: normal; }
.closing > p:not(.section-kicker):not(.form-note):not(.form-status) { color: #e0e5ff; }
.signup-form { border-color: rgba(255,255,255,.4); background: white; box-shadow: 0 22px 60px rgba(4,18,54,.25); }
.form-note { color: #d8def5; }
.form-status { color: var(--lime); }
.form-status.is-error { color: #ffe0da; }
.closing-orbit span { border-color: rgba(255,255,255,.32); background: rgba(7,21,47,.23); color: white; backdrop-filter: blur(10px); }
.site-footer { background: #040b1b; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero::before { top: 420px; right: -10%; width: 115%; height: 760px; opacity: .75; }
  .hero::after { background: linear-gradient(180deg, var(--paper) 0 48%, rgba(245,247,255,.65) 68%, transparent 95%); }
  .product-shell { transform: rotate(1deg); }
}

@media (max-width: 760px) {
  .site-header { background: rgba(255,255,255,.86); }
  .hero { padding-inline: 20px; }
  .hero::before { top: 520px; right: -35%; width: 150%; height: 650px; }
  .hero h1 { font-size: clamp(3.15rem, 14vw, 4.5rem); line-height: .94; }
  .hero h1 em { text-decoration-thickness: .1em; }
  .product-shell { transform: none; }
  .how { background: #dcffae; }
  .showcase { background: var(--ink); }
}

/* Final restraint pass: the product carries the color; the site stays quiet. */
:root {
  --ink: #17191e;
  --ink-soft: #444850;
  --muted: #777c86;
  --cobalt: #6672b5;
  --terracotta: #6672b5;
  --terracotta-dark: #4e598f;
  --lime: #d9ddd4;
  --coral: #bc8981;
  --violet: #7771a0;
  --sky: #e5ebef;
  --paper: #f3f4f2;
  --surface: #fbfbfa;
  --line: rgba(23,25,30,.12);
  --line-strong: rgba(23,25,30,.22);
  --shadow: 0 30px 80px rgba(27,31,39,.16);
}
body { background: var(--paper); }
.brand-mark i { background: #6672b5; }
.brand-mark i:nth-child(4n + 2) { background: #99a29b; }
.brand-mark i:nth-child(4n + 3) { background: #bc8981; }
.site-header.is-scrolled { background: rgba(251,251,250,.9); box-shadow: 0 12px 40px rgba(20,23,29,.08); }
.site-nav .nav-cta, .button-primary { background: var(--ink); box-shadow: none; }
.site-nav .nav-cta:hover, .button-primary:hover { background: #343842; box-shadow: 0 12px 28px rgba(23,25,30,.16); }
.hero {
  background: linear-gradient(90deg, rgba(243,244,242,1) 0 47%, rgba(243,244,242,.88) 60%, rgba(243,244,242,.25) 100%);
}
.hero::before {
  opacity: .15;
  filter: saturate(.12) contrast(.85);
}
.hero::after { background: linear-gradient(90deg, var(--paper) 0 43%, rgba(243,244,242,.82) 57%, transparent 78%); }
.eyebrow { color: var(--ink-soft); }
.eyebrow-dot { background: #9ca59c; box-shadow: 0 0 0 4px rgba(102,114,181,.1); }
.eyebrow-dot::after { border-color: #929ba6; }
.hero h1 em { color: var(--cobalt); text-decoration-color: #cbd0c8; }
.hero-note span { color: var(--coral); }
.app-shot { position: relative; z-index: 3; width: min(100%, 420px); margin: 0; transform: rotate(1.5deg) translateX(6%); }
.app-shot-screen {
  height: 700px;
  overflow: hidden;
  border: 7px solid #0d0f13;
  border-radius: 58px;
  background: #202124;
  box-shadow: 0 45px 100px rgba(20,23,29,.28), 0 0 0 1px rgba(255,255,255,.55);
}
.app-shot-screen img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.app-shot figcaption { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: calc(100% - 34px); margin: -24px auto 0; position: relative; z-index: 2; border: 1px solid var(--line); border-radius: 18px; background: rgba(251,251,250,.94); box-shadow: 0 14px 35px rgba(23,25,30,.13); padding: 14px 17px; backdrop-filter: blur(12px); }
.app-shot figcaption span { color: var(--muted); font-size: .56rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.app-shot figcaption strong { font-size: .67rem; }
.orbit-label { border-color: rgba(23,25,30,.14); background: rgba(251,251,250,.94); color: var(--ink-soft); box-shadow: 0 10px 28px rgba(23,25,30,.11); }
.orbit-label-weather, .orbit-label-team, .orbit-label-route, .orbit-label-parcel { background: rgba(251,251,250,.94); }

.scale-statement { background: #1d2026; }
.scale-statement .section-kicker { color: #aab1d8; }
.scale-statement h2 span { color: #747985; }
.scale-line i { background: #aab1d8; box-shadow: 0 0 0 7px rgba(170,177,216,.13); }
.primitive-new { box-shadow: none; }
.primitive-new span, .primitive-arrow { color: var(--cobalt); }
.how { background: #e6e8e4; }
.step-card { background: rgba(251,251,250,.92); box-shadow: 0 15px 36px rgba(23,25,30,.05); }
.ask-window p { background: #555f91; box-shadow: 0 16px 32px rgba(55,63,91,.18); }
.keep-window { border-color: #c4ccd1; background: linear-gradient(145deg, #e6ecef, #f5f7f7); }
.showcase { background: #22252b; }
.showcase-copy .section-kicker { color: #b6bbd8; }
.showcase-copy h2 em { color: #d4d8ec; }
.interest-picker button[aria-pressed="true"] { border-color: #e7e9ef; background: #e7e9ef; color: var(--ink); }
.showcase-stage::before { border-color: #444953; box-shadow: 0 0 0 70px rgba(255,255,255,.018); }
.why-card { box-shadow: 0 12px 35px rgba(23,25,30,.055); }
.why-card-large { background: #30343d; }
.why-card-large .why-icon { color: #c9cedf; }
.why-card-large p { color: #b9bec9; }
.done-demo { background: #262930; }
.done-demo i { background: #c6cadb; color: var(--ink); box-shadow: 0 0 0 12px rgba(198,202,219,.1); }
.rhythm-lines i { background: #c9cdd9; }
.rhythm-lines i:nth-child(6) { background: #737fae; }
.why-card-quote { background: #d5d7df; }
.closing { background: #292d36; }
.closing::before, .closing::after { border-color: rgba(255,255,255,.09); }
.closing .section-kicker { color: #aeb4cf; }
.closing h2 em { color: #cbd0e5; }
.closing > p:not(.section-kicker):not(.form-note):not(.form-status) { color: #bfc4cf; }
.closing-orbit span { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.04); }

@media (max-width: 1000px) {
  .hero::before { opacity: .1; }
  .app-shot { transform: rotate(1deg); }
}
@media (max-width: 760px) {
  .hero::before { opacity: .08; }
  .hero h1 { font-size: clamp(3.15rem, 14vw, 4.5rem); }
  .app-shot { width: min(92%, 390px); transform: none; }
  .app-shot-screen { height: 650px; border-radius: 50px; }
  .how { background: #e6e8e4; }
  .showcase { background: #22252b; }
}

.interest-cloud {
  overflow: hidden;
  background: #e7e9e6;
  padding: clamp(82px, 10vw, 130px) 0;
}
.interest-cloud-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 50px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 52px;
  padding: 0 24px;
}
.interest-cloud-heading .section-kicker { margin-bottom: 16px; }
.interest-cloud-heading h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 730;
  letter-spacing: -.065em;
  line-height: .92;
}
.interest-cloud-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}
.motion-lanes { display: grid; gap: 13px; }
.motion-lane {
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.motion-track {
  display: flex;
  width: max-content;
  animation: interestMarquee 52s linear infinite;
  will-change: transform;
}
.motion-lane-reverse .motion-track { animation-direction: reverse; animation-duration: 58s; }
.motion-group { display: flex; flex-shrink: 0; gap: 12px; padding-right: 12px; }
.interest-bubble {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(23,25,30,.16);
  border-radius: 999px;
  background: #616872;
  box-shadow: 0 10px 26px rgba(23,25,30,.14), inset 0 1px rgba(255,255,255,.1);
  color: #fff;
  padding: 9px 17px 9px 10px;
  font-size: .78rem;
  font-weight: 680;
  white-space: nowrap;
}
.interest-bubble i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .68rem;
  font-style: normal;
  font-weight: 850;
}
.interest-bubble-dark { border-color: #29303d; background: #29303d; color: #fff; }
.interest-bubble-dark i { background: rgba(255,255,255,.14); color: #fff; }
.interest-bubble-accent { border-color: #6865ff; background: #6865ff; color: #fff; }
.interest-bubble-accent i { background: rgba(255,255,255,.16); color: #fff; }
.motion-group .interest-bubble:nth-child(5n + 1):not(.interest-bubble-dark):not(.interest-bubble-accent) { border-color: #009c6d; background: #009c6d; }
.motion-group .interest-bubble:nth-child(5n + 2):not(.interest-bubble-dark):not(.interest-bubble-accent) { border-color: #1689db; background: #1689db; }
.motion-group .interest-bubble:nth-child(5n + 3):not(.interest-bubble-dark):not(.interest-bubble-accent) { border-color: #9c42c1; background: #9c42c1; }
.motion-group .interest-bubble:nth-child(5n + 4):not(.interest-bubble-dark):not(.interest-bubble-accent) { border-color: #e65c46; background: #e65c46; }
.motion-group .interest-bubble:nth-child(5n):not(.interest-bubble-dark):not(.interest-bubble-accent) { border-color: #859600; background: #859600; }
@keyframes interestMarquee { to { transform: translateX(-50%); } }

@media (max-width: 760px) {
  .interest-cloud-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; padding-inline: 20px; }
  .interest-cloud-heading h2 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .motion-track { animation-duration: 46s; }
  .motion-lane-reverse .motion-track { animation-duration: 51s; }
  .interest-bubble { min-height: 48px; padding-right: 15px; font-size: .73rem; }
  .interest-bubble i { width: 29px; height: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  .interest-cloud { padding-inline: 20px; }
  .motion-lane { overflow: visible; mask-image: none; -webkit-mask-image: none; }
  .motion-track { width: auto; animation: none !important; }
  .motion-group { flex-wrap: wrap; }
  .motion-group[aria-hidden="true"] { display: none; }
}

/* Product-first editorial direction, inspired by the restraint and pacing of Lucas. */
:root {
  --forest: #214b38;
  --forest-soft: #52705f;
  --warm-white: #f8f7f2;
  --warm-panel: #efeee8;
  --display: Georgia, "Times New Roman", serif;
}
body { background: var(--warm-white); color: #20231f; }
.site-header { width: min(1340px, calc(100% - 48px)); padding-inline: 4px; }
.site-header.is-scrolled { border-color: transparent; border-radius: 0; background: rgba(248,247,242,.92); box-shadow: 0 1px rgba(32,35,31,.08); }
.brand { color: var(--forest); }
.brand-mark i, .brand-mark i:nth-child(4n + 2), .brand-mark i:nth-child(4n + 3) { background: var(--forest); }
.site-nav a { color: #424940; font-weight: 520; }
.site-nav .nav-cta { background: #181a18; color: white; }

.hero {
  display: block;
  min-height: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 32px 0;
  background: none;
  text-align: center;
}
.hero::before, .hero::after { display: none; }
.hero-copy { max-width: 940px; margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--forest-soft);
  padding: 0;
  font-size: .66rem;
  letter-spacing: .12em;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--forest); box-shadow: none; }
.eyebrow-dot::after { display: none; }
.hero h1 {
  max-width: 940px;
  margin: 0 auto 26px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(4rem, 7.4vw, 7rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .91;
}
.hero h1 em { display: inline; color: inherit; font-style: normal; font-weight: inherit; text-decoration: none; }
.hero-support { max-width: 660px; margin: 0 auto 30px; color: #607166; font-size: clamp(1.08rem, 1.7vw, 1.35rem); line-height: 1.48; }
.hero-actions { justify-content: center; gap: 22px; margin-bottom: 16px; }
.hero-actions .button-primary { min-width: 300px; background: #171917; box-shadow: none; }
.hero-actions .button-primary:hover { background: var(--forest); }
.hero-note { justify-content: center; color: #8a938d; }
.hero-note span { color: var(--forest-soft); }
.hero-product {
  position: relative;
  display: block;
  width: 100%;
  min-height: 680px;
  margin: 58px auto 0;
  overflow: hidden;
  border: 1px solid #dddeda;
  border-radius: 32px;
  background: var(--warm-panel);
}
.app-shot {
  position: absolute;
  bottom: -86px;
  left: 50%;
  width: min(100%, 430px);
  margin: 0;
  transform: translateX(-50%);
}
.app-shot-screen { height: 760px; border-width: 6px; border-radius: 60px; box-shadow: 0 28px 55px rgba(27,32,28,.18); }
.app-shot figcaption { display: none; }

.scale-statement {
  background: #e9ece5;
  color: var(--forest);
  padding-block: clamp(110px, 12vw, 165px);
  text-align: center;
}
.scale-statement .section-kicker { margin-bottom: 30px; color: #738278; }
.scale-statement h2 { max-width: 1050px; margin-inline: auto; }
.scale-statement h2 span { color: #7c8980; font-size: clamp(2rem, 3.8vw, 3.7rem); }
.scale-statement h2 strong { max-width: none; color: var(--forest); font-family: var(--display); font-size: clamp(3.8rem, 7.8vw, 7.5rem); font-weight: 600; }
.scale-foot { max-width: 900px; margin-inline: auto; text-align: left; }
.scale-foot p, .scale-foot p:last-child { color: #6f7b73; }
.scale-line { background: #c8cec9; }
.scale-line i { background: var(--forest); box-shadow: none; }

.interest-cloud { background: var(--warm-white); }
.interest-cloud-heading h2 { color: var(--forest); font-family: var(--display); font-weight: 600; letter-spacing: -.05em; }
.interest-cloud-heading > p { color: #6c776f; }

.old-new { max-width: 1100px; background: var(--warm-white); }
.section-kicker { color: #77837b; }
.section-heading h2, .showcase-copy h2, .closing h2 { color: var(--forest); font-family: var(--display); font-weight: 600; letter-spacing: -.05em; }
.section-heading > p:last-child { color: #6b766e; }
.primitive-row { grid-template-columns: 1fr 40px 1fr; }
.primitive-old strong, .primitive-new strong { font-family: var(--display); font-weight: 600; }
.primitive-new { border: 0; background: transparent; padding-inline: 0; }
.primitive-new span, .primitive-arrow { color: var(--forest-soft); }

.how { background: #eef0eb; }
.how .section-heading { margin-inline: auto; text-align: center; }
.steps { max-width: 1100px; margin: 0 auto; gap: 0; border-top: 1px solid #cfd4cf; }
.step-card {
  min-height: 0;
  border: 0;
  border-right: 1px solid #cfd4cf;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 34px 26px 16px;
}
.step-card:last-child { border-right: 0; }
.step-card h3 { color: var(--forest); font-family: var(--display); font-weight: 600; }
.step-visual { height: 220px; }
.ask-window p { background: var(--forest); box-shadow: none; font-family: var(--sans); }
.keep-window { border-color: #ccd6ce; background: #f8faf7; box-shadow: none; }

.showcase {
  min-height: 760px;
  border-top: 1px solid #dedfdb;
  background: var(--warm-white);
  color: #20231f;
}
.showcase-copy .section-kicker { color: #78847c; }
.showcase-copy h2 em { color: var(--forest); font-style: italic; font-weight: 500; }
.showcase-copy > p { color: #6b766e; }
.interest-picker button { border-color: #d2d7d2; color: #5e6962; }
.interest-picker button[aria-pressed="true"] { border-color: var(--forest); background: var(--forest); color: white; }
.interest-picker button span { color: inherit; }
.showcase-stage::before, .source-orbit { display: none; }
.showcase-card { border-color: #cbd3cc; box-shadow: 0 22px 48px rgba(38,53,44,.11); }

.why {
  max-width: none;
  background: var(--forest);
  color: white;
  padding-inline: max(24px, calc((100vw - 1100px) / 2));
}
.why .section-heading { max-width: 720px; }
.why .section-kicker { color: #a8bbae; }
.why .section-heading h2 { color: white; }
.why .section-heading > p:last-child { color: #b9c9bf; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.24); }
.principle { display: grid; min-height: 260px; align-content: space-between; border-right: 1px solid rgba(255,255,255,.24); padding: 24px 28px 30px 0; }
.principle + .principle { padding-left: 28px; }
.principle:last-child { border-right: 0; }
.principle > span { color: #9eb2a5; font-size: .68rem; }
.principle h3 { margin-bottom: 12px; font-family: var(--display); font-size: 2rem; font-weight: 600; }
.principle p { margin: 0; color: #bac9c0; font-size: .82rem; line-height: 1.6; }

.closing {
  border-radius: 0;
  background: var(--warm-white);
  color: var(--forest);
}
.closing::before, .closing::after { display: none; }
.closing .section-kicker { color: #79857d; }
.closing h2 em { color: var(--forest); font-style: italic; font-weight: 500; }
.closing > p:not(.section-kicker):not(.form-note):not(.form-status) { color: #69756d; }
.signup-form { border-color: #d5d9d5; box-shadow: none; }
.signup-form .button-primary { background: #171917; }
.form-note { color: #929a94; }
.form-status { color: var(--forest); }
.site-footer { background: #18392b; }

@media (max-width: 1000px) {
  .hero { padding-top: 130px; }
  .hero-product { min-height: 650px; }
  .app-shot { transform: translateX(-50%); }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); }
  .step-card { display: block; }
  .step-card > p { grid-column: auto; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 20px); padding-inline: 16px 9px; background: rgba(248,247,242,.94); }
  .hero { padding: 120px 20px 0; }
  .hero h1 { font-size: clamp(3.3rem, 14.5vw, 4.8rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .button-primary { width: min(100%, 320px); }
  .hero-product { min-height: 590px; margin-top: 44px; border-radius: 24px; }
  .app-shot { width: min(88%, 380px); }
  .app-shot-screen { height: 670px; border-radius: 50px; }
  .scale-statement { padding-inline: 20px; }
  .scale-foot { text-align: left; }
  .primitive-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; border-top: 0; }
  .step-card { border-top: 1px solid #cfd4cf; border-right: 0; padding-inline: 0; }
  .showcase { padding-inline: 20px; }
  .principles { grid-template-columns: 1fr; }
  .principle, .principle + .principle { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); padding: 24px 0; }
  .principle:last-child { border-bottom: 0; }
  .closing h2 { font-size: clamp(3rem, 13vw, 4.8rem); }
}

/* Neutral campaign palette: Lucas structure without borrowing its green identity. */
:root {
  --forest: #24252c;
  --forest-soft: #686d84;
  --warm-white: #f7f6f2;
  --warm-panel: #ecebe7;
}
body { background: var(--warm-white); color: #24252c; }
.brand { color: #24252c; }
.brand-mark i { background: #24252c; }
.brand-mark i:nth-child(4n + 2) { background: #8b91ad; }
.brand-mark i:nth-child(4n + 3) { background: #b0b3bd; }
.eyebrow { color: #696e80; }
.eyebrow-dot { background: #747caa; }
.hero h1, .section-heading h2, .showcase-copy h2, .closing h2, .interest-cloud-heading h2 { color: #24252c; }
.hero-support { color: #6b6e77; }
.hero-product { background: #ecebe7; }
.scale-statement { background: #e9e9ee; color: #24252c; }
.scale-statement h2 span { color: #858792; }
.scale-statement h2 strong { color: #24252c; }
.scale-statement .section-kicker { color: #777b8d; }
.scale-foot p, .scale-foot p:last-child { color: #737680; }
.scale-line i { background: #747caa; }
.primitive-new span, .primitive-arrow { color: #686f9a; }
.how { background: #ededeb; }
.ask-window p { background: #4e557b; }
.showcase-copy h2 em, .closing h2 em { color: #4c5270; }
.interest-picker button[aria-pressed="true"] { border-color: #3a3c48; background: #3a3c48; }
.why { background: #292b34; }
.why .section-kicker { color: #afb3c4; }
.why .section-heading > p:last-child, .principle p { color: #c1c3cd; }
.principle > span { color: #9da2bb; }
.closing { background: var(--warm-white); }
.closing .section-kicker { color: #7a7e8d; }
.closing > p:not(.section-kicker):not(.form-note):not(.form-status) { color: #70737c; }
.form-status { color: #505675; }
.site-footer { background: #1d1e24; }

.scale-statement { position: relative; overflow: hidden; isolation: isolate; }
.scale-statement h2, .scale-statement .scale-foot { position: relative; z-index: 3; pointer-events: none; }
.network-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .66;
  pointer-events: auto;
}
.network-web {
  position: absolute;
  inset: 6% -4%;
  z-index: 1;
  width: 108%;
  height: 88%;
  margin: 0;
  opacity: .68;
}
.network-web svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.network-web path {
  fill: none;
  stroke: #c8cad4;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
  transition: stroke 240ms ease, stroke-width 240ms ease;
}
.network-web .network-curve { stroke: #b6b9c9; stroke-dasharray: 4 8; }
.network-web:hover path { stroke: #aeb2c4; stroke-width: 1.5; }
.network-node {
  --drift-x: 0px;
  --drift-y: 0px;
  position: absolute;
  z-index: 2;
  transform: translate(var(--drift-x), var(--drift-y));
  opacity: .78;
  transition: transform 180ms ease-out;
}
.network-node i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #c9cbd3;
  border-radius: 50%;
  background: rgba(248,247,242,.94);
  box-shadow: 0 8px 20px rgba(36,37,44,.09);
  color: #555b78;
  font-family: var(--sans);
  font-size: .88rem;
  font-style: normal;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.network-node-small i { width: 36px; height: 36px; font-size: .7rem; }
.network-node-micro { margin: -11px 0 0 -11px; opacity: .48; }
.network-node-micro i { width: 22px; height: 22px; border-color: #d0d2da; font-size: .48rem; box-shadow: 0 4px 12px rgba(36,37,44,.06); }
.network-node-micro:hover { opacity: 1; }
.network-node-micro:hover i { transform: scale(1.45) rotate(10deg); }
.network-web .network-generated-line { stroke: #d1d3da; stroke-width: .72; opacity: .74; }
.network-node:hover { z-index: 4; opacity: 1; }
.network-node:hover i { transform: scale(1.24) rotate(8deg); background: #292b34; color: white; box-shadow: 0 14px 30px rgba(36,37,44,.2); }
.node-globe { left: calc(10.5% - 23px); top: calc(38.7% - 23px); }
.node-weather { left: calc(20.5% - 23px); top: calc(16% - 23px); }
.node-travel { left: calc(24% - 23px); top: calc(81.7% - 23px); }
.node-sport { left: calc(32.5% - 23px); top: calc(56.7% - 23px); }
.node-shopping { left: calc(45.5% - 23px); top: calc(20.7% - 23px); }
.node-music { left: calc(59% - 23px); top: calc(48.3% - 23px); }
.node-market { left: calc(73% - 23px); top: calc(18% - 23px); }
.node-calendar { left: calc(72.4% - 23px); top: calc(83.3% - 23px); }
.node-local { left: calc(86% - 23px); top: calc(64.7% - 23px); }
.node-search { left: calc(4% - 18px); top: calc(20% - 18px); }
.node-flight { left: calc(15% - 18px); top: calc(78.3% - 18px); }
.node-news { left: calc(36% - 18px); top: calc(25% - 18px); }
.node-stock { left: calc(43% - 18px); top: calc(75% - 18px); }
.node-podcast { left: calc(52% - 18px); top: calc(70% - 18px); }
.node-ticket { left: calc(66% - 18px); top: calc(33.3% - 18px); }
.node-route { left: calc(81% - 18px); top: calc(33.3% - 18px); }
.node-film { left: calc(94% - 18px); top: calc(21.7% - 18px); }
.node-delivery { left: calc(95% - 18px); top: calc(80% - 18px); }
.scale-statement .scale-foot { margin-top: 105px; }

@media (max-width: 760px) {
  .network-web { inset: 12% -30% 8%; width: 160%; height: 80%; margin: 0; opacity: .48; }
  .network-node i { width: 38px; height: 38px; font-size: .75rem; }
  .network-node-small i { width: 30px; height: 30px; font-size: .62rem; }
  .network-node-micro { margin: -8px 0 0 -8px; }
  .network-node-micro i { width: 16px; height: 16px; font-size: .38rem; }
  .node-globe { left: calc(10.5% - 19px); top: calc(38.7% - 19px); }
  .node-weather { left: calc(20.5% - 19px); top: calc(16% - 19px); }
  .node-travel { left: calc(24% - 19px); top: calc(81.7% - 19px); }
  .node-sport { left: calc(32.5% - 19px); top: calc(56.7% - 19px); }
  .node-shopping { left: calc(45.5% - 19px); top: calc(20.7% - 19px); }
  .node-music { left: calc(59% - 19px); top: calc(48.3% - 19px); }
  .node-market { left: calc(73% - 19px); top: calc(18% - 19px); }
  .node-calendar { left: calc(72.4% - 19px); top: calc(83.3% - 19px); }
  .node-local { left: calc(86% - 19px); top: calc(64.7% - 19px); }
  .node-search { left: calc(4% - 15px); top: calc(20% - 15px); }
  .node-flight { left: calc(15% - 15px); top: calc(78.3% - 15px); }
  .node-news { left: calc(36% - 15px); top: calc(25% - 15px); }
  .node-stock { left: calc(43% - 15px); top: calc(75% - 15px); }
  .node-podcast { left: calc(52% - 15px); top: calc(70% - 15px); }
  .node-ticket { left: calc(66% - 15px); top: calc(33.3% - 15px); }
  .node-route { left: calc(81% - 15px); top: calc(33.3% - 15px); }
  .node-film { left: calc(94% - 15px); top: calc(21.7% - 15px); }
  .node-delivery { left: calc(95% - 15px); top: calc(80% - 15px); }
  .scale-statement .scale-foot { margin-top: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  .network-node { transform: none !important; transition: none; }
  .network-node i { transition: none; }
}
