:root {
  color-scheme: dark;
  --ink: #080a0d;
  --ink-soft: #0d1117;
  --panel: rgba(18, 23, 31, 0.82);
  --panel-solid: #12171f;
  --line: rgba(196, 211, 227, 0.12);
  --line-strong: rgba(216, 185, 95, 0.32);
  --paper: #f4f0e7;
  --muted: #9ba5b3;
  --gold: #d8b95f;
  --gold-pale: #f0d98e;
  --cyan: #36d8e8;
  --danger: #ff9d94;
  --success: #72e0c1;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(216, 185, 95, 0.08), transparent 34%),
    linear-gradient(180deg, #080a0d 0%, #090c10 56%, #080a0d 100%);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  content: '';
  pointer-events: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .06;
  pointer-events: none;
}

.ambient-one {
  top: 8vh;
  right: -260px;
  background: var(--cyan);
}

.ambient-two {
  top: 110vh;
  left: -330px;
  background: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100vw - 32px));
  min-height: 74px;
  margin: 10px auto 0;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(8, 10, 13, .78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  text-decoration: none;
}

.brand span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -.01em;
}

.brand em {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .16em;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--paper);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: .52;
  cursor: wait;
  transform: none;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-primary {
  background: linear-gradient(135deg, #e6cc7a, #b9973e);
  box-shadow: 0 12px 36px rgba(216, 185, 95, .16);
  color: #11100b;
}

.button-primary:hover {
  background: linear-gradient(135deg, #f1da91, #c7a64e);
}

.button-secondary,
.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, .035);
  color: var(--paper);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--line-strong);
  background: rgba(216, 185, 95, .06);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
  min-height: calc(100vh - 84px);
  padding-block: 90px 82px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(114, 224, 193, .08), 0 0 14px rgba(114, 224, 193, .48);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6.7vw, 94px);
  letter-spacing: -.055em;
}

h1 span {
  background: linear-gradient(100deg, var(--gold-pale), var(--gold) 58%, #a98735);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -.035em;
}

.hero-lede {
  max-width: 650px;
  margin: 0 0 34px;
  color: #b7bec8;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.direct-channel {
  margin: 22px 0 0;
  color: #77818f;
  font-size: 13px;
}

.direct-channel a {
  color: #bdc5cf;
  text-underline-offset: 4px;
}

.continuity-console {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .05), transparent 38%),
    rgba(12, 16, 22, .82);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .04);
}

.continuity-console::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 45%, rgba(54, 216, 232, .035), transparent 62%);
  content: '';
  pointer-events: none;
}

.console-topline {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: space-between;
  color: #73808f;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .15em;
}

.console-topline span:first-child {
  color: #8ea29f;
}

.console-topline i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.console-orbit {
  position: relative;
  display: grid;
  place-items: center;
  height: 310px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(216, 185, 95, .15);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(54, 216, 232, .7);
  content: '';
}

.orbit::before { top: 18%; right: 8%; }
.orbit::after { bottom: 10%; left: 22%; background: var(--gold); }
.orbit-one { width: 230px; height: 230px; animation: spin 28s linear infinite; }
.orbit-two { width: 162px; height: 162px; border-color: rgba(54, 216, 232, .12); animation: spin-reverse 19s linear infinite; }

.orbit-core {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(216, 185, 95, .24);
  border-radius: 28px;
  background: rgba(10, 13, 17, .9);
  box-shadow: 0 0 60px rgba(216, 185, 95, .12);
}

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

.console-grid article {
  min-height: 112px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 15px;
  background: rgba(255, 255, 255, .025);
}

.console-grid small,
.card-index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
}

.console-grid strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.console-grid span {
  color: #7f8997;
  font-size: 11px;
}

.signal-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  padding: 22px;
  border-block: 1px solid var(--line);
  color: #727d8b;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.signal-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.difference,
.process {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 10vw, 140px);
  padding-block: 160px;
}

.section-heading > p:last-child,
.section-kicker + p,
.guide-invite p,
.bento p,
.process-list p {
  color: var(--muted);
}

.section-heading > p:last-child {
  max-width: 550px;
  font-size: 17px;
  line-height: 1.75;
}

.difference-visual {
  padding: 54px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(216, 185, 95, .05), rgba(54, 216, 232, .025));
}

.memory-line {
  display: flex;
  align-items: center;
}

.memory-line span {
  display: grid;
  place-items: center;
  flex: 0 0 74px;
  height: 74px;
  border: 1px solid rgba(216, 185, 95, .28);
  border-radius: 50%;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 15px;
}

.memory-line span:nth-of-type(2) {
  border-color: rgba(54, 216, 232, .35);
  color: var(--cyan);
  box-shadow: 0 0 34px rgba(54, 216, 232, .07);
}

.memory-line i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 185, 95, .25), rgba(54, 216, 232, .32));
}

.difference-visual p {
  margin: 28px 0 0;
  color: #6e7988;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-align: center;
}

.capabilities {
  padding-block: 40px 150px;
}

.section-kicker {
  max-width: 720px;
  margin-bottom: 58px;
}

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

.bento {
  min-height: 350px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(54, 216, 232, .045), transparent 35%),
    var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.bento-wide {
  grid-column: span 1;
}

.bento h3 {
  max-width: 500px;
}

.bento p:not(.card-index) {
  max-width: 590px;
  font-size: 15px;
  line-height: 1.75;
}

.source-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
}

.source-chips span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #8d98a5;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.research-pulse {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 50px;
}

.research-pulse i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

.research-pulse i:nth-child(2) { animation-delay: .2s; opacity: .7; }
.research-pulse i:nth-child(3) { animation-delay: .4s; opacity: .4; }
.research-pulse span { margin-left: 6px; color: #778492; font-family: var(--mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.bento-authority {
  background: radial-gradient(circle at 80% 15%, rgba(216, 185, 95, .08), transparent 40%), var(--panel);
}

.authority-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
  color: #798492;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.authority-flow .gold { color: var(--gold); }
.authority-flow i { color: #48515d; font-style: normal; }

.process {
  border-top: 1px solid var(--line);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 27px;
}

.process-list p {
  max-width: 480px;
  margin: 0;
  font-size: 14px;
}

.guide-invite {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: 60px;
  margin-block: 20px 160px;
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid rgba(54, 216, 232, .2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 100%, rgba(54, 216, 232, .08), transparent 40%),
    linear-gradient(135deg, rgba(18, 24, 32, .92), rgba(11, 15, 20, .92));
}

.guide-invite h2 {
  margin-bottom: 14px;
  font-size: clamp(40px, 4vw, 60px);
}

.guide-invite p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.guide-invite-actions {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.guide-invite-actions a {
  color: #929daa;
  font-size: 13px;
  text-underline-offset: 4px;
}

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  padding-bottom: 160px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 1px;
  background: var(--gold);
  content: '';
  transition: transform .2s ease;
}

.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }

.faq-list details p {
  max-width: 640px;
  margin: -4px 46px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 110px;
  padding: 110px 30px;
  border-block: 1px solid var(--line);
  text-align: center;
}

.final-cta > img { margin-bottom: 22px; }
.final-cta h2 { max-width: 720px; }
.final-cta > p:not(.eyebrow) { margin: 0 0 28px; color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-block: 0 42px;
  color: #697481;
}

.site-footer > p {
  margin: 0;
  font-size: 12px;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.floating-guide {
  position: fixed;
  z-index: 25;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  min-width: 150px;
  padding: 12px 17px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(12, 16, 21, .9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.floating-guide .status-dot {
  grid-row: span 2;
  align-self: center;
}

.floating-guide strong {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}

.floating-guide em {
  color: #7d8794;
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.panel-dialog {
  width: min(600px, calc(100vw - 24px));
  max-width: none;
  max-height: calc(100dvh - 24px);
  margin: auto 12px auto auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #0d1117;
  box-shadow: 0 30px 120px rgba(0, 0, 0, .7);
  color: var(--paper);
}

.panel-dialog[open] {
  animation: panel-in .25s ease-out;
}

.panel-dialog::backdrop {
  background: rgba(3, 5, 7, .76);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 24px);
  padding: 26px;
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dialog-header .eyebrow { margin-bottom: 7px; }
.dialog-header h2 { margin: 0; font-size: 34px; }

.icon-button {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  color: #9ba5b1;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.boundary-note {
  margin: 14px 0;
  padding: 11px 13px;
  border: 1px solid rgba(54, 216, 232, .12);
  border-radius: 10px;
  background: rgba(54, 216, 232, .035);
  color: #8493a1;
  font-size: 11px;
}

.chat-feed {
  flex: 1;
  min-height: 260px;
  padding: 8px 4px 18px;
  overflow-y: auto;
  scrollbar-color: #303842 transparent;
}

.chat-message {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 10px;
  margin: 13px 0;
}

.chat-message > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(216, 185, 95, .25);
  border-radius: 9px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
}

.chat-message p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px 14px 14px;
  background: rgba(255, 255, 255, .035);
  color: #c1c7cf;
  font-size: 13px;
  line-height: 1.65;
}

.user-message {
  grid-template-columns: 1fr 30px;
}

.user-message > span { grid-column: 2; grid-row: 1; border-color: rgba(54, 216, 232, .22); color: var(--cyan); }
.user-message p { justify-self: end; border-radius: 14px 4px 14px 14px; background: rgba(54, 216, 232, .05); }
.loading-message p::after { content: '···'; color: var(--cyan); letter-spacing: .16em; animation: blink 1.2s steps(2) infinite; }

.quick-questions {
  display: flex;
  gap: 7px;
  padding: 3px 0 12px;
  overflow-x: auto;
}

.quick-questions button {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #87919e;
  font-size: 10px;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 9px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .025);
}

.chat-form textarea {
  min-height: 44px;
  max-height: 140px;
  padding: 10px;
  resize: vertical;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 13px;
}

.chat-form textarea::placeholder { color: #626d79; }

.send-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  background: var(--gold);
  color: #0d0e0a;
  font-size: 22px;
  cursor: pointer;
}

.text-action {
  align-self: center;
  margin: 15px 0 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  cursor: pointer;
}

.intake-dialog {
  width: min(800px, calc(100vw - 24px));
}

.intake-shell {
  overflow-y: auto;
}

.step-meter {
  display: flex;
  align-items: flex-start;
  margin: 24px 0 30px;
}

.step-meter > span {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #65717e;
  font-family: var(--mono);
  font-size: 9px;
}

.step-meter > span.active {
  border-color: var(--gold);
  background: rgba(216, 185, 95, .08);
  color: var(--gold-pale);
}

.step-meter > span.done {
  border-color: rgba(114, 224, 193, .4);
  color: var(--success);
}

.step-meter em {
  position: absolute;
  margin-top: 52px;
  color: #65717e;
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}

.step-meter i {
  flex: 1;
  height: 1px;
  margin-top: 16px;
  background: var(--line);
}

.form-step {
  padding-top: 12px;
}

.step-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-step h3 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 42px);
}

.step-intro {
  max-width: 640px;
  margin: 0 0 24px;
  color: #8a95a2;
  font-size: 13px;
}

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

.field-wide { grid-column: 1 / -1; }

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field > span,
.choice-group legend {
  color: #aab2bc;
  font-size: 12px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, .025);
  color: var(--paper);
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(54, 216, 232, .38);
  box-shadow: 0 0 0 3px rgba(54, 216, 232, .05);
}

.field textarea { resize: vertical; }
.field small { color: #626e7a; font-size: 10px; text-align: right; }

.choice-group {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 11px;
}

.choice-group legend small {
  margin-left: 5px;
  color: #606b77;
  font-weight: 400;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.choice-grid-three { grid-template-columns: repeat(3, 1fr); }

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #84909d;
  font-size: 11px;
  text-align: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.choice-grid input:checked + span {
  border-color: rgba(216, 185, 95, .48);
  background: rgba(216, 185, 95, .07);
  color: var(--gold-pale);
}

.choice-grid input:focus-visible + span {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.conversation-picker {
  display: grid;
  gap: 8px;
  max-height: 310px;
  padding: 12px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .018);
}

.empty-context {
  margin: 20px;
  color: #707b88;
  font-size: 12px;
  text-align: center;
}

.conversation-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #9ca6b1;
  font-size: 11px;
  cursor: pointer;
}

.conversation-option:hover { background: rgba(255, 255, 255, .025); }
.conversation-option input { margin-top: 3px; accent-color: var(--gold); }
.conversation-option strong { display: block; margin-bottom: 2px; color: var(--gold); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.context-note { margin-top: 16px; }

.review-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
}

.review-row {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.review-row:last-child { padding-bottom: 0; border-bottom: 0; }
.review-row dt { color: #65717e; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.review-row dd { margin: 0; color: #b7c0ca; font-size: 12px; white-space: pre-wrap; }

.consent-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(216, 185, 95, .24);
  border-radius: 13px;
  background: rgba(216, 185, 95, .035);
  color: #aab3bd;
  font-size: 11px;
  cursor: pointer;
}

.consent-box input { margin-top: 3px; accent-color: var(--gold); }

.locked-review {
  margin-top: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(114, 224, 193, .22);
  border-radius: 12px;
  background: rgba(114, 224, 193, .035);
}

.locked-review span { color: var(--success); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.locked-review p { margin: 5px 0 0; color: #829087; font-size: 11px; }

.submission-result:not(:empty) {
  margin-top: 15px;
  padding: 15px;
  border: 1px solid rgba(114, 224, 193, .22);
  border-radius: 12px;
  background: rgba(114, 224, 193, .045);
  color: #a9cfbe;
  font-size: 12px;
}

.form-error {
  min-height: 21px;
  margin: 14px 0 0;
  color: var(--danger);
  font-size: 11px;
}

.form-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 12px;
}

.privacy-note {
  margin: 15px 0 0;
  color: #596570;
  font-size: 10px;
  text-align: center;
}

.privacy-note a { color: #85919e; text-underline-offset: 3px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }

.legal-page {
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-page h1 { font-size: clamp(48px, 7vw, 76px); }
.legal-page h2 { margin-top: 52px; font-size: 30px; }
.legal-page p, .legal-page li { color: #a1aab5; font-size: 15px; line-height: 1.8; }
.legal-page a { color: var(--gold-pale); }
.legal-meta { padding-bottom: 25px; border-bottom: 1px solid var(--line); color: #687481 !important; font-family: var(--mono); font-size: 10px !important; text-transform: uppercase; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes pulse { 0%, 100% { opacity: .3; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes blink { 50% { opacity: .25; } }
@keyframes panel-in { from { opacity: 0; transform: translateX(20px) scale(.99); } }

@media (max-width: 920px) {
  :root { --shell: min(100% - 32px, 760px); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 95px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .continuity-console { width: min(100%, 590px); margin-inline: auto; }
  .difference, .process, .faq { grid-template-columns: 1fr; gap: 50px; }
  .guide-invite { grid-template-columns: 1fr; text-align: center; }
  .guide-invite .eyebrow { justify-content: center; }
  .guide-invite p { margin-inline: auto; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p { display: none; }
}

@media (max-width: 650px) {
  :root { --shell: calc(100vw - 28px); }
  .site-header { min-height: 64px; padding: 8px 9px 8px 13px; border-radius: 15px; }
  .site-header .brand img { width: 29px; }
  .site-header .brand span { font-size: 16px; }
  .site-header .button { min-height: 38px; padding-inline: 13px; }
  .hero { padding-block: 75px 58px; gap: 54px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  h2 { font-size: clamp(38px, 12vw, 52px); }
  .hero-lede { font-size: 16px; }
  .continuity-console { min-height: 540px; padding: 15px; border-radius: 22px; }
  .console-orbit { height: 280px; }
  .console-grid article { min-height: 105px; }
  .signal-line { flex-wrap: wrap; gap: 12px 18px; font-size: 8px; }
  .difference, .process { padding-block: 110px; }
  .difference-visual { padding: 38px 16px; }
  .memory-line span { flex-basis: 60px; width: 60px; height: 60px; font-size: 13px; }
  .capabilities { padding-bottom: 110px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento { min-height: auto; padding: 28px; }
  .guide-invite { margin-bottom: 110px; padding: 42px 25px; }
  .faq { padding-bottom: 110px; }
  .final-cta { padding-block: 80px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer nav { gap: 22px; }
  .floating-guide { right: 13px; bottom: 12px; min-width: 51px; padding: 13px; border-radius: 17px; }
  .floating-guide strong, .floating-guide em { display: none; }
  .floating-guide .status-dot { width: 9px; height: 9px; }
  .panel-dialog, .intake-dialog { width: 100vw; max-height: 94dvh; margin: auto 0 0; border-radius: 24px 24px 0 0; }
  .dialog-shell { max-height: 94dvh; padding: 20px 16px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .field-wide { grid-column: auto; }
  .choice-grid, .choice-grid-three { grid-template-columns: repeat(2, 1fr); }
  .review-row { grid-template-columns: 1fr; gap: 4px; }
  .step-meter em { display: none; }
  .form-navigation .button { flex: 1; padding-inline: 13px; }
}

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