/* ═══════════════════════════════════════════════════════════
   ENTRYPOINT REDESIGN — Acorns-Inspired Premium System
   Syne display · Dark/Light alternating · Real contrast
   ═══════════════════════════════════════════════════════════ */

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

/* ── Context-aware custom properties ──────────────────────
   Each .s-dark / .s-light section overrides these so every
   component automatically adapts without duplicate rules.    */
:root {
  --green:        #2ecc71;
  --green-dim:    rgba(46,204,113,0.10);
  --green-glow:   rgba(46,204,113,0.20);
  --blue:         #4a7de8;
  --amber:        #f0b429;
  --red:          #e55353;
}

/* Dark context defaults */
.s-dark {
  --bg:           #070d09;
  --bg2:          #0e1a10;
  --surface:      rgba(18,30,22,0.75);
  --text:         #f3f7f4;
  --text2:        #b0c8b8;
  --muted:        #6a8c78;
  --border:       rgba(255,255,255,0.07);
  --border2:      rgba(255,255,255,0.12);
  --card-bg:      rgba(16,26,20,0.65);
  background: var(--bg);
  color: var(--text);
}

/* Light context */
.s-light {
  --bg:           #eef4ea;
  --bg2:          #e1ead9;
  --surface:      #ffffff;
  --text:         #0d1a12;
  --text2:        #3a5545;
  --muted:        #6a8c78;
  --border:       rgba(0,0,0,0.08);
  --border2:      rgba(0,0,0,0.14);
  --card-bg:      #ffffff;
  background: var(--bg);
  color: var(--text);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #070d09;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #1e2924; border-radius: 4px; }


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1);     opacity: .5; }
  33%     { transform: translate(16px,-22px) scale(1.08); opacity: .8; }
  66%     { transform: translate(-12px,16px) scale(1.03); opacity: .6; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes phoneTiltLeft {
  0%,100% { transform: rotate(-4deg) translateY(0); }
  50%     { transform: rotate(-4deg) translateY(-14px); }
}
@keyframes phoneTiltRight {
  0%,100% { transform: rotate(4deg) translateY(0); }
  50%     { transform: rotate(4deg) translateY(-10px); }
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { opacity: 1;  box-shadow: 0 0 12px var(--green); }
  50%     { opacity: .2; box-shadow: 0 0 4px var(--green);  }
}
@keyframes shimmer {
  0%,100% { opacity: .6; }
  50%     { opacity: 1;  }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,15,12,0.84);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 14px; font-weight: 500;
  color: rgba(243,247,244,0.6); text-decoration: none;
  transition: color .2s;
}
.nav-link:hover { color: #f3f7f4; }
.nav-cta {
  padding: 10px 26px; border-radius: 100px;
  background: var(--green); color: #000;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all .25s; white-space: nowrap;
  box-shadow: 0 0 32px rgba(46,204,113,0.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 52px rgba(46,204,113,0.42); }
@media(max-width:700px) { nav { padding: 0 20px; } .nav-links { display: none; } }


/* ═══════════════════════════════════════════════════════════
   HERO — Deep dark, Syne display, phones angled and floating
   ═══════════════════════════════════════════════════════════ */

.hero-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 152px 24px 64px;
  position: relative; overflow: hidden;
  text-align: left;
}

/* Atmospheric gradient bg */
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 60% at 50% 15%, rgba(46,204,113,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 60%, rgba(59,111,212,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 55%, rgba(46,204,113,0.06) 0%, transparent 50%),
    #070d09;
  pointer-events: none;
}

/* Grid texture */
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,204,113,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,113,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1240px; width: 100%;
  display: grid; grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 72px; align-items: start;
}

.hero-copy {
  position: relative; z-index: 2;
  max-width: 540px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  row-gap: 8px;
}

.hero-visual {
  position: relative; z-index: 2;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 8px;
}

.hero-headline-group {
  max-width: 520px;
}

.hero-support-group {
  max-width: 520px;
  padding-top: 8px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 20px; border-radius: 100px;
  background: rgba(46,204,113,0.12);
  border: 1px solid rgba(46,204,113,0.28);
  font-size: 11px; font-weight: 700;
  color: var(--green); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeSlideUp .6s ease both;
  box-shadow: 0 0 24px rgba(46,204,113,0.1);
}
.hero-eyebrow-secondary {
  margin-bottom: 18px;
  font-size: 10px;
  opacity: .9;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7.8vw, 100px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -4px;
  color: #f3f7f4;
  margin-bottom: 0;
  animation: fadeSlideUp .7s .08s ease both;
}
.hero-h1 .hi {
  color: var(--green);
  text-shadow: 0 0 120px rgba(46,204,113,0.4), 0 0 40px rgba(46,204,113,0.2);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(176,200,184,0.9);
  max-width: 520px; margin: 0 0 40px;
  line-height: 1.75; font-weight: 400;
  animation: fadeSlideUp .7s .16s ease both;
}

/* Form */
.hero-form-wrap { animation: fadeSlideUp .7s .24s ease both; }
.hero-form {
  display: flex; gap: 10px;
  max-width: 460px; width: 100%; margin: 0 0 20px;
}
.hero-input {
  flex: 1; padding: 17px 22px; border-radius: 14px;
  background: rgba(12,22,16,0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.13);
  color: #f3f7f4; font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.hero-input::placeholder { color: rgba(106,140,120,0.8); }
.hero-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46,204,113,0.14);
}
.hero-btn {
  padding: 17px 32px; border-radius: 14px; border: none;
  background: var(--green); color: #000;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s; white-space: nowrap;
  box-shadow: 0 0 52px rgba(46,204,113,0.32), 0 4px 20px rgba(0,0,0,0.4);
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 80px rgba(46,204,113,0.52), 0 8px 28px rgba(0,0,0,0.5);
}
.hero-btn:active { transform: scale(.97); }
.hero-success {
  display: none; padding: 14px 24px; border-radius: 14px;
  background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.3);
  color: var(--green); font-size: 14px; font-weight: 600;
  margin: 0 0 24px; max-width: 460px;
  animation: fadeSlideUp .3s ease both;
}

/* Social proof */
.hero-social {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 12px; font-size: 13px; color: rgba(106,140,120,0.9);
  margin-bottom: 0;
  animation: fadeSlideUp .7s .32s ease both;
}
.avatars { display: flex; }
.av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid #070d09; margin-left: -8px;
  background: #1e2924; display: flex; align-items: center;
  justify-content: center; font-size: 12px;
}
.avatars .av:first-child { margin-left: 0; }
.hero-disclaimer {
  font-size: 12px; color: rgba(106,140,120,0.7);
  margin-top: 14px; margin-bottom: 0;
  max-width: 440px;
}

/* ── Hero phones — anchored to the headline block ──────────── */
.hero-phone-cluster {
  position: relative;
  width: min(100%, 620px);
  min-height: 540px;
  margin-left: auto;
  margin-top: 0;
  animation: fadeSlideUp .9s .4s ease both;
}

.hero-phones-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Glow under phones */
.hero-phone-cluster::before {
  content: '';
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 220px;
  background: radial-gradient(ellipse, rgba(46,204,113,0.12) 0%, transparent 72%);
  pointer-events: none; filter: blur(18px);
}

.phone-composition {
  position: absolute;
  transform-origin: center bottom;
  transition: transform .45s cubic-bezier(.22,1,.36,1), filter .45s cubic-bezier(.22,1,.36,1), z-index .2s ease, opacity .35s ease;
  will-change: transform, filter;
}

.phone-composition-left {
  left: 14%;
  top: 42px;
  width: 244px;
  z-index: 2;
  filter: drop-shadow(0 36px 76px rgba(0,0,0,0.72)) drop-shadow(0 0 28px rgba(46,204,113,0.1));
}

.phone-composition-right {
  right: 14%;
  top: 58px;
  width: 232px;
  z-index: 3;
  filter: drop-shadow(0 36px 76px rgba(0,0,0,0.72)) drop-shadow(0 0 24px rgba(46,204,113,0.08));
}

.phone-frame {
  position: relative;
  transform-origin: bottom center;
}

.phone-frame-left {
  transform: rotate(-10deg);
}

.phone-frame-right {
  transform: rotate(10deg);
}

.phone-shell {
  transform-origin: bottom center;
}

.phone-shell-left {
  animation: phoneTiltLeft 8s ease-in-out infinite;
}

.phone-shell-right {
  animation: phoneTiltRight 9s 2s ease-in-out infinite;
}

.hero-phone-cluster:hover .phone-composition:not(:hover) {
  transform: scale(.97);
  opacity: .88;
  filter: brightness(.92) saturate(.94) drop-shadow(0 26px 54px rgba(0,0,0,0.52)) drop-shadow(0 0 16px rgba(46,204,113,0.06));
}

.phone-composition:hover {
  z-index: 5;
  opacity: 1;
  filter: drop-shadow(0 50px 110px rgba(0,0,0,0.88)) drop-shadow(0 0 44px rgba(46,204,113,0.16));
}

.phone-composition-left:hover { transform: translateY(-12px) scale(1.055); }
.phone-composition-right:hover { transform: translateY(-14px) scale(1.055); }

/* Bottom gradient fade — blends hero into ticker */
.hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(7,13,9,0.92) 72%, #070d09 100%);
  pointer-events: none; z-index: 3;
}

@media(max-width:1024px) {
  .hero-inner { gap: 48px; grid-template-columns: minmax(0, 480px) minmax(0, 1fr); }
  .hero-copy { row-gap: 4px; }
  .hero-visual { padding-top: 6px; }
  .hero-phone-cluster { width: min(100%, 540px); min-height: 500px; }
  .phone-composition-left { left: 10%; top: 44px; }
  .phone-composition-right { right: 10%; top: 58px; }
}

@media(max-width:820px) {
  .hero-section { padding: 136px 20px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 560px; }
  .hero-visual { width: 100%; padding-top: 0; }
  .hero-phone-cluster {
    width: min(100%, 520px);
    min-height: 500px;
    margin: 0 auto;
  }
  .phone-composition-left { left: 11%; top: 68px; }
  .phone-composition-right { right: 11%; top: 82px; }
}

@media(max-width:640px) {
  .hero-section { padding: 132px 20px 48px; }
  .hero-h1 { letter-spacing: -2.5px; }
  .hero-form { flex-direction: column; }
  .hero-btn { width: 100%; }
  .hero-social { align-items: flex-start; }
  .hero-copy { row-gap: 0; }
  .hero-support-group { padding-top: 0; }
  .hero-phone-cluster {
    width: 100%;
    min-height: auto;
  }
  .hero-phones-wrap {
    display: grid;
    height: auto;
    gap: 56px;
    justify-items: center;
  }
  .hero-phone-cluster::before {
    width: 100%;
    height: 180px;
    left: 50%;
    bottom: 64px;
  }
  .phone-composition {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    opacity: 1;
  }
  .phone-shell-left { animation-duration: 7.5s; }
  .phone-shell-right { animation-duration: 8.5s; }
  .phone-composition-left:hover,
  .phone-composition-right:hover { transform: translateY(-8px) scale(1.03); }
  .phone-frame-left { transform: rotate(-8deg); }
  .phone-frame-right { transform: rotate(8deg); }
}


/* ═══════════════════════════════════════════════════════════
   LIVE MARKET TICKER
   ═══════════════════════════════════════════════════════════ */

.ticker-wrap {
  position: relative; overflow: hidden; z-index: 10;
  border-top: 1px solid rgba(46,204,113,0.2);
  border-bottom: 1px solid rgba(46,204,113,0.2);
  background: linear-gradient(180deg, rgba(46,204,113,0.08) 0%, rgba(46,204,113,0.03) 100%);
  padding: 20px 0;
  margin-top: 0;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 180px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, #070d09, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, #070d09, transparent); }

.ticker-label {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 3; font-size: 9px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .12em;
  background: #070d09; padding: 0 16px 0 0;
  display: flex; align-items: center; gap: 7px;
}
.ticker-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 55s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 44px; font-size: 13px;
  font-family: 'DM Mono', monospace;
  color: rgba(176,200,184,0.75); white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green); flex-shrink: 0;
}
.t-score { color: var(--green); font-weight: 700; }
.t-price { color: #f3f7f4; font-weight: 600; }
.t-cf    { color: var(--green); }


/* ═══════════════════════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY & SPACING
   ═══════════════════════════════════════════════════════════ */

.section-wrap { padding: 140px 48px; }
.section-wrap-sm { padding: 100px 48px; }
.container { max-width: 1240px; margin: 0 auto; }
.container-narrow { max-width: 960px; margin: 0 auto; }
.section-centered { text-align: center; }
.section-centered .section-sub { margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--green); text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 18px;
}

.section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800; letter-spacing: -3px; line-height: .97;
  margin-bottom: 22px; color: var(--text);
}
.section-sub {
  font-size: 18px; color: var(--text2);
  line-height: 1.72; max-width: 520px; font-weight: 400;
}

@media(max-width:700px) {
  .section-wrap { padding: 100px 24px; }
  .section-wrap-sm { padding: 80px 24px; }
}


/* ═══════════════════════════════════════════════════════════
   RESEARCH-DRIVEN MESSAGING SECTIONS
   ═══════════════════════════════════════════════════════════ */

.pain-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
}

.pain-highlight {
  background: linear-gradient(180deg, rgba(46,204,113,0.16) 0%, rgba(46,204,113,0.08) 100%);
  border: 1px solid rgba(46,204,113,0.22);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(46,204,113,0.08);
}

.pain-highlight-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: .9;
  color: var(--text);
  margin-bottom: 10px;
}

.pain-highlight-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text2);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.06);
}

.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.18);
  color: #1a8a47;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
}

.pain-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.pain-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text2);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.workflow-step {
  background: var(--card-bg);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 22px 58px rgba(0,0,0,0.24);
}

.workflow-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 16px;
}

.workflow-step-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text2);
}

.workflow-result {
  margin-top: 24px;
  padding: 28px 32px;
  border-radius: 26px;
  border: 1px solid rgba(46,204,113,0.16);
  background: linear-gradient(135deg, rgba(46,204,113,0.08) 0%, rgba(255,255,255,0.03) 100%);
}

.workflow-result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.workflow-result-copy {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  max-width: 860px;
}

.section-header {
  margin-bottom: 48px;
}

.section-content {
  position: relative;
  z-index: 1;
}

.replace-inner {
  display: grid;
  grid-template-columns: minmax(420px, 500px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.replace-header,
.trust-header {
  margin-bottom: 0;
}

.replace-header {
  max-width: 500px;
}

.replace-header .section-h2 {
  font-size: clamp(40px, 4.6vw, 58px);
  letter-spacing: -2.2px;
  line-height: 1;
}

.replace-content {
  margin-top: 0;
  align-self: start;
}

.replace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.replace-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 26px;
  padding: 30px 28px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
}

.replace-kicker {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 14px;
}

.replace-kicker-accent {
  color: var(--green);
  text-shadow: 0 0 22px rgba(46,204,113,0.16);
}

.replace-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text2);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(420px, 480px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.trust-header {
  max-width: 480px;
}

.trust-header .section-h2 {
  font-size: clamp(40px, 4.4vw, 56px);
  letter-spacing: -2.1px;
  line-height: 1;
}

.trust-content {
  margin-top: 0;
  align-self: start;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.trust-card {
  background: rgba(22,35,27,0.88);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 26px 68px rgba(0,0,0,0.34), 0 0 0 1px rgba(46,204,113,0.04);
}

.trust-title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 16px;
}

.trust-title::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(46,204,113,0.9) 0%, rgba(46,204,113,0.28) 100%);
  box-shadow: 0 0 14px rgba(46,204,113,0.14);
}

.trust-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text2);
}

.contrast-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.contrast-column {
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--border2);
}

.contrast-column-bad {
  background: linear-gradient(180deg, rgba(229,83,83,0.06) 0%, rgba(255,255,255,0.7) 100%);
}

.contrast-column-good {
  background: linear-gradient(180deg, rgba(46,204,113,0.08) 0%, rgba(255,255,255,0.92) 100%);
}

.contrast-label {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 22px;
}

.contrast-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 600;
}

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

.contrast-item-bad {
  background: rgba(229,83,83,0.08);
  color: #9e3d3d;
}

.contrast-item-good {
  background: rgba(46,204,113,0.1);
  color: #146d3e;
}

@media(max-width:1024px) {
  .pain-grid,
  .replace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media(max-width:820px) {
  .pain-shell,
  .replace-inner,
  .trust-inner,
  .contrast-board {
    grid-template-columns: 1fr;
  }

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

  .replace-header,
  .trust-header {
    margin-bottom: 48px;
    max-width: none;
  }

  .trust-content {
    margin-top: 0;
  }
}

@media(max-width:640px) {
  .pain-grid,
  .workflow-grid,
  .replace-grid {
    grid-template-columns: 1fr;
  }

  .pain-card,
  .workflow-step,
  .replace-card,
  .trust-card,
  .contrast-column {
    padding: 24px;
  }

  .workflow-result {
    padding: 24px;
  }

  .workflow-result-copy {
    font-size: 17px;
  }

  .replace-kicker,
  .contrast-label {
    font-size: 24px;
  }
}


/* ═══════════════════════════════════════════════════════════
   STATS — Light section, large editorial numbers
   ═══════════════════════════════════════════════════════════ */

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 72px;
  border: 1px solid var(--border2); border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.stat-item {
  padding: 48px 32px; background: var(--surface);
  border-right: 1px solid var(--border2);
  text-align: center;
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg2); }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800; letter-spacing: -2px; line-height: 1;
  color: var(--green); margin-bottom: 10px;
}
.stat-lbl { font-size: 14px; color: var(--text2); font-weight: 500; line-height: 1.5; }
@media(max-width:800px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:440px) { .stats-grid { grid-template-columns: 1fr; } .stat-item { border-right: none; border-bottom: 1px solid var(--border2); } }


/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — Dark, large step numbers
   ═══════════════════════════════════════════════════════════ */

.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; margin-top: 72px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(18,30,22,0.8);
  box-shadow: 0 28px 72px rgba(0,0,0,0.3);
}
.how-step {
  padding: 52px 36px; border-right: 1px solid rgba(255,255,255,0.09);
  transition: background .3s, box-shadow .3s;
}
.how-step:last-child { border-right: none; }
.how-step:hover {
  background: rgba(46,204,113,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.how-num {
  font-family: 'Syne', sans-serif;
  font-size: 72px; font-weight: 800;
  color: rgba(46,204,113,0.14); line-height: 1;
  margin-bottom: 24px;
}
.how-icon { font-size: 34px; margin-bottom: 20px; }
.how-title { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.how-desc { font-size: 14px; color: var(--text2); line-height: 1.75; }
@media(max-width:700px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════════════════
   DEAL SCORE SHOWCASE — Light section
   ═══════════════════════════════════════════════════════════ */

.showcase-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 96px; align-items: center;
}

/* Score card — white card on light bg */
.score-card {
  background: var(--surface);
  border-radius: 28px; padding: 36px;
  border: 1px solid var(--border2);
  box-shadow: 0 20px 80px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.score-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 100px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
}
.sc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.sc-addr { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.sc-sub  { font-size: 12px; color: var(--muted); }
.sc-score-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px; font-weight: 800; color: var(--green);
  line-height: 1; letter-spacing: -2px;
  text-shadow: 0 0 40px rgba(46,204,113,0.3);
}
.sc-score-lbl { font-size: 11px; color: var(--green); font-weight: 700; text-align: right; margin-top: 4px; }
.sc-uv {
  background: rgba(46,204,113,0.08); border: 1px solid rgba(46,204,113,0.2);
  border-radius: 14px; padding: 16px 20px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text2);
}
.sc-uv strong { color: var(--green); font-size: 16px; font-family: 'DM Mono', monospace; }
.sc-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
.sc-metric {
  background: var(--bg2); border-radius: 14px; padding: 16px 8px;
  text-align: center; border: 1px solid var(--border);
}
.sc-metric-lbl { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.sc-metric-val { font-size: 18px; font-weight: 700; font-family: 'DM Mono', monospace; }
.sc-metric-val.g { color: var(--green); }
.sc-metric-val.b { color: var(--blue); }
.sc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sc-tag { font-size: 11px; font-weight: 600; padding: 6px 14px; border-radius: 100px; }
.sc-tag.r { background: rgba(229,83,83,0.1); color: #c0453a; }
.sc-tag.a { background: rgba(240,180,41,0.1); color: #b07800; }
.sc-tag.g { background: rgba(46,204,113,0.12); color: #1a8a47; }

/* For dark context, override tag text colors */
.s-dark .sc-tag.r { color: #e88a8a; }
.s-dark .sc-tag.a { color: var(--amber); }
.s-dark .sc-tag.g { color: var(--green); }

.showcase-text .section-h2 { font-size: clamp(30px, 4.5vw, 56px); }
.score-breakdown { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.score-factor { display: flex; gap: 18px; align-items: flex-start; }
.sf-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.sf-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.sf-text p  { font-size: 13px; color: var(--text2); line-height: 1.6; }
.sf-pct { font-size: 11px; font-weight: 700; color: var(--green); font-family: 'DM Mono', monospace; margin-top: 4px; }
@media(max-width:780px) { .showcase-inner { grid-template-columns: 1fr; gap: 56px; } }


/* ═══════════════════════════════════════════════════════════
   ALERT PREVIEW — Dark section
   ═══════════════════════════════════════════════════════════ */

.alert-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 96px; align-items: center;
}
.alert-phone {
  background: var(--card-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 28px; padding: 32px;
  border: 1px solid var(--border2);
  box-shadow: 0 28px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.alert-phone:hover { transform: translateY(-6px); }
.alert-phone-hdr {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.alert-notif {
  background: rgba(255,255,255,0.04); border-radius: 18px; padding: 20px;
  border: 1px solid var(--border2); margin-bottom: 14px;
  transition: transform .25s, background .25s;
}
.alert-notif:hover { transform: translateX(6px); background: rgba(255,255,255,0.07); }
.alert-notif:last-child { margin-bottom: 0; }
.alert-notif.new {
  border-color: rgba(46,204,113,0.35);
  background: rgba(46,204,113,0.07);
  box-shadow: 0 0 36px rgba(46,204,113,0.06);
}
.alert-notif-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.alert-notif-app { font-size: 11px; font-weight: 700; color: var(--text2); }
.alert-notif-time { font-size: 10px; color: var(--muted); margin-left: auto; }
.alert-notif-body { font-size: 13px; line-height: 1.65; color: var(--text); }
.alert-notif-body .hi  { color: var(--green); font-weight: 700; }
.alert-notif-body .dim { color: var(--text2); }
.alert-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green);
  flex-shrink: 0; animation: pulse 2s ease-in-out infinite;
}
.alert-text .section-h2 { font-size: clamp(30px, 4.5vw, 56px); }
.alert-list { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.alert-item-row { display: flex; gap: 18px; align-items: flex-start; }
.ai-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ai-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.ai-text p  { font-size: 13px; color: var(--text2); line-height: 1.6; }
@media(max-width:780px) { .alert-inner { grid-template-columns: 1fr; gap: 56px; } }


/* ═══════════════════════════════════════════════════════════
   PROBLEM / SOLUTION — Light section, white cards
   ═══════════════════════════════════════════════════════════ */

.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 72px; }
.ps-card {
  border-radius: 28px; padding: 44px;
  border: 1px solid var(--border2);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  background: var(--surface);
}
.ps-card:hover { transform: translateY(-6px); }
.ps-card.prob {
  border-color: rgba(229,83,83,0.18);
}
.ps-card.prob:hover { box-shadow: 0 24px 72px rgba(229,83,83,0.08); }
.ps-card.sol {
  border-color: rgba(46,204,113,0.22);
}
.ps-card.sol:hover { box-shadow: 0 24px 72px rgba(46,204,113,0.1); }
.ps-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.ps-label.p { color: #c0453a; }
.ps-label.s { color: #1a8a47; }
.ps-item { display: flex; gap: 14px; margin-bottom: 24px; font-size: 14px; line-height: 1.65; }
.ps-item:last-child { margin-bottom: 0; }
.ps-ico { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.ps-txt { color: var(--text2); }
.ps-txt strong { color: var(--text); display: block; margin-bottom: 3px; font-size: 15px; font-weight: 700; }
@media(max-width:700px) { .ps-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════
   FEATURES — Dark section, glass cards
   ═══════════════════════════════════════════════════════════ */

.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 72px;
}
.feat-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 24px; padding: 36px;
  border: 1px solid var(--border);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(46,204,113,0.45),transparent);
  opacity: 0; transition: opacity .35s;
}
.feat-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: radial-gradient(ellipse at 25% 0%, rgba(46,204,113,0.08), transparent 60%);
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.feat-card:hover {
  border-color: rgba(46,204,113,0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 48px rgba(46,204,113,0.06);
}
.feat-card:hover::before, .feat-card:hover::after { opacity: 1; }
.feat-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px;
}
.feat-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feat-desc { font-size: 14px; color: var(--text2); line-height: 1.75; }
@media(max-width:780px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .features-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════
   ANALYZER / DASHBOARD — Light section
   ═══════════════════════════════════════════════════════════ */

.analyzer-intro { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.mockup-chrome {
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow:
    0 48px 140px rgba(0,0,0,0.15),
    0 12px 40px rgba(0,0,0,0.1),
    0 0 0 1px rgba(0,0,0,0.06);
  transition: transform .6s cubic-bezier(.22,1,.36,1), box-shadow .6s;
}
.mockup-chrome:hover {
  transform: translateY(-8px);
  box-shadow:
    0 64px 160px rgba(0,0,0,0.18),
    0 16px 48px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,0,0,0.06);
}


/* ═══════════════════════════════════════════════════════════
   PRICING — Dark section
   ═══════════════════════════════════════════════════════════ */

.pricing-inner { max-width: 1040px; margin: 0 auto; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 72px; align-items: start;
}
.price-card {
  background: var(--card-bg);
  border-radius: 28px; padding: 36px;
  border: 1px solid var(--border2);
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.price-card:not(.featured):hover { transform: translateY(-6px); }
.price-card.featured {
  border-color: rgba(46,204,113,0.55);
  background: linear-gradient(160deg, rgba(46,204,113,0.16) 0%, rgba(46,204,113,0.04) 100%);
  box-shadow: 0 0 80px rgba(46,204,113,0.14), inset 0 1px 0 rgba(46,204,113,0.2);
  transform: scale(1.04);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 0 100px rgba(46,204,113,0.2), inset 0 1px 0 rgba(46,204,113,0.25);
}
.price-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700;
  background: var(--green); color: #000;
  padding: 4px 12px; border-radius: 100px;
  box-shadow: 0 0 20px rgba(46,204,113,0.35);
}
.price-tier { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px; font-weight: 800; letter-spacing: -2px;
  margin-bottom: 8px; color: var(--text);
}
.price-amount span { font-size: 20px; font-weight: 500; color: var(--muted); letter-spacing: 0; font-family: 'Plus Jakarta Sans', sans-serif; }
.price-desc { font-size: 13px; color: var(--text2); margin-bottom: 28px; line-height: 1.6; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-feature { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 13px; color: var(--text2); }
.price-feature:last-child { margin-bottom: 0; }
.price-check { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.price-feature strong { color: var(--text); }
@media(max-width:700px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
}


/* ═══════════════════════════════════════════════════════════
   MOAT — Light section
   ═══════════════════════════════════════════════════════════ */

.moat-inner { max-width: 840px; margin: 0 auto; text-align: center; }
.moat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.25);
  font-size: 12px; font-weight: 600; color: #1a8a47;
  margin-top: 16px;
}
.s-dark .moat-badge { color: var(--green); }
.moat-card {
  background: var(--surface);
  border-radius: 28px; padding: 52px;
  border: 1px solid var(--border2);
  margin-top: 52px; position: relative; overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.07);
}
.s-dark .moat-card { box-shadow: 0 24px 72px rgba(0,0,0,0.4); }
.moat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.moat-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 40px; }
.moat-step { padding: 28px 22px; border-right: 1px solid var(--border2); text-align: center; }
.moat-step:last-child { border-right: none; }
.moat-step-icon { font-size: 32px; margin-bottom: 14px; }
.moat-step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.moat-step-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }
@media(max-width:600px) {
  .moat-steps { grid-template-columns: 1fr; }
  .moat-step { border-right: none; border-bottom: 1px solid var(--border2); }
  .moat-step:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════════════════
   CTA — Dark section, full bleed
   ═══════════════════════════════════════════════════════════ */

.cta-section-inner {
  position: relative; overflow: hidden;
  text-align: center; padding: 180px 48px;
}
.cta-section-inner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(46,204,113,0.12) 0%, transparent 65%),
    var(--bg);
  pointer-events: none;
  animation: orbDrift 16s ease-in-out infinite;
}
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.28);
  font-size: 11px; font-weight: 700; color: var(--green);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 36px;
}
.cta-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 800; letter-spacing: -3px; line-height: .97;
  margin-bottom: 22px; color: var(--text);
}
.cta-sub { font-size: 18px; color: var(--text2); line-height: 1.72; margin-bottom: 52px; }
.cta-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 16px; }
.cta-input {
  flex: 1; padding: 17px 22px; border-radius: 14px;
  background: rgba(12,22,16,0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.13);
  color: var(--text); font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.cta-input::placeholder { color: rgba(106,140,120,0.8); }
.cta-input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(46,204,113,0.14); }
.cta-btn {
  padding: 17px 32px; border-radius: 14px; border: none;
  background: var(--green); color: #000;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s; white-space: nowrap;
  box-shadow: 0 0 52px rgba(46,204,113,0.32), 0 4px 20px rgba(0,0,0,0.4);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 0 80px rgba(46,204,113,0.52), 0 8px 28px rgba(0,0,0,0.5); }
.cta-success {
  display: none; padding: 14px 24px; border-radius: 14px;
  background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.3);
  color: var(--green); font-size: 14px; font-weight: 600;
  margin: 0 auto 16px; max-width: 480px;
}
.cta-disclaimer { font-size: 12px; color: var(--muted); }
@media(max-width:520px) { .cta-section-inner { padding: 120px 24px; } .cta-form { flex-direction: column; } .cta-btn { width: 100%; } }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

footer {
  background: #070b09;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-copy { font-size: 13px; color: #4a6858; }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: 13px; color: #6a8c78; text-decoration: none; transition: color .2s; }
.footer-link:hover { color: #f3f7f4; }
.footer-social { color: #4a6858; transition: color .2s; display: flex; align-items: center; }
.footer-social:hover { color: #6a8c78; }
@media(max-width:640px) { footer { padding: 36px 24px; flex-direction: column; align-items: flex-start; } }


/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .35s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════ */

.ep-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.ep-modal-overlay.open { display: flex; animation: fadeSlideUp .2s ease; }
.ep-modal {
  background: #111a14; border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: 0 48px 120px rgba(0,0,0,0.8);
}
.ep-modal-header {
  padding: 24px 30px; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: #111a14; z-index: 1;
}
.ep-modal-title { font-size: 18px; font-weight: 800; color: #f3f7f4; font-family: 'Plus Jakarta Sans', sans-serif; }
.ep-modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: #1e2924; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: #6a8c78; flex-shrink: 0; transition: background .2s;
}
.ep-modal-close:hover { background: #2a3830; }
.ep-modal-body { padding: 30px; }
.ep-modal-body h3 { font-size: 14px; font-weight: 700; color: #f3f7f4; margin: 22px 0 8px; }
.ep-modal-body h3:first-child { margin-top: 0; }
.ep-modal-body p { font-size: 13px; color: #b0c8b8; line-height: 1.7; margin-bottom: 8px; }
.ep-modal-body a { color: var(--green); text-decoration: none; }
.ep-modal-body .modal-badge { display: inline-block; font-size: 11px; font-weight: 700; color: var(--green); background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.2); padding: 5px 14px; border-radius: 100px; margin-bottom: 18px; }
.ep-modal-body .social-row { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.ep-modal-body .social-btn { display: flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 12px; background: #1e2924; border: 1px solid rgba(255,255,255,0.1); color: #f3f7f4; text-decoration: none; font-size: 13px; font-weight: 600; transition: all .2s; }
.ep-modal-body .social-btn:hover { border-color: var(--green); background: rgba(46,204,113,0.1); color: var(--green); }
