:root {
  --paper: #fbfaf7;
  --paper-deep: #f2f0ea;
  --ink: #07111f;
  --muted: #59616c;
  --line: #d4d6d8;
  --blue: #0a51d0;
  --blue-dark: #073e9f;
  --coral: #ff684f;
  --night: #050d17;
  --success: #12743d;
  --error: #a42323;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(5rem, 9vw, 9rem);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

button,
input,
textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

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

.site-header {
  width: calc(100% - (2 * var(--gutter)));
  max-width: 1440px;
  min-height: 84px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.wordmark span { color: var(--coral); }

nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 3rem); }
nav a { font-weight: 520; text-decoration: none; }
nav a:hover { color: var(--blue); }
.nav-cta { border-bottom: 2px solid var(--blue); padding-bottom: .25rem; }

.hero {
  width: calc(100% - (2 * var(--gutter)));
  max-width: 1440px;
  min-height: min(780px, calc(100vh - 84px));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(520px, 1.04fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4.2rem, 8.1vw, 8rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: .9;
}

.hero h1 span { color: var(--blue); }

.hero-lede {
  max-width: 33rem;
  margin: 2.4rem 0 0;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-actions { display: flex; align-items: center; gap: 2.25rem; margin-top: 2rem; }

.button {
  min-height: 54px;
  border: 0;
  border-radius: 4px;
  padding: .9rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button--primary { background: var(--blue); color: white; box-shadow: 0 10px 26px rgb(10 81 208 / 18%); }
.button--primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.button:disabled { cursor: wait; opacity: .7; transform: none; }

.text-link { color: var(--blue); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: .45rem; }

.trust-line { display: flex; align-items: center; gap: .75rem; margin: 2.5rem 0 0; color: #333d49; font-size: .95rem; }
.trust-line svg { width: 28px; height: 28px; fill: none; stroke: var(--coral); stroke-width: 1.7; flex: 0 0 auto; }

.day-panel { border: 1px solid var(--line); background: rgb(255 255 255 / 45%); box-shadow: 0 24px 60px rgb(7 17 31 / 6%); }
.panel-head, .panel-foot { min-height: 78px; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.panel-head { border-bottom: 1px solid var(--line); }
.panel-head div { display: flex; align-items: center; gap: .8rem; font-size: 1.1rem; }
.panel-head > span { color: var(--muted); font-size: .85rem; }
.calendar-icon { width: 20px; height: 18px; border: 1.6px solid currentColor; display: inline-block; position: relative; }
.calendar-icon::after { content: ""; position: absolute; inset: 4px 0 auto; border-top: 1.6px solid currentColor; }

.timeline { margin: 0; padding: 0 1.5rem; list-style: none; }
.timeline li { min-height: 112px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 48px 20px 1fr auto; align-items: center; gap: 1rem; position: relative; }
.timeline time { color: var(--muted); font-size: .78rem; }
.timeline li:not(:last-child)::after { content: ""; position: absolute; left: 76px; top: 60%; height: 80%; border-left: 1.5px solid var(--blue); }
.timeline-dot { width: 12px; height: 12px; border: 2px solid var(--blue); border-radius: 50%; background: var(--paper); z-index: 1; }
.timeline-dot--coral { border-color: var(--coral); }
.timeline div { display: grid; gap: .2rem; }
.timeline strong { font-size: 1rem; }
.timeline small { color: var(--muted); font-size: .83rem; }
.review-label { border: 1px solid var(--blue); color: var(--blue); border-radius: 4px; padding: .38rem .65rem; font-weight: 700; font-size: .74rem; }
.panel-foot { margin: 0; color: var(--muted); font-size: .84rem; justify-content: flex-start; }
.panel-foot span { color: var(--blue); font-size: 1.4rem; }

.work-section {
  padding: clamp(4rem, 6vw, 6rem) var(--gutter) var(--section);
  background: white;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.work-section > * { width: 100%; max-width: 660px; }
.work-intro { justify-self: end; }
.work-intro h2, .closing-copy h2 { margin: 0; font-size: clamp(3rem, 5.1vw, 5.6rem); line-height: .98; letter-spacing: 0; font-weight: 580; }
.work-intro > p:not(.target-line):not(.claim-note) { max-width: 38rem; margin: 1.8rem 0 2.5rem; font-size: 1.15rem; color: #26303d; }

.responsibility-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #9da3aa; }
.responsibility-list li { min-height: 86px; border-bottom: 1px solid #bfc3c7; display: grid; grid-template-columns: 52px minmax(160px, 1fr) 1.15fr; align-items: center; gap: 1rem; }
.responsibility-list span { color: var(--blue); font-weight: 750; }
.responsibility-list strong { line-height: 1.2; }
.responsibility-list p { margin: 0; color: #2f3946; font-size: .9rem; line-height: 1.3; }
.target-line { margin: 2.7rem 0 .2rem; font-size: clamp(1.25rem, 2vw, 1.8rem); }
.target-line > span { color: var(--coral); margin-right: .8rem; }
.target-line strong { color: var(--blue); }
.claim-note { margin: .2rem 0 0; color: var(--muted); font-size: .78rem; }

.week-ledger { align-self: center; }
.ledger-head { display: grid; gap: .4rem; margin-bottom: 2.2rem; }
.ledger-head strong { color: var(--blue); text-transform: uppercase; letter-spacing: 0; font-size: .8rem; }
.ledger-head span { font-size: 1.1rem; }
.days { margin-left: 4.4rem; display: grid; grid-template-columns: repeat(5, 1fr); text-align: center; font-size: .78rem; font-weight: 750; text-transform: uppercase; }
.ledger-grid { height: 520px; margin-top: .8rem; border: 1px solid #aeb4ba; display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(4, 1fr); background-image: linear-gradient(to right, transparent calc(100% - 1px), #c7cbd0 1px), linear-gradient(to bottom, transparent calc(100% - 1px), #c7cbd0 1px); background-size: 20% 100%, 100% 25%; }
.task { margin: 1.2rem .7rem; padding-left: .65rem; border-left: 2px solid; font-size: .78rem; line-height: 1.25; display: flex; align-items: center; }
.task--blue { border-color: var(--blue); }
.task--coral { border-color: var(--coral); }
.task:nth-child(1) { grid-area: 1 / 1; }
.task:nth-child(2) { grid-area: 1 / 2; }
.task:nth-child(3) { grid-area: 1 / 3; }
.task:nth-child(4) { grid-area: 1 / 4; }
.task:nth-child(5) { grid-area: 1 / 5; }
.task:nth-child(6) { grid-area: 2 / 1; }
.task:nth-child(7) { grid-area: 2 / 2; }
.task:nth-child(8) { grid-area: 2 / 3; }
.task:nth-child(9) { grid-area: 2 / 4; }
.task:nth-child(10) { grid-area: 2 / 5; }
.task:nth-child(11) { grid-area: 3 / 1; }
.task:nth-child(12) { grid-area: 3 / 2; }
.task:nth-child(13) { grid-area: 3 / 3; }
.task:nth-child(14) { grid-area: 3 / 4; }
.task:nth-child(15) { grid-area: 3 / 5; }
.task:nth-child(16) { grid-area: 4 / 1; }
.task:nth-child(17) { grid-area: 4 / 2; }
.task:nth-child(18) { grid-area: 4 / 3; }
.task:nth-child(19) { grid-area: 4 / 4; }
.task:nth-child(20) { grid-area: 4 / 5; }
.ledger-legend { display: flex; gap: 2rem; border-bottom: 1px solid #aeb4ba; padding: 1.1rem 0; }
.ledger-legend span { display: flex; align-items: center; gap: .55rem; font-size: .8rem; }
.ledger-legend i { width: 40px; border-top: 2px solid; }
.ledger-legend .blue { border-color: var(--blue); }
.ledger-legend .coral { border-color: var(--coral); }
.week-ledger > p { color: var(--muted); font-size: .78rem; }

.concierge {
  padding: var(--section) var(--gutter);
  background: var(--night);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, .75fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.concierge-main { max-width: 900px; justify-self: end; }
.concierge h2, .fit-list h3 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
.concierge h2 { font-size: clamp(3.4rem, 6vw, 6.6rem); line-height: .94; }
.concierge-lede { max-width: 48rem; margin: 2rem 0 4.5rem; color: #d6dae0; font-size: 1.15rem; }
.process-line { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.process-line::before { content: ""; position: absolute; top: 12px; left: 10px; right: 10px; border-top: 2px solid var(--blue); }
.process-line li { position: relative; padding: 2.8rem 2rem 0 0; }
.process-line li::before { content: ""; width: 22px; height: 22px; position: absolute; top: 0; left: 0; border: 3px solid var(--blue); border-radius: 50%; background: var(--night); }
.process-line span { display: block; color: var(--coral); font-family: var(--serif); font-size: clamp(3.3rem, 5vw, 5rem); line-height: 1; }
.process-line strong { display: block; margin-top: .6rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.process-line p { max-width: 15rem; color: #d0d5dc; font-size: .9rem; }
.connector-note { max-width: 50rem; margin-top: 3.5rem; border-top: 1px solid rgb(255 255 255 / 18%); padding-top: 1.5rem; }
.connector-note strong { display: block; color: white; font-size: 1rem; letter-spacing: 0; }
.connector-note p { margin: .65rem 0 0; color: #d0d5dc; font-size: .95rem; }
.fit-list { border-left: 1px solid var(--blue); padding: 2rem 0 0 clamp(2rem, 3vw, 3rem); }
.fit-list h3 { font-size: clamp(2.3rem, 3.5vw, 4rem); border-bottom: 2px solid var(--blue); padding-bottom: 1.5rem; }
.fit-list ul { margin: 1.3rem 0 0; padding: 0; list-style: none; }
.fit-list li { min-height: 102px; border-bottom: 1px solid var(--blue); display: flex; align-items: center; gap: 1.4rem; font-size: 1.05rem; font-weight: 600; }
.fit-list li span { width: 44px; height: 44px; border: 1.5px solid var(--blue); border-radius: 50%; color: var(--blue); display: grid; place-items: center; flex: 0 0 auto; }

.early-access { padding: clamp(3rem, 5vw, 5rem) var(--gutter); display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); gap: clamp(4rem, 9vw, 9rem); align-items: center; }
.closing-copy { max-width: 650px; justify-self: end; }
.closing-copy > p { max-width: 34rem; margin: 2rem 0; font-size: 1.25rem; color: #2e3744; }
.short-rule { width: 92px; display: block; border-top: 6px solid var(--blue); margin-top: 2.2rem; }
.pilot-note, .trust-boundary { max-width: 28rem; margin-top: 4rem; border-left: 3px solid var(--coral); padding-left: 1.25rem; }
.trust-boundary { margin-top: 1.5rem; border-left-color: var(--blue); }
.pilot-note p, .trust-boundary p { margin: .35rem 0 0; color: var(--muted); }
.form-shell { max-width: 680px; }

form { border: 1px solid var(--line); background: rgb(255 255 255 / 55%); padding: clamp(1.4rem, 3vw, 2.5rem); box-shadow: 0 24px 60px rgb(7 17 31 / 6%); }
.field { display: grid; gap: .45rem; margin-bottom: 1.2rem; }
.hidden-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.field label, .field legend { font-weight: 700; font-size: .9rem; }
input, textarea { width: 100%; border: 1px solid #b9bec5; border-radius: 4px; background: white; color: var(--ink); padding: .9rem 1rem; transition: border-color .2s ease, box-shadow .2s ease; }
input { min-height: 52px; }
textarea { resize: vertical; min-height: 112px; }
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(10 81 208 / 12%); }
[aria-invalid="true"] { border-color: var(--error) !important; }
.field-error { min-height: 1.1rem; color: var(--error); font-size: .78rem; }
.field-error:empty { display: none; }
.radio-fieldset { border: 0; padding: 0; margin: 0 0 1rem; }
.radio-fieldset legend { margin-bottom: .55rem; }
.radio-fieldset label { min-height: 48px; border: 1px solid #c5c9ce; border-bottom: 0; padding: .65rem .8rem; display: flex; align-items: center; gap: .65rem; background: white; cursor: pointer; font-weight: 500; }
.radio-fieldset label:first-of-type { border-radius: 4px 4px 0 0; }
.radio-fieldset label:nth-of-type(3) { border-bottom: 1px solid #c5c9ce; border-radius: 0 0 4px 4px; }
.radio-fieldset input { width: 18px; min-height: 18px; accent-color: var(--blue); }
.radio-fieldset label:has(input:checked) { border-color: var(--blue); background: #f1f6ff; box-shadow: inset 3px 0 var(--blue); }
.submit-button { width: 100%; margin-top: .4rem; font-size: 1rem; }
.privacy-line, .local-note { margin: 1rem 0 0; text-align: center; color: var(--muted); font-size: .8rem; }
.local-note { font-size: .68rem; }
.form-status { margin-top: 1rem; border: 1px solid; padding: 1rem 1.2rem; display: grid; gap: .2rem; }
.form-status[hidden] { display: none; }
.form-status--success { border-color: var(--success); color: var(--success); }
.form-status--error { border-color: var(--error); color: var(--error); }
.form-status span { color: var(--ink); }

footer { min-height: 210px; padding: 3.5rem var(--gutter); background: var(--night); color: white; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
footer p { color: #c8ced6; }
.wordmark--light { color: white; }
footer > p { text-align: right; }

.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .hero, .work-section, .concierge, .early-access { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { max-width: 10ch; }
  .work-section > *, .work-intro, .concierge-main, .closing-copy, .form-shell { max-width: 820px; justify-self: center; }
  .concierge { gap: 5rem; }
  .fit-list { border-left: 0; border-top: 1px solid var(--blue); padding: 3rem 0 0; }
}

@media (max-width: 700px) {
  :root { --gutter: 1.15rem; --section: 4.5rem; }
  .site-header { min-height: 72px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .nav-cta { border: 1px solid var(--blue); padding: .55rem .7rem; }
  .hero { padding-top: 4rem; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 5.3rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1.2rem; }
  .text-link { align-self: flex-start; }
  .day-panel { margin-top: 1rem; }
  .timeline { padding: 0 1rem; }
  .timeline li { min-height: 104px; grid-template-columns: 40px 16px 1fr; gap: .7rem; }
  .timeline li:not(:last-child)::after { left: 63px; }
  .review-label { display: none; }
  .panel-head, .panel-foot { padding: 1rem; }
  .work-intro h2, .closing-copy h2 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .responsibility-list li { grid-template-columns: 38px 1fr; padding: 1rem 0; }
  .responsibility-list p { grid-column: 2; }
  .week-ledger { overflow-x: auto; padding-bottom: .5rem; }
  .days { margin-left: 0; }
  .ledger-grid { height: 400px; }
  .task { margin: .65rem .25rem; padding-left: .3rem; font-size: .66rem; overflow-wrap: anywhere; }
  .ledger-legend { gap: .8rem; justify-content: space-between; }
  .ledger-legend i { width: 22px; }
  .concierge h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .process-line { grid-template-columns: 1fr; gap: 2rem; }
  .process-line::before { top: 12px; bottom: 0; left: 10px; right: auto; border-top: 0; border-left: 2px solid var(--blue); }
  .process-line li { padding: 0 0 0 3rem; }
  .process-line li::before { top: .3rem; }
  .process-line span { font-size: 3rem; }
  .fit-list li { min-height: 86px; }
  .early-access { gap: 3rem; }
  .pilot-note { margin-top: 2.5rem; }
  form { padding: 1.2rem; }
  footer { align-items: flex-start; flex-direction: column; min-height: 230px; }
  footer > p { text-align: left; }
}

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