/* ==========================================================================
   Landing Page Stylesheet
   Styles for the pre-launch landing page with waitlist
   ========================================================================== */

:root {
  --cream: #FBF5EB;
  --cream-dark: #F2E8D5;
  --ink: #1E1E2A;
  --ink-soft: #4A4A5A;
  --ink-muted: #8A8A96;
  --coral: #E25D3E;
  --coral-light: #F4A68E;
  --teal: #2A9D8F;
  --teal-light: #7DD3C6;
  --gold: #D4A543;
  --gold-light: #F0D78C;
  --plum: #6B4C6E;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 245, 235, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 30, 42, 0.06);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  display: inline-block;
  color: var(--coral);
  transform: rotate(-3deg);
  margin-left: 1px;
}

.nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 93, 62, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-slow 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-slow 18s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 850px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2%;
  right: -2%;
  height: 0.15em;
  background: var(--coral-light);
  opacity: 0.4;
  border-radius: 4px;
  transform: rotate(-0.5deg);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 850px;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-form {
  margin-top: 2.5rem;
  scroll-margin-top: 12rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 0.8s;
}

.hero-form input[type="email"] {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border: 2px solid rgba(30, 30, 42, 0.12);
  border-radius: 100px;
  background: white;
  width: 300px;
  outline: none;
  transition: all 0.25s ease;
}

.hero-form input[type="email"]:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(226, 93, 62, 0.1);
}

.hero-form input[type="email"]::placeholder {
  color: var(--ink-muted);
}

.hero-form button,
.hero-form input[type="submit"] {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-form button:hover,
.hero-form input[type="submit"]:hover {
  background: #c94e33;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 93, 62, 0.25);
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 1rem;
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
  animation-delay: 1s;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   PROBLEM SECTION
   -------------------------------------------------------------------------- */
.problem {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #EDE5D4;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,30,42,0.1), transparent);
}

.scattered-tools {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.scattered-pill {
  position: absolute;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  background: #E3DACA;
  color: var(--ink-muted);
  border-radius: 100px;
  opacity: 0;
  white-space: nowrap;
  border: 1px solid rgba(30, 30, 42, 0.05);
  transition: opacity 0.8s ease;
}

.problem .reveal.visible ~ .scattered-tools .scattered-pill {
  opacity: var(--pill-opacity, 0.45);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.problem h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}

.problem-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 1.5rem auto 0;
}

/* --------------------------------------------------------------------------
   CONVERGENCE BEAM VIZ
   -------------------------------------------------------------------------- */
.convergence-section {
  padding: 6rem 2rem 8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.convergence-header {
  text-align: center;
  margin-bottom: 1rem;
}

.convergence-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.convergence-header p:not(.section-label) {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.convergence-intro {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto 0.5rem;
  line-height: 1.6;
  text-align: center;
}

.beam-container {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-width: 520px;
  margin: 0 auto;
}

.beam-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.beam-line {
  fill: none;
  stroke: var(--coral-light);
  stroke-opacity: 0.35;
  stroke-width: 1.5;
  stroke-dasharray: 8 8;
  animation: beam-flow 2.5s linear infinite;
  transition: stroke-opacity 0.3s ease, stroke-width 0.3s ease, stroke 0.3s ease;
}

.beam-line.active {
  stroke: var(--coral);
  stroke-opacity: 0.7;
  stroke-width: 2.5;
  stroke-dasharray: none;
}

@keyframes beam-flow {
  from { stroke-dashoffset: 32; }
  to { stroke-dashoffset: 0; }
}

.beam-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  box-shadow: 0 0 0 6px rgba(226, 93, 62, 0.15), 0 4px 24px rgba(226, 93, 62, 0.25);
}

.beam-center span {
  color: rgba(255,255,255,0.7);
}

.beam-node {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.beam-node-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}

.beam-node.active .beam-node-circle {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(226, 93, 62, 0.12), 0 4px 20px rgba(0,0,0,0.1);
  transform: scale(1.12);
}

.beam-node:hover .beam-node-circle {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.beam-node.active:hover .beam-node-circle {
  transform: scale(1.12);
}

.beam-node-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.beam-node.active .beam-node-label {
  color: var(--ink);
  font-weight: 600;
}

.beam-node-soon {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--plum);
  border: 2px solid #fff;
  z-index: 2;
}

/* Detail card below diagram */
.feature-detail {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-detail-inner {
  animation: detail-in 0.3s ease;
}

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

.feature-detail h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-detail h3 .coming-soon {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
  background: rgba(107, 76, 110, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.feature-detail p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.feature-detail-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--cream-dark);
  border-radius: 100px;
}

/* --------------------------------------------------------------------------
   PRICING
   -------------------------------------------------------------------------- */
.pricing {
  padding: 6rem 2rem 8rem;
  text-align: center;
  position: relative;
  background: #EDE5D4;
}

.pricing h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pricing-sub {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.tier-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(30, 30, 42, 0.06);
  padding: 2.25rem 1.75rem;
  text-align: left;
  position: relative;
  transition: all 0.35s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 30, 42, 0.08);
}

.tier-card.featured {
  border-color: var(--coral);
  box-shadow: 0 0 0 1px var(--coral), 0 8px 32px rgba(226, 93, 62, 0.12);
}

.tier-card.featured:hover {
  box-shadow: 0 0 0 1px var(--coral), 0 16px 48px rgba(226, 93, 62, 0.16);
}

.tier-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: var(--coral);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.tier-price {
  margin: 0.75rem 0 0.5rem;
}

.tier-price .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tier-price .period {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-left: 0.15rem;
}

.tier-desc {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}

.tier-cta {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  margin-bottom: 1.75rem;
}

.tier-cta-primary {
  background: var(--coral);
  color: white;
}

.tier-cta-primary:hover {
  background: #c94e33;
}

.tier-cta-secondary {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(30, 30, 42, 0.1);
}

.tier-cta-secondary:hover {
  background: var(--cream-dark);
}

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

.tier-features li {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.4rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--ink-soft);
  border-top: 1px solid rgba(30, 30, 42, 0.04);
}

.tier-features li:first-child {
  border-top: 1px solid rgba(30, 30, 42, 0.08);
}

.tier-features li .check {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.tier-features li .dash {
  color: var(--ink-muted);
  opacity: 0.4;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.tier-features li .muted {
  color: var(--ink-muted);
  opacity: 0.5;
}

.tier-features .feat-detail {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.tier-features .coming-soon-inline {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
  background: rgba(107, 76, 110, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 100px;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.tier-divider-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding: 0.75rem 0 0.25rem;
}

.pricing-footnote {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(226, 93, 62, 0.05) 0%, rgba(42, 157, 143, 0.03) 40%, transparent 70%);
  border-radius: 50%;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--teal);
}

.final-cta p {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.final-cta .hero-form {
  margin-top: 2rem;
  opacity: 1;
  animation: none;
}

.final-cta .hero-note {
  opacity: 1;
  animation: none;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
  padding: 4rem 2rem 2.5rem;
  border-top: none;
  background: #EDE5D4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 30, 42, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.footer-bottom a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--coral);
}

/* --------------------------------------------------------------------------
   WAITLIST SUCCESS / STATUS PAGES
   -------------------------------------------------------------------------- */
.waitlist-message,
.waitlist-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12rem 2rem 8rem;
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-message-icon,
.waitlist-status-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.waitlist-message h1,
.waitlist-status h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.waitlist-message p,
.waitlist-status p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.waitlist-message-note {
  margin-top: 2rem;
  font-size: 0.875rem !important;
  color: var(--ink-muted) !important;
}

.waitlist-message-note a,
.waitlist-status a {
  color: var(--coral);
  text-decoration: none;
}

.waitlist-message-note a:hover,
.waitlist-status a:hover {
  text-decoration: underline;
}

.waitlist-position {
  margin: 2rem 0;
}

.waitlist-position-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.waitlist-position-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: -0.03em;
  color: var(--coral);
}

.waitlist-serving {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.waitlist-estimate {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.waitlist-note {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  font-style: italic;
  margin: 1.5rem 0;
}

.waitlist-tier {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-top: 1.5rem;
}

.waitlist-status .btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 1.5rem;
}

.waitlist-status .btn:hover {
  background: #c94e33;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 93, 62, 0.25);
}

/* --------------------------------------------------------------------------
   INTERSECTION OBSERVER ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .tier-card.featured { order: -1; }
}

@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .hero { padding: 7rem 1.5rem 5rem; }
  .hero-form { flex-direction: column; align-items: center; }
  .hero-form input[type="email"] { width: 100%; max-width: 340px; }
  .hero-form button,
  .hero-form input[type="submit"] { width: 100%; max-width: 340px; }
  .final-cta .hero-form { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  .beam-container { max-width: 360px; }
  .beam-center { padding: 0.6rem 1.15rem; font-size: 1rem; }
  .beam-node-circle { width: 40px; height: 40px; font-size: 1rem; }
  .beam-node-label { font-size: 0.6rem; }
  .beam-node-soon { width: 11px; height: 11px; top: -3px; right: -3px; }
  .feature-detail h3 { font-size: 1.15rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
