/* ============================================
   CRESCIT — Built to compound.
   Style Sheet
   ============================================ */

:root {
  --bg: #0A0A0F;
  --bg-2: #0D0D16;
  --bg-3: #111120;
  --accent: #00E5CC;
  --accent-dim: rgba(0, 229, 204, 0.15);
  --accent-glow: rgba(0, 229, 204, 0.4);
  --white: #FFFFFF;
  --white-60: rgba(255, 255, 255, 0.6);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-display: 'Inter', 'SF Pro Display', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-display);
  overflow-x: hidden;
  cursor: default;
}

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

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

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-dim);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display-xl {
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.display-lg {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.display-md {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.body-lg {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-60);
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--transition), backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  height: 32px;
  width: auto;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-60);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent) !important;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
}

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

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(135deg, #fff 0%, #fff 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(0, 229, 204, 0.15));
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--white-60);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.hero-tagline span {
  color: var(--accent);
  font-weight: 600;
}

.hero-cta {
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: transparent;
  border: 1px solid rgba(0, 229, 204, 0.5);
  border-radius: 2px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--transition);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s var(--transition);
  z-index: -1;
}

.hero-cta:hover {
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(0, 229, 204, 0.15);
}

.hero-cta:hover::before {
  transform: translateY(0);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

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

section {
  position: relative;
  padding: 8rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

/* ============================================
   WHAT WE DO
   ============================================ */

#what-we-do {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.wwd-headline {
  max-width: 800px;
  margin-bottom: 5rem;
}

.wwd-headline h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.wwd-headline h2 .accent {
  color: var(--accent);
}

.wwd-headline p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-60);
  line-height: 1.7;
  max-width: 600px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  position: relative;
  padding: 2.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  border-color: rgba(0, 229, 204, 0.25);
  transform: translateY(-4px);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(0, 229, 204, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.stat-card:hover .stat-card-glow {
  opacity: 1;
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-value .currency {
  color: var(--accent);
}

.stat-suffix {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--accent);
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-30);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

#how-it-works {
  background: var(--bg-2);
}

.hiw-headline {
  margin-bottom: 5rem;
}

.hiw-headline h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hiw-headline p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--white-60);
  max-width: 500px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: calc(16.66% + 1px);
  right: calc(16.66% + 1px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 229, 204, 0.3) 50%, var(--accent) 100%);
  opacity: 0.4;
}

.step {
  padding: 0 2.5rem;
  position: relative;
}

.step:first-child {
  padding-left: 0;
}

.step:last-child {
  padding-right: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 229, 204, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  background: var(--bg-2);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover .step-number {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 229, 204, 0.2);
}

.step:hover .step-number::after {
  opacity: 1;
}

.step-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--white);
}

.step-body {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
}

.step-tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 204, 0.2);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================
   CHAINLENS
   ============================================ */

#chainlens {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  overflow: hidden;
}

.chainlens-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.chainlens-text .section-label {
  margin-bottom: 2rem;
}

.chainlens-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.chainlens-text h2 .accent {
  color: var(--accent);
}

.chainlens-text p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.chainlens-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 204, 0.3);
  border-radius: 4px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--transition);
}

.chainlens-cta:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 40px var(--accent-glow);
}

.chainlens-cta svg {
  transition: transform 0.3s var(--transition);
}

.chainlens-cta:hover svg {
  transform: translateX(4px);
}

.chainlens-visual {
  position: relative;
}

.terminal-window {
  background: rgba(10, 10, 20, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 204, 0.05), inset 0 0 60px rgba(0, 229, 204, 0.02);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--glass-border);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot:nth-child(1) { background: #FF5F56; }
.terminal-dot:nth-child(2) { background: #FFBD2E; }
.terminal-dot:nth-child(3) { background: #27C93F; }

.terminal-title {
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--white-30);
  letter-spacing: 0.05em;
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.8;
}

.t-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.t-chain {
  color: var(--white-60);
  font-size: 0.75rem;
}

.t-pair {
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
}

.t-val {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}

.t-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
}

.t-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.t-status.in-range .t-dot {
  background: #27C93F;
}

.t-status.active .t-dot {
  background: var(--accent);
}

.terminal-footer {
  padding: 1rem 1.5rem;
  background: rgba(0, 229, 204, 0.03);
  border-top: 1px solid rgba(0, 229, 204, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--white-30);
}

.t-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
}

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

footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem;
  min-height: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.footer-logo {
  height: 28px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--white-30);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--glass-border);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white-30);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* ============================================
   NOISE OVERLAY
   ============================================ */

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   GRADIENT BORDERS
   ============================================ */

.gradient-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.2;
  margin: 0 auto;
}

/* ============================================
   CURSOR GLOW
   ============================================ */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 204, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: left 0.1s, top 0.1s;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  nav {
    padding: 1.25rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 6rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-container::before {
    display: none;
  }

  .step {
    padding: 0;
    border-left: 1px solid rgba(0, 229, 204, 0.2);
    padding-left: 2rem;
  }

  .chainlens-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================
   EARLY ACCESS CTA SECTION
   ============================================ */

#early-access {
  position: relative;
  overflow: hidden;
}

#early-access::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 204, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* --- Left copy --- */

.cta-headline {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 1.5rem 0 1.25rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

.cta-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.5;
}

.benefit-icon {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}

.accent-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 204, 0.3);
  transition: border-color 0.2s;
}

.accent-link:hover {
  border-color: var(--accent);
}

.cta-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 229, 204, 0.06);
  border: 1px solid rgba(0, 229, 204, 0.15);
  border-radius: 100px;
  padding: 0.55rem 1rem;
  width: fit-content;
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* --- Form card --- */

.cta-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
}

.cta-form-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 229, 204, 0.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white-60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: var(--white-30);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 204, 0.12);
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.select-wrapper select option {
  background: #111120;
  color: var(--white);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-30);
  pointer-events: none;
  font-size: 0.85rem;
  line-height: 1;
}

.cta-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: #0A0A0F;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.2s, background 0.2s;
  box-shadow: 0 0 20px rgba(0, 229, 204, 0.35), 0 4px 16px rgba(0, 229, 204, 0.2);
}

.cta-submit-btn:hover {
  background: #00f5db;
  box-shadow: 0 0 36px rgba(0, 229, 204, 0.6), 0 6px 24px rgba(0, 229, 204, 0.35);
  transform: translateY(-1px);
}

.cta-submit-btn:active {
  transform: translateY(0);
}

/* --- Success state --- */

.cta-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
  min-height: 300px;
  gap: 1rem;
}

.cta-success[hidden] {
  display: none;
}

.success-icon {
  font-size: 2.5rem;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent);
  animation: float 3s ease-in-out infinite;
}

.success-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.success-body {
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.6;
  max-width: 300px;
}

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

/* --- CTA responsive --- */

@media (max-width: 900px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-social-proof {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .cta-form-card {
    padding: 1.75rem 1.25rem;
  }

  .cta-headline {
    font-size: 2.2rem;
  }
}
