:root {
  color-scheme: light;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --ink-1: #172133;
  --ink-2: #26344d;
  --slate-1: #637088;
  --slate-2: #8594a7;
  --surface-0: #fffaf6;
  --surface-1: #f9efe5;
  --surface-2: rgba(255, 255, 255, 0.76);
  --surface-3: rgba(255, 255, 255, 0.9);
  --surface-dark-1: #536f86;
  --surface-dark-2: #68839a;
  --surface-dark-3: #7d98ab;
  --text-on-dark: #fbfdff;
  --muted-on-dark: #edf3fb;
  --muted-on-light: #607083;
  --line-dark: rgba(206, 226, 255, 0.18);
  --line-light: rgba(15, 24, 39, 0.08);
  --sky: #8fd9ff;
  --mint: #a3e6cf;
  --coral: #ffad96;
  --violet: #9aa1ff;
  --gold: #ffd9a7;
  --shadow-strong: 0 32px 82px rgba(17, 25, 39, 0.16);
  --shadow-soft: 0 18px 48px rgba(9, 16, 28, 0.08);
  --radius-2xl: 34px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --max-width: 1320px;
  --section-pad: clamp(30px, 4vw, 54px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  color: var(--ink-1);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  background:
    radial-gradient(circle at 12% 10%, rgba(143, 217, 255, 0.18), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(255, 214, 167, 0.17), transparent 22%),
    radial-gradient(circle at 70% 75%, rgba(255, 173, 150, 0.12), transparent 22%),
    linear-gradient(180deg, #fffbf7 0%, #f8efe5 48%, #fffdf9 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body::before {
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 62%);
}

body::after {
  right: -120px;
  bottom: 120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 210, 177, 0.2);
  filter: blur(54px);
  animation: breathe 12s ease-in-out infinite;
}

a {
  color: inherit;
}

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

[data-reveal] {
  opacity: 1;
  transform: none;
}

body.is-ready [data-reveal].is-visible {
  animation: reveal-up 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-shell {
  width: min(100%, calc(var(--max-width) + 40px));
  margin: 0 auto;
  padding: 20px 20px 56px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  background: rgba(255, 252, 248, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(9, 16, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-1);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(18, 29, 46, 0.12);
}

.brand-wordmark,
.footer-brand {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-nav,
.footer-links,
.action-row,
.hero-actions,
.route-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a,
.footer-links a {
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 24, 39, 0.07);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(15, 23, 40, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.footer-links a:hover,
.footer-links a.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 210, 177, 0.42);
  background: rgba(255, 210, 177, 0.2);
  color: var(--ink-1);
  box-shadow: 0 12px 26px rgba(14, 23, 39, 0.06);
}

#app {
  display: grid;
  gap: 24px;
}

.page-panel,
.section-panel,
.legal-panel,
.route-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-2xl);
}

.page-panel > *,
.section-panel > *,
.legal-panel > *,
.route-panel > * {
  position: relative;
  z-index: 1;
}

.hero-shell,
.story-panel,
.workflow-panel,
.route-panel {
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-strong);
}

.story-panel,
.workflow-panel,
.route-panel {
  color: var(--text-on-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    linear-gradient(155deg, var(--surface-dark-1) 0%, var(--surface-dark-2) 48%, var(--surface-dark-3) 100%);
}

.hero-shell {
  color: var(--ink-1);
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at top left, rgba(143, 217, 255, 0.18), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(255, 217, 167, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 243, 0.96)),
    var(--surface-1);
  box-shadow: 0 26px 58px rgba(17, 25, 39, 0.08);
}

.audience-panel,
.cta-panel,
.legal-panel {
  border: 1px solid rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 246, 0.94)),
    var(--surface-1);
  box-shadow: var(--shadow-soft);
}

.story-panel::before,
.workflow-panel::before,
.route-panel::before {
  content: "";
  position: absolute;
  inset: -10% auto auto -6%;
  width: 340px;
  height: 340px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 230, 207, 0.22), transparent 66%);
}

.story-panel::after,
.workflow-panel::after,
.route-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 320px;
  height: 320px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 173, 150, 0.2), transparent 68%);
}

.hero-shell::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -70px;
  width: 260px;
  height: 260px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 217, 255, 0.24), transparent 70%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 280px;
  height: 280px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 217, 167, 0.28), transparent 70%);
}

.hero-shell {
  padding: clamp(28px, 4vw, 58px);
}

.story-panel,
.audience-panel,
.workflow-panel,
.cta-panel,
.legal-panel,
.route-panel {
  padding: var(--section-pad);
}

.hero-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.95fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
}

.hero-copy,
.cta-copy {
  display: grid;
  gap: 22px;
}

.hero-copy {
  align-content: start;
}

.eyebrow,
.section-kicker,
.policy-kicker,
.route-kicker,
.signal-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-shell .eyebrow {
  color: #80563d;
  border: 1px solid rgba(194, 148, 113, 0.18);
  background: rgba(255, 241, 225, 0.82);
}

.story-panel .section-kicker,
.workflow-panel .section-kicker,
.route-kicker {
  color: #d7efff;
  border: 1px solid rgba(104, 199, 255, 0.22);
  background: rgba(104, 199, 255, 0.11);
}

.policy-kicker,
.audience-panel .section-kicker,
.cta-panel .section-kicker,
.signal-badge {
  color: #234171;
  border: 1px solid rgba(40, 78, 143, 0.12);
  background: rgba(123, 136, 255, 0.1);
}

.signal-badge {
  color: #dff4ff;
  border-color: rgba(178, 217, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.signal-badge-soft {
  color: #a25b0d;
  border-color: rgba(255, 203, 134, 0.24);
  background: rgba(255, 203, 134, 0.16);
}

.hero-shell h1,
.section-head h2,
.cta-copy h2,
.legal-panel h1,
.route-panel h1,
.audience-essay h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.022em;
}

.hero-shell h1 {
  max-width: 11.8ch;
  font-size: clamp(3.05rem, 4.45vw, 4.65rem);
  color: var(--ink-1);
  text-wrap: balance;
}

.section-head h2,
.cta-copy h2,
.legal-panel h1,
.route-panel h1,
.audience-essay h2 {
  font-size: clamp(2.15rem, 3.15vw, 3.45rem);
}

.section-head h2,
.cta-copy h2,
.legal-panel h1 {
  color: var(--ink-1);
}

.story-panel .section-head h2,
.workflow-panel .section-head h2,
.route-panel h1 {
  color: var(--text-on-dark);
}

.lede,
.section-lede,
.legal-intro,
.route-lede {
  margin: 0;
  font-size: clamp(1.07rem, 1.34vw, 1.18rem);
  line-height: 1.84;
}

.lede,
.route-lede {
  max-width: 60ch;
}

.hero-copy .lede {
  color: var(--muted-on-light);
}

.section-lede,
.legal-intro {
  color: var(--muted-on-light);
}

.story-panel .section-lede,
.workflow-panel .section-lede,
.route-panel .route-lede {
  color: var(--muted-on-dark);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #f7fbff;
  background: linear-gradient(135deg, #223a5d 0%, #315676 56%, #4f7d95 100%);
  box-shadow: 0 18px 34px rgba(31, 54, 86, 0.28);
}

.button-secondary {
  color: var(--text-on-dark);
  border: 1px solid rgba(220, 233, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-shell .button-secondary {
  color: var(--ink-1);
  border-color: rgba(15, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost {
  color: var(--ink-1);
  border: 1px solid rgba(15, 24, 39, 0.08);
  background: rgba(15, 24, 39, 0.04);
}

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

.hero-shell .proof-grid {
  margin-top: 26px;
}

.proof-card {
  padding: 20px 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(15, 24, 39, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 244, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 18px 34px rgba(3, 10, 24, 0.06);
}

.proof-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 239, 224, 0.84);
  border: 1px solid rgba(218, 191, 165, 0.32);
  color: #7c5338;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.34;
  color: var(--ink-1);
}

.proof-card p {
  margin: 0;
  color: var(--muted-on-light);
  font-size: 0.94rem;
  line-height: 1.66;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.showcase-shell {
  position: relative;
  width: min(100%, 560px);
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 30px 26px;
  border-radius: 36px;
  border: 1px solid rgba(177, 211, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 217, 167, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    linear-gradient(160deg, rgba(84, 103, 129, 0.96), rgba(113, 133, 156, 0.93));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 26px 56px rgba(14, 22, 37, 0.16);
}

.showcase-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 28px;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}

.showcase-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.7;
  animation: float-orb 9s ease-in-out infinite;
}

.showcase-orb-a {
  top: 64px;
  right: 54px;
  width: 170px;
  height: 170px;
  background: rgba(163, 230, 207, 0.26);
}

.showcase-orb-b {
  left: 48px;
  bottom: 84px;
  width: 190px;
  height: 190px;
  background: rgba(255, 198, 166, 0.22);
  animation-delay: 1.8s;
}

.pulse-card {
  position: absolute;
  z-index: 3;
  width: min(100%, 230px);
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(191, 221, 255, 0.12);
  background: rgba(66, 80, 101, 0.72);
  box-shadow: 0 16px 34px rgba(18, 27, 42, 0.16);
  backdrop-filter: blur(16px);
  animation: float-card 8s ease-in-out infinite;
}

.pulse-card-top {
  top: 28px;
  left: 16px;
}

.pulse-card-bottom {
  right: 16px;
  bottom: 28px;
  animation-delay: 1.8s;
}

.pulse-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.42;
  color: var(--text-on-dark);
}

.pulse-card p {
  margin: 10px 0 0;
  color: var(--muted-on-dark);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pulse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pulse-header span {
  color: var(--muted-on-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pulse-header strong {
  margin: 0;
  font-size: 0.98rem;
}

.meter-bar {
  height: 10px;
  margin-top: 14px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(186, 215, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.meter-bar span {
  display: block;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint) 0%, var(--sky) 54%, var(--violet) 100%);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 322px);
  padding: 14px;
  border-radius: 40px;
  border: 1px solid rgba(199, 225, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(38, 53, 76, 0.68);
  box-shadow:
    0 24px 54px rgba(12, 22, 36, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotate(-1.5deg) translateY(18px);
}

.phone-screen {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(163, 205, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255, 198, 166, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(49, 68, 96, 0.98), rgba(38, 53, 76, 0.98));
}

.room-header,
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.room-header {
  margin-bottom: 16px;
}

.room-avatars {
  display: flex;
  align-items: center;
}

.avatar-dot {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid rgba(9, 18, 33, 0.86);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.avatar-dot:first-child {
  margin-left: 0;
}

.avatar-sky {
  background: linear-gradient(135deg, #93e6ff, #5d8dff);
}

.avatar-rose {
  background: linear-gradient(135deg, #ffbadc, #a255ff);
}

.avatar-gold {
  background: linear-gradient(135deg, #ffd89d, #ff8d63);
}

.room-meta {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
}

.room-meta strong,
.feature-card h3,
.audience-card h3,
.timeline-card h3,
.cta-card h3,
.faq-card h2,
.support-card h2,
.route-note strong,
.legal-block h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.38;
}

.room-meta strong {
  color: var(--text-on-dark);
}

.room-meta span,
.post-meta span,
.legal-meta {
  color: var(--muted-on-dark);
  font-size: 0.89rem;
}

.room-chip,
.story-bubble,
.engagement-pill,
.summary-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.81rem;
  font-weight: 700;
}

.room-chip {
  color: #dff8ff;
  background: rgba(127, 224, 196, 0.16);
  border: 1px solid rgba(127, 224, 196, 0.22);
}

.story-bubbles,
.engagement-row,
.hero-marquee,
.route-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(192, 221, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
  font-weight: 700;
  line-height: 1.45;
}

.route-status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #c7d2fe;
  box-shadow: 0 0 0 6px rgba(199, 210, 254, 0.14);
}

.route-status-success {
  border-color: rgba(92, 225, 168, 0.34);
  background: rgba(70, 190, 139, 0.14);
}

.route-status-success .route-status-dot {
  background: #5ce1a8;
  box-shadow: 0 0 0 6px rgba(92, 225, 168, 0.16);
}

.route-status-error {
  border-color: rgba(255, 141, 99, 0.36);
  background: rgba(255, 141, 99, 0.14);
}

.route-status-error .route-status-dot {
  background: #ffb199;
  box-shadow: 0 0 0 6px rgba(255, 141, 99, 0.16);
}

.route-form {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.route-form-note,
.route-field-help {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

.route-form-note {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(192, 221, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  font-weight: 700;
  word-break: break-word;
}

.route-field {
  display: grid;
  gap: 8px;
  color: var(--text-on-dark);
  font-weight: 700;
}

.route-field input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(192, 221, 255, 0.2);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-1);
  font: inherit;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.route-field input:focus {
  border-color: rgba(143, 217, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(143, 217, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.route-form[hidden],
.route-form-note[hidden] {
  display: none;
}

.story-bubbles {
  margin-bottom: 18px;
}

.story-bubble,
.engagement-pill,
.summary-chip {
  color: #edf5ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(181, 214, 255, 0.14);
}

.feed-stack {
  display: grid;
  gap: 14px;
}

.feed-post,
.chat-preview,
.feature-card,
.timeline-card,
.route-note {
  border-radius: 24px;
  border: 1px solid rgba(192, 221, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.feed-post,
.chat-preview {
  padding: 18px;
}

.feed-post-featured {
  background:
    linear-gradient(145deg, rgba(255, 146, 120, 0.14), rgba(103, 201, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
}

.feed-post p,
.chat-preview p,
.feature-card p,
.audience-card p,
.timeline-card p,
.cta-card p,
.faq-card p,
.support-card p,
.support-card li,
.faq-card li,
.route-note li,
.legal-block p,
.legal-block li,
.workflow-note,
.essay-point p {
  margin: 0;
  line-height: 1.72;
}

.feed-post p,
.chat-preview p {
  margin-top: 10px;
  color: var(--text-on-dark);
}

.engagement-row {
  margin-top: 12px;
}

.hero-marquee {
  margin-top: 30px;
  gap: 8px;
}

.hero-marquee span {
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 24, 39, 0.08);
  color: #30435d;
  font-size: 0.86rem;
  font-weight: 650;
  box-shadow: 0 10px 24px rgba(17, 25, 39, 0.04);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.feature-card {
  padding: 30px;
}

.feature-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(163, 230, 207, 0.14)),
    rgba(255, 255, 255, 0.1);
}

.feature-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 217, 167, 0.2), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
}

.feature-card h3,
.feature-card p {
  color: var(--text-on-dark);
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted-on-dark);
  line-height: 1.76;
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.feature-point {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(215, 232, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.feature-point strong,
.essay-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.3;
}

.feature-point p {
  margin-top: 0;
  font-size: 0.92rem;
}

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

.audience-essay {
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(15, 24, 39, 0.07);
  background:
    radial-gradient(circle at top right, rgba(143, 217, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 239, 0.98));
  box-shadow: 0 18px 42px rgba(9, 16, 28, 0.08);
}

.audience-essay h2 {
  margin-top: 18px;
  color: var(--ink-1);
}

.audience-essay .section-lede {
  margin-top: 18px;
  color: var(--muted-on-light);
}

.essay-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.essay-point {
  padding-top: 16px;
  border-top: 1px solid rgba(15, 24, 39, 0.08);
}

.essay-point p {
  color: var(--muted-on-light);
}

.audience-grid,
.cta-card-grid,
.support-grid,
.grid-two {
  display: grid;
  gap: 18px;
}

.audience-grid,
.cta-card-grid,
.support-grid,
.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-card,
.cta-card,
.support-card,
.faq-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 24, 39, 0.07);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 34px rgba(9, 16, 28, 0.05);
  backdrop-filter: blur(12px);
}

.audience-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 251, 255, 0.94)),
    rgba(255, 255, 255, 0.78);
}

.audience-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 250, 0.94)),
    rgba(255, 255, 255, 0.78);
}

.audience-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 237, 0.95)),
    rgba(255, 255, 255, 0.78);
}

.audience-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 252, 247, 0.95)),
    rgba(255, 255, 255, 0.78);
}

.audience-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(15, 24, 39, 0.06);
  color: var(--ink-1);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.audience-card p,
.cta-card p,
.support-card p,
.faq-card p,
.support-card li,
.faq-card li,
.legal-block p,
.legal-block li {
  color: var(--muted-on-light);
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 228, 255, 0.38), transparent);
}

.timeline-card {
  padding: 26px;
  position: relative;
  z-index: 1;
}

.timeline-card h3,
.timeline-card p {
  color: var(--text-on-dark);
}

.timeline-card p {
  margin-top: 12px;
  color: var(--muted-on-dark);
}

.step-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(104, 199, 255, 0.14);
  color: #d8efff;
  font-size: 0.95rem;
  font-weight: 800;
}

.workflow-note {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(203, 227, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
  color: var(--muted-on-dark);
}

.workflow-note strong {
  color: var(--text-on-dark);
}

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

.cta-card h3,
.cta-card p {
  color: var(--ink-1);
}

.route-panel {
  display: grid;
  gap: 24px;
}

.route-note {
  padding: 22px;
}

.route-note li,
.route-note strong {
  color: var(--text-on-dark);
}

.route-note li {
  color: var(--muted-on-dark);
}

.route-list,
.legal-list,
.support-card ul,
.faq-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.legal-header {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-block {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 24, 39, 0.07);
  background: rgba(255, 255, 255, 0.58);
}

.legal-block h2,
.support-card h2,
.faq-card h2 {
  color: var(--ink-1);
}

.legal-meta {
  color: var(--muted-on-light);
}

.legal-panel a:not(.button),
.route-panel a:not(.button) {
  color: #244f96;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 12px 6px 0;
  color: rgba(15, 23, 40, 0.74);
}

.site-footer .footer-links a {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(15, 24, 39, 0.06);
}

.footer-copy {
  max-width: 480px;
}

.footer-copy p {
  margin: 10px 0 0;
  line-height: 1.72;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.82;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .cta-grid,
  .audience-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .showcase-shell {
    width: min(100%, 620px);
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }

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

  .timeline-grid::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .proof-grid,
  .feature-points,
  .audience-grid,
  .cta-card-grid,
  .support-grid,
  .grid-two {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .site-nav a {
    justify-content: center;
  }

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

  .feature-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  body::before {
    opacity: 0.1;
    background-size: 56px 56px;
  }

  body::after {
    right: -110px;
    bottom: 80px;
    width: 250px;
    height: 250px;
  }

  .site-shell {
    padding: 14px 14px 38px;
  }

  .site-header {
    position: relative;
    top: auto;
    gap: 12px;
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 22px;
    border-color: rgba(255, 255, 255, 0.96);
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 250, 244, 0.98)),
      #fffaf6;
    box-shadow: 0 16px 30px rgba(17, 25, 39, 0.06);
    backdrop-filter: none;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark,
  .footer-brand {
    font-size: 1.8rem;
  }

  .site-nav,
  .footer-links,
  .hero-actions,
  .route-actions,
  .action-row {
    width: 100%;
  }

  .site-nav a,
  .footer-links a,
  .button {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    padding: 2px 0 0;
    gap: 8px;
  }

  .site-nav a,
  .footer-links a {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .site-nav a {
    border-color: rgba(15, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 4px 12px rgba(17, 25, 39, 0.03);
  }

  .hero-shell {
    padding-top: 20px;
  }

  .hero-shell,
  .story-panel,
  .audience-panel,
  .workflow-panel,
  .cta-panel,
  .legal-panel,
  .route-panel {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .hero-shell h1 {
    max-width: 9ch;
    font-size: clamp(2.4rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .section-head h2,
  .cta-copy h2,
  .legal-panel h1,
  .route-panel h1,
  .audience-essay h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .hero-copy {
    gap: 16px;
  }

  .lede,
  .section-lede,
  .legal-intro,
  .route-lede {
    font-size: 1rem;
    line-height: 1.72;
  }

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

  .button {
    min-height: 48px;
    padding: 11px 16px;
  }

  .hero-shell .proof-grid {
    margin-top: 18px;
  }

  .proof-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .proof-grid::-webkit-scrollbar,
  .hero-marquee::-webkit-scrollbar {
    display: none;
  }

  .proof-card {
    min-width: 82%;
    padding: 18px 18px 20px;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .proof-card strong {
    font-size: 1.08rem;
  }

  .hero-stage {
    min-height: auto;
    margin-top: 2px;
  }

  .showcase-shell {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    padding: 18px;
    gap: 14px;
    border-radius: 28px;
  }

  .showcase-shell::before {
    inset: 14px;
    border-radius: 22px;
    background-size: 28px 28px;
  }

  .showcase-orb {
    display: none;
  }

  .pulse-card {
    position: static;
    width: 100%;
    min-height: 100%;
    padding: 16px;
    border-radius: 20px;
    animation: none;
  }

  .pulse-card-top {
    order: 2;
  }

  .pulse-card-bottom {
    order: 3;
  }

  .pulse-card strong {
    font-size: 0.95rem;
  }

  .pulse-card p {
    font-size: 0.85rem;
    line-height: 1.52;
  }

  .phone-frame {
    order: 1;
    grid-column: 1 / -1;
    width: min(100%, 304px);
    padding: 12px;
    transform: none;
    margin: 0 auto;
  }

  .phone-screen {
    padding: 16px;
    border-radius: 24px;
  }

  .room-header,
  .post-meta,
  .pulse-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-chip {
    align-self: flex-start;
  }

  .hero-marquee {
    margin-top: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-marquee span {
    flex: 0 0 auto;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 24px;
  }

  .feature-card,
  .audience-card,
  .timeline-card,
  .cta-card,
  .support-card,
  .faq-card,
  .legal-block,
  .route-note {
    padding: 22px;
    border-radius: 22px;
  }

  .feature-card-wide {
    padding: 24px;
  }

  .feature-points {
    margin-top: 18px;
    gap: 12px;
  }

  .audience-essay {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .essay-points {
    margin-top: 22px;
    gap: 14px;
  }

  .workflow-note {
    margin-top: 18px;
    padding: 18px;
  }

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

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

  .site-footer {
    gap: 18px;
    margin-top: 26px;
    padding: 6px 2px 0;
  }

  .footer-links {
    gap: 8px;
  }
}

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

  .proof-card {
    min-width: 92%;
  }

  .showcase-shell {
    grid-template-columns: 1fr;
  }

  .pulse-card-top,
  .pulse-card-bottom,
  .phone-frame {
    grid-column: auto;
  }

  .phone-frame {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
