/* ===========================================================
   moonquake.app — marketing site
   Design system matches mothership/thrace palette.
   =========================================================== */

:root {
  /* Palette — pulled from mothership/thrace login */
  --amber:     #e8a030;
  --amber-hi:  #f0c060;
  --amber-low: #a67220;
  --amber-glow: rgba(232, 160, 48, 0.32);

  --bg:        #05090f;
  --bg-lift:   #0a0f18;
  --bg-card:   rgba(10, 15, 24, 0.55);
  --bg-card-hover: rgba(15, 22, 34, 0.72);

  --text:      #f0ede8;
  --text-dim:  rgba(240, 237, 232, 0.72);
  --text-mute: rgba(240, 237, 232, 0.48);
  --text-faint: rgba(240, 237, 232, 0.3);

  --rule:      rgba(240, 237, 232, 0.14);
  --rule-strong: rgba(240, 237, 232, 0.28);

  --signal-red: #e07a5c;

  /* Typography */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Container */
  --container-max: 1180px;
  --container-narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x managed so the starfield canvas sits behind content */
}

/* ===========================================================
   STARFIELD CANVAS (Three.js engine lives here)
   =========================================================== */

canvas#starfield {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ===========================================================
   LAYOUT PRIMITIVES
   =========================================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-5);
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .container, .container-narrow {
    padding: 0 var(--s-4);
  }
}

main, header, section, footer {
  position: relative;
  z-index: 1;
}

/* ===========================================================
   NAV
   =========================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(5, 9, 15, 0.65);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.wordmark-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber-glow);
  animation: pulse 2.4s ease-in-out infinite;
}

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

.nav-links {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: var(--s-2) var(--s-4);
  background: linear-gradient(135deg, var(--amber), var(--amber-hi));
  color: var(--bg) !important;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 0.92;
  color: var(--bg) !important;
}

@media (max-width: 700px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* ===========================================================
   HERO
   =========================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-10) 0 var(--s-9);
  position: relative;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.hero-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7.2vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 16ch;
  margin-bottom: var(--s-5);
}

.hero-headline em {
  font-style: normal;
  font-weight: 600;
  color: var(--amber);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: #ffffff;
  max-width: 54ch;
  margin-bottom: var(--s-7);
  line-height: 1.55;
}

.hero-sub strong {
  color: var(--amber);
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-6);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  border-radius: 6px;
  transition: all 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-hi));
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--amber-glow);
}

.btn-primary .arrow {
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--rule-strong);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(240, 237, 232, 0.04);
  border-color: var(--text);
}

/* Hero meta row — dispatch-style */
.hero-meta {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--s-5);
  font-family: var(--font-mono);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.hero-meta-label {
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta-value {
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.hero-meta-value--accent {
  color: var(--amber);
}

/* ===========================================================
   SECTION
   =========================================================== */

.section {
  padding: var(--s-10) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--text);
  margin-bottom: var(--s-5);
  max-width: 22ch;
}

.section-heading em {
  font-style: normal;
  color: var(--amber);
}

.section-lead {
  font-size: 1.12rem;
  color: var(--text-dim);
  max-width: 60ch;
  margin-bottom: var(--s-7);
  line-height: 1.6;
}

/* ===========================================================
   THE QUESTION
   =========================================================== */

.question {
  padding: var(--s-10) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(5, 9, 15, 0.5);
  backdrop-filter: blur(6px);
}

.question-frame {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
  text-align: center;
  position: relative;
  z-index: 1;
}

.question-meta {
  font-family: var(--font-mono);
  font-size: 1.17rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}

.question-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--s-5);
}

.question-text em {
  font-style: normal;
  color: var(--amber);
}

.question-sub {
  font-size: 1.46rem;
  color: var(--text-dim);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================================================
   CONVICTIONS
   =========================================================== */

.convictions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
}

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

.conviction {
  padding: var(--s-6);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rule);
  border-radius: 8px;
  transition: border-color 240ms ease, transform 240ms ease, background 240ms ease;
}

.conviction:hover {
  border-color: var(--rule-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.conviction-number {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--amber);
  letter-spacing: 0.14em;
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.conviction-number::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber-glow);
}

.conviction-year {
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.conviction-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: var(--s-4);
}

.conviction-body {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===========================================================
   TRACE
   =========================================================== */

.trace {
  padding: var(--s-9) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.trace-chain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--s-3);
  margin-top: var(--s-6);
  align-items: stretch;
}

.trace-step {
  text-align: center;
  padding: var(--s-5) var(--s-3);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  backdrop-filter: blur(6px);
  transition: all 260ms ease;
}

.trace-step:hover {
  border-color: var(--amber);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.trace-step-icon {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  color: var(--amber);
  margin-bottom: var(--s-3);
  display: block;
  line-height: 1;
}

.trace-step-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s-1);
  letter-spacing: -0.005em;
}

.trace-step-detail {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

.trace-readout {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: rgba(5, 9, 15, 0.7);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.trace-readout-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--rule);
}

.trace-readout-row:last-child { border-bottom: none; }

.trace-readout-label {
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
}

.trace-readout-value {
  color: var(--text);
  font-size: 0.95rem;
}

.trace-readout-value--attributed {
  color: var(--amber-hi);
  font-weight: 500;
}

@media (max-width: 560px) {
  .trace-readout-row {
    grid-template-columns: 1fr;
    gap: var(--s-1);
  }
}

/* ===========================================================
   SHOWCASE — product screenshot + callouts
   =========================================================== */

.showcase {
  padding: var(--s-10) 0;
  position: relative;
}

.showcase-image-wrap {
  position: relative;
  margin: var(--s-7) auto 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px var(--rule-strong),
    0 -2px 40px rgba(232, 160, 48, 0.08);
  background: var(--bg);
}

.showcase-image-wrap::before {
  /* Subtle amber glow around the image */
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at 50% 20%, rgba(232, 160, 48, 0.12), transparent 60%);
  z-index: -1;
  filter: blur(30px);
  pointer-events: none;
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-frame {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  background: rgba(5, 9, 15, 0.92);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.showcase-frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rule-strong);
}

.showcase-frame-dot--live {
  background: #7dd3a8;
  box-shadow: 0 0 8px rgba(125, 211, 168, 0.5);
}

.showcase-frame-url {
  color: var(--text-dim);
  margin-left: var(--s-3);
}

.showcase-callouts {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

@media (max-width: 900px) {
  .showcase-callouts { grid-template-columns: 1fr; }
}

.showcase-callout {
  padding: var(--s-5);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--amber);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.showcase-callout-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.showcase-callout-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.showcase-callout-body {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ===========================================================
   NOT THIS
   =========================================================== */

/* ===========================================================
   CLOSING CTA
   =========================================================== */

.closing {
  padding: var(--s-10) 0;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--s-6);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.closing-headline em {
  font-style: normal;
  color: var(--amber);
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 50ch;
  margin: 0 auto var(--s-7);
}

/* ===========================================================
   FOOTER
   =========================================================== */

.footer {
  padding: var(--s-7) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: var(--s-4);
}

.footer-meta {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.footer a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 180ms ease;
}

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

/* ===========================================================
   REVEAL
   =========================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-d1 { transition-delay: 90ms; }
.reveal-d2 { transition-delay: 180ms; }
.reveal-d3 { transition-delay: 270ms; }
.reveal-d4 { transition-delay: 360ms; }

.dispatch-rule {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: var(--s-8) 0 var(--s-5);
}

.dispatch-rule::before,
.dispatch-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ===========================================================
   INTERIOR PAGES
   =========================================================== */

.page-header {
  padding: var(--s-10) 0 var(--s-8);
  border-bottom: 1px solid var(--rule);
}

.page-header-label {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}

.page-header-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--s-4);
  max-width: 18ch;
}

.page-header-sub {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 58ch;
  line-height: 1.6;
}

/* Prose */
.prose {
  max-width: 66ch;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.95rem;
  line-height: 1.18;
  color: var(--text);
  margin: var(--s-8) 0 var(--s-4);
  letter-spacing: -0.02em;
}

.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--amber);
  margin: var(--s-6) 0 var(--s-3);
  letter-spacing: -0.005em;
}

.prose p {
  font-size: 1.08rem;
  color: var(--text-dim);
  line-height: 1.72;
  margin-bottom: var(--s-4);
}

.prose p strong {
  color: var(--text);
  font-weight: 500;
}

.prose ul {
  margin: var(--s-4) 0;
  padding-left: var(--s-5);
  color: var(--text-dim);
}

.prose ul li {
  margin-bottom: var(--s-2);
  line-height: 1.65;
}

.prose ul li::marker {
  color: var(--amber);
}

.prose blockquote {
  border-left: 3px solid var(--amber);
  padding-left: var(--s-5);
  margin: var(--s-6) 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.012em;
}

/* Contact */
.contact-card {
  max-width: 520px;
  margin: var(--s-7) auto 0;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
}

.contact-placeholder {
  padding: var(--s-8) var(--s-5);
  border: 1px dashed var(--rule-strong);
  border-radius: 6px;
  margin: var(--s-5) 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

/* ===========================================================
   CONTACT FORM
   =========================================================== */

.contact-form {
  text-align: left;
}

.form-field {
  margin-bottom: var(--s-5);
}

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.form-field input {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  background: rgba(5, 9, 15, 0.6);
  border: 1px solid var(--rule-strong);
  border-radius: 5px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  -webkit-appearance: none;
}

.form-field input::placeholder {
  color: var(--text-faint);
}

.form-field input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.form-turnstile {
  margin-bottom: var(--s-5);
  display: flex;
  justify-content: center;
}

.form-errors {
  margin-bottom: var(--s-5);
  padding: var(--s-4);
  background: rgba(224, 122, 92, 0.1);
  border: 1px solid rgba(224, 122, 92, 0.3);
  border-radius: 5px;
}

.form-error-item {
  font-size: 0.9rem;
  color: var(--signal-red);
  margin-bottom: var(--s-1);
}

.form-error-item:last-child { margin-bottom: 0; }

.form-success {
  padding: var(--s-6) 0;
  text-align: center;
}

.form-success-icon {
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: var(--s-4);
}

.form-success h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}

.form-success p {
  color: var(--text-dim);
  font-size: 1rem;
}
