/* ===========================================================
   KD Coaching Institute — Global Stylesheet
   Theme: Dark navy + pearl text, refined gold accents
   =========================================================== */

:root {
  /* surfaces (dark) */
  --bg:        #0a1322;   /* darkest base / body */
  --pearl:     #0c1727;   /* alias kept; used as deep section / small pills */
  --pearl-2:   #101f37;   /* alternate sections / inputs / even rows */
  --surface:   #13243f;   /* cards */
  --surface-2: #1a2f51;   /* hover / elevated */

  /* brand navy (for gradients & marks) */
  --navy:      #0a1f44;
  --navy-700:  #081830;
  --navy-600:  #163561;
  --navy-500:  #1f5394;

  /* text */
  --white:     #ffffff;
  --ink:       #f3f6fc;   /* headings */
  --text:      #b9c4d6;   /* body */
  --muted:     #8493a8;   /* muted */

  /* accent */
  --gold:      #d4af6a;
  --gold-soft: #ecd9ab;

  /* lines */
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.06);

  --shadow-sm: 0 2px 12px rgba(0,0,0,.30);
  --shadow:    0 14px 38px rgba(0,0,0,.42);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.55);
  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Icons ---------- */
.icn {
  display: inline-block; vertical-align: middle; width: 1em; height: 1em;
  stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.card .ic .icn, .honor .ic .icn { width: 26px; height: 26px; }
.info-item .ic .icn { width: 22px; height: 22px; }
.achiever-card .medal .icn { width: 42px; height: 42px; }
.session-pill .icn { width: 16px; height: 16px; }
.contact-line .ic .icn { width: 16px; height: 16px; }
.fees-note-global .icn { width: 18px; height: 18px; vertical-align: -3px; margin-right: 4px; }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Inter", sans-serif; font-size: .76rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.section { padding: 92px 0; }
.section-head { max-width: 660px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: 50px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #0a1322; box-shadow: 0 10px 26px rgba(212,175,106,.28); }
.btn-primary:hover { background: var(--gold-soft); box-shadow: 0 14px 34px rgba(212,175,106,.40); }
.btn-navy { background: var(--surface-2); color: var(--ink); border-color: var(--line); }
.btn-navy:hover { background: var(--gold); color: #0a1322; border-color: var(--gold); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(255,255,255,.22); }
.btn-ghost:hover { border-color: var(--gold); background: var(--gold); color: #0a1322; }
.btn-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.32); }
.btn-light:hover { background: #fff; color: var(--navy); }

/* ===========================================================
   NAVBAR
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,19,34,.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.nav.scrolled { background: rgba(9,16,29,.94); box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, var(--navy-500), var(--navy));
  color: #fff; display: grid; place-items: center;
  font-family: "Playfair Display", serif; font-weight: 800; font-size: 1.15rem;
  letter-spacing: .5px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,175,106,.45);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Playfair Display", serif; color: var(--ink); font-size: 1.12rem; }
.brand-text span { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a.link {
  padding: 9px 14px; border-radius: 8px; font-weight: 500; font-size: .94rem;
  color: var(--text); transition: color .2s, background .2s;
}
.nav-links a.link:hover { color: var(--ink); background: rgba(255,255,255,.06); }
.nav-links a.link.active { color: var(--ink); font-weight: 600; }
.nav-links a.link.active::after {
  content: ""; display: block; height: 2px; width: 18px; margin: 3px auto 0; background: var(--gold); border-radius: 2px;
}
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; border-radius: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 78% 0%, #16315a 0%, #0b1830 52%, #070f1e 100%);
  color: #fff; padding: 158px 0 116px; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 16% 28%, rgba(212,175,106,.16), transparent 40%),
    radial-gradient(circle at 92% 82%, rgba(31,83,148,.45), transparent 46%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(circle at 70% 20%, #000, transparent 70%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.9rem); margin: 18px 0 20px; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead { color: rgba(255,255,255,.80); font-size: 1.13rem; max-width: 540px; margin-bottom: 32px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 32px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.hero-card .sub { color: rgba(255,255,255,.66); font-size: .92rem; margin-bottom: 22px; }
.hero-quote { border-left: 3px solid var(--gold); padding: 6px 0 6px 18px; font-family: "Playfair Display", serif; font-style: italic; font-size: 1.18rem; color: #fff; }
.hero-quote span { display: block; font-size: .76rem; font-style: normal; font-family: "Inter",sans-serif; color: var(--gold-soft); letter-spacing: .14em; text-transform: uppercase; margin-top: 12px; }

/* ---------- Stats strip ---------- */
.stats { position: relative; z-index: 3; margin-top: -46px; }
.stats-inner {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); overflow: hidden;
}
.stat { padding: 32px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: "Playfair Display", serif; font-size: 2.1rem; color: var(--ink); font-weight: 800; }
.stat .num .text-gold { color: var(--gold); }
.stat .label { font-size: .82rem; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }

/* ===========================================================
   PAGE HEADER (inner pages)
   =========================================================== */
.page-head {
  background: linear-gradient(135deg, #0b1830 0%, #16315a 100%);
  color: #fff; padding: 144px 0 72px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
}
.page-head::after { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(212,175,106,.20), transparent 70%); }
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin: 12px 0 10px; }
.page-head p { color: rgba(255,255,255,.78); max-width: 620px; font-size: 1.05rem; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.58); margin-bottom: 4px; }
.crumbs a:hover { color: var(--gold-soft); }

/* ===========================================================
   ABOUT / INTRO
   =========================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, var(--navy), var(--navy-500));
  min-height: 420px; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.about-media .monogram { font-family: "Playfair Display",serif; font-size: 6rem; opacity: .16; font-weight: 800; }
.about-media .badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2;
  background: rgba(10,19,34,.62); border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px; padding: 16px 18px; backdrop-filter: blur(6px);
}
.about-media .media-img, .founder-portrait .portrait-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; z-index: 1;
}
.about-media .badge strong { display: block; font-family: "Playfair Display",serif; color: var(--gold-soft); }
.about-text h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; }
.about-text .feature-list { margin: 22px 0; display: grid; gap: 12px; }
.about-text .feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.about-text .feature-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(212,175,106,.16);
  color: var(--gold); display: grid; place-items: center; font-size: .8rem; font-weight: 800; margin-top: 2px;
}
.about-text .feature-list strong { color: var(--ink); }

/* ===========================================================
   CARDS
   =========================================================== */
.card-grid { display: grid; gap: 24px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(212,175,106,.45); background: var(--surface-2); }
.card .ic {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-500), var(--navy)); color: var(--gold-soft);
  margin-bottom: 18px; border: 1px solid rgba(212,175,106,.25);
}
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .tag { display: inline-block; margin-top: 14px; font-size: .78rem; font-weight: 600; color: var(--gold); letter-spacing: .05em; }

.program { padding: 30px 28px; }
.program .lvl { font-size: .74rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.program h3 { margin: 6px 0 10px; }
.program ul.subs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.program ul.subs li { font-size: .8rem; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--text); padding: 5px 11px; border-radius: 50px; }

/* ===========================================================
   FACULTY
   =========================================================== */
.faculty-card { text-align: center; padding: 36px 24px; }
.avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  font-family: "Playfair Display",serif; font-weight: 800; font-size: 1.8rem; color: #fff;
  background: linear-gradient(135deg, var(--navy-500), var(--navy));
  border: 1px solid rgba(212,175,106,.35); box-shadow: var(--shadow-sm);
}
.faculty-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.faculty-card .role { font-size: .9rem; color: var(--muted); min-height: 42px; }
.faculty-card .chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.faculty-card .chips span { font-size: .75rem; background: rgba(255,255,255,.05); border: 1px solid var(--line); padding: 4px 10px; border-radius: 50px; color: var(--gold-soft); font-weight: 500; }
.staff-card .avatar { background: linear-gradient(135deg, var(--gold), #9c7b34); color: #0a1322; }

.subhead { text-align: center; margin: 66px 0 36px; }
.subhead h3 { font-size: 1.6rem; }
.subhead p { color: var(--muted); }

/* ===========================================================
   ACHIEVERS
   =========================================================== */
.achiever-card { text-align: center; padding: 32px 22px; position: relative; overflow: hidden; }
.achiever-card .ribbon {
  position: absolute; top: 16px; right: -34px; transform: rotate(45deg);
  background: var(--gold); color: #0a1322; font-size: .66rem; font-weight: 800;
  letter-spacing: .12em; padding: 5px 40px; text-transform: uppercase;
}
.achiever-card .cls { font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.achiever-card .name { font-family: "Playfair Display",serif; font-size: 1.5rem; color: var(--ink); margin: 8px 0 4px; font-weight: 700; }
.achiever-card .medal { color: var(--gold); margin-bottom: 8px; line-height: 1; }

.topper-card { display: flex; align-items: center; gap: 20px; padding: 28px; text-align: left; }
.topper-card .score {
  flex: none; width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-500), var(--navy)); color: #fff;
  display: grid; place-items: center; font-family: "Playfair Display",serif; font-weight: 800; font-size: 1.4rem;
  border: 2px solid var(--gold-soft);
}
.topper-card .meta .cls { color: var(--gold); }
.topper-card .meta .name { font-family: "Playfair Display",serif; font-size: 1.45rem; color: var(--ink); }

/* ===========================================================
   FOUNDER PAGE
   =========================================================== */
.founder-hero { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.founder-portrait {
  border-radius: var(--radius); min-height: 440px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy), var(--navy-600));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.founder-portrait .initials { font-family: "Playfair Display",serif; font-size: 5rem; font-weight: 800; color: rgba(255,255,255,.20); }
.founder-portrait .tagcard {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2; background: rgba(10,19,34,.62);
  border: 1px solid rgba(255,255,255,.22); border-radius: 12px; padding: 14px 18px; backdrop-filter: blur(6px);
}
.founder-portrait .tagcard strong { font-family: "Playfair Display",serif; color: #fff; display: block; }
.founder-portrait .tagcard span { color: var(--gold-soft); font-size: .85rem; }
.founder-hero .role { color: var(--gold); font-weight: 700; letter-spacing: .04em; }
.founder-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 6px 0 14px; }
.founder-hero p { color: var(--text); }
.founder-hero p em, .about-text p em { color: var(--gold-soft); font-style: italic; }

.timeline { position: relative; margin-top: 10px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 26px 0; }
.timeline li::before { content: ""; position: absolute; left: -30px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 3px solid var(--gold); }
.timeline .yr { font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; }
.timeline h4 { font-family: "Playfair Display",serif; font-size: 1.15rem; color: var(--ink); margin: 2px 0 4px; }
.timeline p { color: var(--muted); font-size: .95rem; }

.honor-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.honor {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.honor:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--surface-2); }
.honor .ic { color: var(--gold); margin-bottom: 10px; line-height: 1; }
.honor h4 { font-size: 1.08rem; color: var(--ink); margin-bottom: 4px; }
.honor p { color: var(--muted); font-size: .92rem; }

.quote-band {
  background: linear-gradient(135deg, #0b1830, #16315a); color: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
}
.quote-band::before { content: "\201C"; position: absolute; top: -20px; left: 30px; font-family: "Playfair Display",serif; font-size: 9rem; color: rgba(212,175,106,.28); }
.quote-band blockquote { font-family: "Playfair Display",serif; font-size: clamp(1.4rem,3vw,2rem); font-style: italic; max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.quote-band .by { margin-top: 18px; color: var(--gold-soft); letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; }

/* ===========================================================
   WAITLIST
   =========================================================== */
.waitlist { background: #08111f; color: #fff; position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.waitlist::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 14% 18%, rgba(212,175,106,.16), transparent 42%),
              radial-gradient(circle at 88% 92%, rgba(31,83,148,.40), transparent 46%);
}
.waitlist .container { position: relative; z-index: 2; }
.waitlist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.waitlist h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.waitlist .lead { color: rgba(255,255,255,.80); margin: 14px 0 24px; }
.waitlist .perks { display: grid; gap: 12px; }
.waitlist .perks li { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.88); }
.waitlist .perks .tick { flex:none; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: #0a1322; display: grid; place-items: center; font-weight: 800; font-size: .8rem; }
.session-pill {
  display:inline-flex; align-items:center; gap:8px; background: rgba(212,175,106,.14);
  border: 1px solid rgba(212,175,106,.4); color: var(--gold-soft); font-weight:600; font-size:.85rem;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 18px;
}

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); color: var(--text); }
.form-card h3 { color: var(--ink); margin-bottom: 4px; font-size: 1.4rem; }
.form-card .hint { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--ink); background: rgba(255,255,255,.04);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #5d6b81; }
.field select { color: var(--ink); }
.field select option { background: #122340; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.06); box-shadow: 0 0 0 3px rgba(212,175,106,.16); }
.field textarea { resize: vertical; min-height: 80px; }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.two > div { margin: 0; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 20px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(212,175,106,.16); color: var(--gold); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 16px; }
.form-success h3 { color: var(--ink); }
.form-success p { color: var(--muted); }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.info-list { display: grid; gap: 16px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), background .25s;
}
.info-item:hover { transform: translateY(-3px); background: var(--surface-2); }
.info-item .ic {
  flex: none; width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-500), var(--navy)); color: var(--gold-soft); border: 1px solid rgba(212,175,106,.25);
}
.info-item h4 { font-size: 1.02rem; color: var(--ink); margin-bottom: 3px; font-family: "Inter",sans-serif; font-weight: 700; }
.info-item p, .info-item a { color: var(--text); font-size: .96rem; }
.info-item a:hover { color: var(--gold); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ===========================================================
   CTA band
   =========================================================== */
.cta-band { background: var(--pearl-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-inner { text-align: center; padding: 66px 0; }
.cta-inner h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.cta-inner p { color: var(--muted); max-width: 560px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: #060d1a; color: rgba(255,255,255,.66); padding: 62px 0 26px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer .brand-text strong { color: #fff; }
.footer p { font-size: .92rem; margin-top: 14px; max-width: 280px; }
.footer h5 { color: #fff; font-family: "Inter",sans-serif; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul.fl { display: grid; gap: 10px; }
.footer ul.fl a { font-size: .94rem; transition: color .2s; }
.footer ul.fl a:hover { color: var(--gold); }
.footer .contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; margin-bottom: 12px; }
.footer .contact-line .ic { color: var(--gold); margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ===========================================================
   FEES & TIMETABLE PAGE
   =========================================================== */
.anchor-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 auto 30px; }
.anchor-nav a {
  font-size: .85rem; font-weight: 600; color: var(--ink); background: var(--surface); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 50px; transition: all .2s var(--ease); box-shadow: var(--shadow-sm);
}
.anchor-nav a:hover { background: var(--gold); color: #0a1322; border-color: var(--gold); transform: translateY(-2px); }

.fees-note-global {
  background: rgba(212,175,106,.1); border: 1px solid rgba(212,175,106,.32); border-radius: 12px;
  padding: 16px 20px; font-size: .92rem; color: var(--text); margin: 0 auto 32px; max-width: 880px; text-align: center;
}
.fees-note-global strong { color: var(--gold-soft); }

.class-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); margin-bottom: 26px; scroll-margin-top: 100px; }
.class-block .block-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.block-head .lvl-badge {
  flex: none; min-width: 56px; height: 56px; padding: 0 14px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-500), var(--navy)); color: var(--gold-soft);
  font-family: "Playfair Display", serif; font-weight: 800; font-size: 1.15rem; border: 1px solid rgba(212,175,106,.3);
}
.block-head h2 { font-size: 1.6rem; margin: 0; }
.block-head .sub { color: var(--muted); font-size: .9rem; margin-top: 2px; }

.panel { margin-top: 28px; }
.panel:first-of-type { margin-top: 0; }
.panel-label { display: flex; align-items: center; gap: 9px; font-family: "Inter", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.panel-label::before { content: ""; width: 20px; height: 2px; background: var(--gold); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; border: 1px solid var(--line); }
.data-table { width: 100%; border-collapse: collapse; font-size: .92rem; background: transparent; min-width: 460px; }
.data-table thead th {
  background: rgba(255,255,255,.05); color: var(--gold-soft); font-family: "Inter", sans-serif; font-weight: 600;
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; text-align: left; padding: 13px 14px; white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.data-table tbody td { padding: 11px 14px; border-bottom: 1px solid var(--line-2); color: var(--text); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,.025); }
.data-table td.amount { font-weight: 600; color: var(--ink); white-space: nowrap; }
.data-table td.total { font-weight: 700; color: var(--gold); white-space: nowrap; }
.data-table .subj { font-weight: 600; color: var(--ink); }

.tt-table th, .tt-table td { text-align: center; }
.tt-table th:first-child, .tt-table td:first-child { text-align: left; font-weight: 700; color: var(--ink); white-space: nowrap; background: rgba(255,255,255,.04); }
.tt-table .em { color: var(--muted); }
.tt-note { font-size: .85rem; color: var(--muted); margin-top: 12px; }
.tt-note strong { color: var(--gold-soft); }

.notes { margin-top: 16px; display: grid; gap: 9px; }
.notes li { display: flex; gap: 11px; font-size: .9rem; color: var(--muted); }
.notes .dot { flex: none; color: var(--gold); font-weight: 800; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .waitlist-grid, .founder-hero, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .honor-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .founder-portrait { min-height: 340px; }
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: #0b1424; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 18px 24px 26px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .35s var(--ease); z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a.link { padding: 13px 14px; border-radius: 10px; }
  .nav-links a.link.active::after { display: none; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .cols-3, .cols-4, .cols-2 { grid-template-columns: 1fr; }
  .field.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-band { padding: 40px 24px; }
  .topper-card { flex-direction: column; text-align: center; }
  .class-block { padding: 22px; }
  .block-head h2 { font-size: 1.35rem; }
}
