/* ===== Design tokens — Sky theme ===== */
:root {
  --navy: #0b3a5e;          /* deep sky / headings */
  --navy-soft: #155e8a;
  --orange: #0ea5e9;        /* primary accent = sky blue */
  --orange-light: #7dd3fc;  /* light sky */
  --bg: #f3f9ff;            /* soft sky white */
  --surface: #e7f3fe;       /* light sky surface */
  --surface-2: #d6ebfc;
  --text: #0b2b45;          /* deep blue-grey text */
  --text-muted: #5b7a93;    /* muted blue-grey */
  --border: #cfe6f7;        /* light blue border */
  --card-radius: 28px;
  --shadow: 0 24px 60px rgba(14, 80, 140, .14);
  --maxw: 1280px;
}

[data-theme="dark"] {
  --navy: #f4f5f7;
  --bg: #0f1020;
  --surface: #1a1c30;
  --surface-2: #23263d;
  --text: #f4f5f7;
  --text-muted: #9aa0b4;
  --border: #2a2c44;
  --shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

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

html { scroll-behavior: smooth; color-scheme: light dark; }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  padding-block: 8px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__icon { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-weight: 800; font-size: 1.3rem; letter-spacing: .01em; text-transform: uppercase; white-space: nowrap; }
.logo__sub { font-weight: 500; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }

.nav { margin-left: auto; }   /* push the menu to the right; logo stays left */
.nav__list { display: flex; gap: 28px; list-style: none; }
.nav__link { color: var(--text-muted); font-weight: 500; transition: color .2s; }
.nav__link:hover, .nav__link.is-active { color: var(--text); }

/* Theme switch inside the mobile menu — hidden on desktop */
.nav__theme { display: none; }
.nav__theme-label { font-weight: 500; color: var(--text); }
.nav__cta { display: none; } /* EduAI button shown in menu on mobile only */

/* EduAI button (apps & AI tools for educators) */
.btn--ai {
  gap: 7px; padding: 11px 20px; color: #fff;
  background: linear-gradient(135deg, #7c5cff 0%, #b455ff 45%, var(--orange) 100%);
  box-shadow: 0 6px 18px rgba(124,92,255,.35);
}
.btn--ai:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(124,92,255,.45); }
.btn__spark { flex-shrink: 0; }

.btn--ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { background: var(--surface); }
.page-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

.header__actions { display: flex; align-items: center; gap: 16px; }

.search {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--text-muted);
  min-width: 220px;
}
.search input {
  border: none; background: transparent; outline: none;
  color: var(--text); font-family: inherit; font-size: .95rem; width: 100%;
}

.theme-toggle {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer; color: var(--text-muted);
}
.theme-toggle__track {
  width: 44px; height: 24px; border-radius: 999px;
  background: var(--surface-2); position: relative; transition: background .3s;
}
.theme-toggle__thumb {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange); transition: transform .3s;
}
[data-theme="dark"] .theme-toggle__thumb { transform: translateX(20px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; border-radius: 999px; padding: 12px 26px;
  cursor: pointer; transition: transform .15s, box-shadow .2s, opacity .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: var(--bg); }
[data-theme="dark"] .btn--primary { color: var(--navy); background: var(--navy); color: var(--bg); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(22,24,43,.25); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: .3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 48px;
}
.hero__left {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-radius: var(--card-radius);
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 28px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -.02em;
  color: var(--navy);
}
.hero__title-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; width: fit-content; max-width: 100%; }

.pill-toggle {
  width: 96px; height: 52px; border-radius: 999px;
  background: #27c93f; position: relative; flex-shrink: 0;
  border: none; padding: 0; cursor: pointer;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.12);
  transition: background .3s ease;
}
.pill-toggle__thumb {
  position: absolute; top: 6px; left: 6px;
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  transform: translateX(44px);
  transition: transform .15s cubic-bezier(.4,1.4,.6,1);
}
.pill-toggle { transition: background .15s ease; }
.pill-toggle.is-off { background: #e5392f; animation: toggleAura 1.9s ease-in-out infinite; }
.pill-toggle.is-off .pill-toggle__thumb { transform: translateX(0); }
@keyframes toggleAura {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255, 205, 90, .45), 0 0 16px 4px rgba(255, 190, 70, .40); }
  50%      { box-shadow: 0 0 0 3px rgba(255, 216, 120, .85), 0 0 30px 9px rgba(255, 198, 80, .70); }
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 22px 16px; text-align: center;
}
.stat__num { display: block; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; color: var(--navy); }
.stat__label { color: var(--text-muted); font-size: .9rem; }

/* Mini cards */
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card {
  position: relative; border-radius: 22px; overflow: hidden;
  min-height: 200px; display: flex;
}
.mini-card img.mini-card__bg, .mini-card > img { width: 100%; object-fit: cover; }

.mini-card--kids { display: grid; grid-template-columns: 1fr 1fr; background: var(--surface-2); }
.mini-card--kids > img { height: 100%; }
.mini-card__overlay {
  padding: 14px; display: flex; flex-direction: column; justify-content: center; gap: 4px;
  background: var(--bg);
}
.students { display: flex; align-items: center; gap: 8px; }
.students strong { font-size: 1.5rem; color: var(--navy); }
.students__label { color: var(--text-muted); font-weight: 500; }
.avatars { display: inline-flex; }
.avatars img { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -8px; }
.avatars img:first-child { margin-left: 0; }

.mini-card--online > img { position: absolute; inset: 0; height: 100%; }
.mini-card--online::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,58,94,.05) 0%, rgba(14,165,233,.55) 100%);
}
.mini-card--online .badge, .mini-card--online .tags { position: relative; z-index: 2; }
.mini-card--online { padding: 14px; flex-direction: column; justify-content: space-between; }

.badge {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  background: rgba(255,255,255,.92); color: var(--navy);
  padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600;
}
.badge--bottom { position: absolute; bottom: 12px; left: 12px; z-index: 2;
  background: linear-gradient(90deg, var(--orange), var(--orange-light)); color: #fff; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #21c55d; }
.tags { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.tag { background: rgba(255,255,255,.85); color: var(--navy); padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 500; }

/* Hero right */
.hero__right { position: relative; border-radius: var(--card-radius); overflow: hidden; min-height: 520px; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; }
.hero__right::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14,165,233,.85) 100%);
}
.explore {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px; padding: 14px 14px 14px 28px; color: #fff;
  font-size: 1.25rem; font-weight: 600; transition: background .2s;
}
.explore:hover { background: rgba(255,255,255,.3); }
.explore__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { min-height: 420px; order: -1; }
  .search { min-width: 160px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 56px 0 auto 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    transform: translateY(-130%); transition: transform .3s ease;
    padding: 20px; box-shadow: var(--shadow);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 18px; }
  .search { display: none; }
  .hamburger { display: flex; order: 3; }
  .btn--primary { padding: 10px 18px; }
  .header__actions { margin-left: auto; } /* push hamburger right on mobile */

  /* Move the theme switch + EduAI button out of the header bar and into the menu */
  .header__actions > .theme-toggle,
  .header__actions > .btn--ai { display: none; }
  .nav__cta { display: block; margin-top: 18px; }
  .nav__cta .btn--ai { width: 100%; justify-content: center; }
  .nav__theme {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--border);
  }
}

@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .hero__title-row { gap: 12px; }
  .pill-toggle { width: 72px; height: 40px; }
  .pill-toggle__thumb { width: 30px; height: 30px; transform: translateX(32px); }
  .pill-toggle.is-off .pill-toggle__thumb { transform: translateX(0); }
  .logo__sub { display: none; }
  .logo__name { font-size: 1.1rem; }
}

/* ========================================================= */
/* Shared building blocks for all pages                       */
/* ========================================================= */

.section { padding-block: clamp(40px, 7vw, 80px); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(28px, 4vw, 48px); }
.section__title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; color: var(--navy); }
.section__sub { color: var(--text-muted); margin-top: 10px; }

.eyebrow { display: inline-block; font-weight: 600; font-size: .85rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.accent { color: var(--orange); }

.hero__lead { color: var(--text-muted); font-size: 1.05rem; max-width: 460px; margin-top: -8px; }

.info-card--accent { background: linear-gradient(135deg, var(--navy), #0c4a73); border-color: transparent; }
.info-card--accent h3 { color: #fff; }
.info-card--accent p { color: rgba(255,255,255,.82); }

.chip-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip-lg { background: var(--surface); border: 1px solid var(--border); color: var(--text);
  padding: 12px 20px; border-radius: 999px; font-weight: 500; font-size: .95rem; }

/* Page hero (inner pages) */
.page-hero { text-align: center; padding-top: clamp(48px, 8vw, 88px); padding-bottom: clamp(28px, 4vw, 40px); }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 800; line-height: 1.05; color: var(--navy); letter-spacing: -.02em; }
.page-hero p { color: var(--text-muted); max-width: 620px; margin: 18px auto 0; font-size: 1.05rem; }

/* CTA band */
.btn--cta { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #fff; }
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14,165,233,.4); }
.cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy), #0c4a73);
  border-radius: var(--card-radius); padding: clamp(28px, 4vw, 48px); margin-block: clamp(20px,4vw,40px);
}
.cta h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta p { color: rgba(255,255,255,.8); margin-top: 6px; }

/* Categories grid (home) */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; }
.cat { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 24px; text-align: center; transition: transform .15s, box-shadow .2s; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat__icon { font-size: 2rem; }
.cat h3 { margin: 12px 0 4px; color: var(--navy); font-size: 1.1rem; }
.cat p { color: var(--text-muted); font-size: .9rem; }

/* Split section (about) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.split__media img { width: 100%; border-radius: var(--card-radius); object-fit: cover; aspect-ratio: 4/3; }
.split__body h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); margin: 8px 0 14px; }
.split__body p { color: var(--text-muted); margin-bottom: 12px; }

/* Stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--card-radius); padding: clamp(20px,3vw,32px); }
.stat-band div { text-align: center; }
.stat-band strong { display: block; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--orange); font-weight: 800; }
.stat-band span { color: var(--text-muted); font-size: .9rem; }

/* Info cards (values) */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.info-card { background: var(--bg); border: 1px solid var(--border); border-radius: 22px; padding: 26px; }
.info-card__icon { font-size: 1.8rem; }
.info-card h3 { margin: 14px 0 8px; color: var(--navy); }
.info-card p { color: var(--text-muted); font-size: .92rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.team { text-align: center; }
.team img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid var(--surface); }
.team h3 { color: var(--navy); font-size: 1.05rem; }
.team p { color: var(--text-muted); font-size: .9rem; }

/* Filters (courses) */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip-btn { font-family: inherit; cursor: pointer; border: 1px solid var(--border); background: var(--surface);
  color: var(--text-muted); padding: 9px 18px; border-radius: 999px; font-weight: 500; font-size: .9rem; transition: .2s; }
.chip-btn:hover { color: var(--text); }
.chip-btn.is-active { background: var(--navy); color: var(--bg); border-color: var(--navy); }

/* Course grid */
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.course { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: transform .15s, box-shadow .2s; }
.course:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.course__thumb { position: relative; aspect-ratio: 16/10; }
.course__thumb img { width: 100%; height: 100%; object-fit: cover; }
.course__tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--navy);
  padding: 5px 12px; border-radius: 999px; font-size: .75rem; font-weight: 600; }
.course__body { padding: 18px; }
.course__body h3 { color: var(--navy); font-size: 1.1rem; }
.course__body > p { color: var(--text-muted); font-size: .9rem; margin: 8px 0 14px; }
.course__meta { display: flex; align-items: center; gap: 14px; color: var(--text-muted); font-size: .85rem; }
.course__price { margin-left: auto; color: var(--orange); font-weight: 700; font-size: 1rem; }

/* Contact */
.contact { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.contact__form { display: flex; flex-direction: column; gap: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--card-radius); padding: clamp(22px,3vw,32px); }
.contact__form label { display: flex; flex-direction: column; gap: 6px; font-weight: 500; color: var(--text); font-size: .92rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__form input, .contact__form textarea {
  font-family: inherit; font-size: .95rem; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text); resize: vertical; }
.contact__form input:focus, .contact__form textarea:focus { outline: 2px solid var(--orange); border-color: transparent; }
.contact__form .btn--cta { align-self: flex-start; }
.form__note { color: var(--orange); font-weight: 600; font-size: .9rem; min-height: 1em; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; } /* spam honeypot */

.contact__info { display: flex; flex-direction: column; gap: 22px; }
.contact__item { display: flex; gap: 14px; }
.contact__icon { font-size: 1.4rem; }
.contact__item h4 { color: var(--navy); font-size: 1rem; margin-bottom: 2px; }
.contact__item a, .contact__item p { color: var(--text-muted); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--orange); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--text-muted); margin-top: 10px; font-size: .92rem; }

/* ========================================================= */
/* Footer                                                     */
/* ========================================================= */
.footer { background: var(--surface); border-top: 1px solid var(--border); margin-top: clamp(40px,7vw,80px); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: clamp(28px,5vw,64px); padding-block: clamp(40px,5vw,64px); }
.footer__tag { color: var(--text-muted); margin: 16px 0; font-size: .92rem; max-width: 340px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border); color: var(--text); font-weight: 600; }
.footer__social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.footer__col a, .footer__addr { color: var(--text-muted); font-size: .9rem; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid var(--border); padding-block: 18px; color: var(--text-muted); font-size: .85rem; text-align: center; }

/* ========================================================= */
/* Responsive for new sections                                */
/* ========================================================= */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .contact { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .form__row { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}

/* ========================================================= */
/* EduAI nav link                                             */
/* ========================================================= */
.nav__link--ai {
  font-weight: 600;
  background: linear-gradient(135deg, #7c5cff, #b455ff, var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__link--ai:hover { opacity: .8; }

/* ========================================================= */
/* Void toggle — black out the screen with a crayon 404       */
/* ========================================================= */
@font-face {
  font-family: "Pastel Crayon";
  src: url("assets/fonts/pastel-crayon.ttf") format("truetype");
  font-display: swap;
}

.void-screen {
  position: fixed; inset: 0; z-index: 9990; background: #000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 1.4s ease; /* dims in like brightness down */
}
.void-screen.show { opacity: 1; pointer-events: auto; }

.void-404 {
  margin: 0; text-align: center; line-height: .9;
  font-family: "Pastel Crayon", system-ui, cursive;
  font-size: clamp(3rem, 13vw, 9rem); letter-spacing: 4px;
}
.void-404 .vc1 { color: #ff5d8f; }   /* pink   */
.void-404 .vc2 { color: #ffd166; }   /* yellow */
.void-404 .vc3 { color: #4ee6c3; }   /* teal   */
.void-404 .void-sub {
  display: block; margin-top: 12px; letter-spacing: 2px;
  font-size: clamp(.8rem, 2vw, 1.2rem); color: #8ab4ff; /* sky blue */
}

/* ========================================================= */
/* Brands page                                                */
/* ========================================================= */
.brand-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; margin-bottom: 14px;
}
.ticks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0 24px; }
.ticks li { position: relative; padding-left: 30px; color: var(--text-muted); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; display: grid; place-items: center;
  background: rgba(14, 165, 233, .18);
  color: var(--orange); border-radius: 50%; font-size: .7rem; font-weight: 800;
}

/* Brand logos shown in the media slot */
.brand-media {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--card-radius); aspect-ratio: 4 / 3;
  display: grid; place-items: center; padding: 32px; overflow: hidden;
}
.brand-media .brand-logo {
  width: auto; height: auto; max-width: 80%; max-height: 74%;
  object-fit: contain; border-radius: 0; aspect-ratio: auto;
}
.brand-media .brand-logo--circle {        /* KIMS logo cropped to a circle */
  width: 230px; height: 230px; max-width: 70%; max-height: 92%;
  border-radius: 50%; object-fit: cover; background: #fff;
}
