/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  gap: 4rem;
}

.hero-bg-dots {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(0,201,167,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow {
  position: fixed;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(0,201,167,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  flex: 1;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  background: rgba(0,201,167,0.08);
  border: 1px solid rgba(0,201,167,0.22);
  color: rgba(77,255,214,0.9);
  border-radius: 4px;
  padding: 6px 14px;
  margin-bottom: 2rem;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c9a7;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-h1 em {
  font-style: normal;
  color: var(--teal-light);
  position: relative;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-light);
  letter-spacing: -0.5px;
}

.stat-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-div {
  width: 1px;
  height: 30px;
  background: var(--border);
}

.hero-visual {
  flex: 0 0 360px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-card {
  background: var(--navy-3);
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 0 80px rgba(0,201,167,0.06), 0 24px 60px rgba(0,0,0,0.4);
}

.hc-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  font-weight: 600;
}

.hc-range {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-light);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.hc-detail { font-size: 12px; color: var(--text-muted); margin-bottom: 1.5rem; }

.hc-bars { display: flex; flex-direction: column; gap: 10px; }
.hc-bar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-muted); }
.hc-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.hc-bar-fill { height: 100%; background: var(--teal); border-radius: 3px; }

.hc-update {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hc-up { color: var(--teal); font-size: 10px; }

/* TRUST BAR */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  background: var(--navy-2);
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.trust-logo { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-sep { color: var(--text-dim); }

/* TRADES SECTION */
.trades-section { padding: 6rem 0; }

.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trade-tile {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.trade-tile.visible { opacity: 1; transform: none; transition: opacity 0.4s ease, transform 0.4s ease, background var(--transition), border-color var(--transition); }

.trade-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: var(--transition);
}

.trade-tile:hover { background: rgba(0,201,167,0.04); border-color: rgba(0,201,167,0.25); transform: translateY(-3px); }
.trade-tile:hover::before { opacity: 1; }

.tile-icon { font-size: 26px; margin-bottom: 6px; }
.tile-name { font-size: 13px; font-weight: 600; color: var(--text); }
.tile-range { font-size: 11px; color: var(--text-muted); }
.tile-arrow { position: absolute; bottom: 1.25rem; right: 1.25rem; color: var(--teal); opacity: 0; transition: var(--transition); font-size: 14px; }
.trade-tile:hover .tile-arrow { opacity: 1; }

/* HOW IT WORKS */
.how-section { padding: 6rem 0; background: var(--navy-2); }

.steps-row { display: flex; align-items: flex-start; gap: 0; margin-bottom: 3rem; }

.step-card {
  flex: 1;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.step-card.visible { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease; }

.step-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 800;
  color: rgba(0,201,167,0.15);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.step-title { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-body { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.step-connector { font-size: 20px; color: var(--teal); padding-top: 2.75rem; opacity: 0.35; }
.how-cta { text-align: center; }

/* TESTIMONIALS */
.testimonials-section { padding: 6rem 0; }

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

.testimonial-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--serif);
  font-size: 60px;
  color: rgba(0,201,167,0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card.visible { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease; }

.t-stars { color: var(--teal); font-size: 13px; margin-bottom: 1rem; letter-spacing: 3px; }
.t-quote { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.t-author { font-size: 12px; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* PRICING PREVIEW */
.pricing-preview { padding: 6rem 0; background: var(--navy-2); }

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

.plan-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.plan-card.visible { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease; }
.plan-card.plan-featured { border-color: rgba(0,201,167,0.4); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c9a7, #4dffd6);
  color: #0b1120;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.plan-name { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 2px; }
.plan-price { font-family: var(--serif); font-size: 44px; font-weight: 800; color: var(--text); letter-spacing: -1.5px; }
.plan-period { font-size: 13px; color: var(--text-dim); margin-bottom: 1.5rem; }

.plan-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 9px; }
.plan-features li { font-size: 13px; color: var(--text-muted); }
.plan-features li.dim { color: var(--text-dim); }

/* FINAL CTA */
.final-cta { padding: 8rem 0; text-align: center; position: relative; overflow: hidden; }

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(0,201,167,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-h2 { font-family: var(--serif); font-size: clamp(30px, 5vw, 50px); font-weight: 800; color: var(--text); margin-bottom: 1rem; letter-spacing: -1px; }
.cta-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 2rem; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; background: var(--navy-2); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo { font-family: var(--serif); font-size: 20px; font-weight: 800; color: var(--teal-light); margin-bottom: 1rem; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; font-size: 12px; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 7rem 1.5rem 4rem; gap: 2.5rem; }
  .hero-visual { flex: none; width: 100%; }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { flex-direction: column; }
  .step-connector { display: none; }
  .testimonials-grid, .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .trades-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
