@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --paper: #f4f0e8;
  --paper-2: #e5e4df;
  --ink: #17272f;
  --ink-soft: #5b666a;
  --blue: #356a9e;
  --blue-dark: #263943;
  --lime: #cad9e9;
  --orange: #ad705f;
  --glass: rgba(246, 244, 238, .62);
  --glass-dark: rgba(42, 57, 64, .68);
  --line: rgba(16, 34, 43, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Manrope", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --page: min(1440px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,.72), transparent 26%),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { color: #fff; background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: #fff;
  background: var(--ink);
  border-radius: 3px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100vw - 40px));
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 10px 8px 18px;
  transform: translateX(-50%);
  background: rgba(246, 244, 238, .52);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68), 0 12px 36px rgba(23,39,47,.06);
  backdrop-filter: blur(22px) saturate(145%);
}
.site-header.scrolled {
  background: rgba(246, 244, 238, .76);
  border-color: rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 16px 54px rgba(23,39,47,.1);
}
.wordmark {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.06em;
}
.wordmark-orbit {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}
.wordmark-orbit::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 2px;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--paper);
}
.wordmark-orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translate(-50%, -50%);
  background: var(--lime);
  border-radius: 50%;
}
.desktop-nav { display: flex; gap: 32px; font-size: 13px; font-weight: 600; }
.desktop-nav a { position: relative; opacity: .78; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--ink);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.nav-cta {
  justify-self: end;
  padding: 13px 18px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.nav-cta:hover { color: var(--ink); background: rgba(255,255,255,.78); border-color: rgba(255,255,255,.9); transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: 970px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .82fr);
  gap: 5vw;
  align-items: center;
  padding: 130px max(36px, calc((100vw - 1440px) / 2)) 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .33;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000, rgba(0,0,0,.2) 70%, transparent 94%);
}
.orbit { position: absolute; pointer-events: none; border: 1px solid rgba(18, 60, 207, .14); border-radius: 50%; }
.orbit-one { width: 840px; height: 840px; top: 65px; right: -380px; }
.orbit-two { width: 540px; height: 540px; top: 220px; right: -185px; border-color: rgba(18, 60, 207, .22); }
.orbit-two::after {
  content: "";
  position: absolute;
  top: 101px;
  left: 22px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--blue);
}
.hero-copy { position: relative; z-index: 2; max-width: 830px; padding-left: clamp(0px, 3vw, 54px); }
.eyebrow, .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
}
.eyebrow span { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.hero h1, .manifesto h2, .section-heading h2, .inside-intro h2, .principles h2, .final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .91;
}
.hero h1 { max-width: 900px; font-size: clamp(72px, 7.3vw, 126px); }
h1 em, h2 em { font-weight: 400; color: var(--blue); }
.hero-lede { max-width: 590px; margin: 36px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 10px 30px rgba(18,60,207,.18); }
.button-primary:hover { color: var(--ink); background: rgba(255,255,255,.72); border-color: rgba(255,255,255,.9); box-shadow: 0 12px 30px rgba(53,106,158,.14); backdrop-filter: blur(18px); }
.text-link { font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--ink); padding: 6px 0; }
.text-link span { margin-left: 10px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 27px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.hero-note i { width: 1px; height: 14px; margin: 0 4px; background: var(--line); }
.pulse-dot { width: 7px; height: 7px; background: #3d8c47; border-radius: 50%; box-shadow: 0 0 0 5px rgba(61,140,71,.1); }

.hero-stage { position: relative; z-index: 2; align-self: end; height: 760px; }
.phone { position: relative; margin: 0 auto; }
.phone-hero { width: 344px; transform: rotate(2.2deg); filter: drop-shadow(0 38px 48px rgba(16,34,43,.24)); }
.phone-frame { padding: 9px; background: #152229; border: 1px solid rgba(255,255,255,.26); border-radius: 62px; box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 0 0 4px #0d171c; }
.phone-screen { position: relative; height: 710px; overflow: hidden; color: var(--paper); background: #24343b; border-radius: 53px; }
.phone-status { height: 44px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 2px 22px 0; font-size: 9px; font-weight: 700; }
.phone-status span:last-child { justify-self: end; letter-spacing: 2px; }
.phone-status.light { color: var(--ink); }
.dynamic-island { width: 88px; height: 23px; display: block; background: #020506; border-radius: 20px; }
.app-topline { display: flex; justify-content: space-between; align-items: flex-start; padding: 20px 21px 18px; }
.app-topline small { font-family: var(--mono); font-size: 7px; letter-spacing: .12em; opacity: .55; }
.app-topline h2 { margin: 9px 0 0; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.05em; line-height: .95; }
.avatar { width: 33px; height: 33px; color: var(--ink); background: var(--lime); border: 0; border-radius: 50%; font-size: 9px; font-weight: 700; }
.ask-bar { width: calc(100% - 42px); height: 46px; display: flex; justify-content: space-between; align-items: center; margin: 0 21px 22px; padding: 0 8px 0 15px; color: rgba(242,239,230,.72); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24); border-radius: 23px; box-shadow: inset 0 1px 0 rgba(255,255,255,.18); backdrop-filter: blur(18px); font-size: 10px; text-align: left; }
.ask-bar b { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 13px; }
.phone-section-title { display: flex; justify-content: space-between; padding: 0 21px 10px; font-family: var(--mono); font-size: 7px; letter-spacing: .12em; opacity: .55; }
.memory-card { margin: 0 14px 10px; padding: 17px; color: var(--ink); border-radius: 24px; box-shadow: inset 0 1px 0 rgba(255,255,255,.45); }
.card-bright { background: #dbe6f1; transform: rotate(-.3deg); }
.memory-meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 7px; letter-spacing: .08em; opacity: .6; }
.memory-card h3 { margin: 17px 0 8px; font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -.04em; line-height: 1.05; }
.memory-card p { margin: 0; font-size: 9px; line-height: 1.5; opacity: .72; }
.tag-row { display: flex; gap: 5px; margin-top: 15px; }
.tag-row span { padding: 4px 7px; border: 1px solid rgba(16,34,43,.18); border-radius: 20px; font-family: var(--mono); font-size: 6px; text-transform: uppercase; }
.card-dark { color: var(--paper); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); transform: rotate(.45deg); backdrop-filter: blur(16px); }
.card-dark h3 { font-size: 20px; }
.thought-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; color: var(--lime); font-family: var(--mono); font-size: 8px; }
.mini-wave { letter-spacing: 2px; }
.tab-bar { position: absolute; left: 9px; right: 9px; bottom: 8px; height: 70px; display: flex; align-items: center; justify-content: space-around; padding: 0 10px 6px; background: rgba(27,43,50,.68); border: 1px solid rgba(255,255,255,.2); border-radius: 30px; box-shadow: inset 0 1px 0 rgba(255,255,255,.15); backdrop-filter: blur(24px) saturate(135%); }
.tab-bar > span { min-width: 38px; display: flex; flex-direction: column; align-items: center; gap: 4px; color: rgba(242,239,230,.48); font-size: 14px; }
.tab-bar small { font-size: 6px; }
.tab-bar .active { color: var(--lime); }
.tab-bar button { width: 46px; height: 46px; color: var(--ink); background: var(--lime); border: 0; border-radius: 50%; font-size: 24px; }
.capture-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,.64); border: 1px solid rgba(255,255,255,.86); border-radius: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 16px 42px rgba(23,39,47,.13); backdrop-filter: blur(22px) saturate(145%); }
.capture-note small { display: block; color: var(--ink-soft); font-family: var(--mono); font-size: 6px; letter-spacing: .12em; }
.capture-note strong { display: block; margin-top: 3px; font-size: 10px; }
.note-safari { top: 100px; right: -2px; transform: rotate(3deg); }
.note-voice { bottom: 140px; left: -48px; transform: rotate(-4deg); }
.note-icon { width: 31px; height: 31px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; }
.waveform { width: 34px; height: 31px; display: flex; align-items: center; justify-content: center; gap: 2px; background: var(--lime); border-radius: 50%; }
.waveform i { width: 2px; background: var(--ink); border-radius: 2px; }
.waveform i:nth-child(1), .waveform i:nth-child(5) { height: 6px; }
.waveform i:nth-child(2), .waveform i:nth-child(4) { height: 13px; }
.waveform i:nth-child(3) { height: 18px; }
.hero-index { position: absolute; right: 34px; bottom: 48px; display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--mono); font-size: 8px; }
.hero-index i { width: 1px; height: 52px; background: var(--ink); }

.section-pad { padding-left: max(36px, calc((100vw - 1440px) / 2)); padding-right: max(36px, calc((100vw - 1440px) / 2)); }
.manifesto { padding-top: 155px; padding-bottom: 150px; }
.manifesto h2 { max-width: 1120px; font-size: clamp(60px, 7.2vw, 112px); }
.manifesto-copy { width: 50%; margin: 76px 0 0 auto; display: flex; align-items: center; gap: 60px; }
.manifesto-copy p { max-width: 560px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.7; }
.manifesto-mark { position: relative; flex: none; width: 110px; height: 110px; border: 1px solid var(--blue); border-radius: 50%; }
.manifesto-mark::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(18,60,207,.5); border-radius: 50%; }
.manifesto-mark span { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; transform: translate(-50%,-50%); background: var(--lime); border: 1px solid var(--ink); border-radius: 50%; }
.manifesto-mark i { position: absolute; top: 6px; left: 27px; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.manifesto-mark b { position: absolute; right: 5px; bottom: 28px; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

.ticker { overflow: hidden; color: var(--paper); background: var(--blue-dark); border-top: 1px solid var(--blue-dark); border-bottom: 1px solid var(--blue-dark); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 34px; padding: 18px 0; animation: ticker 30s linear infinite; }
.ticker span { font-family: var(--serif); font-size: 20px; font-style: italic; }
.ticker i { color: var(--lime); font-style: normal; font-size: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.workflow { padding-top: 150px; padding-bottom: 160px; background: #e5e4df; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; column-gap: 80px; }
.section-heading .kicker { grid-column: 1 / -1; }
.section-heading h2 { font-size: clamp(66px, 7vw, 108px); }
.section-heading > p:last-child { max-width: 390px; margin: 0 0 8px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.workflow-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 8vw; align-items: center; max-width: 1260px; margin: 120px auto 0; }
.workflow-steps { border-top: 1px solid var(--line); }
.workflow-step { width: 100%; display: grid; grid-template-columns: 44px 1fr 30px; gap: 20px; align-items: start; padding: 30px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; text-align: left; transition: opacity .25s ease; }
.workflow-step:not(.active) { opacity: .5; }
.workflow-step:hover { opacity: 1; }
.step-number { padding-top: 4px; font-family: var(--mono); font-size: 10px; }
.step-content strong { display: block; font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -.035em; line-height: 1.05; }
.step-content small { max-width: 520px; display: block; height: 0; margin-top: 0; overflow: hidden; color: var(--ink-soft); font-size: 14px; line-height: 1.65; opacity: 0; transition: height .35s ease, margin .35s ease, opacity .35s ease; }
.workflow-step.active .step-content small { height: 70px; margin-top: 13px; opacity: 1; }
.step-arrow { font-size: 21px; transform: rotate(45deg); transition: transform .3s ease; }
.workflow-step.active .step-arrow { color: var(--blue); transform: rotate(0); }
.demo-wrap { position: relative; width: 100%; min-height: 730px; display: grid; place-items: center; }
.demo-halo { position: absolute; width: 540px; height: 540px; border: 1px solid rgba(18,60,207,.35); border-radius: 50%; }
.demo-halo::before, .demo-halo::after { content: ""; position: absolute; border-radius: 50%; }
.demo-halo::before { inset: 58px; border: 1px solid rgba(18,60,207,.18); }
.demo-halo::after { width: 12px; height: 12px; top: 100px; right: 40px; background: var(--blue); box-shadow: 0 0 0 8px #e5e4df; }
.phone-demo { z-index: 2; width: 318px; filter: drop-shadow(0 34px 45px rgba(16,34,43,.2)); }
.phone-demo .phone-screen { height: 656px; background: #f8f5ec; }
.demo-screen { color: var(--ink); }
.screen-panel { position: absolute; inset: 44px 0 0; display: none; padding: 0 18px 22px; animation: panel-in .35s ease both; }
.screen-panel.active { display: block; }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } }
.demo-nav { min-height: 39px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; font-size: 9px; }
.demo-nav strong { font-size: 10px; }
.demo-nav span:last-child { justify-self: end; }
.capture-orb { position: relative; width: 132px; height: 132px; display: grid; place-items: center; margin: 24px auto 20px; border: 1px solid var(--blue); border-radius: 50%; }
.capture-orb::before { content: ""; position: absolute; inset: 17px; border: 1px solid rgba(18,60,207,.25); border-radius: 50%; }
.capture-orb::after { content: ""; position: absolute; top: 11px; right: 16px; width: 8px; height: 8px; background: var(--lime); border: 1px solid var(--ink); border-radius: 50%; }
.capture-orb span { width: 54px; height: 54px; display: grid; place-items: center; color: #fff; background: rgba(53,106,158,.78); border: 1px solid rgba(255,255,255,.72); border-radius: 50%; box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 8px 24px rgba(53,106,158,.2); backdrop-filter: blur(16px); font-size: 27px; }
.screen-kicker { margin: 0 0 8px; font-family: var(--mono); font-size: 7px; letter-spacing: .12em; text-align: center; opacity: .55; }
.screen-panel > h3 { margin: 0 0 24px; font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -.04em; text-align: center; }
.capture-options { display: grid; gap: 7px; }
.capture-options button { display: grid; grid-template-columns: 36px 1fr; gap: 0 10px; align-items: center; padding: 12px; color: var(--ink); background: rgba(255,255,255,.48); border: 1px solid rgba(255,255,255,.9); border-radius: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.72); backdrop-filter: blur(16px); text-align: left; }
.capture-options button > span { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; }
.capture-options b { font-size: 10px; }
.capture-options small { color: var(--ink-soft); font-size: 7px; }
.understood-art { position: relative; height: 134px; display: flex; align-items: flex-end; justify-content: space-between; margin: 8px 0 20px; padding: 18px; color: #fff; background: var(--blue); overflow: hidden; border-radius: 24px; }
.understood-art::before { content: ""; position: absolute; width: 180px; height: 180px; top: -80px; right: -20px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; }
.understood-art::after { content: ""; position: absolute; width: 7px; height: 7px; top: 25px; right: 39px; background: var(--lime); border-radius: 50%; }
.understood-art span { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.understood-art b { font-family: var(--serif); font-size: 36px; font-weight: 400; }
.understood-art i { position: absolute; left: 18px; bottom: 50px; width: 48px; height: 1px; background: rgba(255,255,255,.5); }
.screen-panel[data-panel="understand"] .screen-kicker { text-align: left; }
.screen-panel[data-panel="understand"] > h3 { margin-bottom: 12px; font-size: 27px; text-align: left; }
.summary { margin: 0; color: var(--ink-soft); font-size: 9px; line-height: 1.62; }
.detail-label { margin: 24px 0 8px; font-family: var(--mono); font-size: 7px; letter-spacing: .12em; opacity: .55; }
.entity-list { border-top: 1px solid var(--line); }
.entity-list > span { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 600; }
.entity-list i { font-family: var(--mono); font-size: 6px; font-style: normal; font-weight: 400; text-transform: uppercase; opacity: .55; }
.user-question { width: 86%; margin: 25px 0 20px auto; padding: 12px 13px; color: #fff; background: var(--blue); border-radius: 18px 18px 5px 18px; font-size: 10px; line-height: 1.45; }
.assistant-answer { font-family: var(--serif); font-size: 13px; line-height: 1.5; }
.assistant-answer p { margin: 0 0 13px; }
.assistant-answer strong { font-weight: 600; }
.source-label { display: flex; align-items: center; gap: 6px; margin-top: 16px !important; font-family: var(--mono); font-size: 6px !important; letter-spacing: .1em; }
.source-label span { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }
.source-label.web span { background: var(--lime); border: 1px solid var(--ink); }
.source-chips { display: flex; gap: 5px; margin: -4px 0 18px; }
.source-chips span { padding: 6px 7px; border: 1px solid var(--line); border-radius: 20px; font-family: var(--sans); font-size: 6px; }
.chat-field { position: absolute; left: 18px; right: 18px; bottom: 18px; height: 41px; display: flex; justify-content: space-between; align-items: center; padding-left: 13px; color: var(--ink-soft); background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.9); border-radius: 23px; box-shadow: inset 0 1px 0 rgba(255,255,255,.7); backdrop-filter: blur(18px); font-size: 8px; }
.chat-field b { width: 30px; height: 30px; display: grid; place-items: center; margin-right: 5px; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 13px; }
.demo-caption { position: absolute; right: -8px; bottom: 24px; transform: rotate(-90deg); transform-origin: right bottom; font-family: var(--mono); font-size: 7px; letter-spacing: .12em; }

.inside { color: var(--paper); background: #24343b; }
.inside-intro { padding-top: 150px; }
.inside-intro .kicker { color: var(--lime); }
.inside-intro h2 { max-width: 1000px; font-size: clamp(64px, 7vw, 108px); }
.inside-intro h2 em { color: var(--lime); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 110px; padding-bottom: 150px; }
.feature-card { min-height: 670px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(26px, 4vw, 58px); overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 34px; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.feature-category { grid-column: 1 / -1; min-height: 600px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; align-items: center; background: #31444d; }
.feature-copy { max-width: 500px; }
.card-index { margin: 0 0 50px; color: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .13em; }
.feature-card h3 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(38px, 4vw, 58px); font-weight: 400; letter-spacing: -.05em; line-height: .96; }
.feature-copy > p:last-child { margin: 0; color: rgba(242,239,230,.62); font-size: 14px; line-height: 1.7; }
.briefing-paper { position: relative; padding: 38px 44px 40px; color: var(--ink); background: rgba(246,244,238,.82); border: 1px solid rgba(255,255,255,.86); border-radius: 28px; box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 18px 18px 0 rgba(53,106,158,.72); backdrop-filter: blur(20px); transform: rotate(1deg); }
.briefing-head { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.briefing-paper h4 { margin: 38px 0 24px; font-family: var(--serif); font-size: 45px; font-weight: 400; letter-spacing: -.05em; }
.briefing-paper > p { max-width: 600px; margin: 0; font-family: var(--serif); font-size: 17px; line-height: 1.55; }
.briefing-line { display: flex; align-items: baseline; gap: 7px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }
.briefing-line span { font-family: var(--serif); font-size: 28px; }
.briefing-line small { font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.briefing-line i { flex: 1; height: 1px; margin: 0 12px; background: var(--line); }
.margin-note { position: absolute; right: 13px; top: 118px; transform: rotate(90deg) translateX(100%); transform-origin: right top; color: var(--blue); font-family: var(--mono); font-size: 7px; line-height: 1.5; text-align: right; text-transform: uppercase; }
.feature-language { background: #334b58; }
.language-demo { margin-top: 70px; }
.language-query, .language-result { display: grid; grid-template-columns: 35px 1fr; gap: 15px; align-items: start; }
.language-query > span, .language-result > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(242,239,230,.35); border-radius: 50%; font-family: var(--mono); font-size: 8px; }
.language-query p { margin: 6px 0 0; font-family: var(--serif); font-size: 22px; font-style: italic; }
.thread-line { height: 90px; display: flex; align-items: center; gap: 8px; padding-left: 16px; }
.thread-line::before { content: ""; width: 1px; height: 100%; background: linear-gradient(transparent, var(--lime), transparent); }
.thread-line i { width: 4px; height: 4px; background: rgba(242,239,230,.3); border-radius: 50%; }
.thread-line i:nth-child(3) { background: var(--lime); }
.language-result > span { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.language-result small { display: block; margin-bottom: 8px; color: var(--lime); font-family: var(--mono); font-size: 7px; letter-spacing: .12em; }
.language-result strong { display: block; max-width: 430px; font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.25; }
.language-result p { margin: 9px 0 0; color: rgba(242,239,230,.45); font-size: 9px; }
.feature-sources { color: var(--ink); background: #d8dde0; }
.feature-sources .card-index { color: var(--blue); }
.feature-sources .feature-copy > p:last-child { color: rgba(16,34,43,.65); }
.source-stack { display: grid; margin-top: 70px; border-top: 1px solid rgba(16,34,43,.25); }
.source-stack > div { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 8px; padding: 19px 0; border-bottom: 1px solid rgba(16,34,43,.25); }
.source-dot { width: 8px; height: 8px; border: 1px solid var(--ink); border-radius: 50%; }
.source-dot.cobalt { background: var(--blue); }
.source-dot.lime { background: var(--paper); }
.source-dot.orange { background: var(--orange); }
.source-stack small { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.source-stack strong { font-family: var(--serif); font-size: 15px; font-weight: 400; }

.principles { position: relative; min-height: 860px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: center; overflow: hidden; color: var(--paper); background: #416f98; }
.principles::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(to right, rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 80px 80px; }
.principles-copy, .principle-list { position: relative; z-index: 2; }
.kicker.light { color: var(--lime); }
.principles h2 { font-size: clamp(55px, 6vw, 88px); }
.principles h2 em { color: var(--lime); }
.principles-copy > p:not(.kicker) { max-width: 560px; margin: 32px 0; color: rgba(242,239,230,.7); font-size: 16px; line-height: 1.75; }
.button-light { color: var(--ink); background: rgba(255,255,255,.62); border-color: rgba(255,255,255,.82); box-shadow: inset 0 1px 0 rgba(255,255,255,.75); backdrop-filter: blur(18px); }
.button-light:hover { background: rgba(255,255,255,.8); }
.principle-list { border-top: 1px solid rgba(242,239,230,.28); }
.principle-list > div { display: grid; grid-template-columns: 44px .7fr 1fr; gap: 20px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid rgba(242,239,230,.28); }
.principle-list span { color: var(--lime); font-family: var(--mono); font-size: 9px; }
.principle-list h3 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.principle-list p { margin: 0; color: rgba(242,239,230,.58); font-size: 12px; line-height: 1.65; }
.principles-orbit { position: absolute; width: 780px; height: 780px; right: -500px; bottom: -300px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.principles-orbit::before { content: ""; position: absolute; inset: 100px; border: 1px solid rgba(215,255,95,.3); border-radius: 50%; }
.principles-orbit span { position: absolute; left: 57px; top: 96px; width: 12px; height: 12px; background: var(--lime); border-radius: 50%; }

.final-cta { position: relative; min-height: 800px; display: grid; place-items: center; overflow: hidden; text-align: center; }
.cta-copy { position: relative; z-index: 2; max-width: 900px; }
.cta-copy .kicker { justify-content: center; }
.final-cta h2 { font-size: clamp(66px, 8vw, 120px); }
.final-cta p:not(.kicker) { max-width: 580px; margin: 34px auto; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.cta-orbit { position: absolute; width: 670px; height: 670px; border: 1px solid rgba(18,60,207,.16); border-radius: 50%; }
.cta-orbit::before { content: ""; position: absolute; inset: 90px; border: 1px solid rgba(18,60,207,.1); border-radius: 50%; }
.cta-orbit span, .cta-orbit i, .cta-orbit b { position: absolute; border-radius: 50%; }
.cta-orbit span { width: 11px; height: 11px; top: 77px; left: 130px; background: var(--blue); }
.cta-orbit i { width: 7px; height: 7px; right: 87px; top: 204px; background: var(--orange); }
.cta-orbit b { width: 8px; height: 8px; bottom: 104px; left: 118px; background: var(--lime); border: 1px solid var(--ink); }

.site-footer { min-height: 190px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; padding: 50px max(36px, calc((100vw - 1440px) / 2)); color: var(--paper); background: #24343b; border-top: 1px solid rgba(242,239,230,.12); }
.footer-wordmark { font-size: 72px; font-weight: 700; letter-spacing: -.08em; line-height: .8; }
.footer-wordmark span { color: var(--lime); }
.site-footer > p { margin: 0; color: rgba(242,239,230,.5); font-family: var(--serif); font-size: 16px; font-style: italic; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; color: rgba(242,239,230,.55); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.footer-links a:hover { color: var(--lime); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hero .reveal { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 48px); }
  .hero { grid-template-columns: 1fr 410px; padding-left: 32px; padding-right: 32px; }
  .hero h1 { font-size: clamp(64px, 7.8vw, 88px); }
  .hero-stage { transform: scale(.9); transform-origin: center bottom; }
  .manifesto-copy { width: 62%; }
  .workflow-grid { grid-template-columns: 1fr .8fr; gap: 5vw; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-category { grid-column: auto; }
  .feature-language, .feature-sources { min-height: 590px; }
  .principles { gap: 6vw; }
}

@media (max-width: 960px) {
  .site-header { top: 10px; width: calc(100vw - 20px); grid-template-columns: 1fr auto; padding-left: 14px; }
  .desktop-nav { display: none; }
  .wordmark { font-size: 21px; }
  .nav-cta { padding: 11px 14px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 40px; padding: 145px 22px 0; }
  .hero-copy { padding-left: 0; }
  .hero h1 { font-size: clamp(61px, 17vw, 90px); }
  .hero-lede { font-size: 16px; }
  .hero-stage { width: 100%; height: 690px; transform: scale(.91); transform-origin: center bottom; }
  .note-safari { right: 0; }
  .note-voice { left: 0; }
  .hero-index { display: none; }
  .section-pad { padding-left: 22px; padding-right: 22px; }
  .manifesto { padding-top: 110px; padding-bottom: 110px; }
  .manifesto h2 { font-size: clamp(52px, 14vw, 76px); }
  .manifesto-copy { width: 100%; margin-top: 48px; gap: 25px; }
  .manifesto-copy p { font-size: 16px; }
  .manifesto-mark { width: 82px; height: 82px; }
  .workflow { padding-top: 110px; padding-bottom: 110px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: clamp(56px, 14vw, 80px); }
  .section-heading > p:last-child { margin-top: 30px; }
  .workflow-grid { grid-template-columns: 1fr; margin-top: 70px; }
  .workflow-steps { order: 2; }
  .demo-wrap { min-height: 710px; order: 1; }
  .step-content strong { font-size: 25px; }
  .inside-intro { padding-top: 110px; }
  .inside-intro h2 { font-size: clamp(55px, 14vw, 80px); }
  .feature-grid { padding-top: 70px; padding-bottom: 110px; }
  .feature-card { min-height: 590px; padding: 28px; }
  .feature-category { display: flex; }
  .briefing-paper { margin-top: 65px; padding: 30px; box-shadow: 10px 10px 0 var(--blue); }
  .briefing-paper h4 { font-size: 38px; }
  .principles { min-height: auto; grid-template-columns: 1fr; gap: 80px; padding-top: 120px; padding-bottom: 120px; }
  .principles h2 { font-size: clamp(54px, 14vw, 78px); }
  .principle-list > div { grid-template-columns: 36px 1fr; }
  .principle-list p { grid-column: 2; }
  .final-cta { min-height: 700px; }
  .site-footer { min-height: 260px; grid-template-columns: 1fr; gap: 28px; align-items: center; text-align: center; }
  .site-footer > p { text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 520px) {
  .nav-cta { font-size: 10px; }
  .wordmark-orbit { width: 21px; height: 21px; }
  .hero { padding-top: 128px; }
  .hero h1 { font-size: clamp(55px, 16.5vw, 72px); line-height: .94; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .button { width: 100%; }
  .hero-note { flex-wrap: wrap; }
  .hero-stage { left: auto; width: 100%; margin-left: 0; transform: scale(.82); }
  .manifesto-copy { align-items: flex-start; flex-direction: column; }
  .workflow-step { grid-template-columns: 32px 1fr 20px; gap: 10px; }
  .workflow-step.active .step-content small { height: 105px; }
  .demo-wrap { width: calc(100% + 44px); margin-left: -22px; transform: scale(.9); }
  .demo-halo { width: 470px; height: 470px; }
  .feature-card { min-height: 560px; }
  .feature-category { min-height: 700px; }
  .briefing-paper { padding: 24px; }
  .briefing-paper > p { font-size: 15px; }
  .briefing-line { flex-wrap: wrap; }
  .briefing-line i { display: none; }
  .margin-note { display: none; }
  .source-stack > div { grid-template-columns: 18px 1fr; }
  .source-stack strong { grid-column: 2; }
  .final-cta h2 { font-size: clamp(58px, 17vw, 84px); }
  .cta-orbit { width: 500px; height: 500px; }
  .footer-wordmark { font-size: 58px; }
}

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