:root {
  color-scheme: light;
  --bg: #f8f7ff;
  --bg-soft: #eef4ff;
  --surface: rgba(255, 255, 255, 0.46);
  --surface-strong: rgba(255, 255, 255, 0.68);
  --surface-deep: rgba(255, 255, 255, 0.2);
  --text: #17315b;
  --muted: rgba(23, 49, 91, 0.72);
  --line: rgba(116, 86, 194, 0.16);
  --line-strong: rgba(255, 255, 255, 0.74);
  --violet: #7550cf;
  --magenta: #dd71b5;
  --teal: #1387aa;
  --sky: #8fd4ff;
  --gold: #efb95a;
  --shadow:
    0 34px 80px rgba(92, 74, 173, 0.14),
    0 16px 34px rgba(19, 135, 170, 0.08);
  --highlight: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1.15rem;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(143, 212, 255, 0.28), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(221, 113, 181, 0.16), transparent 22%),
    radial-gradient(circle at 70% 72%, rgba(117, 80, 207, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f9f7ff 38%, #edf4ff 100%);
}

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

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

.page-shell {
  overflow: clip;
}

.jewel-mount {
  position: absolute;
  pointer-events: auto;
  z-index: 0;
}

.jewel-mount canvas,
.jewel-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.jewel-mount canvas {
  opacity: 0;
  transition: opacity 180ms ease;
}

.jewel-mount canvas.is-ready {
  opacity: 1;
}

.jewel-fallback {
  position: relative;
  filter: drop-shadow(0 28px 48px rgba(28, 38, 72, 0.16));
}

.jewel-fallback::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--jewel-blue) 0%, transparent 70%);
  opacity: calc(0.18 + (var(--jewel-intensity, 1) * 0.12));
  filter: blur(26px);
}

.jewel-fallback::after {
  content: "";
  position: absolute;
  inset: 16% 16% 16% 16%;
  clip-path:
    polygon(34% 0%, 66% 0%, 88% 18%, 100% 50%, 88% 82%, 66% 100%, 34% 100%, 12% 82%, 0% 50%, 12% 18%);
  background: linear-gradient(145deg, var(--jewel-body) 0%, var(--jewel-core) 44%, var(--jewel-red) 100%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset -18px -22px 36px rgba(45, 64, 112, 0.16),
    0 0 36px rgba(255,255,255,0.24);
  transform: rotate(-8deg);
}

.hero,
.quote-marquee,
.promise,
.feature,
.onboarding-preview,
.community-proof,
.pricing,
.final-cta,
.footer {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.hero {
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
  isolation: isolate;
}

.jewel-mount-hero {
  width: clamp(24rem, 42vw, 40rem);
  aspect-ratio: 1 / 1;
  left: clamp(-34rem, -30vw, -24rem);
  top: 9.5rem;
  opacity: 0.92;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atmosphere-shard,
.atmosphere-ring {
  position: absolute;
  border-radius: 999px;
}

.atmosphere-shard {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 24px 60px rgba(116, 86, 194, 0.12);
  backdrop-filter: blur(18px) saturate(145%);
  opacity: 0.84;
}

.atmosphere-shard-one {
  top: 15%;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  transform: rotate(28deg);
}

.atmosphere-shard-two {
  right: 2%;
  top: 10%;
  width: 11rem;
  height: 20rem;
  transform: rotate(18deg);
}

.atmosphere-ring {
  top: 12rem;
  left: max(0rem, calc(50% - 34rem));
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(143, 212, 255, 0.16),
    0 0 110px rgba(221, 113, 181, 0.08);
  opacity: 0.72;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-link {
  gap: 0.12rem;
}

.brand-mark,
.footer-brand-mark,
.final-logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 4.4rem;
  flex: 0 0 auto;
  margin-right: 0;
}

.brand-wordmark {
  width: clamp(5.4rem, 9.2vw, 7.4rem);
  margin-left: -0.42rem;
}

.nav-links,
.nav-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links {
  justify-content: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a,
.footer-links a,
.brand-link,
.primary-link,
.secondary-link,
.ghost-link,
.final-cta-button {
  transition:
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--violet);
}

.primary-link,
.secondary-link,
.ghost-link,
.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
}

.primary-link,
.final-cta-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--violet) 56%, var(--magenta));
  box-shadow:
    0 18px 38px rgba(117, 80, 207, 0.28),
    0 8px 18px rgba(19, 135, 170, 0.1);
}

.secondary-link,
.ghost-link {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.26));
  box-shadow:
    var(--highlight),
    0 18px 34px rgba(19, 135, 170, 0.08);
  backdrop-filter: blur(16px) saturate(160%);
}

.primary-link:hover,
.secondary-link:hover,
.ghost-link:hover,
.final-cta-button:hover,
.primary-link:focus-visible,
.secondary-link:focus-visible,
.ghost-link:focus-visible,
.final-cta-button:focus-visible {
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 34rem) minmax(22rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  padding-block: clamp(2.5rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-label,
.pillar-eyebrow,
.price-tier {
  margin: 0 0 1rem;
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.94;
}

h1 span,
.final-cta h2 {
  color: var(--violet);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  line-height: 0.96;
}

.accent-emphasis {
  color: var(--violet);
  font-style: italic;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.14;
}

.hero-body,
.section-body,
.promise-card p:last-of-type,
.feature-copy p:last-of-type,
.community-list,
.member-card p,
.rail-step p,
.price-card p:last-of-type,
.footer-meta,
.footer-tagline,
.feed-copy,
.feed-card-head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.7;
}

.hero-body {
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-proof {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  min-height: min(75vh, 48rem);
  display: grid;
  place-items: center;
  z-index: 1;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(38px);
  opacity: 0.95;
}

.glow-one {
  inset: 10% auto auto 4%;
  width: clamp(12rem, 22vw, 20rem);
  height: clamp(12rem, 22vw, 20rem);
  background: rgba(143, 212, 255, 0.34);
}

.glow-two {
  inset: auto 6% 14% auto;
  width: clamp(14rem, 24vw, 22rem);
  height: clamp(14rem, 24vw, 22rem);
  background: rgba(221, 113, 181, 0.22);
}

.builder-mockup,
.glass-panel,
.price-card,
.member-card,
.rail-step,
.promise-card {
  position: relative;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--highlight), var(--shadow);
  backdrop-filter: blur(24px) saturate(165%);
}

.builder-mockup {
  width: min(100%, 46rem);
  padding: 1rem;
  isolation: isolate;
  overflow: hidden;
}

.builder-mockup::before,
.glass-panel::before,
.price-card::before,
.member-card::before,
.rail-step::before,
.promise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(221, 113, 181, 0.14), transparent 28%);
  pointer-events: none;
}

.glass-rim,
.glass-sheen,
.glass-refraction {
  position: absolute;
  pointer-events: none;
}

.glass-rim {
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.96),
    inset -1px -1px 0 rgba(117, 80, 207, 0.12);
}

.glass-sheen {
  top: 0.6rem;
  left: 5%;
  width: 46%;
  height: 22%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 86%);
  filter: blur(10px);
  transform: rotate(-9deg);
  opacity: 0.9;
}

.glass-refraction {
  filter: blur(8px);
  mix-blend-mode: screen;
  opacity: 0.56;
}

.glass-refraction-one {
  inset: auto auto 12% 8%;
  width: 34%;
  height: 22%;
  border-radius: 44% 56% 58% 42%;
  background: linear-gradient(135deg, rgba(143, 212, 255, 0.42), rgba(221, 113, 181, 0.28));
  transform: rotate(-14deg);
}

.glass-refraction-two {
  inset: 12% 7% auto auto;
  width: 24%;
  height: 18%;
  border-radius: 58% 42% 48% 52%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(117, 80, 207, 0.26));
  transform: rotate(18deg);
}

.builder-topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.4rem 1rem;
}

.window-dot {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: rgba(23, 49, 91, 0.22);
}

.builder-url {
  margin-left: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.builder-url-mobile {
  display: none;
}

.builder-body {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 1rem;
}

.builder-chat,
.preview-window {
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--highlight);
  min-height: 28rem;
}

.builder-chat {
  padding: 1rem;
}

.chat-chip,
.chat-bubble,
.chat-bubble-agent,
.selection-intent,
.refresh-arrow,
.stack-check,
.member-badge,
.feed-pill {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.chat-chip,
.selection-intent,
.stack-check,
.member-badge,
.feed-pill {
  padding: 0.55rem 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--highlight);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--violet);
}

.chat-bubble,
.chat-bubble-agent {
  width: 100%;
  margin-top: 0.8rem;
  padding: 1rem;
  border-radius: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.66);
}

.chat-bubble-agent {
  background: linear-gradient(135deg, rgba(19, 135, 170, 0.24), rgba(117, 80, 207, 0.18));
}

.chat-lines {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.chat-lines span {
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 212, 255, 0.6), rgba(221, 113, 181, 0.32));
}

.chat-lines span:nth-child(2) {
  width: 82%;
}

.chat-lines span:nth-child(3) {
  width: 66%;
}

.preview-window {
  padding: 1rem;
}

.preview-nav {
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.preview-hero {
  position: relative;
  margin-top: 1rem;
  min-height: 22rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(143, 212, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(221, 113, 181, 0.14));
  padding: 1.1rem;
}

.preview-selection {
  width: 56%;
  height: 4.4rem;
  border-radius: 1.2rem;
  border: 2px solid rgba(19, 135, 170, 0.58);
  box-shadow:
    0 0 0 6px rgba(143, 212, 255, 0.2),
    0 0 34px rgba(19, 135, 170, 0.14);
}

.preview-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.preview-card,
.preview-card-large {
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.68);
}

.preview-card-large {
  width: 74%;
  height: 7rem;
  margin-top: 1rem;
}

.preview-card {
  height: 6rem;
}

.quote-marquee {
  padding-block: 1rem 2rem;
}

.marquee-shell {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22));
  box-shadow: var(--highlight), 0 18px 34px rgba(91, 72, 167, 0.08);
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 1rem 1.2rem;
  animation: marquee 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  white-space: nowrap;
  color: var(--muted);
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.promise,
.onboarding-preview,
.community-proof,
.pricing {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.onboarding-preview .section-heading {
  max-width: 60rem;
  margin: 0 auto;
}

.onboarding-preview .section-heading h2 {
  max-width: 15ch;
}

.section-heading {
  display: grid;
  gap: 1rem;
}

.section-heading-center {
  text-align: center;
  justify-items: center;
}

.promise-grid,
.pricing-grid,
.community-grid,
.rail {
  display: grid;
  gap: 1.4rem;
  margin-top: 3rem;
}

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

.promise-card,
.price-card,
.member-card,
.rail-step {
  padding: 1.5rem;
}

.promise-card h3,
.rail-step h3,
.price-card h3 {
  margin-bottom: 0.7rem;
}

.feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(3.4rem, 8vw, 6rem);
}

.feature-right .feature-copy {
  order: 2;
}

.feature-right .feature-visual {
  order: 1;
}

.feature-copy h2 {
  margin-bottom: 1rem;
}

.feature-visual,
.community-visual {
  display: grid;
}

.glass-panel {
  min-height: 23rem;
  padding: 1.25rem;
  overflow: hidden;
}

.community-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.community-list li {
  position: relative;
  padding-left: 1.3rem;
}

.community-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
}

.community-feed-panel {
  display: grid;
  gap: 1rem;
}

.feed-header,
.mock-stack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.feed-meta {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.feed-list {
  display: grid;
  gap: 0.95rem;
}

.feed-card {
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--highlight);
}

.feed-card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.feed-card-head strong {
  display: block;
  font-size: 0.94rem;
}

.feed-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--violet));
}

.feed-avatar.alt {
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}

.feed-avatar.gold {
  background: linear-gradient(135deg, var(--gold), var(--magenta));
}

.stack-check {
  margin-top: 0.9rem;
  width: fit-content;
}

.selection-stage {
  position: relative;
  min-height: 20rem;
  margin-top: 1rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(143, 212, 255, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 40px rgba(143, 212, 255, 0.12);
}

.selection-topbar {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  height: 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.selection-copy {
  position: absolute;
  left: 3rem;
  top: 10rem;
  display: grid;
  gap: 0.8rem;
  width: 44%;
}

.selection-kicker,
.selection-line {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.selection-kicker {
  width: 36%;
  height: 0.7rem;
}

.selection-line {
  height: 0.9rem;
}

.selection-line-strong {
  width: 88%;
  background: linear-gradient(90deg, rgba(117, 80, 207, 0.3), rgba(143, 212, 255, 0.26));
}

.selection-cards {
  position: absolute;
  right: 2rem;
  bottom: 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  width: 42%;
}

.selection-card {
  min-height: 5.75rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--highlight);
}

.selection-box {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 54%;
  height: 5rem;
  border-radius: 1.2rem;
  border: 2px solid rgba(19, 135, 170, 0.56);
  box-shadow:
    0 0 0 16px rgba(143, 212, 255, 0.22),
    0 0 42px rgba(19, 135, 170, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

.selection-cursor {
  position: absolute;
  right: 20%;
  top: 35%;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.15rem 0.75rem 0.75rem 0.75rem;
  transform: rotate(-28deg);
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 8px 20px rgba(117, 80, 207, 0.24);
}

.selection-intent {
  position: absolute;
  left: 10%;
  bottom: 2rem;
}

.refresh-arrow {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--highlight);
}

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

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

.member-card {
  display: grid;
  gap: 1rem;
}

.member-badge.alt {
  color: var(--teal);
}

.member-badge.gold {
  color: #9c6d08;
}

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

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

.price-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.price-card.featured {
  transform: translateY(-0.35rem);
  border-color: rgba(117, 80, 207, 0.34);
}

.price-card h3 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.final-cta {
  --cta-shadow-color: rgba(42, 77, 135, 0.98);
  padding-block: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(143, 212, 255, 0.2), transparent 24%),
    radial-gradient(circle at 78% 26%, rgba(221, 113, 181, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(18, 74, 124, 0.98), rgba(76, 60, 146, 0.94));
  box-shadow: 0 30px 60px rgba(23, 49, 91, 0.22);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3.2rem);
}

.final-cta .section-label,
.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 6.4vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 0.1rem;
  text-shadow:
    -0.06em 0 0 var(--cta-shadow-color),
    0.06em 0 0 var(--cta-shadow-color),
    0 -0.06em 0 var(--cta-shadow-color),
    0 0.06em 0 var(--cta-shadow-color),
    -0.04em -0.04em 0 var(--cta-shadow-color),
    0.04em -0.04em 0 var(--cta-shadow-color),
    -0.04em 0.04em 0 var(--cta-shadow-color),
    0.04em 0.04em 0 var(--cta-shadow-color);
}

.final-cta p {
  max-width: 34rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.45;
  margin-top: 0.4rem;
}

.waitlist-form {
  position: relative;
  width: min(100%, 38rem);
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  border-radius: calc(var(--radius-lg) + 0.25rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--highlight), var(--shadow);
  backdrop-filter: blur(24px) saturate(165%);
  isolation: isolate;
}

.waitlist-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(221, 113, 181, 0.14), transparent 28%);
  pointer-events: none;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.waitlist-action-row {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.85rem;
}

.waitlist-field {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.waitlist-field span {
  color: rgba(23, 49, 91, 0.8);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waitlist-field input,
.waitlist-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1.1rem;
  padding: 0.95rem 1rem;
  color: var(--text);
  font: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 24px rgba(23, 49, 91, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
}

.waitlist-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.waitlist-field input::placeholder,
.waitlist-field textarea::placeholder {
  color: rgba(23, 49, 91, 0.52);
}

.waitlist-field input:focus-visible,
.waitlist-field textarea:focus-visible {
  outline: 2px solid rgba(143, 212, 255, 0.72);
  outline-offset: 2px;
}

.waitlist-form .final-cta-button {
  position: relative;
  z-index: 1;
  width: auto;
  min-width: 12.5rem;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    var(--highlight),
    0 14px 28px rgba(23, 49, 91, 0.1);
  backdrop-filter: blur(18px) saturate(150%);
}

.waitlist-note,
.waitlist-feedback {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-top: 0;
  font-size: 0.95rem;
}

.waitlist-note {
  color: rgba(255, 255, 255, 0.76);
}

.waitlist-feedback {
  min-height: 1.4rem;
  color: #ffffff;
  font-weight: 700;
}

.waitlist-feedback[data-state="ok"] {
  color: #bfffe5;
}

.waitlist-feedback[data-state="error"] {
  color: #ffd7e6;
}

.final-cta .section-label {
  text-shadow:
    -0.08em 0 0 var(--cta-shadow-color),
    0.08em 0 0 var(--cta-shadow-color),
    0 -0.08em 0 var(--cta-shadow-color),
    0 0.08em 0 var(--cta-shadow-color);
}

.jewel-mount-cta {
  width: clamp(12rem, 18vw, 16rem);
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 4.6rem;
  transform: translateX(-50%);
  opacity: 0.98;
}

.footer {
  padding-block: 2.5rem 3rem;
}

.footer-row {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  align-items: end;
  gap: 1.5rem;
}

.footer-wordmark {
  width: clamp(5.4rem, 9.2vw, 7.4rem);
  margin-left: -0.42rem;
}

.footer-brand {
  gap: 0.12rem;
  margin-bottom: 0.85rem;
}

.footer-brand-mark {
  width: 4.4rem;
  flex: 0 0 auto;
  margin-right: 0;
}

.footer-tagline,
.footer-meta {
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .promise-grid,
  .community-grid,
  .pricing-grid,
  .rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .feature,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .hero {
    min-height: auto;
  }

  .jewel-mount-hero {
    width: clamp(18rem, 40vw, 26rem);
    left: -20rem;
    top: 10.5rem;
    opacity: 0.72;
  }

  .builder-body {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.3rem, 13vw, 5.6rem);
  }

  h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .nav-actions {
    flex-wrap: nowrap;
  }

  .ghost-link {
    display: none;
  }

  .final-cta {
    margin-inline: 1rem;
    padding-inline: 0;
  }

  .final-cta-button {
    margin-top: 0.75rem;
  }

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

  .waitlist-action-row {
    grid-template-columns: 1fr;
  }

  .waitlist-form .final-cta-button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    margin: 2rem 0 3rem;
  }

  .builder-mockup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 11.6rem;
    column-gap: 1rem;
    row-gap: 0.3rem;
    width: calc(100vw - 2rem);
    max-width: 22rem;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .builder-mockup::before,
  .builder-mockup > .glass-rim,
  .builder-mockup > .glass-sheen,
  .builder-mockup > .glass-refraction {
    display: none;
  }

  .builder-topbar {
    display: none;
  }

  .window-dot {
    display: none;
  }

  .builder-url {
    margin-left: 0;
    color: rgba(23, 49, 91, 0.56);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .builder-body {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 11.6rem;
    align-items: start;
    justify-content: stretch;
    gap: 1rem;
  }

  .builder-url-mobile {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.15rem;
  }

  .builder-chat {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 0.45rem;
  }

  .chat-chip {
    display: none;
  }

  .chat-bubble,
  .chat-bubble-agent {
    width: auto;
    max-width: 100%;
    margin-top: 0;
    padding: 0.6rem 0.82rem;
    border-radius: 1rem;
    font-size: 0.79rem;
    line-height: 1.4;
    box-shadow:
      var(--highlight),
      0 12px 24px rgba(23, 49, 91, 0.1);
  }

  .chat-lines {
    display: grid;
    width: 4.7rem;
    gap: 0.45rem;
    margin-top: 0.15rem;
  }

  .chat-lines span {
    height: 0.42rem;
  }

  .chat-lines span:nth-child(1) {
    width: 100%;
  }

  .chat-lines span:nth-child(2) {
    width: 78%;
  }

  .chat-lines span:nth-child(3) {
    width: 58%;
  }

  .builder-preview {
    width: 100%;
    margin: 0;
  }

  .preview-window {
    position: relative;
    min-height: auto;
    aspect-ratio: 10 / 18.3;
    padding: 0.4rem;
    border-radius: 2rem;
    border-color: rgba(255, 255, 255, 0.84);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.24));
    box-shadow:
      var(--highlight),
      0 16px 28px rgba(23, 49, 91, 0.14);
    backdrop-filter: blur(24px) saturate(165%);
  }

  .preview-window::before {
    content: "";
    position: absolute;
    top: 0.42rem;
    left: 50%;
    width: 34%;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(23, 49, 91, 0.82);
    transform: translateX(-50%);
  }

  .preview-nav {
    display: none;
  }

  .preview-hero {
    min-height: 100%;
    margin-top: 0;
    padding: 1.25rem 0.7rem 0.7rem;
    border-radius: 1.6rem;
  }

  .preview-selection {
    width: 100%;
    height: 3.1rem;
    border-radius: 1rem;
  }

  .preview-card-large {
    width: 100%;
    height: 4.9rem;
    margin-top: 0.75rem;
  }

  .preview-card-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 0.7rem;
  }

  .preview-card {
    height: 3.8rem;
  }

  .promise-grid,
  .community-grid,
  .pricing-grid,
  .rail {
    grid-template-columns: 1fr;
  }

  .selection-box {
    left: 1.5rem;
    width: 68%;
  }

  .selection-intent {
    left: 1rem;
    right: 1rem;
    width: fit-content;
    max-width: calc(100% - 2rem);
  }

  .jewel-mount-hero {
    width: 18rem;
    left: auto;
    right: -9rem;
    top: 6rem;
    opacity: 0.58;
  }

  .jewel-mount-cta {
    width: 9rem;
    top: 3.2rem;
  }
}
