/* Cambodia Techlympics 2026 — Landing */
:root {
  --navy-950: #050d2e;
  --navy-900: #08123f;
  --navy-800: #0d1b56;
  --navy-700: #142578;
  --navy-600: #1d3aa1;
  --blue-500: #2b58d4;
  --red-600: #d61f2a;
  --red-500: #e63946;
  --gold-500: #d4a24a;
  --gold-400: #e6b95c;
  --cream: #f6f2e9;
  --ink: #0a0f24;
  --ink-soft: #5b6478;
  --line: rgba(212, 162, 74, 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--cream); color: var(--ink); font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.font-display { font-family: 'Oswald', 'Bebas Neue', sans-serif; font-weight: 700; letter-spacing: -0.01em; text-transform: uppercase; }
.font-khmer-acc { font-family: 'Oswald', sans-serif; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(5, 13, 46, 0.0);
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 13, 46, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 40px;
  border-bottom-color: rgba(212, 162, 74, 0.18);
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: white; }
.nav-logo .mark { width: 36px; height: 36px; }
.nav-logo .wm { font-size: 13px; letter-spacing: 0.22em; }
.nav-logo .wm strong { color: var(--gold-400); font-weight: 600; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.78); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-400); }
.nav-cta {
  background: var(--red-600); color: white; padding: 10px 22px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border: 0; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-500); transform: translateX(2px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #050d2e 0%, #0a1850 45%, #1a2d7a 100%);
  color: white;
  overflow: hidden;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(214, 31, 42, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(43, 88, 212, 0.3), transparent 60%);
  pointer-events: none;
}
.hero-circuits {
  position: absolute; inset: 0; opacity: 0.18; pointer-events: none;
}
.hero-flag-wave {
  position: absolute; top: 0; left: 0; width: 320px; height: 200px;
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-600) 35%, var(--navy-700) 35%, var(--navy-700) 100%);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 70%);
  opacity: 0.85;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px; border: 1px solid var(--gold-500);
  color: var(--gold-400); font-size: 12px; letter-spacing: 0.24em;
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold-500); border-radius: 50%; }
.hero h1 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(58px, 8vw, 120px); line-height: 0.88; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; }
.hero h1 .line2 { color: var(--red-500); }
.hero h1 .year { display: block; font-style: italic; font-weight: 500; opacity: 0.95; }
.hero-tagline {
  display: flex; gap: 24px; align-items: center; margin: 32px 0 36px;
  font-size: 15px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-tagline span { display: flex; align-items: center; gap: 24px; }
.hero-tagline .pip { width: 5px; height: 5px; background: var(--red-500); border-radius: 50%; }
.hero-desc { font-size: 17px; line-height: 1.55; max-width: 540px; color: rgba(255,255,255,0.78); margin: 0 0 40px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; font-size: 13px; letter-spacing: 0.16em;
  font-weight: 700; text-transform: uppercase; cursor: pointer; border: 0;
  font-family: inherit;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn-primary { background: var(--red-600); color: white; clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%); padding-left: 36px; padding-right: 36px; }
.btn-primary:hover { background: var(--red-500); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); padding-left: 28px; padding-right: 28px; }
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero right (countdown / event card) */
.hero-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 162, 74, 0.3);
  padding: 36px;
  backdrop-filter: blur(14px);
}
.hero-card-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.24em; color: var(--gold-400);
  margin-bottom: 18px; text-transform: uppercase;
}
.hero-card-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold-500); }
.hero-card h3 { font-family: 'Oswald', sans-serif; font-size: 26px; text-transform: uppercase; margin: 0 0 4px; letter-spacing: 0.01em; }
.hero-card .dateline { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 28px; }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
.countdown-cell { text-align: center; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.08); padding: 16px 8px; }
.countdown-cell .num { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--gold-400); display: block; line-height: 1; }
.countdown-cell .label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; display: block; }

.hero-card-meta { display: grid; gap: 14px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.meta-row { display: flex; align-items: flex-start; gap: 14px; }
.meta-row .ico { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; margin-top: 1px; }
.meta-row .label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.meta-row .val { font-size: 14px; color: white; line-height: 1.4; }

/* ---------- SECTION SHELL ---------- */
.section { padding: 110px 40px; position: relative; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.28em; color: var(--red-600);
  text-transform: uppercase; font-weight: 600; margin-bottom: 18px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--red-600); }
.section h2 { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; font-size: clamp(40px, 5vw, 72px); line-height: 0.95; margin: 0 0 24px; letter-spacing: -0.01em; color: var(--navy-800); }
.section .lede { font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 640px; }

/* ---------- ABOUT STRIP ---------- */
.about {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative; aspect-ratio: 4/5; background: var(--navy-800); overflow: hidden;
}
.about-img-wrap .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(212,162,74,0.08) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #08123f 0%, #1d3aa1 100%);
  display: flex; align-items: flex-end; padding: 32px;
}
.about-img-wrap .placeholder .caption { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.about-img-wrap .stamp {
  position: absolute; top: 24px; left: 24px;
  font-family: 'Oswald', sans-serif; color: var(--gold-400);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
}
.about-img-wrap .stamp::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--gold-500); margin-right: 12px; vertical-align: middle; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.stat { border-left: 2px solid var(--red-600); padding: 6px 0 6px 16px; }
.stat .num { font-family: 'Oswald', sans-serif; font-size: 44px; font-weight: 700; color: var(--navy-800); line-height: 1; }
.stat .lbl { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

/* ---------- CHALLENGES ---------- */
.challenges {
  background: var(--navy-950); color: white;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(43, 88, 212, 0.2), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(214, 31, 42, 0.12), transparent 50%);
}
.challenges h2 { color: white; }
.challenges .section-eyebrow { color: var(--gold-400); }
.challenges .section-eyebrow::before { background: var(--gold-400); }
.challenges .lede { color: rgba(255,255,255,0.65); }
.challenges-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 70px;
}
.chal-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px 32px;
  cursor: pointer;
  transition: all 0.35s ease;
  overflow: hidden;
  min-height: 420px;
  display: flex; flex-direction: column;
}
.chal-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent, var(--red-600)); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.chal-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-6px); border-color: rgba(212,162,74,0.25); }
.chal-card:hover::before { transform: scaleX(1); }
.chal-card.active { background: rgba(255,255,255,0.06); border-color: var(--accent); }
.chal-card.active::before { transform: scaleX(1); }
.chal-hex {
  position: relative; width: 64px; height: 72px; margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
}
.chal-hex svg.hex-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chal-hex .icon { position: relative; width: 30px; height: 30px; color: var(--accent); }
.chal-name { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.24em; color: var(--accent); margin-bottom: 6px; text-transform: uppercase; font-weight: 600; }
.chal-title { font-family: 'Oswald', sans-serif; font-size: 26px; text-transform: uppercase; font-weight: 700; line-height: 1.05; margin-bottom: 16px; letter-spacing: 0.005em; }
.chal-desc { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); margin: 0 0 auto; }
.chal-skills {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); line-height: 1.6;
}
.chal-num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em;
}

/* ---------- PATHWAY ---------- */
.pathway { background: var(--cream); }
.pathway-track {
  position: relative; margin-top: 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.pathway-line {
  position: absolute; left: 8%; right: 8%; top: 50px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--navy-700) 0 8px, transparent 8px 14px);
  z-index: 1;
}
.path-step { position: relative; z-index: 2; padding: 0 24px; text-align: center; }
.path-step .pin {
  width: 100px; height: 100px; margin: 0 auto 24px;
  background: var(--cream); border: 2px solid var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--navy-800);
  position: relative;
}
.path-step .pin::after {
  content: ''; position: absolute; inset: -8px; border: 1px solid var(--gold-500); opacity: 0;
  transition: opacity 0.3s, inset 0.3s;
}
.path-step:hover .pin::after { opacity: 1; inset: -12px; }
.path-step.featured .pin { background: var(--red-600); color: white; border-color: var(--red-600); }
.path-step .stage { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.22em; color: var(--red-600); text-transform: uppercase; margin-bottom: 8px; }
.path-step .date { font-family: 'Oswald', sans-serif; font-size: 28px; color: var(--navy-800); text-transform: uppercase; margin-bottom: 12px; line-height: 1.05; }
.path-step .place { font-size: 14px; color: var(--ink-soft); line-height: 1.5; max-width: 240px; margin: 0 auto; }

/* ---------- PRICING ---------- */
.pricing { background: var(--navy-900); color: white; }
.pricing h2 { color: white; }
.pricing .section-eyebrow { color: var(--gold-400); }
.pricing .section-eyebrow::before { background: var(--gold-400); }
.pricing .lede { color: rgba(255,255,255,0.65); }
.pricing-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; margin-top: 70px; }
.price-tiers { display: grid; gap: 18px; }
.tier {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 32px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  cursor: pointer; transition: all 0.25s; position: relative;
}
.tier:hover { background: rgba(255,255,255,0.06); }
.tier.selected { border-color: var(--gold-500); background: rgba(212,162,74,0.06); }
.tier.selected::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold-500);
}
.tier .radio {
  width: 22px; height: 22px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%;
  position: relative; flex-shrink: 0;
}
.tier.selected .radio { border-color: var(--gold-500); }
.tier.selected .radio::after { content: ''; position: absolute; inset: 4px; background: var(--gold-500); border-radius: 50%; }
.tier-name { font-family: 'Oswald', sans-serif; font-size: 18px; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.tier-sub { font-size: 13px; color: rgba(255,255,255,0.55); }
.tier-price { text-align: right; }
.tier-price .amt { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--gold-400); line-height: 1; }
.tier-price .per { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.tier-badge {
  position: absolute; top: -10px; right: 20px; font-size: 10px; letter-spacing: 0.2em;
  background: var(--red-600); padding: 4px 10px; text-transform: uppercase; font-weight: 600;
}

.calculator {
  background: linear-gradient(160deg, rgba(212,162,74,0.12) 0%, rgba(214,31,42,0.06) 100%);
  border: 1px solid rgba(212,162,74,0.3);
  padding: 36px;
}
.calc-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gold-400); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.calc-title { font-family: 'Oswald', sans-serif; font-size: 28px; text-transform: uppercase; margin-bottom: 32px; }
.calc-control { margin-bottom: 24px; }
.calc-control label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-bottom: 14px; }
.team-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 4px; background: rgba(0,0,0,0.3); }
.team-toggle button { background: transparent; border: 0; color: rgba(255,255,255,0.6); padding: 12px; font-family: inherit; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; font-weight: 600; }
.team-toggle button.on { background: var(--red-600); color: white; }
.slider-row { display: flex; align-items: center; gap: 18px; }
.slider-row input[type=range] { flex: 1; -webkit-appearance: none; appearance: none; height: 4px; background: rgba(255,255,255,0.15); outline: none; cursor: pointer; }
.slider-row input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: var(--gold-500); border-radius: 50%; cursor: pointer; border: 3px solid var(--navy-900); }
.slider-row input[type=range]::-moz-range-thumb { width: 20px; height: 20px; background: var(--gold-500); border-radius: 50%; cursor: pointer; border: 3px solid var(--navy-900); }
.slider-val { font-family: 'Oswald', sans-serif; font-size: 28px; color: white; min-width: 90px; text-align: right; }
.calc-totals { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); display: grid; gap: 14px; }
.calc-row { display: flex; justify-content: space-between; align-items: baseline; }
.calc-row .k { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.calc-row .v { font-family: 'Oswald', sans-serif; font-size: 18px; color: white; }
.calc-row.total { padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8px; }
.calc-row.total .k { color: var(--gold-400); font-weight: 600; }
.calc-row.total .v { font-size: 38px; color: var(--gold-400); }
.calc-foot { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 18px; line-height: 1.5; }

/* ---------- SKILLS ---------- */
.skills { background: var(--cream); }
.skills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.skill {
  padding: 36px 28px; background: white;
  border: 1px solid rgba(20,37,120,0.08);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.skill::after {
  content: attr(data-num); position: absolute; right: -10px; bottom: -30px;
  font-family: 'Oswald', sans-serif; font-size: 140px; font-weight: 700;
  color: rgba(20,37,120,0.04); line-height: 1;
}
.skill:hover { transform: translateY(-4px); border-color: var(--gold-500); }
.skill .ico { width: 44px; height: 44px; color: var(--navy-800); margin-bottom: 22px; }
.skill h4 { font-family: 'Oswald', sans-serif; font-size: 20px; text-transform: uppercase; color: var(--navy-800); margin: 0 0 12px; letter-spacing: 0.01em; }
.skill p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); position: relative; z-index: 2; }

/* ---------- PARTNERS / CTA ---------- */
.partners {
  background: var(--navy-950); color: white;
  position: relative; overflow: hidden;
}
.partners::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(214,31,42,0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(43,88,212,0.2), transparent 50%);
  pointer-events: none;
}
.partners h2 { color: white; }
.partners .section-eyebrow { color: var(--gold-400); }
.partners .section-eyebrow::before { background: var(--gold-400); }
.partner-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.partner-content .lede { color: rgba(255,255,255,0.7); max-width: none; }
.partner-roles { display: grid; gap: 16px; margin-top: 40px; }
.role { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.role .num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gold-400); letter-spacing: 0.16em; padding-top: 4px; }
.role h4 { font-family: 'Oswald', sans-serif; font-size: 18px; text-transform: uppercase; margin: 0 0 4px; }
.role p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.55; }

.cta-block {
  margin-top: 80px; position: relative; z-index: 2;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,162,74,0.25);
  padding: 48px 56px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.cta-block h3 { font-family: 'Oswald', sans-serif; font-size: 36px; text-transform: uppercase; margin: 0 0 8px; line-height: 1.05; }
.cta-block p { margin: 0; color: rgba(255,255,255,0.65); font-size: 15px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 60px 40px 30px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer h5 { font-family: 'Oswald', sans-serif; font-size: 12px; text-transform: uppercase; color: var(--gold-400); letter-spacing: 0.2em; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer ul a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; }

/* ---------- TEMPLE SVG (decorative hero) ---------- */
.temple-deco {
  position: absolute; right: -40px; bottom: -10px;
  width: 60%; height: 80%;
  pointer-events: none; opacity: 0.5;
  z-index: 1;
}

/* ---------- responsive bits ---------- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .challenges-grid { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .about, .partner-content, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .pathway-track { grid-template-columns: 1fr; gap: 40px; }
  .pathway-line { display: none; }
  .nav-links { display: none; }
  .cta-block { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .challenges-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
  .hero { padding: 120px 24px 60px; }
  .nav { padding: 14px 24px; }
}
