/* ══════════════════════════════════════════════════════════════
   WPilot AI — JV / Affiliate Launch Page
   Brand: violet → blue → cyan (derived from the WPilot AI logo)
   Type:  Space Grotesk (display) + Inter (body)
   ══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand — from the logo octagon gradient */
  --violet: #7A5CFF;
  --indigo: #5C7BFF;
  --blue: #3E9BF4;
  --cyan: #22C9E0;

  --brand: linear-gradient(100deg, #7A5CFF 0%, #4E8DF5 52%, #22C9E0 100%);
  --brand-135: linear-gradient(135deg, #7A5CFF 0%, #4E8DF5 50%, #22C9E0 100%);
  --brand-soft: linear-gradient(135deg, rgba(122, 92, 255, 0.16), rgba(34, 201, 224, 0.16));

  /* Dark surface */
  --bg: #08060F;
  --bg-elev: #100B20;
  --bg-card: #16102A;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #FFFFFF;
  --text-muted: #B3AECB;
  --text-dim: #7C7796;

  /* Light surface */
  --light-bg: #F5F4FC;
  --light-elev: #FFFFFF;
  --light-text: #140E28;
  --light-muted: #524C64;
  --light-dim: #8A8598;
  --light-border: rgba(20, 14, 40, 0.09);
  --light-border-strong: rgba(20, 14, 40, 0.15);

  /* Utility */
  --success: #10B981;
  --gold: #F5A524;

  /* Type */
  --font-h: 'Sora', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-b: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.20);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.38);
  --shadow-brand: 0 12px 34px rgba(78, 110, 245, 0.36);
  --shadow-brand-lg: 0 20px 56px rgba(90, 110, 255, 0.46);
  --shadow-cyan: 0 12px 34px rgba(34, 201, 224, 0.30);
  --shadow-light-md: 0 12px 32px rgba(90, 110, 255, 0.10), 0 2px 8px rgba(20, 14, 40, 0.05);
  --shadow-light-lg: 0 22px 60px rgba(90, 110, 255, 0.14), 0 6px 18px rgba(20, 14, 40, 0.06);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.38s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

[data-lucide],
svg.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex-shrink: 0;
  vertical-align: middle;
}

*:focus,
*:focus-visible {
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.grad-text {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
  position: relative;
}

.centered {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--brand-soft);
  border: 1px solid rgba(122, 92, 255, 0.28);
  color: var(--cyan);
  margin-bottom: 20px;
}

.section-light .section-tag {
  color: var(--indigo);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
}

.section-sub {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-light .section-sub {
  color: var(--light-muted);
}

/* ── BACKGROUNDS ────────────────────────────────────────────── */
.bg-alt {
  background: var(--bg-elev);
}

.bg-introducing {
    background: linear-gradient(0deg, #01012c 0%, #01010a 62%, #100B20 100%);
}


.section-light {
  background: var(--light-bg);
  color: var(--light-text);
}

.section-light .section-title {
  color: var(--light-text);
}

.dot-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(122, 92, 255, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}

.section-light.dot-grid::before {
  background-image: radial-gradient(rgba(90, 110, 255, 0.13) 1px, transparent 1px);
}

.bg-glow-left::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(50% 60% at 8% 20%, rgba(122, 92, 255, 0.14), transparent 70%);
}

.bg-funnel-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 15% 0%, rgba(122, 92, 255, 0.16), transparent 70%),
    radial-gradient(40% 50% at 85% 100%, rgba(34, 201, 224, 0.14), transparent 70%);
}

.bg-connect-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(50% 70% at 50% 0%, rgba(90, 110, 255, 0.12), transparent 70%);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #fff;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  background: var(--brand);
  background-size: 160% 160%;
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background-position 0.6s var(--ease);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand-lg);
  background-position: 100% 0;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-primary i {
  transition: transform var(--t-fast);
}

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

/* ── NAV ────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(8, 6, 15, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: inline-flex;
}

.nav-logo img {
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--brand);
  border-radius: 2px;
  transition: width var(--t-base);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta {
  padding: 11px 22px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
}

.nav-toggle-icon {
  display: block;
  position: relative;
  width: 22px;
  height: 16px;
  margin: 0 auto;
}

.nav-toggle-icon span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
}

.nav-toggle-icon span:nth-child(1) {
  top: 0;
}

.nav-toggle-icon span:nth-child(2) {
  top: 7px;
}

.nav-toggle-icon span:nth-child(3) {
  top: 14px;
}

#navbar.nav-open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#navbar.nav-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

#navbar.nav-open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  padding: 122px 0 100px;
  background: radial-gradient(125% 80% at 50% -18%, #241a4c 0%, #120d2b 42%, #0a0718 72%, var(--bg) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Smooth aurora mesh — flows violet (left) → cyan (right), with depth below */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52% 62% at 8% 0%, rgba(122, 92, 255, 0.40), transparent 60%),
    radial-gradient(50% 60% at 92% 4%, rgba(34, 201, 224, 0.32), transparent 60%),
    radial-gradient(70% 55% at 50% 116%, rgba(92, 110, 255, 0.22), transparent 66%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
}

.orb-1 {
  width: 660px;
  height: 580px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, var(--violet), transparent 68%);
  animation: float1 24s ease-in-out infinite;
}

.orb-2 {
  width: 640px;
  height: 560px;
  top: -180px;
  right: -170px;
  background: radial-gradient(circle, var(--cyan), transparent 68%);
  animation: float2 28s ease-in-out infinite;
}

.orb-3 {
  width: 780px;
  height: 520px;
  bottom: -320px;
  left: 26%;
  background: radial-gradient(circle, var(--indigo), transparent 70%);
  animation: float1 32s ease-in-out infinite;
}

/* Interactive ripple grid (vanilla port of the background-ripple-effect) */
.ripple-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  --cell: 54px;
  -webkit-mask-image: radial-gradient(ellipse 85% 100% at 50% 30%, #000 50%, transparent 90%);
  mask-image: radial-gradient(ellipse 85% 100% at 50% 30%, #000 50%, transparent 90%);
}

.ripple-base {
  position: absolute;
  inset: 0;
  display: grid;
}

.ripple-cell {
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Click ripple — a continuous expanding ring of cyan grid, driven by JS */
.ripple-pulse {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background-image:
    linear-gradient(to right, rgba(34, 201, 224, 0.9) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 201, 224, 0.9) 1px, transparent 1px);
  background-size: var(--cell) var(--cell);
  will-change: opacity;
}

.ripple-spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background-image:
    linear-gradient(to right, rgba(34, 201, 224, 0.95) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 201, 224, 0.95) 1px, transparent 1px);
  background-size: var(--cell) var(--cell);
  -webkit-mask-image: radial-gradient(circle 190px at var(--mx, -999px) var(--my, -999px), #000 0%, rgba(0, 0, 0, 0.7) 42%, transparent 78%);
  mask-image: radial-gradient(circle 190px at var(--mx, -999px) var(--my, -999px), #000 0%, rgba(0, 0, 0, 0.7) 42%, transparent 78%);
  transition: opacity 0.45s var(--ease);
  will-change: opacity;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(42px, 30px) scale(1.07);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-38px, 24px) scale(1.06);
  }
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 100%;
}

.hero-inner>* {
  max-width: 100%;
}

#hero h1 {
  overflow-wrap: break-word;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: rgba(34, 201, 224, 0.10);
  border: 1px solid rgba(34, 201, 224, 0.32);
  color: var(--cyan);
  margin-bottom: 26px;
  box-shadow: 0 0 30px rgba(34, 201, 224, 0.15);
}

.launch-badge i {
  width: 15px;
  height: 15px;
}

#hero h1 {
  font-size: clamp(2.35rem, 5.7vw, 4.15rem);
  letter-spacing: -0.03em;
}

.hero-sub {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 1.12rem;
}

.hero-sub strong {
  color: #fff;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px auto 0;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.stat-pill i {
  color: var(--cyan);
  width: 16px;
  height: 16px;
}

.stat-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 201, 224, 0.4);
  background: var(--glass-strong);
}

.hero-cta {
  margin-top: 38px;
  padding: 17px 38px;
  font-size: 1.06rem;
}

/* Countdown */
.countdown-wrap {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.countdown-label i {
  color: var(--cyan);
  width: 16px;
  height: 16px;
}

.countdown {
  display: flex;
  gap: 14px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 84px;
  padding: 18px 12px;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.cd-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cd-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── TIMELINE ───────────────────────────────────────────────── */
.timeline-wrap {
  position: relative;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline-line {
  position: absolute;
  top: 47px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(122, 92, 255, 0.5), rgba(34, 201, 224, 0.5), transparent);
}

.timeline-item {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12154a;
  border: 2px solid rgba(99, 88, 220, 0.5);
  color: #fff;
  position: relative;
  font-size: 30px;
  z-index: 2;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 0 0 8px rgba(99, 88, 220, 0.08), 0 0 0 10px rgba(99, 88, 220, 0.06);
  /* background: var(--bg-card); border: 1px solid var(--border-strong);
  color: var(--text-muted); margin-bottom: 22px; position: relative; z-index: 2;
  transition: transform var(--t-base), border-color var(--t-base), color var(--t-base), box-shadow var(--t-base); */
}

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

.tl-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed rgba(99, 88, 220, 0.35);
}

.tl-dot {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(99, 88, 220, 0.8), rgba(99, 88, 220, 0.3));
  margin: 0 auto;
  position: relative;
}

/* active / glowing icon */
/* .timeline-item.active .tl-icon {
  background: radial-gradient(circle at 40% 40%, #00e8f8, #00b8d4);
  border-color: #00d4e8;
  box-shadow:
    0 0 0 8px rgba(0, 212, 232, 0.12),
    0 0 0 16px rgba(0, 212, 232, 0.06),
    0 0 32px rgba(0, 212, 232, 0.5);
} */

.timeline-item.active .tl-icon::before {
  border-color: rgba(0, 212, 232, 0.5);
  border-style: solid;
}

.timeline-item:hover .tl-icon {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 8px rgba(99, 88, 220, 0.15),
    0 8px 24px rgba(99, 88, 220, 0.4);

}

/* ── VERTICAL CONNECTOR DOT ── */
.tl-dot {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(99, 88, 220, 0.8), rgba(99, 88, 220, 0.3));
  margin: 0 auto;
  position: relative;
}

.tl-dot::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6358dc;
  border: 2px solid #0f1130;
  box-shadow: 0 0 8px rgba(99, 88, 220, 0.7);
}

.timeline-item.active .tl-dot {
  background: linear-gradient(180deg, rgba(0, 212, 232, 0.9), rgba(0, 212, 232, 0.3));
}

.timeline-item.active .tl-dot::after {
  background: #00d4e8;
  box-shadow: 0 0 10px rgba(0, 212, 232, 0.9);
}

.tl-content {
  margin-top: 30px;
}

.timeline-item:hover .tl-icon {
  transform: translateY(-4px);
  /* color: #fff; */
  /* border-color: transparent; */
  /* background: var(--brand); */
  /* box-shadow: var(--shadow-brand); */
}

.timeline-item.active .tl-icon {
  color: #fff;
  background: var(--brand);
  border-color: transparent;
  box-shadow: var(--shadow-brand);
  border: 2px solid #12154a;
}

/* .tl-dot {
  display: none;
} */

.tl-label {
  font-family: var(--font-h);
  font-size: 1.50rem;
  font-weight: 700;
  /* letter-spacing: 0.12em; */
  /* text-transform: uppercase; */
  /* color: var(--cyan); */
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.tl-date {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ── STATS GRID ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-light-md);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-light-lg);
  border-color: rgba(90, 110, 255, 0.3);
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 15px;
  background: var(--brand-soft);
  color: var(--indigo);
  margin-bottom: 18px;
  transition: transform var(--t-base);
}

.stat-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.stat-icon i {
  width: 24px;
  height: 24px;
}

.stat-card:hover .stat-icon {
  transform: scale(1.08) rotate(-5deg);
}

.stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--light-muted);
}

.why-copy {
  max-width: 820px;
  margin: 46px auto 0;
  text-align: center;
  font-size: 1.1rem;
  color: var(--light-muted);
}

.why-copy strong {
  color: var(--light-text);
}

.section:not(.section-light) .why-copy {
  color: var(--text-muted);
}

.section:not(.section-light) .why-copy strong {
  color: #fff;
}

/* ── PRODUCT INTRO ──────────────────────────────────────────── */
.product-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  text-align: center;
}

.introducing {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cyan);
  margin-bottom: 14px;
}

.product-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 22px;
}

.product-desc {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.product-desc em {
  color: #fff;
  font-style: italic;
}

.product-checks {
  list-style: none;
  display: flex;
  justify-content: space-between;
  /* flex-direction: column; */
  gap: 10px;
  margin-top: 26px;
}

.product-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
}

.product-checks i {
  color: var(--cyan);
  width: 20px;
  height: 20px;
}

/* Product CSS window mockup */
.product-cover {
  perspective: 1400px;
}

.pc-window {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(90, 110, 255, 0.14);
  transform: rotateY(-9deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
}

.product-cover:hover .pc-window {
  transform: rotateY(-3deg) rotateX(2deg);
}

.pc-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.pc-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.pc-dot:nth-child(1) {
  background: #ff5f57;
}

.pc-dot:nth-child(2) {
  background: #febc2e;
}

.pc-dot:nth-child(3) {
  background: #28c840;
}

.pc-url {
  margin-left: 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-h);
}

.pc-body {
  padding: 28px 26px 30px;
}

.pc-brand img {
  height: 30px;
  margin-bottom: 22px;
}

.pc-metric {
  margin-bottom: 22px;
}

.pc-metric-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pc-metric-lbl {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.pc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.pc-chip i {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.pc-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  border: 1px solid rgba(34, 201, 224, 0.28);
}

.pc-savings span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pc-savings i {
  color: var(--cyan);
  width: 16px;
  height: 16px;
}

.pc-savings strong {
  font-family: var(--font-h);
  font-size: 1.1rem;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── MARKETER GRID ──────────────────────────────────────────── */
.marketer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.marketer-card {
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-light-md);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.marketer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-light-lg);
  border-color: rgba(90, 110, 255, 0.3);
}

.marketer-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--shadow-brand);
  transition: transform var(--t-base);
}

.marketer-icon i {
  width: 24px;
  height: 24px;
}

.marketer-card:hover .marketer-icon {
  transform: scale(1.08) rotate(-6deg);
}

.marketer-card h3 {
  font-size: 1.14rem;
  margin-bottom: 10px;
  color: var(--light-text);
}

.marketer-card p {
  font-size: 0.92rem;
  color: var(--light-muted);
}



.marketer-icon {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brand-soft);

  /* Main Gradient */
  /* background: linear-gradient(
        135deg,
        #fdfdff 0%,
        #eef2ff 45%,
        #dff2ff 100%
    ); */

  /* Border */
  /* border: 1px solid rgba(120,145,255,.12); */

  /* Shadow */
  box-shadow: none;
  /* 0 12px 30px rgba(103,113,255,.12),
        inset 0 2px 8px rgba(255,255,255,.9); */

  transition: .35s ease;
}

.marketer-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.marketer-icon i {
  width: 34px;
  height: 34px;
  color: #6c63ff;
}

.marketer-card:hover .marketer-icon {
  transform: scale(1.08) rotate(-5deg);
}

/* .marketer-card h3{
    font-size:31px;
    font-weight:700;
    color:#19162e;
    margin:0 0 16px;
    line-height:1.25;
    position:relative;
} */

.marketer-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, #6d67ff, #4da8ff);
}

/* ── CTA CARD ─────────────────────────────────── */
.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f1230 0%, #0a0c1e 100%);
  border: 1px solid rgba(100, 88, 220, 0.45);
  border-radius: 24px;
  padding: 52px 48px 44px;
  text-align: center;

  /* outer purple glow border */
  box-shadow:
    0 0 0 1px rgba(100, 88, 220, 0.3),
    0 0 40px rgba(100, 88, 220, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.5);
}

/* top radial purple glow */
.cta-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(100, 88, 220, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* dot-grid texture */
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(100, 88, 220, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}

/* keep all children above pseudo-elements */
.cta-card>* {
  position: relative;
  z-index: 1;
}

/* ── EYEBROW PILL ─────────────────────────────── */
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1d42;
  border: 1px solid rgba(100, 88, 220, 0.55);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.cta-eyebrow-icon {
  width: 28px;
  height: 28px;
  background: var(--violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-eyebrow-icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2;
}

/* ── HEADING ──────────────────────────────────── */
.cta-card-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
  /* letter-spacing: -0.02em; */
}

/* "Everything You Need." gradient */
/* .grad-text {
    background: linear-gradient(90deg, #6b8cff 0%, #9b6fff 40%, #e040fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  } */

.cta-card-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── RESOURCE CARDS ROW ───────────────────────── */
.cta-resources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.cta-resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 240px;
  padding: 28px 24px 24px;
  border-radius: 16px;
  background: #111535;
  border: 1px solid rgba(100, 88, 220, 0.45);
  text-decoration: none;
  color: #fff;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.cta-resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 232, 0.5);
  box-shadow: 0 8px 28px rgba(0, 212, 232, 0.12);
}

/* download icon top-right */
.crc-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(100, 88, 220, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  transition: border-color var(--t), color var(--t);
}

.cta-resource-card:hover .crc-arrow {
  border-color: var(--cyan);
  color: var(--cyan);
}

.crc-arrow svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* big icon circle */
.crc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e2260, #252a6a);
  border: 1px solid rgba(100, 88, 220, 0.4);
}

.crc-icon svg {
  width: 28px;
  height: 28px;
}

/* card 1 icon — purple/white */
.cta-resource-card:nth-child(1) .crc-icon svg {
  stroke: #fff;
}

/* card 2 icon — teal/cyan */
.cta-resource-card:nth-child(2) .crc-icon {
  background: linear-gradient(135deg, #0d2e3a, #0e3a48);
  border-color: rgba(0, 200, 184, 0.4);
}

.cta-resource-card:nth-child(2) .crc-icon svg {
  stroke: var(--teal);
}

.crc-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.crc-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: center;
}

/* ── STATS ROW ────────────────────────────────── */
.cta-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.cta-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0f1230;
  border: 1px solid rgba(100, 88, 220, 0.3);
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 190px;
  font-size: 15px;
  flex: 1;
  max-width: 250px;
}

.cta-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(100, 88, 220, 0.2);
  color: var(--violet);
}

.cta-stat-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
}

.cta-stat-icon.recurring {
  background: rgba(0, 200, 184, 0.15);
  color: var(--teal);
}

.cta-stat-icon.gold {
  background: rgba(245, 165, 36, 0.15);
  color: var(--gold);
}

.cta-stat-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.cta-stat-text span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ── CTA BUTTON ───────────────────────────────── */
.cta-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  padding: 18px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5b52e8 0%, #7b6fff 50%, #00c8e8 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 6px 32px rgba(100, 88, 220, 0.45);
  margin-bottom: 18px;
}

.cta-card-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(100, 88, 220, 0.6);
}

.cta-card-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.5;
}

/* link icon inside button */
.btn-link-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-link-icon svg {
  width: 16px;
  height: 16px;
}

/* ── TRUST LINE ───────────────────────────────── */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-dim);
}

.cta-trust svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-dim);
  stroke-width: 2;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 620px) {
  .cta-card {
    padding: 36px 20px 32px;
  }

  .cta-resource-card {
    width: 100%;
    max-width: 320px;
  }

  .cta-stat {
    min-width: calc(50% - 6px);
    max-width: none;
    flex: none;
  }
}

/* ── PLUGINS / FEATURES GRID ────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

#plugins .container {
  max-width: 1400px !important;
}

.plugins-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-light-md);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}



/* per-card icon + badge color themes (matches reference image order) */
.feature-card:nth-child(1) .feature-icon {
  background: #EDE9FE;
  color: #7C3AED;
}

.feature-card:nth-child(2) .feature-icon {
  background: #DBEAFE;
  color: #2563EB;
}

.feature-card:nth-child(3) .feature-icon {
  background: #D1FAE5;
  color: #059669;
}

.feature-card:nth-child(4) .feature-icon {
  background: #EDE9FE;
  color: #6D28D9;
}

.feature-card:nth-child(5) .feature-icon {
  background: #FCE7F3;
  color: #DB2777;
}

.feature-card:nth-child(6) .feature-icon {
  background: #D1FAE5;
  color: #16A34A;
}

.feature-card:nth-child(7) .feature-icon {
  background: #EDE9FE;
  color: #7C3AED;
}

.feature-card:nth-child(8) .feature-icon {
  background: #DBEAFE;
  color: #2563EB;
}

.feature-card:nth-child(9) .feature-icon {
  background: #FCE7F3;
  color: #DB2777;
}

.feature-card:nth-child(10) .feature-icon {
  background: #FEF3C7;
  color: #D97706;
}

.feature-card:nth-child(2) .feature-saves {
  background: #EFF6FF;
  color: #2563EB;
}

.feature-card:nth-child(1) .feature-saves,
.feature-card:nth-child(3) .feature-saves,
.feature-card:nth-child(4) .feature-saves,
.feature-card:nth-child(5) .feature-saves,
.feature-card:nth-child(6) .feature-saves,
.feature-card:nth-child(7) .feature-saves,
.feature-card:nth-child(8) .feature-saves,
.feature-card:nth-child(9) .feature-saves,
.feature-card:nth-child(10) .feature-saves {
  background: rgba(16, 185, 129, .12);
  color: var(--success);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-light-lg);
  border-color: rgba(90, 110, 255, 0.28);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--indigo);
  margin-bottom: 16px;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--brand);
  color: #fff;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--light-text);
}

.feature-card p {
  font-size: 0.87rem;
  color: var(--light-muted);
  margin-bottom: 14px;
}

.feature-saves {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}

/* ── HOW IT WORKS / STEPS ───────────────────────────────────── */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.step-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.step-right .step-content {
  order: 2;
}

.step-num {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.step-content h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 14px;
}

.step-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.step-features i {
  color: var(--cyan);
  width: 19px;
  height: 19px;
}

.step-visual {
  border-radius: var(--r-lg);
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-base);
}

.step-block:hover .step-visual {
  transform: translateY(-5px);
}

/* Step 1 visual — automation checklist */
.svi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.svi-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.svi-name {
  display: block;
  font-family: var(--font-h);
  font-weight: 600;
}

.svi-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.svi-progress-wrap {
  margin-bottom: 20px;
}

.svi-progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.svi-pct {
  color: var(--cyan);
  font-family: var(--font-h);
  font-weight: 600;
}

.svi-bar {
  height: 8px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.svi-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  width: 0;
  animation: fill 2.4s var(--ease) forwards;
}

@keyframes fill {
  to {
    width: 100%;
  }
}

.svi-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svi-row {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.svi-row i {
  width: 18px;
  height: 18px;
  color: var(--text-dim);
}

.svi-done {
  color: #fff;
}

.svi-done i {
  color: var(--success);
}

.svi-active {
  color: #fff;
}

.svi-active i {
  color: var(--cyan);
  animation: spin 1.4s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Step 2 visual — browser scan */
.svo-browser {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 18px;
}

.svo-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
}

.svo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.svo-url {
  margin-left: 8px;
  font-size: 0.76rem;
  color: var(--text-dim);
  font-family: var(--font-h);
}

.svo-body {
  position: relative;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow: hidden;
}

.svo-line {
  height: 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.w85 {
  width: 85%;
}

.w75 {
  width: 75%;
}

.w70 {
  width: 70%;
}

.w65 {
  width: 65%;
}

.w55 {
  width: 55%;
}

.svo-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(34, 201, 224, 0.28), transparent);
  animation: scan 3s var(--ease) infinite;
}

@keyframes scan {

  0%,
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }

  50% {
    transform: translateY(120px);
    opacity: 1;
  }
}

.svo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.svo-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--border);
}

.svo-tag i {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.svo-tag.t4 {
  background: var(--brand-soft);
  border-color: rgba(34, 201, 224, 0.3);
  color: #fff;
}

/* Step 3 visual — event cards */
.sv-cited {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-card {
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: transform var(--t-base), border-color var(--t-base);
}

.svc-card:hover {
  transform: translateX(6px);
  border-color: rgba(34, 201, 224, 0.4);
}

.svc-engine {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.svc-engine i {
  width: 17px;
  height: 17px;
  color: var(--cyan);
}

.svc-text {
  font-size: 0.86rem;
  color: var(--text-dim);
}

.svc-text span {
  color: var(--cyan);
  font-weight: 600;
}

/* ── DEMO VIDEO ─────────────────────────────────────────────── */
.demo-video-wrap {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.demo-placeholder {
  position: relative;
  width: 100%;
}

.demo-ratio {
  position: relative;
  padding-top: 56.25%;
  background: linear-gradient(135deg, #17102b, #0d0a1c);
}

.demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.demo-play {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand-lg);
  transition: transform var(--t-base);
}

.demo-play i {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}

.demo-placeholder:hover .demo-play {
  transform: scale(1.1);
}

.demo-label {
  font-family: var(--font-h);
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── FUNNEL ─────────────────────────────────────────────────── */
.funnel-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.funnel-fe {
  grid-column: 1 / -1;
}

.funnel-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.funnel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-brand);
  border-color: rgba(122, 92, 255, 0.4);
}

.funnel-fe .funnel-card {
  background: linear-gradient(135deg, #1a1234, #100b22);
}

.funnel-bundle .funnel-card {
  background: linear-gradient(155deg, rgba(122, 92, 255, 0.18), rgba(34, 201, 224, 0.10) 60%), var(--bg-card);
  border-color: rgba(34, 201, 224, 0.55);
  box-shadow: 0 0 0 1px rgba(34, 201, 224, 0.35), 0 22px 64px rgba(34, 201, 224, 0.22), var(--shadow-md);
}

.funnel-bundle .funnel-card:hover {
  border-color: rgba(34, 201, 224, 0.7);
  box-shadow: 0 0 0 1px rgba(34, 201, 224, 0.5), 0 26px 70px rgba(34, 201, 224, 0.3), var(--shadow-md);
}

/* Bundle "best value" top banner — bleeds to the card edges */
.fc-ribbon {
  margin: -30px -30px 22px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-ribbon i {
  width: 15px;
  height: 15px;
}

.fc-toprow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.fc-tier-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
}

.fc-tier-tag.fe {
  background: var(--brand);
  color: #fff;
}

.fc-tier-tag.oto {
  background: rgba(122, 92, 255, 0.16);
  color: var(--violet);
  border: 1px solid rgba(122, 92, 255, 0.3);
}

.fc-tier-tag.bundle {
  background: rgba(34, 201, 224, 0.16);
  color: var(--cyan);
  border: 1px solid rgba(34, 201, 224, 0.35);
}

.fc-tier-tag i {
  width: 14px;
  height: 14px;
}

.fc-price-wrap {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.fc-price-display {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fc-price-type {
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.fc-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.fc-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.fc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
}

.fc-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fc-list i {
  color: var(--cyan);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.fc-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-price-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--border);
}

.fc-price-pill.fc-highlight {
  background: var(--brand-soft);
  border-color: rgba(34, 201, 224, 0.3);
  color: #fff;
}


/* ── CONTEST / PRIZES ───────────────────────────────────────── */
.prize-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.prize-total-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 30px;
  border-radius: var(--r-xl);
  background: var(--brand-135);
  color: #fff;
  box-shadow: var(--shadow-brand-lg);
}

.prize-total-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(255, 255, 255, 0.22), transparent 60%);
}

.prize-total-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 18px;
}

.prize-total-icon i {
  width: 30px;
  height: 30px;
}

.prize-total-amount {
  position: relative;
  font-family: var(--font-h);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}

.prize-total-label {
  position: relative;
  font-size: 0.95rem;
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

.prize-total-divider {
  position: relative;
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  margin: 22px 0;
}

.prize-total-window {
  position: relative;
  font-size: 0.9rem;
}

.prize-total-window em {
  display: block;
  font-style: normal;
  opacity: 0.75;
  font-size: 0.8rem;
  margin: 3px 0;
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.prize-1st {
  grid-column: 1 / -1;
}

.prize-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 26px;
  border-radius: var(--r-lg);
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-light-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.prize-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-light-lg);
}

.pc-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--light-text);
}

.pc-label i {
  width: 20px;
  height: 20px;
}

.prize-1st .pc-label i {
  color: var(--gold);
}

.prize-2nd .pc-label i {
  color: #9aa3b2;
}

.prize-3rd .pc-label i {
  color: #c17a4a;
}

.pc-amount {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prize-1st .pc-amount {
  font-size: 2.2rem;
}

.contest-terms {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--light-dim);
}

.contest-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--indigo);
}

.contest-footer-note i {
  width: 17px;
  height: 17px;
}

/* ── TESTIMONIALS (VIDEO) ───────────────────────────────────── */
.container-testi {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testi-row-vertical {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testi-row-horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.video-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.vs-inner {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0d0a1c;
  border: none;
  box-shadow: var(--shadow-light-lg);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.video-slot:hover .vs-inner {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(90, 110, 255, 0.24);
}

.vs-ratio {
  position: relative;
  width: 100%;
  height: 0;
}

.vs-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vs-name {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--light-text);
}

/* ── RECIPROCATE ────────────────────────────────────────────── */
.reciprocate-img-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: var(--r-lg);
}

.reciprocate-img {
  width: 100%;
  border-radius: var(--r-lg);
}

/* ── CONNECT ────────────────────────────────────────────────── */
.connect-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
  padding: 44px;
  background: linear-gradient(135deg, #17102b, #0e0a1e);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.connect-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 0% 0%, rgba(122, 92, 255, 0.20), transparent 60%);
  pointer-events: none;
}

.connect-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding-right: 40px;
  border-right: 1px solid var(--border);
}

.connect-avatar {
  position: relative;
  width: 118px;
  height: 118px;
}

.connect-avatar::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--brand);
  z-index: 0;
}

.connect-avatar-img {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-card);
  box-shadow: var(--shadow-brand);
}

.connect-status {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--success);
  border: 3px solid #14102a;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.connect-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
}

.connect-right {
  position: relative;
}

.connect-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.connect-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.connect-btn:hover {
  transform: translateX(5px);
  border-color: rgba(34, 201, 224, 0.45);
  background: var(--glass-strong);
}

.connect-btn-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.connect-btn-icon img {
  width: 22px;
  height: 22px;
}

.connect-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.connect-btn-text strong {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.98rem;
}

.connect-btn-text em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.connect-btn>i {
  margin-left: auto;
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  transition: transform var(--t-fast), color var(--t-fast);
}

.connect-btn:hover>i {
  transform: translate(3px, -3px);
  color: var(--cyan);
}

.connect-btn.ch-teams:hover {
  border-color: rgba(98, 100, 167, 0.6);
}

.connect-btn.ch-wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-light-md);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item:hover {
  border-color: rgba(90, 110, 255, 0.3);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--light-text);
}

.faq-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--indigo);
  transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}

.faq-icon svg {
  width: 17px;
  height: 17px;
}

.faq-q[aria-expanded="true"] {
  color: var(--indigo);
}

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--light-muted);
  font-size: 0.96rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  padding: 54px 0 40px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-logo img {
  height: 34px;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-copy a {
  color: var(--cyan);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--t-fast);
}

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

/* ── TOAST ──────────────────────────────────────────────────── */
#geo-toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  color: #fff;
  border: 1px solid var(--border-strong);
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
}

#geo-toast.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.reveal-scale {
  transform: scale(0.96);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  * {
    animation: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */




@media (max-width: 1400px) {
  .product-checks {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .plugins-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 940px) {
  .testi-row-vertical {
    grid-template-columns: repeat(2, 1fr);
  }

  .connect-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 30px;
  }

  .connect-left {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px;
    border-radius: var(--r-lg);
    background: rgba(12, 9, 24, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
  }

  #navbar.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 12px 10px;
    border-radius: var(--r-sm);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-cta {
    display: none;
  }

  #navbar.scrolled,
  #navbar.nav-open {
    background: rgba(8, 6, 15, 0.9);
    backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-cover {
    max-width: 460px;
    margin: 0 auto;
  }

  .pc-window {
    transform: none;
  }

  .step-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-right .step-content {
    order: 0;
  }

  .step-right .step-visual {
    order: 2;
  }

  .prize-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 36px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(122, 92, 255, 0.5), rgba(34, 201, 224, 0.5), transparent);
  }

  .timeline-item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding-bottom: 34px;
  }

  .tl-dot {
    width: 50px;
    height: 2px;
  }

.tl-dot::after {
    bottom: -4px;
    left: 100%;
}

.tl-icon {
    width: 75px;
    height: 75px;
}

  .tl-icon {
    margin-bottom: 0;
  }

  .plugins-grid,
  .features-grid,
  .marketer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .funnel-flow {
    grid-template-columns: 1fr;
  }

  .testi-row-horizontal {
    grid-template-columns: 1fr;
  }

  .cd-unit {
    min-width: 68px;
    padding: 14px 8px;
  }

  .cd-num {
    font-size: 1.7rem;
  }

  .cta-card {
    padding: 40px 24px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 18px;
  }

  #hero {
    padding: 130px 0 80px;
  }

  #hero h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.6rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .hero-cta {
    width: 100%;
  }

  .countdown {
    gap: 8px;
    width: 100%;
  }

  .cd-unit {
    min-width: 0;
    flex: 1;
  }

  .stats-grid,
  .plugins-grid,
  .features-grid,
  .marketer-grid {
    grid-template-columns: 1fr;
  }

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

  .prize-1st,
  .prize-1st .pc-amount {
    font-size: inherit;
  }

  .prize-1st .pc-amount {
    font-size: 1.9rem;
  }

  .cta-resource-card {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }

  .cta-resource-card {
    text-align: left;
  }

  .step-num {
    font-size: 2.5rem;
  }

  .footer-legal {
    gap: 6px 16px;
  }
}

@media (max-width: 400px) {
  #hero h1 {
    font-size: 1.85rem;
  }

  .launch-badge {
    font-size: 0.68rem;
    padding: 8px 14px;
  }

  .cd-num {
    font-size: 1.4rem;
  }

  .cd-lbl {
    font-size: 0.62rem;
  }

  .fc-price-display {
    font-size: 1.7rem;
  }

  .prize-total-amount {
    font-size: 3rem;
  }
}