:root {
  color-scheme: light;
  --charcoal: #132033;
  --charcoal-2: #17324d;
  --paper: #eef4fb;
  --paper-2: #f7fbff;
  --ink: #17324d;
  --muted: #5f748d;
  --line: rgba(23, 50, 77, 0.14);
  --line-dark: rgba(247, 251, 255, 0.16);
  --green: #9cc7ff;
  --blue: #9cc7ff;
  --amber: #9cc7ff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 50, 77, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

.site-header,
.section-inner,
.site-footer {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 0;
}

.public-shell .site-header,
.public-shell .site-footer {
  color: var(--paper-2);
}

.public-shell .site-header {
  width: 100%;
  padding: 28px max(22px, calc((100vw - 1160px) / 2));
  background: var(--charcoal);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-lockup {
  display: grid;
  gap: 3px;
}

.brand-word,
.display-brand {
  display: block;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-word {
  font-size: 14px;
}

.brand-sub {
  color: currentColor;
  font-size: 15px;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.public-shell .nav a:not(.button) {
  color: rgba(245, 240, 230, 0.72);
}

.private-shell .nav a:not(.button) {
  color: var(--muted);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
}

.private-shell .nav a:hover {
  background: rgba(23, 50, 77, 0.06);
}

.button-primary {
  background: var(--ink);
  color: var(--paper-2);
  border-color: var(--ink);
}

.public-shell .button-primary,
.button-light {
  background: var(--paper-2);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.88);
}

.button-secondary {
  background: rgba(247, 251, 255, 0.76);
  border-color: var(--line);
  color: var(--ink);
}

.button-ghost {
  color: var(--paper-2);
  border-color: rgba(245, 240, 230, 0.24);
  background: rgba(245, 240, 230, 0.07);
}

.hero {
  position: relative;
}

.hero-dark {
  margin-top: 0;
  padding: 74px 0;
  color: var(--paper-2);
  background:
    linear-gradient(145deg, #10161c, #172331 58%, #21344a),
    var(--charcoal);
}

.hero-simple {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
  gap: 58px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-paper .eyebrow,
.private-hero .eyebrow {
  color: var(--muted);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  line-height: 1;
}

.display-brand {
  max-width: 100%;
  font-size: clamp(28px, 4.8vw, 62px);
}

.display-subtitle {
  display: block;
  margin-top: 12px;
  font-size: clamp(33px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.04;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.lead {
  max-width: 720px;
  color: rgba(245, 240, 230, 0.86);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.42;
}

.hero-note {
  max-width: 690px;
  color: rgba(245, 240, 230, 0.68);
  font-size: 17px;
}

.private-hero .lead,
.section-heading p,
.pillar p,
.access-card p,
.private-banner p,
.plain-list p,
.partner-panel p,
.status-list dd {
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.partner-panel {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(247, 251, 255, 0.94);
  border: 1px solid rgba(247, 251, 255, 0.78);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.partner-panel h2 {
  max-width: 420px;
  font-size: clamp(26px, 3vw, 40px);
}

.partner-panel p {
  font-size: 16px;
}

.panel-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.status-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.status-list dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-list dd {
  margin: 0;
}

.signal-strip {
  background: var(--ink);
  color: var(--paper-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
}

.signal-grid div {
  min-height: 112px;
  padding: 24px;
  background: var(--ink);
}

.compact-signals div {
  min-height: 104px;
}

.signal-grid span,
.pillar-index {
  display: block;
  margin-bottom: 9px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-grid strong {
  font-size: 17px;
}

.section {
  padding: 78px 0;
}

.section-paper {
  background: var(--paper);
}

.section-ink {
  background: var(--charcoal);
  color: var(--paper-2);
}

.split-section,
.systems-grid,
.private-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.section-heading {
  max-width: 540px;
}

.section-heading h2 {
  color: var(--ink);
}

.section-ink h2 {
  color: var(--paper-2);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pillar,
.access-card {
  min-height: 196px;
  padding: 22px;
  background: rgba(247, 251, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calm-grid .pillar {
  background: rgba(247, 251, 255, 0.68);
}

.pillar h3,
.access-card h3 {
  color: var(--ink);
}

.plain-list {
  display: grid;
  gap: 18px;
  max-width: 680px;
  font-size: clamp(17px, 1.5vw, 20px);
}

.plain-list p {
  margin: 0;
  color: rgba(245, 240, 230, 0.76);
}

.private-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.private-banner h2 {
  max-width: 760px;
}

.private-banner p {
  max-width: 820px;
  margin-bottom: 0;
}

.pilot-banner {
  align-items: flex-end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.public-shell .site-footer {
  margin-top: -1px;
  color: rgba(245, 240, 230, 0.66);
  background: var(--charcoal);
}

.private-shell {
  background: var(--paper);
}

.private-shell .site-header,
.private-shell .site-footer {
  color: var(--ink);
}

.private-hero {
  padding: 78px 0 72px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.private-hero h1 {
  font-size: clamp(42px, 6vw, 82px);
  color: var(--ink);
}

.review-status {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.review-status div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: var(--paper);
}

.review-status span {
  color: var(--muted);
}

.room-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background: rgba(247, 251, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.room-list strong {
  display: block;
  margin-bottom: 4px;
}

.room-list span {
  color: var(--muted);
}

.status-pill {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid rgba(23, 50, 77, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.section-ink .access-card {
  background: rgba(245, 240, 230, 0.07);
  border-color: var(--line-dark);
}

.section-ink .access-card h3 {
  color: var(--paper-2);
}

.section-ink .access-card p {
  color: rgba(245, 240, 230, 0.72);
}


.room-note {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.info-grid,
.qa-grid,
.pricing-grid,
.step-list {
  display: grid;
  gap: 14px;
}

.info-grid,
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.qa-card,
.price-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.72);
}

.info-card p,
.qa-card p,
.price-card p,
.step-list span {
  color: var(--muted);
}

.section-ink .section-heading p {
  color: rgba(247, 251, 255, 0.72);
}

.section-ink .qa-card,
.section-ink .price-card {
  background: rgba(247, 251, 255, 0.07);
  border-color: var(--line-dark);
}

.section-ink .qa-card h3,
.section-ink .price-card h3 {
  color: var(--paper-2);
}

.section-ink .qa-card p,
.section-ink .price-card p {
  color: rgba(247, 251, 255, 0.72);
}

.qa-card p:last-child,
.info-card p:last-child,
.price-card p:last-child {
  margin-bottom: 0;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding: 20px;
  background: rgba(247, 251, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-list li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.step-list strong,
.step-list span {
  display: block;
  grid-column: 2;
}

.step-list strong {
  margin-bottom: 4px;
}

.price-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--paper-2);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.section-paper .price-card strong {
  color: var(--ink);
}
@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-dark {
    padding-top: 64px;
  }

  .hero-simple,
  .split-section,
  .systems-grid,
  .private-hero-grid,
  .signal-grid,
  .access-grid,
  .info-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .partner-panel {
    max-width: 680px;
  }

  .private-banner,
  .site-footer,
  .room-list li {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section-inner,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    gap: 18px;
    padding-top: 22px;
  }

  .nav,
  .actions {
    width: 100%;
  }

  .nav a:not(.button) {
    width: auto;
    min-height: 32px;
    padding: 5px 0;
  }

  .nav .button,
  .actions .button,
  .private-banner .button {
    width: 100%;
  }

  .hero-dark {
    padding-top: 54px;
  }

  .display-brand {
    font-size: clamp(21px, 6.2vw, 30px);
  }

  .display-subtitle {
    font-size: clamp(30px, 11vw, 44px);
  }

  .pillar-grid,
  .info-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .step-list li {
    grid-template-columns: 1fr;
  }

  .step-list strong,
  .step-list span {
    grid-column: 1;
  }
}
