:root {
  --bg: #040810;
  --emerald: #059669;
  --green: #10b981;
  --green-mid: #34d399;
  --green-light: #6ee7b7;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.18);
  --surface: #0a1118;
  --surface2: #101820;
  --surface3: #162030;
  --border: rgba(16, 185, 129, 0.14);
  --border-bright: rgba(16, 185, 129, 0.32);
  --text: #d1fae5;
  --muted: #5e8070;
  --white: #ffffff;
  --grad-primary: linear-gradient(135deg, #059669 0%, #f59e0b 100%);
  --grad-green: linear-gradient(135deg, #10b981 0%, #6ee7b7 100%);
  --glow-green: 0 0 40px rgba(16, 185, 129, 0.4);
  --glow-amber: 0 0 40px rgba(245, 158, 11, 0.3);
}

@font-face {
  font-family: "AspektaVF";
  src: url("./AspektaVF.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "AspektaVF", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.38;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--emerald);
  border-radius: 4px;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.055) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 80px;
  background: rgba(4, 8, 16, 0.78);
  backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--emerald),
    var(--amber),
    transparent
  );
  opacity: 0.3;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(91, 43, 224, 0.45));
}

.nav-cta {
  background: var(--grad-primary);
  color: #fff;
  font-family: "AspektaVF", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
  box-shadow:
    0 0 20px rgba(16, 185, 129, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 36px rgba(16, 185, 129, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.nav-cta:hover::before {
  opacity: 1;
}
.nav-cta:active {
  transform: translateY(0);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: 72px;
  padding: 130px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 52% 62% at 10% 60%,
      rgba(5, 150, 105, 0.22) 0%,
      transparent 66%
    ),
    radial-gradient(
      ellipse 35% 40% at 90% 15%,
      rgba(245, 158, 11, 0.13) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 28% 32% at 65% 85%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 62%
    );
  animation: orb-breathe 13s ease-in-out infinite alternate;
}
@keyframes orb-breathe {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.06);
  }
}

/* Hex grid overlay */
.hex-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.8) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 65% 75% at 20% 55%,
    black 0%,
    transparent 72%
  );
  animation: grid-drift 22s linear infinite;
}
@keyframes grid-drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 56px 56px;
  }
}

/* Animated scan line */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.35),
    rgba(245, 158, 11, 0.2),
    transparent
  );
  animation: scan 9s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes scan {
  0% {
    top: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 0.4;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Sound wave deco */
.wave-deco {
  position: absolute;
  right: 480px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  opacity: 0.1;
}
.wave-bar {
  width: 3px;
  background: var(--green);
  border-radius: 3px;
  animation: wave-anim 1.4s ease-in-out infinite;
  transition: background 0.3s;
}
.wave-bar:nth-child(1) {
  height: 20px;
  animation-delay: 0s;
}
.wave-bar:nth-child(2) {
  height: 42px;
  animation-delay: 0.1s;
}
.wave-bar:nth-child(3) {
  height: 64px;
  animation-delay: 0.2s;
}
.wave-bar:nth-child(4) {
  height: 84px;
  animation-delay: 0.3s;
}
.wave-bar:nth-child(5) {
  height: 106px;
  animation-delay: 0.4s;
  background: var(--amber);
}
.wave-bar:nth-child(6) {
  height: 124px;
  animation-delay: 0.5s;
  background: var(--amber);
}
.wave-bar:nth-child(7) {
  height: 106px;
  animation-delay: 0.6s;
  background: var(--amber);
}
.wave-bar:nth-child(8) {
  height: 84px;
  animation-delay: 0.5s;
}
.wave-bar:nth-child(9) {
  height: 64px;
  animation-delay: 0.4s;
}
.wave-bar:nth-child(10) {
  height: 42px;
  animation-delay: 0.3s;
}
.wave-bar:nth-child(11) {
  height: 20px;
  animation-delay: 0.2s;
}
@keyframes wave-anim {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.2);
  }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  animation: float-p linear infinite;
  opacity: 0;
  background: var(--green-mid);
}
.particle:nth-child(1) {
  left: 7%;
  animation-duration: 10s;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 20%;
  animation-duration: 14s;
  animation-delay: 2s;
  background: var(--amber);
}
.particle:nth-child(3) {
  left: 36%;
  animation-duration: 9s;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  left: 50%;
  animation-duration: 16s;
  animation-delay: 1s;
  background: var(--amber);
}
.particle:nth-child(5) {
  left: 65%;
  animation-duration: 12s;
  animation-delay: 3s;
}
.particle:nth-child(6) {
  left: 80%;
  animation-duration: 8s;
  animation-delay: 5s;
  background: var(--green-light);
}
.particle:nth-child(7) {
  left: 13%;
  animation-duration: 11s;
  animation-delay: 6s;
  background: var(--amber);
}
.particle:nth-child(8) {
  left: 55%;
  animation-duration: 15s;
  animation-delay: 0.5s;
}
@keyframes float-p {
  0% {
    bottom: -10px;
    opacity: 0;
  }
  8% {
    opacity: 0.7;
  }
  92% {
    opacity: 0.3;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 18px rgba(16, 185, 129, 0.08),
    inset 0 1px 0 rgba(110, 231, 183, 0.1);
  animation: tag-in 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes tag-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mic-icon {
  display: inline-block;
  animation: mic-pulse 2.2s ease-in-out infinite;
}
@keyframes mic-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

h1 {
  font-family: "AspektaVF", sans-serif;
  font-weight: 500;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -0.025em;
  animation: h1-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
@keyframes h1-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h1 em {
  font-family: "IBM Plex Serif", serif;
  font-style: italic;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.35));
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.8;
  animation: sub-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes sub-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.conversion-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 24px rgba(16, 185, 129, 0.06),
    inset 0 1px 0 rgba(110, 231, 183, 0.08);
  animation: badge-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s;
}
@keyframes badge-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.conversion-badge:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 28px rgba(16, 185, 129, 0.14),
    inset 0 1px 0 rgba(110, 231, 183, 0.12);
}
.badge-num {
  font-family: "AspektaVF", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.4));
}
.badge-text {
  font-size: 14px;
  color: var(--muted);
  max-width: 180px;
  line-height: 1.55;
}
.badge-text strong {
  color: var(--text);
}

.proof-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: proof-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
@keyframes proof-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.proof-chip {
  background: rgba(12, 17, 24, 0.85);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--muted);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
}
.proof-chip:hover {
  border-color: var(--green-mid);
  color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

/* ── FORM CARD ── */
.form-card {
  width: 100%;
  position: relative;
  z-index: 2;
  background: rgba(10, 17, 24, 0.92);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 20px;
  padding: 42px 36px;
  backdrop-filter: blur(24px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(16, 185, 129, 0.06),
    inset 0 1px 0 rgba(110, 231, 183, 0.07);
  animation: form-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@keyframes form-in {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Top accent line */
.form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 100px;
  filter: blur(0.5px);
}
/* Bottom gradient accent (preserved from original) */
.form-card::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--emerald),
    var(--amber),
    transparent
  );
  border-radius: 100px;
}

.form-title {
  font-family: "AspektaVF", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.55;
}

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(16, 24, 32, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.17);
  color: var(--text);
  font-family: "AspektaVF", sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 9px;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  -webkit-appearance: none;
}
.field input::placeholder {
  color: rgba(94, 128, 112, 0.45);
}
.field input:hover,
.field select:hover {
  border-color: rgba(16, 185, 129, 0.3);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow:
    0 0 0 3px rgba(16, 185, 129, 0.12),
    0 0 14px rgba(16, 185, 129, 0.07);
  background: rgba(22, 32, 48, 0.95);
}
.field select {
  cursor: pointer;
}
.field select option {
  background: var(--surface2);
  color: var(--text);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  padding: 17px;
  background: var(--grad-primary);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: "AspektaVF", sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-top: 8px;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(5, 150, 105, 0.4);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 44px rgba(16, 185, 129, 0.45),
    0 4px 16px rgba(245, 158, 11, 0.2);
}
.submit-btn:hover::before {
  opacity: 1;
}
.submit-btn:active {
  transform: scale(0.98);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  opacity: 0.75;
}

/* ── SECTIONS ── */
.section {
  padding: 100px 80px;
  position: relative;
}
.sec-tag {
  font-size: 11px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-tag::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--green-light);
  opacity: 0.55;
}
.sec-title {
  font-family: "AspektaVF", sans-serif;
  font-weight: 500;
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.sec-title em {
  font-family: "IBM Plex Serif", serif;
  font-style: italic;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--emerald),
    var(--amber),
    transparent
  );
  opacity: 0.3;
}
.stat-strip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--emerald),
    var(--amber),
    transparent
  );
  opacity: 0.3;
}
.stat-strip-item {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-strip-item:hover {
  transform: translateY(-4px);
}
.stat-strip-item::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-strip-item:hover::after {
  opacity: 1;
}

.ss-num {
  font-family: "AspektaVF", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ss-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ── FEATURES MAGAZINE ── */
.features-mag {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.feat-big {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.feat-big::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.07) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.feat-big::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 18px 18px 0 0;
}
.feat-big:hover {
  border-color: rgba(16, 185, 129, 0.38);
  box-shadow: 0 20px 56px rgba(5, 150, 105, 0.15);
  transform: translateY(-4px);
}
.feat-big:hover::before,
.feat-big:hover::after {
  opacity: 1;
}

.feat-sm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-sm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.feat-sm::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.4s;
}
.feat-sm:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.38);
  box-shadow: 0 14px 40px rgba(5, 150, 105, 0.12);
}
.feat-sm:hover::before,
.feat-sm:hover::after {
  opacity: 1;
}

.feat-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feat-sm .feat-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.feat-big:hover .feat-icon,
.feat-sm:hover .feat-icon {
  transform: scale(1.14) translateY(-2px);
}

.feat-title {
  font-family: "AspektaVF", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feat-sm .feat-title {
  font-size: 17px;
  margin-bottom: 8px;
}
.feat-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.feat-sm .feat-body {
  font-size: 14px;
}

/* Progress bar inside feat-big */
.conversion-bar {
  margin-top: 28px;
  padding: 20px;
  background: var(--surface2);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.bar-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.bar-track {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar-fill.muted-fill {
  background: var(--muted);
}
.bar-fill.green-fill {
  background: var(--grad-primary);
}
.bar-text {
  font-size: 13px;
  min-width: 70px;
}

/* ── COMPARE ── */
.compare-section {
  background: var(--surface);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.compare-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--emerald),
    var(--amber),
    transparent
  );
  opacity: 0.28;
}
.compare-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--emerald),
    var(--amber),
    transparent
  );
  opacity: 0.28;
}
.compare-inner {
  max-width: 860px;
  margin: 0 auto;
}
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 56px;
}
.cmp-table th {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cmp-table th:first-child {
  color: var(--muted);
  text-align: left;
}
.cmp-table th:nth-child(2) {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
}
.cmp-table th:nth-child(3) {
  color: var(--green-light);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-bottom: none;
  position: relative;
}
.cmp-table th:nth-child(3)::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 100px;
}
.cmp-table td {
  padding: 14px 22px;
  font-size: 14px;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.cmp-table tr:hover td {
  background: rgba(16, 185, 129, 0.025);
}
.cmp-table td:first-child {
  color: var(--muted);
  font-size: 13px;
}
.cmp-table td:nth-child(2) {
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.cmp-table td:nth-child(3) {
  background: rgba(16, 185, 129, 0.04);
  color: var(--text);
  text-align: center;
  font-weight: 500;
  border-left: 1px solid rgba(16, 185, 129, 0.18);
  border-right: 1px solid rgba(16, 185, 129, 0.18);
}
.cmp-table tr:last-child td:nth-child(2) {
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cmp-table tr:last-child td:nth-child(3) {
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.22);
}
.hi {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500 !important;
  font-family: "IBM Plex Serif", serif;
  font-style: italic;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0.25;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green),
    var(--amber),
    transparent
  );
  opacity: 0.3;
  animation: connector-glow 3s ease-in-out infinite alternate;
}
@keyframes connector-glow {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.5;
  }
}
.step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "AspektaVF", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
  margin: 0 auto 20px;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  position: relative;
  z-index: 1;
}
.step:hover .step-num {
  transform: scale(1.12);
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.06);
}
.step h4 {
  font-family: "AspektaVF", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
}

/* ── CTA BOTTOM ── */
.cta-bottom {
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 62% 62% at 50% 50%,
    rgba(5, 150, 105, 0.16) 0%,
    rgba(245, 158, 11, 0.05) 45%,
    transparent 68%
  );
  animation: cta-breathe 6s ease-in-out infinite alternate;
}
@keyframes cta-breathe {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.12);
    opacity: 1;
  }
}
.cta-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 65% 65% at 50% 50%,
    black 0%,
    transparent 75%
  );
}
.cta-bottom h2 {
  font-family: "AspektaVF", sans-serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.cta-bottom p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-btn {
  display: inline-block;
  padding: 18px 52px;
  background: var(--green);
  color: var(--bg);
  font-family: "AspektaVF", sans-serif;
  font-weight: 500;
  font-size: 17px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.45);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s,
    background 0.25s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-btn:hover {
  background: var(--green-mid);
  transform: translateY(-4px);
  box-shadow:
    0 20px 56px rgba(16, 185, 129, 0.5),
    0 4px 16px rgba(245, 158, 11, 0.15);
}
.cta-btn:hover::before {
  opacity: 1;
}

/* ── FOOTER ── */
footer {
  padding: 32px 80px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.4),
    rgba(245, 158, 11, 0.3),
    transparent
  );
}
footer p {
  font-size: 13px;
  color: var(--muted);
}
footer a {
  color: var(--green-light);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s;
}
footer a:hover {
  color: var(--white);
}

/* ── FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
  }
  .section,
  .compare-section,
  .cta-bottom,
  .how-it-works {
    padding: 64px 24px;
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 24px;
  }
  .features-mag {
    grid-template-columns: 1fr;
  }
  .feat-big {
    grid-row: span 1;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before {
    display: none;
  }
  footer {
    padding: 28px 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  nav {
    padding: 16px 24px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}
