:root {
  --bg: #07111f;
  --bg-deep: #030915;
  --panel: rgba(11, 22, 40, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --card-light: #fbfcfe;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eff5ff;
  --muted: #9eb0c9;
  --muted-strong: #c7d4e9;
  --ink: #0b1320;
  --ink-soft: #42536e;
  --accent: #2dcf8b;
  --accent-soft: rgba(45, 207, 139, 0.12);
  --accent-strong: rgba(45, 207, 139, 0.24);
  --shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(45, 207, 139, 0.12), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(18, 42, 76, 0.92), transparent 30%),
    linear-gradient(160deg, #07101d 0%, #091321 46%, #030914 100%);
  overflow-x: hidden;
}

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

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
  opacity: 0.08;
}

body::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.65px, transparent 0.65px);
  background-size: 26px 26px;
  opacity: 0.035;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.hero-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 420px);
  gap: 32px;
  align-items: start;
}

.hero-copy,
.hero-form,
.side-stack {
  min-width: 0;
}

.hero-form {
  position: sticky;
  top: 24px;
}

.eyebrow,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.eyebrow-dot,
.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(45, 207, 139, 0.12);
}

.hero-title,
.panel-title,
.callout-title {
  margin: 18px 0 0;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  font-weight: 800;
  max-width: 14ch;
}

.panel-title,
.callout-title {
  max-width: 14ch;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

.panel-title-small {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  max-width: 16ch;
}

.accent-text {
  color: var(--accent);
  display: block;
}

.hero-subtitle,
.panel-body,
.callout-copy,
.form-copy,
.status-note,
.footer-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
  max-width: 64ch;
}

.confirmation-title {
  max-width: none;
  text-align: center;
}

.confirmation-subtitle {
  max-width: 54ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 600;
}

.meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-actions,
.panel-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button-primary {
  background: var(--accent);
  color: #071313;
  box-shadow: 0 16px 30px rgba(45, 207, 139, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.button-primary:active,
.button-secondary:active {
  transform: translateY(0) scale(0.985);
}

.button-primary:focus-visible,
.button-secondary:focus-visible {
  outline: 2px solid rgba(45, 207, 139, 0.55);
  outline-offset: 3px;
}

.preview-card,
.content-panel,
.callout-panel,
.status-panel {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.preview-card {
  overflow: hidden;
}

.preview-topline,
.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-stage {
  padding: 26px 22px 22px;
}

.preview-pulse {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(45, 207, 139, 0.3), rgba(45, 207, 139, 0.06));
  border: 1px solid rgba(45, 207, 139, 0.22);
  box-shadow:
    0 0 0 16px rgba(45, 207, 139, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.preview-pulse svg,
.confirmation-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-pulse svg {
  color: var(--accent);
}

.preview-title {
  margin: 22px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.preview-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  max-width: 54ch;
}

.preview-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.preview-chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted-strong);
}

.preview-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.flow-divider {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 207, 139, 0.1), rgba(45, 207, 139, 0.6));
}

.stat-row,
.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 22px 22px;
}

.status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 22px;
}

.stat-card,
.status-tile {
  min-height: 92px;
  padding: 16px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.stat-card strong,
.status-tile strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.stat-card span,
.status-tile span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.status-tile-active {
  border-color: rgba(45, 207, 139, 0.28);
  box-shadow: inset 0 0 0 1px rgba(45, 207, 139, 0.08);
}

.form-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(253, 254, 255, 0.98), rgba(244, 248, 253, 0.98));
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-kicker,
.panel-kicker,
.callout-kicker {
  margin: 0;
  color: #1a6d4d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-title {
  margin: 12px 0 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.form-copy,
.form-quote,
.form-footnote,
.form-privacy {
  color: var(--ink-soft);
}

.form-quote {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 2px solid rgba(45, 207, 139, 0.3);
  font-size: 0.96rem;
  font-weight: 600;
}

.form-embed-shell {
  position: relative;
  margin-top: 18px;
  min-height: 430px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(10, 25, 44, 0.08);
  background: #f4f8fc;
}

.form-loading-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(245, 249, 252, 0.96), rgba(238, 244, 250, 0.96));
  color: var(--ink-soft);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.form-loading-copy p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.form-loading-copy a {
  color: #156b4b;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-embed-shell.embed-loaded .form-loading-copy {
  opacity: 0;
  visibility: hidden;
}

.form-embed-shell iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}

.form-footnote,
.form-privacy {
  margin: 14px 0 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.form-footnote a {
  color: #156b4b;
  font-weight: 700;
}

.callout-panel,
.content-panel {
  padding: 28px;
}

.callout-panel {
  margin-top: 34px;
}

.callout-title {
  margin-top: 14px;
}

.feature-list,
.stack-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted-strong);
  line-height: 1.64;
}

.feature-bullet {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(45, 207, 139, 0.08);
}

.panel-cta {
  margin-top: 26px;
}

.side-stack {
  display: grid;
  gap: 24px;
}

.compact-panel,
.compare-panel {
  min-height: auto;
}

.stack-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.stack-list li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  line-height: 1.6;
}

.compare-table {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.compare-row span {
  color: var(--muted);
  line-height: 1.55;
}

.compare-row strong {
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.site-footer {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-copy {
  margin-top: 10px;
}

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

.footer-links a {
  font-size: 0.94rem;
  color: var(--muted-strong);
  text-decoration: none;
}

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

.footer-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.confirmation-shell {
  padding-top: 48px;
}

.confirmation-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.confirmation-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(45, 207, 139, 0.3), rgba(45, 207, 139, 0.08));
  border: 1px solid rgba(45, 207, 139, 0.24);
  color: var(--accent);
  box-shadow:
    0 0 0 16px rgba(45, 207, 139, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.confirmation-icon svg {
  width: 34px;
  height: 34px;
}

.status-mono {
  font-family: "Geist Mono", monospace;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.status-note {
  padding: 18px 22px 22px;
  margin: 0;
}

.status-note a,
.panel-body a {
  color: var(--muted-strong);
  font-weight: 700;
}

.confirmation-grid {
  margin-top: 30px;
}

.action-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.action-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.action-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(45, 207, 139, 0.14);
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.action-card h3 {
  margin: 2px 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.action-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

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

html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 140ms;
}

.reveal-delay-3 {
  transition-delay: 200ms;
}

.reveal-delay-4 {
  transition-delay: 260ms;
}

.reveal-delay-5 {
  transition-delay: 320ms;
}

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

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

  .hero-form {
    position: static;
  }

  .hero-title,
  .panel-title,
  .callout-title {
    max-width: none;
  }

  .hero-copy {
    order: 1;
  }

  .hero-form {
    order: 2;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(var(--max-width), calc(100% - 20px));
    padding-top: 18px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 13vw, 4rem);
    line-height: 0.96;
  }

  .panel-title,
  .callout-title {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .hero-actions,
  .panel-button-row {
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .preview-card,
  .content-panel,
  .callout-panel,
  .form-card,
  .status-panel,
  .site-footer {
    border-radius: 24px;
  }

  .preview-topline,
  .status-head,
  .preview-stage,
  .callout-panel,
  .content-panel,
  .site-footer,
  .form-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .preview-topline,
  .status-head {
    padding-top: 16px;
  }

  .stat-row,
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .compare-row,
  .action-card {
    grid-template-columns: 1fr;
  }

  .action-number {
    width: 44px;
    height: 44px;
  }

  .preview-flow,
  .hero-meta,
  .footer-links {
    gap: 10px;
  }

  .form-embed-shell {
    min-height: 460px;
  }

  .form-embed-shell iframe {
    min-height: 460px;
  }
}
