@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:       #08121f;
  --bg-2:     #0b1929;
  --panel:    #0e1e30;
  --panel-2:  #112338;
  --text:     #eef4ff;
  --muted:    #8fa8c8;
  --line:     rgba(255,255,255,0.09);
  --line-s:   rgba(255,255,255,0.16);
  --gold:     #f5a623;
  --gold-2:   #ffd080;
  --gold-soft:rgba(245,166,35,0.12);
  --teal:     #6ee7f7;
  --teal-2:   #7c9cff;
  --good:     #22c55e;
  --good-soft:rgba(34,197,94,0.13);
  --shadow:   0 24px 64px rgba(0,0,0,0.45);
  --radius:   20px;
  --radius-sm:14px;
  --content:  1200px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(245,166,35,0.07), transparent),
    radial-gradient(ellipse 60% 30% at 80% 20%, rgba(110,231,247,0.08), transparent),
    linear-gradient(180deg, #08121f 0%, #0b1622 50%, #060e18 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }

/* ── NAV ── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6,10,18,0.82);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--content); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 36px; height: 36px; background: var(--gold);
  border-radius: 10px; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 18px; color: #08121f;
}
.brand-title { font-weight: 700; font-size: 16px; color: var(--text); }
.brand-sub { font-size: 11px; color: var(--muted); }

.nav-links { display: flex; gap: 2px; margin-left: 16px; }
.nav-link {
  padding: 7px 14px; border-radius: 8px; font-size: 14px;
  color: var(--muted); transition: color .15s, background .15s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-actions { display: flex; gap: 10px; margin-left: auto; align-items: center; }
.nav-toggle {
  display: none; width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--line); color: var(--text); font-size: 18px;
  align-items: center; justify-content: center;
}
.mobile-panel {
  display: none; flex-direction: column; gap: 4px;
  padding: 14px 24px 20px; border-top: 1px solid var(--line);
  background: rgba(6,10,18,0.96);
}
.mobile-panel a { padding: 10px 8px; color: var(--muted); font-size: 15px; border-radius: 8px; }
.mobile-panel a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-panel.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px; border-radius: 10px;
  font-weight: 600; font-size: 15px; transition: all .2s; white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: #08121f;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover { background: var(--gold-2); box-shadow: 0 6px 28px rgba(245,166,35,0.45); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.07); color: var(--text);
  border: 1px solid var(--line-s);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--text); }
.btn.small { padding: 9px 18px; font-size: 13px; border-radius: 8px; }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold-soft); }

/* ── LAYOUT ── */
.container { max-width: var(--content); margin: 0 auto; padding: 40px 24px 80px; }
.section { padding: 80px 0; }
.section-inner { max-width: var(--content); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.kicker { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
h1 { font-family: var(--serif); font-size: clamp(38px, 6vw, 70px); line-height: 1.08; font-weight: 700; margin: 0; }
h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); line-height: 1.15; font-weight: 700; margin: 0 0 16px; }
h3 { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 26px); line-height: 1.25; font-weight: 600; margin: 0 0 10px; }
h4 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
p { margin: 0 0 16px; }
.lead { font-size: clamp(17px, 2vw, 21px); color: var(--muted); line-height: 1.65; }
.sublead { font-size: 16px; color: var(--muted); }
.small { font-size: 14px; color: var(--muted); }

/* ── HERO ── */
.hero-section {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: brightness(0.35) saturate(0.7);
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,18,31,0.95) 45%, rgba(8,18,31,0.5) 80%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--content); margin: 0 auto; padding: 80px 24px;
  width: 100%;
}
.hero-inner { max-width: 640px; }
.hero-inner .eyebrow { margin-bottom: 20px; }
.hero-inner h1 { margin-bottom: 24px; }
.hero-inner .lead { margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-trust-lbl { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── LOGO STRIP ── */
.logo-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 0; background: rgba(255,255,255,0.02);
}
.logo-strip-inner { max-width: var(--content); margin: 0 auto; padding: 0 24px; }
.logo-strip-label { font-size: 13px; color: var(--muted); margin-bottom: 18px; text-align: center; }
.logo-row { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; justify-content: center; }
.logo-item { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: .03em; }

/* ── STATS ── */
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat {
  padding: 28px 24px; border-radius: var(--radius);
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  text-align: center;
}
.stat strong {
  display: block; font-family: var(--serif); font-size: 48px;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat span { font-size: 14px; color: var(--muted); }

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

/* ── CARDS ── */
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--line-s); box-shadow: var(--shadow); }
.card-gold { border-color: rgba(245,166,35,0.25); }
.card-teal { border-color: rgba(110,231,247,0.2); }

/* ── COURSE CARDS (Coursera-like) ── */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.course-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.course-thumb {
  height: 180px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #112338, #0e2040);
}
.course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,18,31,0.7), transparent);
  display: flex; align-items: flex-end; padding: 16px;
}
.course-badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px;
  background: var(--gold); color: #08121f;
}
.course-body { padding: 20px; }
.course-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.course-level { font-size: 12px; color: var(--muted); }
.course-title { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.course-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.course-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); }
.course-price { font-weight: 700; color: var(--gold); font-family: var(--serif); font-size: 18px; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }

/* ── SECTION HEADER ── */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; gap: 20px; flex-wrap: wrap;
}
.section-head p { margin: 0; color: var(--muted); max-width: 400px; text-align: right; }

/* ── STEPS / PILLAR ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  padding: 24px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  position: relative;
}
.step-num {
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}

/* ── PHOTO FEATURE BLOCK ── */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-photo { border-radius: var(--radius); overflow: hidden; position: relative; }
.feature-photo img { width: 100%; height: 400px; object-fit: cover; }
.feature-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(to top, rgba(8,18,31,0.9), transparent);
}

/* ── SCORECARD PREVIEW ── */
.score-preview {
  background: var(--panel-2); border: 1px solid var(--line-s);
  border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden;
}
.score-preview::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12), transparent 70%);
}
.score-num { font-family: var(--serif); font-size: 72px; font-weight: 700; color: var(--gold); line-height: 1; }
.meter-track { height: 8px; background: rgba(255,255,255,0.07); border-radius: 999px; overflow: hidden; margin: 8px 0; }
.meter-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--teal)); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.pricing-card.featured {
  border-color: var(--gold); background: linear-gradient(135deg, var(--panel-2), var(--panel));
  box-shadow: 0 0 0 1px rgba(245,166,35,0.15), 0 32px 80px rgba(0,0,0,0.4);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #08121f; font-size: 11px; font-weight: 800;
  padding: 4px 14px; border-radius: 20px; letter-spacing: .05em; text-transform: uppercase;
}
.pricing-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 8px; }
.pricing-price { font-family: var(--serif); font-size: 48px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 24px; vertical-align: super; }
.pricing-price span { font-size: 16px; color: var(--muted); }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.pricing-features li { display: flex; gap: 10px; font-size: 14px; }
.pricing-features li::before { content: '✦'; color: var(--gold); flex-shrink: 0; }
.pricing-features li.locked::before { content: '○'; color: var(--muted); }
.pricing-features li.locked { color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-text { font-size: 15px; color: var(--muted); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; background: var(--panel-2); flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative; overflow: hidden; border-radius: var(--radius);
  margin: 0 24px;
}
.cta-banner-photo { position: absolute; inset: 0; }
.cta-banner-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.25) saturate(0.5); }
.cta-banner-content {
  position: relative; z-index: 1;
  padding: 80px 60px; text-align: center;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(110,231,247,0.07));
}

/* ── PILLS / TAGS ── */
.pill {
  display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.07); color: var(--muted);
}
.pill.gold { background: var(--gold-soft); color: var(--gold); }
.pill.teal { background: rgba(110,231,247,0.1); color: var(--teal); }
.pill.good { background: var(--good-soft); color: var(--good); }

/* ── STUBS ── */
.stub-banner {
  padding: 18px 24px; border-radius: var(--radius-sm); margin-bottom: 28px;
  background: var(--gold-soft); border: 1px dashed rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.stub-text { font-size: 14px; color: var(--gold); }

/* ── BULLET LIST ── */
.bullet-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.bullet-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 14px; }
.bullet-list li::before { content: '✦'; color: var(--teal); flex-shrink: 0; margin-top: 1px; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--line); background: rgba(4,8,16,0.9); margin-top: auto; }
.footer-wrap { max-width: var(--content); margin: 0 auto; padding: 48px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-brand { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 280px; margin-top: 8px; }
.footer-email { font-size: 14px; color: var(--teal); margin-top: 16px; }
.footer-note { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 20px; font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ── MISC ── */
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.center { text-align: center; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

/* ── PLACEHOLDER ── */
.placeholder-block {
  border: 1px dashed rgba(255,255,255,0.12); border-radius: var(--radius-sm);
  min-height: 200px; display: grid; place-items: center; text-align: center;
  padding: 32px; color: var(--muted); font-size: 14px;
  background: rgba(255,255,255,0.02);
}

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .grid-4, .steps { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .course-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials { grid-template-columns: repeat(2,1fr); }
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:820px) {
  .nav-links, .nav-actions .nav-desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-2, .grid-3, .course-grid, .testimonials, .pricing-grid { grid-template-columns: 1fr; }
  .hero-section { min-height: 70vh; }
  .cta-banner-content { padding: 48px 24px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head p { text-align: left; max-width: 100%; }
}
@media (max-width:620px) {
  .stat-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-trust { gap: 20px; }
  .btn { width: 100%; }
  .container { padding: 28px 16px 60px; }
}
@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
