/* ============================================================
   LANDING.CSS — index.html only
   Hero · Stats · How it works · Features · Testimonials · CTA
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 80px 24px 72px;
  position: relative; overflow: hidden;
}

/* Dot grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(200,150,44,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridDrift 28s linear infinite;
}
@keyframes gridDrift { 0% { background-position: 0 0; } 100% { background-position: 30px 30px; } }

/* Noise grain overlay */
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Ambient glow */
.hero-glow {
  position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,150,44,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto; text-align: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,44,0.1); border: 1px solid rgba(200,150,44,0.25);
  color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: 4px; padding: 6px 14px;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(12px);
  animation: heroIn 0.6s var(--ease) forwards 0.1s;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: tagPulse 2.2s ease infinite;
}
@keyframes tagPulse { 0%,100%{opacity:0.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.4)} }

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 8vw, 68px);
  font-weight: 800; line-height: 1.06; letter-spacing: -1.5px;
  color: var(--offwhite); margin-bottom: 20px;
}
.hero-h1 .word {
  display: inline-block;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.hero-h1 .word.gold { color: var(--gold); }
.hero-h1 .word.show { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: clamp(15px, 2.5vw, 17px); color: var(--muted);
  line-height: 1.72; max-width: 480px; margin: 0 auto 36px;
  opacity: 0; transform: translateY(14px);
  animation: heroIn 0.6s var(--ease) forwards 0.7s;
}

.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  animation: heroIn 0.6s var(--ease) forwards 0.85s;
}

@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  z-index: 2;
  opacity: 0; animation: heroIn 1s var(--ease) forwards 1.3s;
}
.scroll-hint span { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: #2e4060; }
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(200,150,44,0.7), transparent);
  animation: lineAnim 2.4s ease infinite;
}
@keyframes lineAnim { 0%,100%{opacity:0.25} 50%{opacity:1} }

/* ── Stats ───────────────────────────────────────────────────── */
.stats {
  background: var(--ivory);
  border-bottom: 1px solid var(--bd-light);
  padding: 44px 24px;
}
.stats-inner {
  max-width: 760px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; color: var(--gold); line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #8a9aaa; margin-top: 6px;
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 28px 16px; }
}

/* ── Section chrome ──────────────────────────────────────────── */
.sec-label {
  text-align: center; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-d);
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; letter-spacing: -0.5px; line-height: 1.18;
  max-width: 480px; margin: 0 auto 52px;
}
.sec-title.light { color: var(--offwhite); }
.sec-title.dark  { color: var(--dark); }

/* ── How it works ────────────────────────────────────────────── */
.hiw {
  background: var(--slate); padding: 80px 24px;
  position: relative; overflow: hidden;
}
.hiw::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,44,0.3), transparent);
}
.hiw-steps {
  max-width: 840px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px;
}
.hiw-step {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.05); border-radius: var(--r);
  background: rgba(255,255,255,0.025);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hiw-step:hover { background: rgba(255,255,255,0.045); border-color: rgba(200,150,44,0.18); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 16px; font-weight: 700; color: var(--gold);
  margin-bottom: 20px;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--offwhite); margin-bottom: 10px; letter-spacing: -0.2px; }
.step-body  { font-size: 14px; color: var(--muted); line-height: 1.68; }

@media (max-width: 640px) { .hiw-steps { grid-template-columns: 1fr; gap: 8px; } }

/* ── Features ────────────────────────────────────────────────── */
.features { background: var(--ivory); padding: 80px 24px; }
.features-grid {
  max-width: 840px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}
.feature-card {
  background: #fff; border: 1px solid var(--bd-light);
  border-radius: 10px; padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.09);
  border-color: rgba(200,150,44,0.2);
}
.feature-icon {
  width: 38px; height: 38px; background: rgba(200,150,44,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.2px; }
.feature-body  { font-size: 13px; color: #5a6a7a; line-height: 1.68; }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ────────────────────────────────────────────── */
.testi {
  background: var(--navy); padding: 80px 24px;
  position: relative;
}
.testi::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,44,0.25), transparent);
}
.testi-grid {
  max-width: 840px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
}
.testi-card {
  background: var(--slate); border: 1px solid var(--bd-dark);
  border-radius: 10px; padding: 28px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.testi-card:hover { transform: translateY(-3px); border-color: rgba(200,150,44,0.2); }
.testi-quote { font-family: var(--font-d); font-size: 32px; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.testi-text  { font-size: 14px; color: #c0ccd8; line-height: 1.72; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--steel); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--offwhite);
}
.testi-name { font-size: 13px; font-weight: 700; color: var(--offwhite); }
.testi-visa { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 640px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-sec {
  background: var(--ivory); padding: 88px 24px; text-align: center;
  border-top: 1px solid var(--bd-light);
}
.cta-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.12;
  color: var(--dark); max-width: 480px; margin: 0 auto 14px;
}
.cta-title span { color: var(--gold); }
.cta-sub { font-size: 16px; color: #5a6a7a; max-width: 400px; margin: 0 auto 36px; line-height: 1.65; }
