/* ============================================================
   ATLANOVA GLOBAL SCHOOL — Design System
   Midnight Navy / Royal Purple / Champagne Gold
   ============================================================ */

:root{
  --navy: #0d1a3b;
  --navy-2: #16234f;
  --navy-3: #1f2d5e;
  --purple: #4b2e83;
  --purple-light: #7c5cb8;
  --gold: #c6a15b;
  --gold-light: #e6d3a3;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --gray-100: #f1efe9;
  --gray-200: #e6e3db;
  --gray-400: #b9b6ac;
  --gray-500: #8b887f;
  --charcoal: #211f2b;
  --ink: #1a1a24;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(13,26,59,0.06);
  --shadow-md: 0 12px 32px rgba(13,26,59,0.10);
  --shadow-lg: 0 24px 60px rgba(13,26,59,0.16);

  --container: 1220px;

  /* Glass / premium layer */
  --glass-bg: rgba(255,255,255,0.6);
  --glass-bg-strong: rgba(255,255,255,0.78);
  --glass-border: rgba(255,255,255,0.5);
  --glass-dark-bg: rgba(22,35,79,0.55);
  --glass-dark-border: rgba(255,255,255,0.14);
  --glass-shadow: 0 8px 32px rgba(13,26,59,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  --glass-shadow-dark: 0 24px 60px rgba(5,10,26,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--off-white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  position:relative;
}

/* Ambient gradient field — sits behind every page so glass panels have
   something soft to blur/refract, giving the "premium glass" look. */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(38% 32% at 8% 6%, rgba(75,46,131,0.14) 0%, rgba(75,46,131,0) 70%),
    radial-gradient(32% 30% at 96% 12%, rgba(198,161,91,0.16) 0%, rgba(198,161,91,0) 70%),
    radial-gradient(40% 34% at 50% 100%, rgba(13,26,59,0.09) 0%, rgba(13,26,59,0) 70%),
    var(--off-white);
  pointer-events:none;
}

/* ---------- Glass / premium surfaces ---------- */
.glass{
  background:var(--glass-bg);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  backdrop-filter:blur(18px) saturate(160%);
  border:1px solid var(--glass-border);
  box-shadow:var(--glass-shadow);
}
.glass-dark{
  background:var(--glass-dark-bg);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  backdrop-filter:blur(20px) saturate(160%);
  border:1px solid var(--glass-dark-border);
  box-shadow:var(--glass-shadow-dark);
}
.glass-sheen{ position:relative; overflow:hidden; }
.glass-sheen::before{
  content:"";
  position:absolute; top:-60%; left:-20%; width:60%; height:220%;
  background:linear-gradient(115deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 60%);
  transform:rotate(8deg);
  pointer-events:none;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; font-weight:600; letter-spacing:-0.01em; color:var(--navy); }
p{ margin:0; }

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:4px;
}

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

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--purple);
}
.eyebrow::before{
  content:"";
  width:22px; height:1.5px;
  background:var(--gold);
  display:inline-block;
}

section{ position:relative; }
.section{ padding:96px 0; }
.section--tight{ padding:64px 0; }
.section--dark{ background:var(--navy); color:var(--gray-100); }
.section--dark h1, .section--dark h2, .section--dark h3{ color:var(--white); }
.section--off{ background:var(--off-white); }

.section-head{
  max-width:680px;
  margin-bottom:52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.6vw,42px); margin-top:14px; }
.section-head p{ margin-top:16px; color:var(--gray-500); font-size:17px; }
.section--dark .section-head p{ color:var(--gray-400); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  transition:all .22s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--gold);
  color:var(--navy);
}
.btn-primary:hover{ background:var(--gold-light); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,0.35);
  color:var(--white);
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); }
.btn-outline-dark{
  background:transparent;
  border-color:var(--navy-3);
  color:var(--navy);
}
.btn-outline-dark:hover{ border-color:var(--purple); color:var(--purple); }
.btn-ghost{
  background:rgba(255,255,255,0.08);
  color:var(--white);
}
.btn-ghost:hover{ background:rgba(255,255,255,0.16); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:14px; }

/* ---------- Navbar ---------- */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.62);
  -webkit-backdrop-filter:blur(18px) saturate(180%);
  backdrop-filter:blur(18px) saturate(180%);
  border-bottom:1px solid rgba(255,255,255,0.5);
  box-shadow:0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 30px rgba(13,26,59,0.06);
}
.nav .container{
  display:flex; align-items:center; justify-content:space-between;
  height:82px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:34px; width:auto; }
.brand-text{ font-family:var(--font-display); font-size:19px; font-weight:600; color:var(--navy); letter-spacing:0.01em; }
.brand-text small{ display:block; font-family:var(--font-body); font-size:9.5px; font-weight:700; letter-spacing:0.16em; color:var(--gold); text-transform:uppercase; margin-top:1px; }

.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-size:14.5px; font-weight:600; color:var(--charcoal);
  position:relative; padding:6px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background:var(--gold); transform:scaleX(0); transform-origin:left;
  transition:transform .2s ease;
}
.nav-links a:hover::after{ transform:scaleX(1); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-login{ font-size:14.5px; font-weight:600; color:var(--navy); }
.nav-login:hover{ color:var(--purple); }

.nav-toggle{
  display:none; background:none; border:none; padding:8px;
  flex-direction:column; gap:5px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--navy); display:block; transition:.2s; }

.mobile-menu{
  display:none; position:fixed; inset:82px 0 0 0; background:var(--white);
  z-index:99; padding:32px 28px; overflow-y:auto;
}
.mobile-menu.open{ display:block; }
.mobile-menu a{ display:block; padding:16px 0; font-size:19px; font-weight:600; color:var(--navy); border-bottom:1px solid var(--gray-200); }
.mobile-menu .btn{ margin-top:24px; }

/* ---------- Hero ---------- */
.hero{
  background:radial-gradient(120% 120% at 15% 0%, var(--navy-3) 0%, var(--navy) 55%, #091430 100%);
  color:var(--white);
  position:relative;
  overflow:hidden;
  padding:88px 0 110px;
}
.hero .container{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
}
.hero h1{
  font-size:clamp(38px,5vw,64px);
  line-height:1.06;
  color:var(--white);
}
.hero h1 em{ font-style:italic; color:var(--gold-light); }
.hero p.lead{
  margin-top:24px; font-size:18px; line-height:1.7; color:rgba(255,255,255,0.78); max-width:520px;
}
.hero-ctas{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }
.hero-stats{
  display:flex; gap:36px; margin-top:56px; flex-wrap:wrap;
}
.hero-stats div strong{ display:block; font-family:var(--font-display); font-size:26px; color:var(--gold-light); }
.hero-stats div span{ font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,255,255,0.55); }

.globe-wrap{ position:relative; }
.globe-wrap svg{ width:100%; height:auto; }

/* ---------- Trust / feature cards ---------- */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }

.feature-card{
  background:var(--glass-bg); -webkit-backdrop-filter:blur(16px) saturate(160%); backdrop-filter:blur(16px) saturate(160%);
  border:1px solid var(--glass-border); border-radius:var(--radius-md); box-shadow:var(--glass-shadow);
  padding:32px 26px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:rgba(198,161,91,0.4); }
.feature-card .icon{
  width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%); margin-bottom:18px;
}
.feature-card .icon svg{ width:22px; height:22px; stroke:var(--gold-light); }
.feature-card h3{ font-size:18px; margin-bottom:8px; }
.feature-card p{ color:var(--gray-500); font-size:15px; }

/* dark trust strip variant */
.section--dark .feature-card{ background:var(--glass-dark-bg); border-color:var(--glass-dark-border); box-shadow:var(--glass-shadow-dark); }
.section--dark .feature-card p{ color:var(--gray-400); }

/* ---------- Grade / program cards ---------- */
.grade-card{
  background:var(--glass-bg); -webkit-backdrop-filter:blur(16px) saturate(160%); backdrop-filter:blur(16px) saturate(160%);
  border-radius:var(--radius-lg); border:1px solid var(--glass-border);
  padding:36px 30px; position:relative; overflow:hidden; transition:.25s ease; box-shadow:var(--glass-shadow);
}
.grade-card:hover{ box-shadow:var(--shadow-lg); transform:translateY(-6px); border-color:rgba(198,161,91,0.4); }
.grade-card .tag{
  display:inline-block; font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--purple); background:rgba(75,46,131,0.08); padding:6px 12px; border-radius:999px;
}
.grade-card h3{ font-size:24px; margin:18px 0 8px; }
.grade-card p{ color:var(--gray-500); font-size:15px; margin-bottom:18px; }
.grade-card ul{ margin-bottom:22px; }
.grade-card ul li{
  font-size:14px; color:var(--charcoal); padding:7px 0; border-top:1px solid var(--gray-100); display:flex; gap:8px; align-items:baseline;
}
.grade-card ul li::before{ content:"—"; color:var(--gold); flex-shrink:0; }
.grade-card .learn-more{ font-weight:700; font-size:14px; color:var(--navy); display:inline-flex; align-items:center; gap:6px; }
.grade-card .learn-more:hover{ color:var(--purple); }

/* ---------- Process / timeline ---------- */
.process{ position:relative; }
.process-list{ display:flex; flex-direction:column; }
.process-item{
  display:grid; grid-template-columns:90px 1fr; gap:24px; padding:28px 0; border-top:1px solid var(--gray-200);
}
.process-item:last-child{ border-bottom:1px solid var(--gray-200); }
.process-num{ font-family:var(--font-display); font-size:34px; color:var(--gold); opacity:0.9; }
.process-item h4{ font-size:19px; margin-bottom:6px; }
.process-item p{ color:var(--gray-500); font-size:15px; max-width:560px; }

/* ---------- Dashboard mockup ---------- */
.mockup{
  background:var(--glass-bg-strong); -webkit-backdrop-filter:blur(20px) saturate(160%); backdrop-filter:blur(20px) saturate(160%);
  border-radius:20px; box-shadow:var(--glass-shadow), var(--shadow-lg); border:1px solid var(--glass-border);
  overflow:hidden;
}
.mockup-topbar{
  display:flex; align-items:center; gap:8px; padding:14px 18px; background:rgba(241,239,233,0.6); border-bottom:1px solid var(--glass-border);
}
.mockup-topbar span{ width:10px; height:10px; border-radius:50%; background:var(--gray-400); }
.mockup-body{ padding:26px; }
.mockup-row{ display:grid; grid-template-columns:1.3fr 1fr; gap:20px; }
.mockup-panel{
  background:rgba(255,255,255,0.5); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  border-radius:14px; padding:18px; border:1px solid var(--glass-border); margin-bottom:16px;
}
.mockup-panel h5{ font-family:var(--font-body); font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--gray-500); margin-bottom:12px; font-weight:700; }
.mockup-class{ display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-top:1px solid var(--gray-200); font-size:14px; }
.mockup-class:first-of-type{ border-top:none; }
.mockup-pill{ font-size:11px; font-weight:700; padding:4px 10px; border-radius:999px; }
.pill-live{ background:rgba(75,46,131,0.12); color:var(--purple); }
.pill-done{ background:rgba(198,161,91,0.18); color:#8a6d2e; }
.progress-bar{ height:8px; background:var(--gray-200); border-radius:99px; overflow:hidden; margin-top:8px; }
.progress-bar i{ display:block; height:100%; background:linear-gradient(90deg,var(--purple),var(--gold)); }

/* ---------- Teacher cards ---------- */
.teacher-card{ text-align:left; }
.teacher-photo{
  width:100%; aspect-ratio:1/1; border-radius:16px; overflow:hidden; margin-bottom:16px;
  background:linear-gradient(135deg,var(--navy-3),var(--purple));
  display:flex; align-items:center; justify-content:center;
}
.teacher-photo span{ font-family:var(--font-display); font-size:38px; color:var(--gold-light); }
.teacher-card h4{ font-size:17px; margin-bottom:2px; }
.teacher-card .role{ font-size:13px; color:var(--purple); font-weight:600; margin-bottom:10px; }
.teacher-card p{ font-size:14px; color:var(--gray-500); }

/* ---------- Pricing ---------- */
.price-card{
  background:var(--glass-bg); -webkit-backdrop-filter:blur(16px) saturate(160%); backdrop-filter:blur(16px) saturate(160%);
  border:1px solid var(--glass-border); border-radius:var(--radius-lg); padding:38px 32px; position:relative; box-shadow:var(--glass-shadow);
}
.price-card.featured{ border-color:var(--purple); box-shadow:var(--shadow-lg), var(--glass-shadow); }
.price-card .badge{
  position:absolute; top:-13px; right:28px; background:var(--purple); color:var(--white); font-size:11.5px; font-weight:700;
  padding:6px 14px; border-radius:999px; letter-spacing:0.04em;
}
.price-card .amount{ font-family:var(--font-display); font-size:40px; color:var(--navy); margin:14px 0 4px; }
.price-card .amount span{ font-size:15px; font-family:var(--font-body); color:var(--gray-500); font-weight:500; }
.price-card ul{ margin:24px 0; }
.price-card ul li{ display:flex; gap:10px; padding:8px 0; font-size:14.5px; color:var(--charcoal); }
.price-card ul li svg{ width:16px; height:16px; stroke:var(--gold); flex-shrink:0; margin-top:2px; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--gray-200); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:16px;
  background:none; border:none; text-align:left; padding:22px 4px; font-size:16.5px; font-weight:600; color:var(--navy);
}
.faq-q .plus{ font-size:22px; color:var(--gold); flex-shrink:0; transition:transform .2s ease; font-family:var(--font-display); }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .28s ease; }
.faq-a p{ padding:0 4px 22px; color:var(--gray-500); font-size:15px; max-width:680px; }

/* ---------- Forms ---------- */
.form-card{
  background:var(--glass-bg-strong); -webkit-backdrop-filter:blur(22px) saturate(160%); backdrop-filter:blur(22px) saturate(160%);
  border:1px solid var(--glass-border); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--glass-shadow), var(--shadow-md);
}
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13.5px; font-weight:600; color:var(--navy); margin-bottom:7px; }
.field .hint{ font-size:12.5px; color:var(--gray-500); margin-top:5px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border:1px solid var(--gray-200); border-radius:var(--radius-sm);
  font-family:inherit; font-size:15px; background:rgba(255,255,255,0.55); transition:.2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--purple); background:var(--white); outline:none; box-shadow:0 0 0 3px rgba(75,46,131,0.12); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.upload-box{
  border:1.5px dashed rgba(75,46,131,0.35); border-radius:var(--radius-md); padding:22px;
  background:rgba(255,255,255,0.4); color:var(--gray-500); font-size:14px;
}
.upload-box.has-file{ border-style:solid; border-color:rgba(26,122,76,0.5); background:rgba(26,122,76,0.06); }
.doc-field{ margin-bottom:18px; }
.doc-field label{ display:block; font-size:13.5px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.doc-field .doc-req{ color:var(--gray-500); font-weight:500; font-size:12.5px; }
.doc-drop{
  display:flex; align-items:center; gap:14px; padding:16px 18px; border:1.5px dashed rgba(75,46,131,0.35);
  border-radius:var(--radius-md); background:rgba(255,255,255,0.4); cursor:pointer; transition:.2s;
}
.doc-drop:hover{ border-color:var(--purple); background:rgba(75,46,131,0.05); }
.doc-drop.has-file{ border-style:solid; border-color:rgba(26,122,76,0.5); background:rgba(26,122,76,0.06); }
.doc-drop input[type=file]{ display:none; }
.doc-drop .doc-icon{
  width:38px; height:38px; border-radius:10px; background:linear-gradient(135deg,var(--navy),var(--purple));
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.doc-drop .doc-icon svg{ width:18px; height:18px; stroke:var(--gold-light); }
.doc-drop .doc-text{ font-size:13.5px; color:var(--navy); font-weight:600; }
.doc-drop .doc-sub{ font-size:12px; color:var(--gray-500); font-weight:500; margin-top:2px; }
.doc-progress{ height:4px; background:var(--gray-200); border-radius:99px; margin-top:8px; overflow:hidden; display:none; }
.doc-progress i{ display:block; height:100%; width:0%; background:linear-gradient(90deg,var(--purple),var(--gold)); transition:width .2s; }

/* ---------- Stepper (application form) ---------- */
.stepper{ display:flex; justify-content:space-between; margin-bottom:44px; position:relative; }
.stepper::before{ content:""; position:absolute; top:15px; left:5%; right:5%; height:2px; background:var(--gray-200); z-index:0; }
.step{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; }
.step .dot{
  width:32px; height:32px; border-radius:50%; background:var(--white); border:2px solid var(--gray-200); display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:var(--gray-500);
}
.step.active .dot{ border-color:var(--purple); color:var(--purple); background:rgba(75,46,131,0.06); }
.step.done .dot{ background:var(--gold); border-color:var(--gold); color:var(--navy); }
.step span.label{ font-size:11.5px; font-weight:600; color:var(--gray-500); text-align:center; }
.step.active span.label{ color:var(--navy); }
.form-step{ display:none; }
.form-step.active{ display:block; }
.form-nav{ display:flex; justify-content:space-between; margin-top:32px; }

.review-block{ background:var(--off-white); border-radius:var(--radius-md); padding:20px 24px; margin-bottom:14px; }
.review-block h5{ font-size:12px; text-transform:uppercase; letter-spacing:0.06em; color:var(--purple); font-weight:700; margin-bottom:10px; }
.review-block dl{ display:grid; grid-template-columns:1fr 1fr; gap:8px 20px; }
.review-block dt{ font-size:12.5px; color:var(--gray-500); }
.review-block dd{ margin:0; font-size:14px; font-weight:600; color:var(--charcoal); }

.confirm-box{ text-align:center; padding:50px 20px; }
.confirm-box .check{
  width:72px; height:72px; border-radius:50%; background:linear-gradient(135deg,var(--purple),var(--navy));
  display:flex; align-items:center; justify-content:center; margin:0 auto 22px;
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--purple) 0%, var(--navy) 100%);
  border-radius:28px; padding:64px 56px; color:var(--white); text-align:center; position:relative; overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.cta-banner::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(60% 90% at 15% 0%, rgba(230,211,163,0.22) 0%, rgba(230,211,163,0) 60%),
             radial-gradient(50% 80% at 100% 100%, rgba(124,92,184,0.35) 0%, rgba(124,92,184,0) 60%);
  pointer-events:none;
}
.cta-banner > *{ position:relative; z-index:1; }
.cta-banner h2{ color:var(--white); font-size:clamp(26px,3.4vw,36px); }
.cta-banner p{ color:rgba(255,255,255,0.78); max-width:520px; margin:14px auto 30px; }

/* ---------- Footer ---------- */
.footer{ background:var(--navy); color:rgba(255,255,255,0.65); padding:72px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.10); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-brand img{ height:30px; }
.footer-brand span{ font-family:var(--font-display); color:var(--white); font-size:18px; }
.footer p.desc{ font-size:14px; max-width:280px; line-height:1.7; }
.footer h5{ color:var(--white); font-size:13px; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:18px; }
.footer li{ margin-bottom:11px; }
.footer a{ font-size:14.5px; }
.footer a:hover{ color:var(--gold-light); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:13px; flex-wrap:wrap; gap:12px; }
.social-row{ display:flex; gap:14px; }
.social-row a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ background:var(--gold); color:var(--navy); }

/* ---------- Page header (interior pages) ---------- */
.page-header{
  background:linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 60%, var(--purple) 130%);
  color:var(--white); padding:64px 0 72px;
}
.page-header .eyebrow{ color:var(--gold-light); }
.page-header .eyebrow::before{ background:var(--gold-light); }
.page-header h1{ color:var(--white); font-size:clamp(32px,4.4vw,50px); margin-top:14px; max-width:720px; }
.page-header p{ color:rgba(255,255,255,0.75); margin-top:16px; max-width:600px; font-size:16.5px; }
.breadcrumb{ font-size:13px; color:rgba(255,255,255,0.55); margin-bottom:8px; }
.breadcrumb a:hover{ color:var(--gold-light); }

/* ---------- Utility ---------- */
.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:6px; }
.tag{ font-size:12.5px; font-weight:600; padding:6px 12px; border-radius:999px; background:var(--gray-100); color:var(--charcoal); }
.divider{ height:1px; background:var(--gray-200); margin:56px 0; }
.text-center{ text-align:center; }
.mt-8{ margin-top:8px; } .mt-16{ margin-top:16px; } .mt-24{ margin-top:24px; } .mt-32{ margin-top:32px; } .mt-48{ margin-top:48px; }
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

.login-tabs{ display:flex; gap:10px; margin-bottom:28px; flex-wrap:wrap; }
.login-tab{
  padding:11px 18px; border-radius:999px; border:1px solid var(--glass-border); font-size:13.5px; font-weight:600; color:var(--gray-500);
  background:rgba(255,255,255,0.45); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); transition:.2s;
}
.login-tab.active{ background:var(--navy); color:var(--white); border-color:var(--navy); }

.badge-soon{ font-size:11px; font-weight:700; background:var(--gray-100); color:var(--gray-500); padding:3px 9px; border-radius:6px; margin-left:8px; text-transform:uppercase; letter-spacing:0.04em; }
.badge-live{ font-size:11px; font-weight:700; background:rgba(26,122,76,0.12); color:#1a7a4c; padding:3px 9px; border-radius:6px; margin-left:8px; text-transform:uppercase; letter-spacing:0.04em; }

/* ============================================================
   LMS DASHBOARD
   ============================================================ */
.dash-shell{ min-height:100vh; }
.dash-topbar{
  position:sticky; top:0; z-index:50; display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px; background:rgba(255,255,255,0.62); -webkit-backdrop-filter:blur(18px) saturate(180%); backdrop-filter:blur(18px) saturate(180%);
  border-bottom:1px solid rgba(255,255,255,0.5); box-shadow:0 8px 30px rgba(13,26,59,0.06);
}
.dash-topbar .brand img{ height:30px; }
.dash-user{ display:flex; align-items:center; gap:14px; }
.dash-user .who{ text-align:right; }
.dash-user .who strong{ display:block; font-size:14px; color:var(--navy); }
.dash-user .who span{ display:block; font-size:11.5px; color:var(--gray-500); text-transform:uppercase; letter-spacing:0.06em; }
.dash-avatar{
  width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--navy),var(--purple));
  display:flex; align-items:center; justify-content:center; color:var(--gold-light); font-weight:700; font-family:var(--font-display);
}
.dash-wrap{ max-width:1220px; margin:0 auto; padding:36px 28px 90px; }
.dash-head{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-bottom:28px; }
.dash-head h1{ font-size:clamp(24px,3vw,34px); }
.dash-tabs{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:28px; }
.dash-tab{
  padding:10px 18px; border-radius:999px; border:1px solid var(--glass-border); font-size:13.5px; font-weight:600; color:var(--navy);
  background:rgba(255,255,255,0.5); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
}
.dash-tab.active{ background:var(--navy); color:var(--white); border-color:var(--navy); }
.dash-panel{ display:none; }
.dash-panel.active{ display:block; }

.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-bottom:28px; }
.stat-card{
  background:var(--glass-bg); -webkit-backdrop-filter:blur(16px) saturate(160%); backdrop-filter:blur(16px) saturate(160%);
  border:1px solid var(--glass-border); border-radius:var(--radius-md); padding:22px; box-shadow:var(--glass-shadow);
}
.stat-card .num{ font-family:var(--font-display); font-size:30px; color:var(--navy); }
.stat-card .lbl{ font-size:12.5px; color:var(--gray-500); text-transform:uppercase; letter-spacing:0.06em; margin-top:4px; }

.panel-card{
  background:var(--glass-bg-strong); -webkit-backdrop-filter:blur(20px) saturate(160%); backdrop-filter:blur(20px) saturate(160%);
  border:1px solid var(--glass-border); border-radius:var(--radius-lg); padding:28px; box-shadow:var(--glass-shadow), var(--shadow-sm);
  margin-bottom:24px;
}
.panel-card h3{ font-size:18px; margin-bottom:16px; }
.panel-card .panel-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:18px; flex-wrap:wrap; }

.dtable{ width:100%; border-collapse:collapse; font-size:14px; }
.dtable th{ text-align:left; font-size:11.5px; text-transform:uppercase; letter-spacing:0.06em; color:var(--gray-500); padding:10px 12px; border-bottom:1px solid var(--gray-200); }
.dtable td{ padding:12px; border-bottom:1px solid var(--gray-100); color:var(--charcoal); vertical-align:middle; }
.dtable tr:last-child td{ border-bottom:none; }
.dtable select, .dtable input{ padding:8px 10px; border-radius:8px; border:1px solid var(--gray-200); font-size:13.5px; font-family:inherit; background:rgba(255,255,255,0.7); }

.pill{ display:inline-flex; align-items:center; font-size:11.5px; font-weight:700; padding:4px 11px; border-radius:999px; text-transform:capitalize; }
.pill-present{ background:rgba(26,122,76,0.12); color:#1a7a4c; }
.pill-absent{ background:rgba(192,57,43,0.12); color:#c0392b; }
.pill-late{ background:rgba(198,161,91,0.18); color:#8a6d2e; }
.pill-excused{ background:rgba(75,46,131,0.1); color:var(--purple); }
.pill-new{ background:rgba(75,46,131,0.1); color:var(--purple); }
.pill-reviewed{ background:rgba(198,161,91,0.18); color:#8a6d2e; }
.pill-accepted{ background:rgba(26,122,76,0.12); color:#1a7a4c; }
.pill-rejected{ background:rgba(192,57,43,0.12); color:#c0392b; }

.empty-state{ text-align:center; padding:40px 20px; color:var(--gray-500); font-size:14.5px; }
.dash-loading{ text-align:center; padding:60px 20px; color:var(--gray-500); }
.auth-error{ background:rgba(192,57,43,0.08); border:1px solid rgba(192,57,43,0.25); color:#c0392b; padding:12px 16px; border-radius:10px; font-size:13.5px; margin-bottom:18px; }
.auth-ok{ background:rgba(26,122,76,0.08); border:1px solid rgba(26,122,76,0.25); color:#1a7a4c; padding:12px 16px; border-radius:10px; font-size:13.5px; margin-bottom:18px; }

.modal-backdrop{
  position:fixed; inset:0; background:rgba(13,26,59,0.45); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
  z-index:200; display:none; align-items:center; justify-content:center; padding:20px;
}
.modal-backdrop.open{ display:flex; }
.modal-box{
  background:var(--glass-bg-strong); -webkit-backdrop-filter:blur(24px) saturate(160%); backdrop-filter:blur(24px) saturate(160%);
  border:1px solid var(--glass-border); border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); max-width:560px; width:100%;
  max-height:86vh; overflow-y:auto; padding:30px;
}
.modal-box h3{ font-size:19px; margin-bottom:18px; }
.modal-close-row{ display:flex; justify-content:flex-end; gap:10px; margin-top:24px; }

@media (max-width:920px){
  .stat-row{ grid-template-columns:1fr 1fr; }
}
@media (max-width:760px){
  .dtable{ display:block; overflow-x:auto; white-space:nowrap; }
  .stat-row{ grid-template-columns:1fr 1fr; }
  .dash-wrap{ padding:28px 18px 70px; }
}

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:920px){
  .hero .container{ grid-template-columns:1fr; }
  .globe-wrap{ order:-1; max-width:420px; margin:0 auto 24px; }
  .grid-3{ grid-template-columns:1fr 1fr; }
  .mockup-row{ grid-template-columns:1fr; }
}
@media (max-width:760px){
  .nav-links, .nav-cta .nav-login{ display:none; }
  .nav-toggle{ display:flex; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr; }
  .section{ padding:64px 0; }
  .field-row{ grid-template-columns:1fr; }
  .cta-banner{ padding:44px 26px; border-radius:20px; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .stepper span.label{ display:none; }
  .process-item{ grid-template-columns:56px 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
}
