/* ═══════════════════════════════════════════════
   VentureSEA — Advisor Landing Page Styles
   Light theme — aligned with expansion-needs design system
   ═══════════════════════════════════════════════ */

:root {
  --navy:         #1D3260;
  --navy-deep:    #142449;
  --navy-light:   #243d78;
  --blue-mid:     #045DE9;
  --blue-bright:  #09C6F9;
  --orange:       #FF9122;
  --orange-warm:  #FFBA49;
  --orange-tint:  #FFF4E6;
  --blue-tint:    #E8EFFE;
  --green:        #22c55e;
  --green-tint:   #f0fdf4;
  --green-border: rgba(34,197,94,0.2);

  --ink:         #1D3260;
  --paper:       #ffffff;
  --canvas:      #f6f8fc;
  --line:        #e6eaf2;
  --line-strong: #d3d9e6;

  --slate-50:  #f7f9fc;
  --slate-100: #f1f5f9;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 12px rgba(15,23,42,0.07), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-md: 0 12px 28px rgba(15,23,42,0.09), 0 4px 10px rgba(15,23,42,0.05);

  /* Legacy vars kept for any inline refs */
  --cyan: #09C6F9;
  --text: #1D3260;
  --text-dim: #64748b;
  --text-faint: #94a3b8;
  --border: #e6eaf2;
  --border-cyan: rgba(4,93,233,0.2);
}

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

html { background: var(--canvas); }

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(9,198,249,0.05) 0%, transparent 60%),
    radial-gradient(50% 40% at 100% 100%, rgba(255,145,34,0.04) 0%, transparent 70%),
    var(--canvas);
  background-attachment: fixed;
  min-height: 100vh; color: var(--ink); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 32px; height: 64px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-left { display: flex; align-items: center; gap: 14px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 8px; }
.nav-logo img { width: auto; object-fit: contain; }
.logo-text { font-size: 18px; font-weight: 700; }
.logo-venture { color: var(--navy); }
.logo-sea { color: var(--orange); }
.nav-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--green); background: var(--green-tint);
  border: 1px solid var(--green-border); border-radius: 6px; padding: 3px 9px;
}
.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-center a {
  font-size: 13px; font-weight: 600; color: var(--slate-500);
  text-decoration: none; padding: 7px 14px; border-radius: var(--radius-sm); transition: all .2s;
}
.nav-center a:hover { background: var(--slate-100); color: var(--ink); }
.nav-center a.active { background: var(--slate-100); color: var(--navy); font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-right-side { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.btn-nav-ghost {
  background: var(--paper); border: 1px solid var(--line-strong);
  color: var(--slate-600); font-family: Poppins, sans-serif; font-size: 13px;
  font-weight: 500; border-radius: var(--radius-sm); padding: 7px 16px;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s;
}
.btn-nav-ghost:hover { border-color: var(--blue-mid); color: var(--ink); }
.btn-nav-cta {
  background: linear-gradient(135deg,var(--orange),var(--orange-warm));
  color: #fff; font-family: Poppins, sans-serif; font-size: 13px;
  font-weight: 700; border: none; border-radius: var(--radius-sm); padding: 7px 18px;
  cursor: pointer; text-decoration: none; display: inline-block;
  box-shadow: 0 4px 12px rgba(255,145,34,0.2);
}
#nav-signin-btn {
  font-size: 12px; font-weight: 700; color: #1D3260; text-decoration: none;
  padding: 7px 14px; background: linear-gradient(135deg,var(--orange),var(--orange-warm));
  border-radius: var(--radius-sm);
}
#nav-advisor-signin-btn {
  font-size: 12px; font-weight: 600; color: var(--slate-600); text-decoration: none;
  padding: 7px 14px; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); background: var(--paper); transition: all .2s;
}
#nav-advisor-signin-btn:hover { border-color: var(--slate-400); color: var(--ink); }

/* ── HERO ── */
.hero {
  max-width: 960px; margin: 0 auto;
  padding: 100px 40px 60px; text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); background: var(--green-tint);
  border: 1px solid var(--green-border); border-radius: 20px; padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(34px,5vw,58px); font-weight: 900; line-height: 1.1;
  letter-spacing: -1px; color: var(--ink); margin-bottom: 20px;
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: 18px; color: var(--slate-500); line-height: 1.7;
  max-width: 640px; margin: 0 auto 36px;
}
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary-lg {
  background: linear-gradient(135deg,var(--orange),var(--orange-warm));
  color: #fff; font-family: Poppins, sans-serif; font-size: 16px; font-weight: 700;
  border: none; border-radius: var(--radius-lg); padding: 16px 36px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s, box-shadow .15s; text-decoration: none;
  box-shadow: 0 4px 16px rgba(255,145,34,0.25);
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,145,34,0.3); }
.btn-ghost-lg {
  background: var(--paper); border: 1px solid var(--line-strong);
  color: var(--slate-700); font-family: Poppins, sans-serif; font-size: 15px; font-weight: 600;
  border-radius: var(--radius-lg); padding: 15px 32px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: all .2s; box-shadow: var(--shadow-xs);
}
.btn-ghost-lg:hover { border-color: var(--blue-mid); color: var(--blue-mid); background: var(--blue-tint); }

/* ── STATS ROW ── */
.stats-row {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding: 36px 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  max-width: 800px; margin: 0 auto 60px; background: var(--paper);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.stat-item { text-align: center; }
.stat-num   { font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label { font-size: 12px; color: var(--slate-500); margin-top: 4px; }

/* ── SECTION ── */
section { max-width: 1000px; margin: 0 auto; padding: 0 40px 72px; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 10px;
}
.section-title { font-size: clamp(24px,3vw,34px); font-weight: 800; margin-bottom: 14px; color: var(--ink); }
.section-sub { font-size: 15px; color: var(--slate-500); line-height: 1.7; max-width: 560px; margin-bottom: 36px; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; }
.step-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.step-card:hover { border-color: rgba(4,93,233,0.25); box-shadow: var(--shadow); }
.step-num {
  font-size: 48px; font-weight: 900; color: rgba(29,50,96,0.04);
  position: absolute; top: 12px; right: 16px; line-height: 1;
}
.step-icon  { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.step-desc  { font-size: 13px; color: var(--slate-500); line-height: 1.6; }

/* ── WHAT YOU GET ── */
.perks-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 16px; }
.perk-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-xs); transition: border-color .2s, box-shadow .2s;
}
.perk-card:hover { border-color: rgba(255,145,34,0.3); box-shadow: var(--shadow); }
.perk-icon {
  width: 44px; height: 44px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--orange-tint); border: 1px solid rgba(255,145,34,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.perk-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.perk-desc  { font-size: 12px; color: var(--slate-500); line-height: 1.6; }

/* ── CRITERIA ── */
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 14px; }
.criteria-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--blue-tint); border: 1px solid rgba(4,93,233,0.12);
  border-radius: var(--radius); padding: 16px 18px;
}
.criteria-check {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  background: var(--green-tint); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--green);
}
.criteria-text { font-size: 13px; color: var(--slate-700); line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.testimonial-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-size: 14px; color: var(--slate-700); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--orange-tint);
  border: 1px solid rgba(255,145,34,0.25); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.author-name  { font-size: 13px; font-weight: 700; color: var(--ink); }
.author-title { font-size: 11px; color: var(--slate-500); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg,var(--orange-tint),var(--blue-tint));
  border: 1px solid rgba(255,145,34,0.2); border-radius: var(--radius-xl);
  padding: 56px 48px; text-align: center; margin-bottom: 80px;
  box-shadow: var(--shadow-sm);
}
.cta-banner h2 { font-size: clamp(24px,3vw,36px); font-weight: 800; margin-bottom: 12px; color: var(--ink); }
.cta-banner p  { font-size: 15px; color: var(--slate-500); margin-bottom: 28px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 40px; text-align: center;
  font-size: 12px; color: var(--slate-400); background: var(--paper);
}
footer a { text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav          { padding: 0 20px; }
  .hero        { padding: 52px 20px 40px; }
  section      { padding: 0 20px 52px; }
  .stats-row   { gap: 28px; padding: 24px 20px; }
  .cta-banner  { padding: 36px 24px; }
  footer       { padding: 24px 20px; }
}
