:root {
  --bg: #060816;
  --bg-deep: #090d1c;
  --bg-soft: #12182b;
  --panel: rgba(10, 14, 28, 0.72);
  --panel-strong: rgba(11, 17, 31, 0.88);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f2e8;
  --text-soft: rgba(247, 242, 232, 0.72);
  --text-faint: rgba(247, 242, 232, 0.46);
  --peach: #ffb3b8;
  --gold: #ffd18d;
  --sea: #9ddcf4;
  --mint: #b7f0cf;
  --shadow: 0 32px 120px rgba(0, 0, 0, 0.45);
  --radius: 34px;
  --radius-small: 22px;
  --container: min(1220px, calc(100vw - 48px));
  --sans: 'Sora', 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'IBM Plex Mono', monospace;
  --ease: cubic-bezier(0.2, 1, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(157, 220, 244, 0.14), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255, 179, 184, 0.18), transparent 24%),
    radial-gradient(circle at 55% 72%, rgba(255, 209, 141, 0.08), transparent 28%),
    linear-gradient(180deg, #060816 0%, #0a0f20 42%, #05070f 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
  opacity: 0.4;
}

body::after {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.05), transparent 14%),
    radial-gradient(circle at 84% 46%, rgba(255, 255, 255, 0.04), transparent 10%),
    radial-gradient(circle at 18% 74%, rgba(255, 255, 255, 0.04), transparent 12%);
  opacity: 0.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

::selection {
  background: rgba(255, 179, 184, 0.24);
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.eyebrow,
.signal-label,
.promise-label,
.sequence-label,
.audience-label,
.section-index,
.hero-rail-card span {
  font: 500 0.76rem/1.5 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.signal-label,
.sequence-label {
  color: var(--sea);
}

.section-heading,
.manifesto-copy {
  max-width: 720px;
}

.section-heading h2,
.manifesto-copy h2,
.hero-copy h1,
.waitlist-panel h2,
.closing-copy h2,
.page-hero h1,
.contact-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.section-heading h2,
.manifesto-copy h2,
.closing-copy h2,
.page-hero h1,
.contact-copy h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.section-heading p,
.manifesto-lead,
.hero-body,
.hero-caption,
.promise-card p,
.sequence-card p,
.atlas-text,
.feature-item p,
.audience-card p,
.principle-card p,
.faq-item p,
.footer-note,
.footer-meta p,
.page-hero p,
.prose p,
.contact-copy p,
.contact-note,
.waitlist-panel p {
  color: var(--text-soft);
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

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

.button-primary {
  color: #090f1a;
  background: linear-gradient(135deg, var(--gold) 0%, var(--peach) 100%);
  box-shadow: 0 18px 42px rgba(255, 209, 141, 0.24);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.button-block {
  width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 20px 0;
  transition:
    background-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.topbar.is-scrolled {
  background: rgba(6, 8, 22, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner,
.footer-grid,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brandmark img {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.brandmark span {
  display: block;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brandmark small {
  display: block;
  margin-top: 2px;
  color: var(--text-faint);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topnav a {
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--text);
}

.hero {
  padding-top: 56px;
  padding-bottom: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 56px;
  align-items: start;
}

.hero-copy {
  position: relative;
  padding-top: 28px;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.hero-copy h1 {
  font-size: clamp(4.7rem, 10vw, 8.7rem);
  line-height: 0.84;
}

.hero-copy h1 span {
  display: block;
  font-style: italic;
  color: var(--peach);
}

.hero-body {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-foot {
  margin-top: 42px;
}

.hero-caption {
  max-width: 560px;
  margin: 0 0 22px;
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-rail-card,
.sky-card,
.sky-note,
.card-panel,
.promise-card,
.sequence-card,
.audience-card,
.principle-card,
.faq-item,
.closing-banner,
.prose,
.contact-topic,
.contact-form-card,
.page-sidebar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-rail-card {
  min-height: 120px;
  padding: 20px;
  border-radius: 24px;
}

.hero-rail-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
}

.hero-rail-card strong {
  font-size: 1rem;
  line-height: 1.5;
}

.hero-stage {
  display: grid;
  gap: 24px;
  align-content: start;
  --pointer-x: 0px;
  --pointer-y: 0px;
}

.sky-window {
  position: relative;
  min-height: 700px;
  padding: 28px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 18%, rgba(157, 220, 244, 0.14), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(255, 179, 184, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.92) 0%, rgba(7, 10, 20, 0.98) 100%);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.5);
}

.sky-window::before,
.sky-window::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sky-window::before {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 64%);
  opacity: 0.65;
}

.sky-window::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at center, black 26%, transparent 80%);
  opacity: 0.4;
}

.sky-star,
.sky-ring,
.sky-halo {
  position: absolute;
  pointer-events: none;
}

.sky-star {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.46);
  animation: drift 6s ease-in-out infinite;
}

.sky-star-a { top: 10%; left: 16%; }
.sky-star-b { top: 18%; right: 16%; animation-delay: -2s; }
.sky-star-c { bottom: 24%; left: 22%; animation-delay: -1.2s; }
.sky-star-d { bottom: 18%; right: 18%; animation-delay: -3s; }

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-12px) scale(1.14);
    opacity: 1;
  }
}

.sky-ring {
  left: 50%;
  top: 7%;
  border-radius: 999px;
  transform: translateX(-50%);
}

.sky-ring-a {
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.sky-ring-b {
  width: 54%;
  aspect-ratio: 1;
  top: 18%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sky-halo {
  left: 50%;
  top: 13%;
  width: 48%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 209, 141, 0.18), transparent 70%);
  filter: blur(20px);
}

.sky-card,
.sky-note,
.waitlist-panel,
.promise-card,
.sequence-card,
.audience-card,
.principle-card,
.prose,
.contact-topic,
.contact-form-card,
.page-sidebar {
  border-radius: var(--radius);
}

.sky-card {
  position: absolute;
  width: min(250px, 46%);
  padding: 22px;
}

.sky-card-intent {
  top: 24px;
  left: 24px;
  transform: translate3d(calc(var(--pointer-x) * -0.05), calc(var(--pointer-y) * -0.05), 0);
}

.sky-card-reward {
  top: 136px;
  right: 24px;
  transform: translate3d(calc(var(--pointer-x) * 0.05), calc(var(--pointer-y) * 0.05), 0);
}

.sky-card strong,
.sky-note strong,
.promise-card h3,
.sequence-card h3,
.audience-card h3,
.principle-card h3,
.waitlist-panel h2,
.contact-topic h3,
.prose h2,
.prose h3,
.faq-item summary {
  font-size: 1.14rem;
  line-height: 1.45;
}

.sky-card span,
.sky-note span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.55;
}

.device-frame {
  position: absolute;
  top: 88px;
  left: 50%;
  width: clamp(260px, 42vw, 350px);
  transform: translateX(-8%) rotate(-8deg) translate3d(calc(var(--pointer-x) * 0.1), calc(var(--pointer-y) * 0.1), 0);
}

.device-shell {
  position: relative;
  padding: 14px;
  border-radius: 46px;
  background: linear-gradient(180deg, #1e2437 0%, #070b16 100%);
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.56);
}

.device-shell img {
  width: 100%;
  border-radius: 34px;
}

.device-shell-large {
  max-width: 420px;
}

.device-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 124px;
  height: 24px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(7, 9, 17, 0.94);
  z-index: 1;
}

.sky-note {
  position: absolute;
  right: 38px;
  bottom: 34px;
  max-width: 300px;
  padding: 22px;
  transform: translate3d(calc(var(--pointer-x) * 0.04), calc(var(--pointer-y) * 0.04), 0);
}

.waitlist-panel {
  padding: 30px;
}

.panel-top {
  margin-bottom: 20px;
}

.waitlist-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 0.94;
}

.lead-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.lead-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.lead-form input,
.lead-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.contact-form textarea {
  min-height: 148px;
  padding: 16px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(157, 220, 244, 0.48);
  background: rgba(255, 255, 255, 0.06);
}

.form-footnote,
.form-status {
  margin: 0;
  color: var(--text-faint);
  line-height: 1.55;
}

.form-status.is-success {
  color: var(--mint);
}

.form-status.is-error {
  color: #ffc4b8;
}

.manifesto-section {
  padding-top: 76px;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.manifesto-side {
  display: grid;
  gap: 18px;
}

.section-index {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  color: rgba(255, 209, 141, 0.36);
}

.manifesto-copy h2 {
  max-width: 920px;
}

.manifesto-lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.promise-grid,
.audience-grid,
.principles-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.promise-grid {
  margin-top: 44px;
}

.promise-card,
.audience-card,
.principle-card,
.sequence-card,
.contact-topic {
  padding: 28px;
}

.promise-card:nth-child(2) {
  transform: translateY(28px);
}

.promise-card:nth-child(3) {
  transform: translateY(12px);
}

.promise-card:nth-child(1) {
  background:
    radial-gradient(circle at top left, rgba(157, 220, 244, 0.15), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.promise-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(255, 179, 184, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.promise-card:nth-child(3) {
  background:
    radial-gradient(circle at bottom right, rgba(255, 209, 141, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.promise-label,
.audience-label {
  color: var(--gold);
}

.promise-card h3,
.audience-card h3,
.principle-card h3 {
  margin: 0 0 12px;
}

.sequence-section {
  padding-top: 150px;
}

.sequence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 36px;
  align-items: start;
}

.sequence-stack {
  display: grid;
  gap: 18px;
}

.sequence-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.sequence-card:nth-child(2) {
  margin-left: 56px;
}

.sequence-card:nth-child(3) {
  margin-left: 18px;
}

.sequence-number {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 5.2rem);
  line-height: 0.85;
  color: rgba(255, 179, 184, 0.62);
}

.sequence-label {
  display: block;
  margin-bottom: 10px;
}

.sequence-card h3 {
  margin: 0 0 10px;
}

.atlas-section {
  padding-top: 146px;
}

.atlas-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 52px;
  align-items: center;
}

.atlas-visual {
  position: relative;
  padding: 28px;
}

.atlas-panel {
  position: relative;
  padding: 40px 30px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 209, 141, 0.18), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(157, 220, 244, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(12, 18, 34, 0.92), rgba(8, 11, 20, 1));
  box-shadow: 0 28px 120px rgba(0, 0, 0, 0.52);
}

.atlas-glow {
  position: absolute;
  inset: auto 12% -24% 12%;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 179, 184, 0.24), transparent 72%);
  filter: blur(18px);
}

.atlas-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 12, 22, 0.88);
  color: var(--text);
  box-shadow: var(--shadow);
}

.atlas-chip-a { top: 32px; right: 8%; }
.atlas-chip-b { bottom: 18%; left: 0; }
.atlas-chip-c { bottom: 40px; right: 10%; }

.atlas-text {
  margin-top: 18px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-item {
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}

.audience-section {
  padding-top: 150px;
}

.audience-header {
  max-width: 920px;
  margin-bottom: 34px;
}

.audience-header h2,
.principles-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.audience-card:nth-child(1) {
  background:
    radial-gradient(circle at top left, rgba(157, 220, 244, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.audience-card:nth-child(2) {
  background:
    radial-gradient(circle at bottom left, rgba(255, 179, 184, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.audience-card:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(255, 209, 141, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.principles-band {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 24px;
  border-radius: 24px;
}

.faq-item[open] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 13, 25, 0.86);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
}

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

.faq-item p {
  margin: 0 0 24px;
}

.closing-section {
  padding-top: 136px;
  padding-bottom: 100px;
}

.closing-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) auto;
  gap: 28px;
  align-items: end;
  padding: 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 184, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(157, 220, 244, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    rgba(10, 14, 27, 0.92);
}

.closing-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  padding: 26px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  padding-bottom: 24px;
}

.brandmark-footer img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.footer-note {
  max-width: 520px;
  margin: 18px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a,
.footer-meta p {
  color: var(--text-faint);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-meta {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero,
.contact-hero {
  padding: 88px 0 52px;
}

.page-hero-grid,
.contact-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.page-sidebar {
  position: sticky;
  top: 114px;
  padding: 24px;
}

.page-sidebar h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.page-sidebar nav {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.page-sidebar nav a {
  color: var(--text-soft);
}

.page-sidebar nav a:hover,
.page-sidebar nav a:focus-visible,
.link-inline {
  color: var(--sea);
}

.prose {
  padding: 34px;
}

.prose h2,
.prose h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.prose h3 {
  margin-top: 28px;
}

.prose p,
.prose ul {
  margin: 0 0 14px;
}

.prose ul {
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.7;
}

.prose + .prose {
  margin-top: 18px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.contact-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.contact-form-card {
  padding: 30px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-note {
  margin-top: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .hero-grid,
  .sequence-layout,
  .atlas-grid,
  .faq-grid,
  .closing-banner,
  .page-hero-grid,
  .contact-grid,
  .principles-band {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    max-width: 760px;
  }

  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .promise-grid,
  .audience-grid,
  .principles-list,
  .contact-topics {
    grid-template-columns: 1fr;
  }

  .sequence-card:nth-child(2),
  .sequence-card:nth-child(3),
  .promise-card:nth-child(2),
  .promise-card:nth-child(3) {
    margin-left: 0;
    transform: none;
  }

  .page-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 94px 0;
  }

  .topbar-inner,
  .footer-grid,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(3.8rem, 17vw, 6.2rem);
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .sky-window {
    min-height: 740px;
  }

  .device-frame {
    top: 170px;
    left: 50%;
    width: min(320px, 66%);
    transform: translateX(-50%) rotate(-5deg);
  }

  .sky-card-reward {
    top: 110px;
  }

  .sky-note {
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .topbar {
    padding: 16px 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .sky-window {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 18px;
  }

  .sky-card,
  .device-frame,
  .sky-note {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    transform: none !important;
  }

  .sky-ring,
  .sky-halo,
  .sky-star {
    display: none;
  }

  .device-frame {
    margin: 0 auto;
    width: min(320px, 100%);
  }

  .waitlist-panel,
  .promise-card,
  .sequence-card,
  .audience-card,
  .principle-card,
  .faq-item,
  .prose,
  .contact-form-card,
  .page-sidebar,
  .closing-banner,
  .hero-rail-card {
    border-radius: 24px;
  }

  .sequence-card {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .manifesto-copy h2,
  .closing-copy h2,
  .page-hero h1,
  .contact-copy h1,
  .audience-header h2,
  .principles-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .prose,
  .contact-form-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Interaction layer override */
.page-section {
  scroll-margin-top: 110px;
}

body.home-page {
  cursor: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 18px;
  background: #060816;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-brand {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.02em;
}

.preloader-line {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--sea), var(--peach), var(--gold));
  transform-origin: left center;
  animation: loaderSweep 1.4s var(--ease) infinite;
}

.preloader p {
  margin: 0;
  color: var(--text-faint);
}

@keyframes loaderSweep {
  0% {
    transform: scaleX(0.14);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.18);
    opacity: 0.5;
  }
}

.ambient-ui {
  pointer-events: none;
}

.ambient-spotlight,
.cursor,
.scroll-progress {
  position: fixed;
  z-index: 80;
}

.ambient-spotlight {
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 209, 141, 0.11), transparent 68%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.cursor {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--text);
}

.cursor-ring.is-active {
  width: 68px;
  height: 68px;
  border-color: rgba(255, 209, 141, 0.6);
}

.scroll-progress {
  right: 18px;
  top: 50%;
  width: 2px;
  height: 160px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  transform: scaleY(0);
  background: linear-gradient(180deg, var(--sea), var(--peach), var(--gold));
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--sea), var(--peach));
  transition: transform 0.35s var(--ease);
}

.topnav a:hover::after,
.topnav a:focus-visible::after,
.topnav a.is-current::after {
  transform: scaleX(1);
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.rail-section {
  padding-top: 148px;
}

.rail-shell {
  overflow: hidden;
  margin-top: 42px;
}

.rail-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 calc((100vw - var(--container)) / 2);
  will-change: transform;
}

.rail-card {
  width: min(460px, 78vw);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.rail-kicker {
  color: var(--sea);
}

.atlas-chip-a {
  transform: translate3d(calc(var(--pointer-x) * -0.08), calc(var(--pointer-y) * -0.08), 0);
}

.atlas-chip-b {
  transform: translate3d(calc(var(--pointer-x) * 0.06), calc(var(--pointer-y) * 0.06), 0);
}

.atlas-chip-c {
  transform: translate3d(calc(var(--pointer-x) * 0.12), calc(var(--pointer-y) * 0.12), 0);
}

@media (max-width: 860px) {
  body.home-page {
    cursor: auto;
  }

  .scroll-progress,
  .cursor,
  .ambient-spotlight {
    display: none;
  }
}

@media (max-width: 640px) {
  .rail-track {
    padding: 0 14px;
    transform: none !important;
  }

  .rail-card {
    border-radius: 24px;
  }
}

@media (pointer: coarse) {
  body.home-page {
    cursor: auto;
  }
}

.topnav a.is-current {
  color: var(--text);
}

body.home-page input,
body.home-page textarea,
body.home-page select {
  cursor: text;
}

/* 2026-03-10 premium homepage override */
body.home-page {
  cursor: auto;
}

body.home-page,
body.home-page * {
  cursor: auto;
}

.scroll-progress {
  right: 12px;
  top: 20%;
  height: 60vh;
  max-height: 340px;
  border-radius: 999px;
}

.ambient-spotlight,
.cursor {
  display: none !important;
}

.section-heading h2,
.manifesto-copy h2,
.closing-copy h2,
.page-hero h1,
.contact-copy h1,
.hero-copy h1,
.audience-header h2,
.principles-copy h2 {
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(4.8rem, 10vw, 8.9rem);
}

.hero-body {
  max-width: 38rem;
  margin-top: 30px;
}

.hero-caption {
  max-width: 42rem;
}

.hero-rail-card,
.waitlist-panel,
.promise-card,
.sequence-card,
.world-card,
.feature-item,
.audience-card,
.principle-card,
.faq-item,
.closing-banner,
.contact-topic,
.contact-form-card,
.page-sidebar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --glow-x: 50%;
  --glow-y: 50%;
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.45s var(--ease),
    background-color 0.35s var(--ease);
}

.hero-rail-card::after,
.waitlist-panel::after,
.promise-card::after,
.sequence-card::after,
.world-card::after,
.feature-item::after,
.audience-card::after,
.principle-card::after,
.faq-item::after,
.closing-banner::after,
.contact-topic::after,
.contact-form-card::after,
.page-sidebar::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(157, 220, 244, 0.17), transparent 34%),
    radial-gradient(circle at calc(var(--glow-x) + 10%) calc(var(--glow-y) + 12%), rgba(255, 179, 184, 0.12), transparent 28%);
  transition: opacity 0.35s var(--ease);
}

.hero-rail-card:hover::after,
.hero-rail-card:focus-within::after,
.waitlist-panel:hover::after,
.waitlist-panel:focus-within::after,
.promise-card:hover::after,
.promise-card:focus-within::after,
.sequence-card:hover::after,
.sequence-card:focus-within::after,
.world-card:hover::after,
.world-card:focus-within::after,
.feature-item:hover::after,
.feature-item:focus-within::after,
.audience-card:hover::after,
.audience-card:focus-within::after,
.principle-card:hover::after,
.principle-card:focus-within::after,
.faq-item:hover::after,
.faq-item:focus-within::after,
.closing-banner:hover::after,
.closing-banner:focus-within::after,
.contact-topic:hover::after,
.contact-topic:focus-within::after,
.contact-form-card:hover::after,
.contact-form-card:focus-within::after,
.page-sidebar:hover::after,
.page-sidebar:focus-within::after {
  opacity: 1;
}

.hero-rail-card > *,
.waitlist-panel > *,
.promise-card > *,
.sequence-card > *,
.world-card > *,
.feature-item > *,
.audience-card > *,
.principle-card > *,
.faq-item > *,
.closing-banner > *,
.contact-topic > *,
.contact-form-card > *,
.page-sidebar > * {
  position: relative;
  z-index: 1;
}

.hero-rail-card:hover,
.promise-card:hover,
.sequence-card:hover,
.world-card:hover,
.audience-card:hover,
.principle-card:hover,
.feature-item:hover,
.contact-topic:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.5);
}

.promise-card:nth-child(2),
.promise-card:nth-child(3),
.sequence-card:nth-child(2),
.sequence-card:nth-child(3) {
  will-change: transform;
}

.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-item {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(9, 13, 25, 0.78);
}

.feature-item p {
  margin: 0;
}

.feature-item span {
  margin-bottom: 14px;
  color: var(--gold);
}

.world-section {
  padding-top: 146px;
}

.world-heading {
  max-width: 820px;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.world-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(9, 13, 25, 0.82);
  box-shadow: var(--shadow);
}

.world-card h3,
.world-card blockquote,
.world-note {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.world-card p,
.world-list {
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.world-kicker {
  font: 500 0.76rem/1.5 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
}

.world-card-tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at top left, rgba(157, 220, 244, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(9, 13, 25, 0.82);
}

.world-card-quote {
  grid-column: span 7;
  min-height: 258px;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 184, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(9, 13, 25, 0.82);
}

.world-card-list {
  grid-column: span 3;
}

.world-card-wide {
  grid-column: span 6;
  background:
    radial-gradient(circle at bottom left, rgba(255, 209, 141, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(9, 13, 25, 0.82);
}

.world-card-note {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.world-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.world-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.world-list {
  padding-left: 18px;
}

.world-list li + li {
  margin-top: 10px;
}

.world-note {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
}

.topnav a.is-current {
  color: var(--text);
}

body.home-page input,
body.home-page textarea,
body.home-page select {
  cursor: text;
}

@media (max-width: 1100px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-card,
  .world-card-tall,
  .world-card-quote,
  .world-card-list,
  .world-card-wide,
  .world-card-note {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .hero-copy h1 {
    font-size: clamp(3.8rem, 17vw, 6.3rem);
  }

  .scroll-progress {
    display: none;
  }
}

@media (max-width: 640px) {
  .feature-item,
  .world-card {
    min-height: auto;
    border-radius: 24px;
  }

  .world-grid {
    grid-template-columns: 1fr;
  }

  .world-card h3,
  .world-card blockquote,
  .world-note {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
}
body.home-page a,
body.home-page button,
body.home-page summary,
body.home-page [data-magnetic] {
  cursor: pointer;
}

body.home-page input,
body.home-page textarea {
  cursor: text;
}

body.home-page select {
  cursor: default;
}

/* 2026-03-11 structure and interaction cleanup */
.hero-rail-card::after,
.waitlist-panel::after,
.promise-card::after,
.sequence-card::after,
.world-card::after,
.feature-item::after,
.audience-card::after,
.principle-card::after,
.faq-item::after,
.closing-banner::after,
.contact-topic::after,
.contact-form-card::after,
.page-sidebar::after {
  display: none !important;
}

.hero-rail-card:hover,
.promise-card:hover,
.sequence-card:hover,
.world-card:hover,
.audience-card:hover,
.principle-card:hover,
.feature-item:hover,
.contact-topic:hover {
  transform: none !important;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.44);
}

.promise-card:nth-child(2),
.promise-card:nth-child(3),
.sequence-card:nth-child(2),
.sequence-card:nth-child(3) {
  transform: none;
  margin-left: 0;
}

.proof-section,
.focus-section {
  padding-top: 148px;
}

.proof-layout,
.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 42px;
  align-items: start;
}

.proof-side,
.focus-side {
  position: sticky;
  top: 118px;
  align-self: start;
}

.proof-side h2,
.focus-side h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.6vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.proof-side p:last-child,
.focus-side p:last-child {
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.proof-stack,
.focus-stack {
  display: grid;
}

.proof-item,
.focus-item {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item:last-child,
.focus-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-label,
.focus-label {
  display: block;
  margin-bottom: 10px;
  font: 500 0.76rem/1.5 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
}

.proof-item h3,
.focus-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.proof-item p,
.focus-item p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.focus-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.focus-number {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 0.88;
  color: rgba(255, 179, 184, 0.62);
}

.focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.focus-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-rail-card,
.promise-card,
.audience-card,
.principle-card,
.feature-item,
.world-card,
.waitlist-panel,
.faq-item,
.closing-banner {
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.4);
}

.feature-item {
  min-height: 210px;
}

@media (max-width: 1100px) {
  .proof-layout,
  .focus-layout {
    grid-template-columns: 1fr;
  }

  .proof-side,
  .focus-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .proof-item h3,
  .focus-item h3 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .focus-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.proof-side > p:not(.eyebrow),
.focus-side > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.72;
}



/* 2026-03-11 simplify homepage */
.hero {
  padding-bottom: 72px;
}

.hero-meta-row {
  margin-bottom: 18px;
}

.hero-copy h1 {
  max-width: 8.8ch;
}

.hero-body {
  max-width: 34rem;
}

.hero-caption {
  max-width: 32rem;
}

.hero-rail-card {
  min-height: 102px;
}

.hero-rail-card strong {
  font-size: 0.98rem;
}

.sequence-section,
.atlas-section,
.atmosphere-section,
.faq-section,
.closing-section {
  padding-top: 116px;
}

.sequence-layout,
.atlas-grid,
.faq-grid,
.atmosphere-grid {
  gap: 28px;
}

.sequence-card,
.feature-item,
.faq-item,
.atmosphere-quote,
.atmosphere-screen,
.closing-banner {
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.feature-item {
  min-height: 170px;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
}

.atmosphere-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.atmosphere-line {
  max-width: 28rem;
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.atmosphere-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.atmosphere-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.atmosphere-visual {
  position: relative;
  min-height: 560px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 24% 18%, rgba(157, 220, 244, 0.15), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(255, 179, 184, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(11, 16, 31, 0.9), rgba(7, 10, 19, 0.98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
  --pointer-x: 0px;
  --pointer-y: 0px;
}

.atmosphere-core,
.atmosphere-quote,
.atmosphere-screen {
  position: absolute;
}

.atmosphere-core {
  left: 8%;
  top: 10%;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(9, 12, 22, 0.9);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
  transform: translate3d(calc(var(--pointer-x) * -0.02), calc(var(--pointer-y) * -0.02), 0);
}

.atmosphere-core img {
  width: 74px;
  height: 74px;
  border-radius: 24px;
}

.atmosphere-quote {
  right: 8%;
  top: 10%;
  width: min(320px, 42%);
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 22, 0.76);
  backdrop-filter: blur(16px);
  transform: translate3d(calc(var(--pointer-x) * 0.02), calc(var(--pointer-y) * 0.02), 0);
}

.atmosphere-quote strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
  line-height: 1.45;
}

.atmosphere-screen {
  left: 50%;
  bottom: 24px;
  width: min(360px, 58%);
  transform: translateX(-50%) translate3d(calc(var(--pointer-x) * 0.04), calc(var(--pointer-y) * 0.04), 0);
}

.atmosphere-device {
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(180deg, #1a2237 0%, #090d18 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.atmosphere-device img {
  width: 100%;
  border-radius: 28px;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  gap: 12px;
}

.faq-item summary {
  padding: 22px 0;
}

.closing-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
}

@media (max-width: 1100px) {
  .atmosphere-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-meta-row {
    gap: 8px;
  }

  .sequence-section,
  .atlas-section,
  .atmosphere-section,
  .faq-section,
  .closing-section {
    padding-top: 92px;
  }

  .atmosphere-visual {
    min-height: 470px;
    border-radius: 24px;
  }

  .atmosphere-core {
    width: 98px;
    height: 98px;
  }

  .atmosphere-core img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .atmosphere-quote {
    left: 18px;
    right: 18px;
    top: 18px;
    width: auto;
  }

  .atmosphere-screen {
    width: min(320px, calc(100% - 28px));
    bottom: 18px;
  }
}

/* 2026-03-11 compact scale pass */
body.home-page {
  --container: min(1080px, calc(100vw - 56px));
}

body.home-page .section {
  padding: 96px 0;
}

body.home-page .topbar {
  padding: 12px 0;
}

body.home-page .topbar-inner,
body.home-page .footer-grid,
body.home-page .footer-meta {
  gap: 16px;
}

body.home-page .brandmark {
  gap: 10px;
}

body.home-page .brandmark img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

body.home-page .topnav {
  gap: 18px;
}

body.home-page .topnav a {
  font-size: 0.92rem;
}

body.home-page .button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

body.home-page .button-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.84rem;
}

body.home-page .hero {
  padding-top: 44px;
  padding-bottom: 58px;
}

body.home-page .hero-grid {
  gap: 42px;
}

body.home-page .hero-copy {
  padding-top: 16px;
}

body.home-page .hero-meta-row {
  gap: 8px;
  margin-bottom: 14px;
}

body.home-page .hero-meta-row span {
  min-height: 30px;
  padding: 0 11px;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
}

body.home-page .hero-copy h1 {
  max-width: 8.4ch;
  font-size: clamp(3.6rem, 8.2vw, 6.6rem);
  line-height: 0.86;
}

body.home-page .hero-body {
  max-width: 30rem;
  margin-top: 20px;
  font-size: clamp(0.94rem, 1.45vw, 1.03rem);
  line-height: 1.68;
}

body.home-page .hero-actions {
  gap: 10px;
  margin-top: 24px;
}

body.home-page .hero-foot {
  margin-top: 28px;
}

body.home-page .hero-caption {
  max-width: 28rem;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

body.home-page .hero-rail {
  gap: 10px;
}

body.home-page .hero-rail-card {
  min-height: 86px;
  padding: 14px;
  border-radius: 18px;
}

body.home-page .hero-rail-card span {
  margin-bottom: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

body.home-page .hero-rail-card strong {
  font-size: 0.9rem;
  line-height: 1.45;
}

body.home-page .hero-stage {
  gap: 16px;
}

body.home-page .sky-window {
  min-height: 600px;
  padding: 22px;
  border-radius: 30px;
}

body.home-page .sky-card {
  width: min(220px, 44%);
  padding: 16px;
  border-radius: 20px;
}

body.home-page .sky-card strong,
body.home-page .sky-note strong,
body.home-page .sequence-card h3,
body.home-page .feature-item span,
body.home-page .faq-item summary {
  font-size: 1rem;
}

body.home-page .sky-card-reward {
  top: 116px;
}

body.home-page .device-frame {
  top: 74px;
  width: clamp(220px, 34vw, 300px);
}

body.home-page .device-shell {
  padding: 11px;
  border-radius: 34px;
}

body.home-page .device-shell img {
  border-radius: 24px;
}

body.home-page .device-notch {
  top: 10px;
  width: 98px;
  height: 20px;
}

body.home-page .sky-note {
  right: 26px;
  bottom: 22px;
  max-width: 250px;
  padding: 16px;
}

body.home-page .waitlist-panel {
  padding: 22px;
  border-radius: 24px;
}

body.home-page .waitlist-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

body.home-page .lead-form,
body.home-page .contact-form {
  gap: 10px;
}

body.home-page .lead-form input,
body.home-page .lead-form select,
body.home-page .contact-form input,
body.home-page .contact-form select,
body.home-page .contact-form textarea {
  min-height: 46px;
  padding: 0 13px;
  border-radius: 12px;
  font-size: 0.92rem;
}

body.home-page .sequence-section,
body.home-page .atlas-section,
body.home-page .atmosphere-section,
body.home-page .faq-section,
body.home-page .closing-section {
  padding-top: 94px;
}

body.home-page .section-heading h2,
body.home-page .atmosphere-copy h2,
body.home-page .closing-copy h2 {
  font-size: clamp(2.5rem, 4.9vw, 4.2rem);
  line-height: 0.95;
}

body.home-page .section-heading p,
body.home-page .atlas-text,
body.home-page .atmosphere-line,
body.home-page .faq-item p {
  font-size: 0.95rem;
  line-height: 1.64;
}

body.home-page .sequence-layout,
body.home-page .atlas-grid,
body.home-page .faq-grid,
body.home-page .atmosphere-grid {
  gap: 22px;
}

body.home-page .sequence-card {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
}

body.home-page .sequence-number {
  font-size: clamp(2.9rem, 5.4vw, 4rem);
}

body.home-page .atlas-visual {
  padding: 18px;
}

body.home-page .atlas-panel {
  padding: 28px 22px;
  border-radius: 30px;
}

body.home-page .device-shell-large {
  max-width: 340px;
  margin: 0 auto;
}

body.home-page .atlas-chip {
  min-height: 34px;
  padding: 0 11px;
  font-size: 0.78rem;
}

body.home-page .feature-list {
  gap: 12px;
  margin-top: 22px;
}

body.home-page .feature-item {
  min-height: 138px;
  padding-left: 14px;
}

body.home-page .atmosphere-visual {
  min-height: 500px;
  border-radius: 30px;
}

body.home-page .atmosphere-core {
  width: 100px;
  height: 100px;
}

body.home-page .atmosphere-core img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

body.home-page .atmosphere-quote {
  width: min(280px, 40%);
  padding: 16px;
  border-radius: 20px;
}

body.home-page .atmosphere-screen {
  bottom: 16px;
  width: min(310px, 54%);
}

body.home-page .atmosphere-device {
  padding: 11px;
  border-radius: 30px;
}

body.home-page .atmosphere-device img {
  border-radius: 21px;
}

body.home-page .atmosphere-tags {
  gap: 9px;
  margin-top: 18px;
}

body.home-page .atmosphere-tags span {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.8rem;
}

body.home-page .faq-list {
  gap: 8px;
}

body.home-page .faq-item {
  padding: 0 18px;
  border-radius: 18px;
}

body.home-page .faq-item summary {
  padding: 18px 0;
}

body.home-page .faq-item p {
  margin-bottom: 18px;
}

body.home-page .closing-banner {
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
}

body.home-page .closing-actions {
  gap: 10px;
}

body.home-page .footer {
  padding: 22px 0 36px;
}

body.home-page .footer-note {
  max-width: 460px;
  margin-top: 12px;
  font-size: 0.9rem;
}

body.home-page .footer-links {
  gap: 14px;
}

body.home-page .footer-meta {
  padding-top: 14px;
}

body.home-page .footer-meta p {
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  body.home-page {
    --container: min(980px, calc(100vw - 44px));
  }

  body.home-page .hero-grid {
    gap: 30px;
  }
}

@media (max-width: 860px) {
  body.home-page .section {
    padding: 84px 0;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 5.4rem);
  }

  body.home-page .sky-window {
    min-height: 560px;
  }

  body.home-page .device-frame {
    top: 150px;
    width: min(280px, 62%);
  }

  body.home-page .atmosphere-visual {
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  body.home-page {
    --container: calc(100vw - 24px);
  }

  body.home-page .section {
    padding: 74px 0;
  }

  body.home-page .topbar {
    padding: 10px 0;
  }

  body.home-page .button {
    min-height: 44px;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  body.home-page .hero-body {
    font-size: 0.92rem;
  }

  body.home-page .hero-rail-card,
  body.home-page .waitlist-panel,
  body.home-page .sequence-card,
  body.home-page .feature-item,
  body.home-page .faq-item,
  body.home-page .closing-banner {
    border-radius: 20px;
  }

  body.home-page .sky-window {
    padding: 14px;
    border-radius: 20px;
  }

  body.home-page .atlas-visual {
    padding: 10px;
  }

  body.home-page .atlas-panel {
    padding: 20px 14px;
    border-radius: 22px;
  }

  body.home-page .atmosphere-visual {
    min-height: 410px;
    border-radius: 22px;
  }

  body.home-page .atmosphere-quote {
    left: 14px;
    right: 14px;
    top: 14px;
    width: auto;
  }

  body.home-page .atmosphere-screen {
    width: min(286px, calc(100% - 24px));
    bottom: 14px;
  }
}

/* 2026-03-11 mobile deep adaptation */
.nav-toggle {
  display: none;
  position: relative;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.24s var(--ease), background-color 0.24s var(--ease);
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), width 0.28s var(--ease);
}

.nav-toggle > span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-5px);
}

.nav-toggle > span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle > span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(5px);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(157, 220, 244, 0.7);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  body::before {
    opacity: 0.22;
  }

  body::after {
    opacity: 0.3;
  }

  body.nav-open {
    overflow: hidden;
  }

  .page-section {
    scroll-margin-top: 88px;
  }

  .topbar {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-bottom: 10px;
  }

  .topbar .topbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .topbar .brandmark {
    min-width: 0;
  }

  .topbar .brandmark img {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .topbar .brandmark span {
    font-size: 0.94rem;
  }

  .topbar .brandmark small {
    font-size: 0.68rem;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .topbar .topnav,
  .topbar .topbar-cta {
    grid-column: 1 / -1;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.25s var(--ease),
      transform 0.25s var(--ease),
      max-height 0.25s var(--ease);
  }

  .topbar .topnav {
    display: grid;
    gap: 2px;
    margin-top: 10px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
      rgba(8, 12, 24, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
  }

  .topbar .topnav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--text);
    background: transparent;
    border: 1px solid transparent;
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .topbar .topnav a:hover,
  .topbar .topnav a:focus-visible,
  .topbar .topnav a.is-current {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .topbar .topnav a::after {
    display: none;
  }

  .topbar .topbar-cta {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    border-color: rgba(255, 209, 141, 0.34);
    background: linear-gradient(135deg, rgba(255, 209, 141, 0.23), rgba(255, 179, 184, 0.18));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .topbar .topbar-cta.button-small {
    min-height: 46px;
    font-weight: 600;
  }

  .topbar.is-menu-open .topnav,
  .topbar.is-menu-open .topbar-cta {
    opacity: 1;
    max-height: 420px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .topbar.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.6);
  }

  .topbar.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy {
    padding-top: 3px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    gap: 12px;
  }

  .sky-window {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .sky-ring,
  .sky-halo,
  .sky-star {
    display: none;
  }

  .sky-card,
  .device-frame,
  .sky-note {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none !important;
  }

  .device-frame {
    width: min(280px, 100%);
    margin: 0 auto;
  }

  .waitlist-panel {
    padding: 18px;
  }

  .sequence-layout,
  .atlas-grid,
  .atmosphere-grid,
  .faq-grid,
  .closing-banner,
  .page-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sequence-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .atlas-visual {
    display: grid;
    gap: 10px;
    padding: 8px;
  }

  .atlas-chip {
    position: static;
    width: max-content;
    max-width: 100%;
    transform: none !important;
  }

  .atmosphere-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .atmosphere-core,
  .atmosphere-quote,
  .atmosphere-screen {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none !important;
  }

  .atmosphere-core {
    width: 92px;
    height: 92px;
  }

  .atmosphere-core img {
    width: 54px;
    height: 54px;
  }

  .atmosphere-screen {
    width: min(300px, 100%);
    margin: 0 auto;
  }

  .closing-banner {
    align-items: start;
  }

  .closing-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .closing-actions .button {
    width: 100%;
  }

  .page-sidebar {
    padding: 16px;
    border-radius: 16px;
  }

  .page-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .page-sidebar nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    font-size: 0.86rem;
  }

  .prose {
    padding: 22px;
  }

  .contact-topics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-form input,
  .lead-form select,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .hero-actions,
  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.9rem);
  }

  .section-heading h2,
  .atmosphere-copy h2,
  .closing-copy h2,
  .page-hero h1,
  .contact-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .sequence-card {
    grid-template-columns: 1fr;
  }

  .page-sidebar nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding-bottom: 8px;
  }

  .topbar .topnav {
    padding: 8px;
  }

  .topbar .topnav a {
    min-height: 42px;
    font-size: 0.9rem;
  }

  .hero,
  .section {
    padding-top: 52px;
    padding-bottom: 66px;
  }

  .hero-body,
  .section-heading p,
  .atlas-text,
  .atmosphere-line,
  .faq-item p,
  .waitlist-panel p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .waitlist-panel,
  .sequence-card,
  .feature-item,
  .faq-item,
  .closing-banner,
  .prose,
  .contact-form-card,
  .contact-topic,
  .page-sidebar {
    border-radius: 18px;
  }

  .sky-window,
  .atlas-panel,
  .atmosphere-visual {
    border-radius: 18px;
  }
}

@media (hover: none), (pointer: coarse) {
  .button,
  .topnav a,
  .faq-item summary,
  .page-sidebar nav a {
    min-height: 44px;
  }

  .button:hover,
  .button:focus-visible,
  .hero-rail-card:hover,
  .sequence-card:hover,
  .feature-item:hover {
    transform: none;
  }
}

/* 2026-03-11 mobile component switch refinement */
[data-mobile-only] {
  display: none;
}

[data-mobile-only][hidden],
[data-desktop-only][hidden] {
  display: none !important;
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 901px) {
  [data-mobile-only] {
    display: none !important;
  }
}

@media (max-width: 900px) {
  body.home-page,
  body.inner-page {
    --container: min(392px, calc(100vw - 36px));
  }

  .topbar .topnav,
  .topbar .topbar-cta {
    display: none;
    opacity: 1;
    max-height: none;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .topbar.is-menu-open .topnav {
    display: grid;
    animation: mobileMenuIn 0.24s var(--ease);
  }

  .topbar.is-menu-open .topbar-cta {
    display: inline-flex;
    animation: mobileMenuIn 0.24s var(--ease);
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-mobile-preview {
    display: grid;
    gap: 10px;
    margin: 4px 0 12px;
  }

  .hero-mobile-shot {
    width: min(232px, 68vw);
    margin: 0 auto;
    padding: 8px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
      rgba(9, 13, 26, 0.95);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  }

  .hero-mobile-shot img {
    border-radius: 16px;
  }

  .hero-mobile-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .hero-mobile-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    font: 500 0.74rem/1.2 var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .sky-window[data-desktop-only] {
    display: none;
  }

  .hero-foot {
    display: none;
  }

  .hero-stage {
    gap: 10px;
  }

  .waitlist-panel {
    margin-top: 4px;
  }
}

@media (max-width: 700px) {
  body.home-page,
  body.inner-page {
    --container: min(360px, calc(100vw - 30px));
  }

  .hero-mobile-shot {
    width: min(214px, 66vw);
  }

  .topbar .brandmark span {
    font-size: 0.92rem;
  }

  .topbar .brandmark small {
    font-size: 0.66rem;
  }
}

/* 2026-03-11 mobile polish v2 */
@media (max-width: 900px) {
  body.home-page,
  body.inner-page {
    --container: min(338px, calc(100vw - 56px));
  }

  .topbar {
    padding-top: max(8px, env(safe-area-inset-top));
    padding-bottom: 8px;
  }

  .topbar .topbar-inner {
    gap: 10px;
  }

  .topbar .brandmark {
    gap: 9px;
  }

  .topbar .brandmark img {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .topbar .topnav {
    margin-top: 8px;
    padding: 7px;
    border-radius: 12px;
  }

  .topbar .topnav a {
    min-height: 42px;
    padding: 0 11px;
    border-radius: 9px;
    font-size: 0.9rem;
  }

  .topbar .topbar-cta {
    margin-top: 8px;
    min-height: 42px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .hero-meta-row {
    display: none;
  }

  .hero-mobile-preview {
    margin: 6px 0 12px;
    gap: 8px;
  }

  .hero-mobile-shot {
    position: relative;
    width: min(186px, 54vw);
    padding: 6px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
      rgba(8, 12, 24, 0.95);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  }

  .hero-mobile-shot::before {
    content: '';
    position: absolute;
    inset: auto 12% -18px 12%;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(157, 220, 244, 0.2), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
  }

  .hero-mobile-shot img {
    width: 100%;
    aspect-ratio: 9 / 18.5;
    object-fit: cover;
    object-position: top center;
    border-radius: 14px;
  }

  .hero-mobile-note {
    margin: 0;
    text-align: center;
    color: var(--text-faint);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .hero-copy h1 {
    margin-top: 10px;
  }

  .hero-body {
    margin-top: 16px;
  }

  .hero-stage {
    gap: 8px;
  }
}

@media (max-width: 700px) {
  body.home-page,
  body.inner-page {
    --container: min(322px, calc(100vw - 40px));
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 52px;
  }

  .hero-mobile-shot {
    width: min(174px, 52vw);
  }

  .hero-mobile-note {
    font-size: 0.74rem;
  }
}

@media (max-width: 420px) {
  body.home-page,
  body.inner-page {
    --container: min(306px, calc(100vw - 28px));
  }

  .hero-mobile-shot {
    width: min(166px, 50vw);
  }
}

/* 2026-03-11 mobile layout order guard */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-stage {
    order: 2;
  }
}

/* 2026-03-11 mobile topbar + spacing hotfix */
@media (max-width: 900px) {
  body.home-page,
  body.inner-page {
    --container: min(320px, calc(100vw - 64px));
  }

  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 140;
    background: rgba(8, 12, 24, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-shell > main {
    padding-top: 56px;
  }

  .page-section {
    scroll-margin-top: 98px;
  }

  .hero {
    padding-top: 4px;
    padding-bottom: 52px;
  }

  .hero-mobile-preview {
    margin-top: 0;
  }

  .topbar .topnav {
    margin-top: 6px;
  }

  .topbar .topbar-cta {
    margin-top: 6px;
  }
}

@media (max-width: 700px) {
  body.home-page,
  body.inner-page {
    --container: min(304px, calc(100vw - 44px));
  }

  .site-shell > main {
    padding-top: 54px;
  }

  .hero {
    padding-top: 3px;
  }
}

@media (max-width: 420px) {
  body.home-page,
  body.inner-page {
    --container: min(292px, calc(100vw - 30px));
  }

  .site-shell > main {
    padding-top: 52px;
  }
}

/* 2026-03-11 mobile refinement v3 */
@media (max-width: 900px) {
  body.home-page,
  body.inner-page {
    --container: min(304px, calc(100vw - 52px));
  }

  .site-shell > main {
    padding-top: 50px;
  }

  body.home-page .section {
    padding: 52px 0;
  }

  body.home-page .hero.section {
    padding-top: 0;
    padding-bottom: 42px;
  }

  body.home-page .hero-grid {
    gap: 14px;
  }

  body.home-page .hero-copy {
    padding-top: 0;
  }

  body.home-page .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.08rem, 8.2vw, 2.74rem);
    line-height: 1.04;
    letter-spacing: -0.018em;
    text-wrap: balance;
  }

  body.home-page .hero-copy h1 span {
    display: inline;
  }

  body.home-page .hero-body {
    max-width: none;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  body.home-page .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  body.home-page .hero-actions .button {
    min-height: 42px;
  }

  body.home-page .hero-mobile-preview {
    margin: 2px 0 10px;
  }

  body.home-page .hero-mobile-shot {
    width: min(168px, 50vw);
    padding: 5px;
    border-radius: 16px;
  }

  body.home-page .hero-mobile-shot img {
    border-radius: 11px;
  }

  body.home-page .hero-mobile-note {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  body.home-page .waitlist-panel {
    padding: 16px;
    border-radius: 16px;
  }

  body.home-page .waitlist-panel h2 {
    font-size: clamp(1.4rem, 5.8vw, 1.95rem);
    line-height: 1.02;
  }

  body.home-page .lead-form input,
  body.home-page .lead-form select,
  body.home-page .contact-form input,
  body.home-page .contact-form select,
  body.home-page .contact-form textarea {
    min-height: 42px;
    border-radius: 10px;
  }

  body.home-page .sequence-layout,
  body.home-page .atlas-grid,
  body.home-page .atmosphere-grid,
  body.home-page .faq-grid {
    gap: 14px;
  }

  body.home-page .section-heading h2,
  body.home-page .atmosphere-copy h2,
  body.home-page .closing-copy h2 {
    font-size: clamp(1.78rem, 8vw, 2.36rem);
    line-height: 1.04;
  }

  body.home-page .sequence-card,
  body.home-page .feature-item,
  body.home-page .faq-item,
  body.home-page .closing-banner {
    border-radius: 14px;
  }

  body.home-page .sequence-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  body.home-page .sequence-number {
    font-size: clamp(2.2rem, 12vw, 2.8rem);
    line-height: 0.9;
  }

  body.home-page .feature-list {
    gap: 8px;
    margin-top: 14px;
  }

  body.home-page .feature-item {
    min-height: auto;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
  }

  body.home-page .feature-item span {
    font-size: 0.94rem;
  }

  body.home-page .feature-item p {
    font-size: 0.88rem;
    line-height: 1.56;
  }

  body.home-page .atlas-copy {
    order: 1;
  }

  body.home-page .atlas-visual {
    order: 2;
    padding: 0;
  }

  body.home-page .atlas-panel {
    padding: 14px 12px;
    border-radius: 18px;
  }

  body.home-page .device-shell-large {
    max-width: 250px;
  }

  body.home-page .atlas-chip {
    min-height: 30px;
    font-size: 0.7rem;
  }

  body.home-page .atmosphere-copy {
    order: 1;
  }

  body.home-page .atmosphere-visual {
    order: 2;
    padding: 10px;
    border-radius: 18px;
  }

  body.home-page .atmosphere-core,
  body.home-page .atmosphere-quote {
    display: none;
  }

  body.home-page .atmosphere-screen {
    width: min(250px, 100%);
  }

  body.home-page .faq-list {
    gap: 6px;
  }

  body.home-page .faq-item {
    padding: 0 12px;
  }

  body.home-page .faq-item summary {
    min-height: 44px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }

  body.home-page .faq-item p {
    font-size: 0.88rem;
    line-height: 1.56;
  }

  body.home-page .closing-banner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  body.home-page .closing-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 700px) {
  body.home-page,
  body.inner-page {
    --container: min(292px, calc(100vw - 34px));
  }

  .site-shell > main {
    padding-top: 46px;
  }

  .topbar .brandmark small {
    display: none;
  }

  .topbar .brandmark span {
    font-size: 0.9rem;
  }

  .topbar .topnav a {
    min-height: 40px;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  body.home-page,
  body.inner-page {
    --container: min(278px, calc(100vw - 24px));
  }

  .site-shell > main {
    padding-top: 44px;
  }
}

/* 2026-03-11 mobile custom components v4 */
@media (max-width: 900px) {
  body.home-page,
  body.inner-page {
    --container: min(304px, calc(100vw - 52px));
  }

  .site-shell > main {
    padding-top: 60px;
  }

  body.home-page .hero.section {
    padding-top: 8px;
    padding-bottom: 40px;
  }

  body.home-page .hero-grid {
    gap: 12px;
  }

  body.home-page .hero-mobile-preview {
    margin: 4px 0 10px;
  }

  body.home-page [data-desktop-only] {
    display: none !important;
  }

  body.home-page .sequence-mobile-stack {
    display: grid;
    gap: 8px;
  }

  body.home-page .sequence-mobile-card {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
      rgba(9, 13, 25, 0.9);
  }

  body.home-page .sequence-mobile-card span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(157, 220, 244, 0.14);
    color: var(--sea);
    font: 500 0.66rem/1 var(--mono);
    letter-spacing: 0.12em;
  }

  body.home-page .sequence-mobile-card strong {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  body.home-page .sequence-mobile-card p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 0.85rem;
    line-height: 1.54;
  }

  body.home-page .atlas-copy {
    order: 1;
  }

  body.home-page .atlas-mobile-panel {
    order: 2;
    display: grid;
    gap: 10px;
    margin-top: 2px;
  }

  body.home-page .atlas-mobile-shot {
    width: min(218px, 66vw);
    margin: 0 auto;
    padding: 7px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(9, 13, 24, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  }

  body.home-page .atlas-mobile-shot img {
    border-radius: 12px;
  }

  body.home-page .atlas-mobile-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  body.home-page .atlas-mobile-features span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    font-size: 0.73rem;
    letter-spacing: 0.03em;
  }

  body.home-page .atmosphere-copy {
    order: 1;
  }

  body.home-page .atmosphere-mobile-panel {
    order: 2;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
      rgba(8, 12, 24, 0.92);
  }

  body.home-page .atmosphere-mobile-panel > p {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.2;
    color: var(--text);
  }

  body.home-page .atmosphere-mobile-shot {
    width: min(220px, 70vw);
    margin: 0 auto;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 10, 18, 0.94);
  }

  body.home-page .atmosphere-mobile-shot img {
    border-radius: 10px;
  }
}

@media (max-width: 700px) {
  body.home-page,
  body.inner-page {
    --container: min(292px, calc(100vw - 34px));
  }

  .site-shell > main {
    padding-top: 56px;
  }

  body.home-page .hero.section {
    padding-top: 6px;
  }

  body.home-page .atlas-mobile-shot,
  body.home-page .atmosphere-mobile-shot {
    width: min(202px, 64vw);
  }
}

@media (max-width: 420px) {
  body.home-page,
  body.inner-page {
    --container: min(278px, calc(100vw - 24px));
  }

  .site-shell > main {
    padding-top: 54px;
  }

  body.home-page .hero.section {
    padding-top: 5px;
  }
}

/* 2026-03-11 ritual left visual */
body.home-page .sequence-illustration {
  position: relative;
  margin: 22px 0 0;
  min-height: clamp(250px, 32vw, 430px);
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 20% 24%, rgba(157, 220, 244, 0.18), transparent 42%),
    radial-gradient(circle at 74% 80%, rgba(255, 179, 184, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(8, 12, 24, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 64px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  display: grid;
  place-items: center;
}

body.home-page .sequence-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%, rgba(4, 6, 14, 0.24));
}

body.home-page .sequence-illustration img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
  transform: translateY(3px);
}

@media (max-width: 1200px) {
  body.home-page .sequence-illustration {
    min-height: clamp(220px, 36vw, 360px);
    border-radius: 20px;
  }
}
/* 2026-03-11 ritual alignment tune */
@media (min-width: 901px) {
  body.home-page .sequence-layout {
    align-items: stretch;
  }

  body.home-page .sequence-layout > .section-heading {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  body.home-page .sequence-layout > .section-heading .sequence-illustration {
    margin-top: auto;
    min-height: clamp(208px, 25vw, 320px);
    padding: 10px;
    border-radius: 20px;
  }

  body.home-page .sequence-layout > .section-heading .sequence-illustration img {
    width: min(78%, 300px);
    transform: translateY(0);
  }
}
/* 2026-03-11 frosted glass background with subtle pink glow */
body.home-page {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 168, 192, 0.14), transparent 36%),
    radial-gradient(circle at 82% 22%, rgba(255, 188, 212, 0.1), transparent 34%),
    radial-gradient(circle at 46% 82%, rgba(255, 160, 194, 0.08), transparent 38%),
    radial-gradient(circle at 54% 78%, rgba(157, 220, 244, 0.08), transparent 42%),
    linear-gradient(180deg, #070b1a 0%, #090f21 52%, #060911 100%);
}

body.home-page::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.34;
  mask-image: radial-gradient(circle at 50% 42%, black 25%, transparent 90%);
}

body.home-page::after {
  background:
    radial-gradient(circle at 23% 30%, rgba(255, 176, 196, 0.27), transparent 46%),
    radial-gradient(circle at 74% 72%, rgba(255, 170, 194, 0.21), transparent 42%),
    radial-gradient(circle at 56% 54%, rgba(255, 255, 255, 0.08), transparent 58%);
  filter: blur(46px);
  opacity: 0.54;
  animation: glassPinkDrift 14s ease-in-out infinite alternate;
}

@keyframes glassPinkDrift {
  0% {
    transform: translate3d(-1.2%, -0.8%, 0) scale(1);
  }

  100% {
    transform: translate3d(1.5%, 1.2%, 0) scale(1.04);
  }
}

body.home-page .site-shell {
  position: relative;
  isolation: isolate;
}

body.home-page .site-shell::before {
  content: '';
  position: fixed;
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.17),
      rgba(255, 255, 255, 0.05) 38%,
      rgba(255, 170, 190, 0.09) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 183, 206, 0.16),
    0 38px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  pointer-events: none;
  z-index: 0;
  opacity: 0.68;
}

body.home-page .site-shell > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  body.home-page .site-shell::before {
    inset: 6px;
    border-radius: 18px;
    opacity: 0.55;
    backdrop-filter: blur(20px) saturate(1.14);
    -webkit-backdrop-filter: blur(20px) saturate(1.14);
  }
}
/* 2026-03-11 remove framed glass border */
body.home-page .site-shell::before {
  content: none;
}