/* ====== Base ====== */
:root{
  --gutter:72px; /* content rails (left/right padding) */

  --red:#b2121f;
  --yellow:#f6d500;
  --ink:#222;
  --muted:#666;
  --bg:#ffffff;
  --container:1180px;
  --railW:12px;
  --railInset:38px; /* <- controls spacing from content edges like MakeyMakey */
  --shadow:0 8px 24px rgba(0,0,0,.12);
  --frame:#d9d9d9;

  /* Header sizing */
  --topbar-h: 44px;
  --header-h: 78px;
  --logo-h: 106px;
}

/* Responsive gutters (MakeyMakey roomy rails) */
@media (max-width: 1280px){
  :root{ --gutter:56px; }
}
@media (max-width: 1024px){
  :root{ --gutter:40px; }
}
@media (max-width: 768px){
  :root{ --gutter:24px; }
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Nunito,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  /* make room for the fixed header stack */
  padding-top: calc(var(--topbar-h) + var(--header-h));
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.sr-only{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* ====== Top bar ====== */
.header-wrap{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
}

.topbar{
  background:var(--red);
  color:#fff;
  font-size:14px;
  letter-spacing:.2px;
  height:var(--topbar-h);
  display:flex;
  align-items:center;
  padding:0;
}
.topbar__inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
  text-align:center;
}

/* ====== Header ====== */
.site-header{
  position:relative;
  background:#fff;
  border-bottom:1px solid #eee;
  height:var(--header-h);
}
.site-header__inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
  height:100%;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
}
.brand{
  position:absolute;
  left:var(--gutter);
  bottom:calc(-1 * var(--logo-h) * .20);
  display:flex;
  align-items:center;
  gap:10px;
  z-index:2;
}
.brand__logo{height:var(--logo-h);width:auto;display:block}
.no-logo .brand__fallback{display:block}
.brand__fallback{display:none}
.brand__fallback-badge{
  display:inline-block;
  background:#e31a2d;
  color:#fff;
  padding:10px 14px;
  font-weight:800;
  border-radius:16px;
  box-shadow:0 6px 0 rgba(0,0,0,.12);
  line-height:1.05;
}

.nav{display:flex;justify-content:flex-end;margin-right:14px}
.nav__menu{
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.nav__link{
  font-family:Oswald, sans-serif;
  font-size:18px;
  letter-spacing:.2px;
}
.nav__toggle{display:none}

.header-icons{
  display:flex;
  gap:18px;
  margin-left:0;
}
.icon-btn{
  width:40px;height:40px;
  border:none;background:transparent;
  display:grid;place-items:center;
  cursor:pointer;
}
.icon-btn svg{width:28px;height:28px;fill:#333}
.icon-btn:hover svg{fill:#000}

/* ====== Hero ====== */
.hero{
  position:relative;
  height:min(520px, 60vh);
  overflow:hidden;
  border-bottom:1px solid #eee;
}
.hero__media{
  position:absolute; inset:0;
}
.hero__video{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:100%; height:100%;
  border:0;
}
/* Cover behavior for iframe background videos */
.hero__media{position:absolute; inset:0; overflow:hidden;}
@media (min-aspect-ratio: 16/9){
  .hero__video{ width:100%; height:56.25vw; }
}
@media (max-aspect-ratio: 16/9){
  .hero__video{ width:177.78vh; height:100%; }
}
.hero__scrim{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.15) 40%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.35));
}
.hero__content{
  position:relative;
  max-width:var(--container);
  height:100%;
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.hero__badge{
  color:#fff;
  text-align:center;
  margin-right:calc(var(--railInset) + 6px);
}
.hero__badge-top{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.hero__announce{
  font-size:16px;
  letter-spacing:.6px;
  opacity:.95;
}
.hero__headline{
  font-family:"Press Start 2P", monospace;
  font-size:34px;
  line-height:1.05;
  text-shadow:0 2px 0 rgba(0,0,0,.25);
  margin:0 0 16px;
}

/* Pixel arrows (two little yellow arrows) */
.pixel-arrows{
  width:70px;height:28px;
  display:block;
  background:
    linear-gradient(var(--yellow),var(--yellow)) 5px 6px/12px 12px no-repeat,
    linear-gradient(var(--yellow),var(--yellow)) 17px 18px/12px 12px no-repeat,
    linear-gradient(var(--yellow),var(--yellow)) 35px 6px/12px 12px no-repeat,
    linear-gradient(var(--yellow),var(--yellow)) 47px 18px/12px 12px no-repeat;
  filter:drop-shadow(0 2px 0 rgba(0,0,0,.25));
  transform:rotate(0deg);
  opacity:.95;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:14px 22px;
  border:3px solid #111;
  font-family:Oswald, sans-serif;
  font-weight:600;
  letter-spacing:.8px;
  transform:translateZ(0);
  box-shadow:0 6px 0 rgba(0,0,0,.18);
}
.btn--yellow{background:var(--yellow); color:#111}
.btn--yellow:hover{filter:brightness(.97)}
.btn--red{background:#ef0d26;color:#fff;border-color:#222}
.btn--red:hover{filter:brightness(.97)}

/* ====== Rails ====== */
.rails{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.rails__inner{
  position:relative;
  max-width:var(--container);
  height:100%;
  margin:0 auto;
  padding:0 var(--gutter);
}

.rails--hero{display:block;}
.rails--section{
  inset:0;
}
.rail{
  position:absolute;
  top:0; bottom:0;
  width:var(--railW);
  background:var(--yellow);
}
.rails__inner .rail--left{left:var(--railInset)}
.rails__inner .rail--right{left:calc(100% - var(--railInset) - var(--railW))}

/* ====== Layout helpers ====== */
.page{background:#fff}
.section{position:relative;padding:64px 0}
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
}

/* ====== Kit section ====== */
.section--kit{padding-top:56px}
.kit-title{
  margin:0;
  text-align:center;
  font-family:"Press Start 2P", monospace;
  font-size:34px;
  letter-spacing:1px;
  color:#444;
}
.kit-sub{
  margin:10px 0 34px;
  text-align:center;
  font-weight:700;
  color:#444;
  font-size:22px;
}
.kit-wrap{
  display:grid;
  grid-template-columns: 1fr minmax(260px, 820px) 1fr;
  gap:22px;
  align-items:center;
}
.kit-side{display:flex;justify-content:center}
.hashtag{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-family:Oswald, sans-serif;
  font-size:32px;
  font-weight:500;
  color:#ff7a1a;
  letter-spacing:2px;
}
.kit-video{
  position:relative;
  border:4px solid #1aab63;
  border-radius:6px;
  overflow:hidden;
  box-shadow:var(--shadow);
  aspect-ratio: 16 / 9;
}
.kit-thumb{width:100%;height:100%;object-fit:cover;display:block}
.play{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:92px;height:92px;
  border:none;background:transparent;
  cursor:pointer;
  z-index:2;
}
.play__ring{
  position:absolute; inset:0;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 6px rgba(0,0,0,.2) inset;
}
.play__triangle{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-42%,-50%);
  width:0;height:0;
  border-left:28px solid #1aab63;
  border-top:18px solid transparent;
  border-bottom:18px solid transparent;
  filter:drop-shadow(0 2px 0 rgba(0,0,0,.25));
}
.play__pulse{
  position:absolute; inset:-10px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.6);
  opacity:0;
  transform:scale(.85);
}
.kit-video:hover .play__pulse{
  animation:pulse 1.2s ease-out infinite;
}
.kit-video:hover .play{
  transform:translate(-50%,-50%) scale(1.03);
}
.kit-video:hover .play__triangle{border-left-color:#148d54}
@keyframes pulse{
  0%{opacity:0; transform:scale(.85)}
  25%{opacity:.7}
  100%{opacity:0; transform:scale(1.25)}
}

/* ====== Features ====== */
.section--features{padding-top:40px}
.feature-row{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:32px;
  align-items:center;
  margin:26px 0;
}
.feature-row--reverse{
  grid-template-columns: .8fr 1.2fr;
}
.feature-row--reverse .feature-card{order:2}
.feature-row--reverse .feature-text{order:1}
.frame{
  border:4px solid var(--frame);
  background:#fff;
  box-shadow:0 6px 0 rgba(0,0,0,.08);
}
.feature-img img{width:100%;height:auto;display:block}
.feature-text{
  position:relative;
  padding:10px 6px;
}
.feature-text h3{
  margin:0 0 14px;
  font-family:Nunito, sans-serif;
  font-weight:300;
  font-size:54px;
  line-height:1.05;
  color:#666;
}
.feature-text p{
  margin:0;
  color:#666;
  font-size:18px;
  line-height:1.7;
  max-width:380px;
}
.arrow{
  width:46px;height:46px;
  margin:8px 0 14px;
  background:var(--yellow);
  clip-path:polygon(0 35%, 55% 35%, 55% 15%, 100% 50%, 55% 85%, 55% 65%, 0 65%);
  box-shadow:0 2px 0 rgba(0,0,0,.15);
}
.arrow--left{
  transform:scaleX(-1);
}
.divider-line{
  height:4px;
  background:var(--yellow);
  width:min(860px, 90%);
  margin:40px auto;
}

/* ====== Tri cards ====== */
.section--tri{padding-top:10px}
.tri-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
  align-items:stretch;
}
.tri-card{
  border-radius:6px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transform:translateZ(0);
  background:#fff;
}
.tri-top{height:340px;overflow:hidden}
.tri-top img{width:100%;height:100%;object-fit:cover}
.tri-bottom{
  background:var(--yellow);
  padding:22px 22px 26px;
  min-height:360px;
}
.tri-title{
  font-family:Oswald, sans-serif;
  font-weight:300;
  font-size:70px;
  letter-spacing:2px;
  color:#fff;
  margin:6px 0 18px;
}
.tri-bottom p{margin:0 0 22px;color:#333;line-height:1.7;font-size:16px}
.tri-link{
  font-weight:800;
  font-size:22px;
  display:inline-flex;
  gap:10px;
  align-items:center;
}
.tri-card:hover{transform:translateY(-3px)}
.tri-card:hover .tri-top img{transform:scale(1.03)}
.tri-top img{transition:transform .25s ease}

/* ====== Kit products ====== */
.section--kits{padding:60px 0}
.rail-box{
  position:relative;
  border:10px solid var(--yellow);
  padding:40px 26px 26px;
}
.hand-title{
  text-align:center;
  font-family:Nunito,sans-serif;
  font-weight:300;
  font-size:56px;
  margin:0 0 18px;
  color:#555;
}
.kit-products{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
  margin-top:8px;
}
.product{text-align:center;padding:6px 10px 14px}
.product__imgwrap{
  position:relative;
  min-height:320px;
  display:grid;
  place-items:center;
}
.product__bg{
  position:absolute;
  width:320px;height:260px;
  background:var(--yellow);
  z-index:0;
}
.product__img{position:relative;z-index:1;max-height:320px}
.product__name{
  font-family:Nunito,sans-serif;
  font-weight:500;
  font-size:34px;
  margin:18px 0 6px;
  color:#444;
}
.product__tag{margin:0 0 20px;color:#666;font-size:18px}
.product__price{font-size:28px;font-weight:800;color:#666;margin:0 0 18px}
.product__strike{
  font-size:18px;
  text-decoration:line-through;
  color:#e31a2d;
  margin-left:12px;
  font-weight:700;
}
.more-products{
  text-align:center;
  margin-top:26px;
  padding-top:8px;
}
.more-products__link{
  display:inline-block;
  font-family:Oswald, sans-serif;
  font-size:34px;
  font-weight:700;
  letter-spacing:1px;
  color:#333;
}
.pixel-bug{
  display:block;
  width:70px;height:40px;
  margin:0 auto 10px;
  background:
    radial-gradient(circle at 20px 18px, #ff7a1a 6px, transparent 7px) 0 0/70px 40px no-repeat,
    radial-gradient(circle at 50px 18px, #ff7a1a 6px, transparent 7px) 0 0/70px 40px no-repeat,
    linear-gradient(#ff7a1a,#ff7a1a) 30px 10px/10px 20px no-repeat,
    linear-gradient(#ff7a1a,#ff7a1a) 15px 18px/40px 10px no-repeat;
}

/* ====== Newsletter ====== */
.newsletter{
  background:#147a4d;
  color:#fff;
  padding:60px 0 40px;
}
.newsletter__inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
  text-align:center;
}
.newsletter__title{
  font-family:Oswald, sans-serif;
  font-size:28px;
  letter-spacing:1px;
  margin-bottom:26px;
}
.newsletter__form{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
}
.newsletter input{
  width:min(520px, 80vw);
  padding:16px 18px;
  font-size:18px;
  border-radius:4px;
  border:none;
  outline:none;
}
.newsletter__btn{
  padding:16px 30px;
  font-size:22px;
  font-family:Oswald, sans-serif;
  background:#b12b0f;
  color:#fff;
  border:none;
  border-radius:4px;
  cursor:pointer;
}
.newsletter__btn:hover{filter:brightness(.95)}
.newsletter__follow{
  margin:40px 0 18px;
  font-family:Oswald, sans-serif;
  font-size:22px;
  letter-spacing:1px;
}
.social{display:flex;gap:24px;justify-content:center;align-items:center}
.social__btn{
  width:56px;height:56px;
  display:grid;place-items:center;
  border-radius:10px;
  background:#fff;
}
.social__btn svg{width:30px;height:30px;fill:#147a4d}
.fineprint{
  margin-top:34px;
  opacity:.95;
  font-size:14px;
  line-height:1.6;
}
.fineprint__tiny{opacity:.9;margin-top:10px;font-size:12px}

/* ====== Modal ====== */
.modal{position:fixed; inset:0; display:none; z-index:100}
.modal[aria-hidden="false"]{display:block}
.modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.7)}
.modal__panel{
  position:relative;
  width:min(1000px, 92vw);
  margin:6vh auto 0;
  background:#111;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 24px 90px rgba(0,0,0,.55);
}
.modal__close{
  position:absolute; top:10px; right:10px;
  width:44px;height:44px;
  border:none;border-radius:10px;
  background:rgba(255,255,255,.15);
  color:#fff;font-size:28px;cursor:pointer;
  z-index:2;
}
.modal__ratio{aspect-ratio:16/9}
.modal__ratio iframe{width:100%;height:100%;display:block}

/* ====== Responsive ====== */
@media (max-width: 980px){
  .hero__headline{font-size:28px}
  .kit-title{font-size:26px}
  .kit-wrap{grid-template-columns: 1fr}
  .kit-side{display:none}
  .feature-row, .feature-row--reverse{grid-template-columns:1fr}
  .feature-row--reverse .feature-card,
  .feature-row--reverse .feature-text{order:unset}
  .feature-text h3{font-size:44px}
  .tri-grid{grid-template-columns:1fr}
  .tri-bottom{min-height:auto}
  .kit-products{grid-template-columns:1fr}
  .hand-title{font-size:44px}
  .nav{justify-content:flex-end}
}
@media (max-width: 780px){
  .site-header__inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  column-gap:22px;
  height:100%;
}
  .brand{min-width:auto}
  .brand__logo{height:52px}
  .nav__menu{display:none;position:absolute;left:0;right:0;top:100%;background:#fff;border-bottom:1px solid #eee;padding:14px 18px;gap:14px;justify-content:center}
  .nav__toggle{display:inline-flex;align-items:center;justify-content:center;border:none;background:transparent;cursor:pointer}
  .nav__toggle-lines{width:26px;height:18px;border-top:3px solid #333;border-bottom:3px solid #333;position:relative}
  .nav__toggle-lines:before{content:"";position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);border-top:3px solid #333}
  .nav__menu.is-open{display:flex;flex-wrap:wrap}
  .header-icons{gap:6px}
  .icon-btn{width:36px;height:36px}
  .icon-btn svg{width:24px;height:24px}
}


/* Header spacing fixes (menu ↔ logo ↔ icons) */
.nav{ justify-self: end; }
.header-icons{ justify-self: end; display:flex; align-items:center; gap:12px; }
.brand{ justify-self: start; }
.brand__logo{ height:64px; width:auto; display:block; }
@media (max-width: 980px){
  .brand__logo{ height:52px; }
}


/* Header scroll behavior (sticky + shrink) */
.site-header{ transition: background .2s ease, box-shadow .2s ease, backdrop-filter .2s ease; }
.site-header.is-scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.site-header.is-scrolled .site-header__inner{ }
.site-header.is-scrolled .brand__logo{ height:52px; }
@media (max-width: 980px){
  .site-header.is-scrolled .brand__logo{ height:44px; }
}
.section--appsHero {
    padding-top: 46px;
    padding-bottom: 26px;
}

.apps-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: center;
}

.apps-hero__kicker {
    font-family: Oswald, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.apps-hero__title {
    margin: 0 0 12px;
    font-family: "Press Start 2P", monospace;
    font-size: 30px;
    line-height: 1.15;
    color: #444;
}

.apps-hero__desc {
    margin: 0 0 18px;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
}

.apps-search {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

    .apps-search input {
        width: min(560px, 84vw);
        padding: 14px 16px;
        border: 3px solid #111;
        border-radius: 6px;
        font-size: 16px;
        outline: none;
        box-shadow: 0 6px 0 rgba(0,0,0,.10);
    }

.apps-hero__media img {
    width: 100%;
    height: auto;
    display: block;
}

.section--appsGrid {
    padding-top: 10px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 980px) {
    .apps-hero {
        grid-template-columns: 1fr;
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
}

.app-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateZ(0);
}

.app-card__media {
    background: var(--yellow);
    padding: 10px;
}

    .app-card__media img {
        width: 100%;
        border-radius: 6px;
    }

.app-card__body {
    padding: 16px 16px 18px;
}

.app-card__title {
    margin: 0 0 10px;
    font-family: Oswald, sans-serif;
    font-size: 26px;
    letter-spacing: .2px;
    color: #333;
}

.app-card__desc {
    margin: 0 0 14px;
    color: #666;
    font-size: 16px;
    line-height: 1.65;
    min-height: 52px;
}

.app-card__meta {
    margin-top: 10px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .4px;
    color: rgba(0,0,0,.55);
}

.app-card .btn {
    width: 100%;
    text-align: center;
}

.apps-bottom {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}


/* ===== Educators Page ===== */
.section--eduHero {
    padding-top: 46px;
    padding-bottom: 24px;
}

.edu-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: center;
}

@media (max-width: 980px) {
    .edu-hero {
        grid-template-columns: 1fr;
    }
}

.edu-kicker {
    font-family: Oswald, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}

.edu-title {
    margin: 0 0 12px;
    font-family: "Press Start 2P", monospace;
    font-size: 28px;
    line-height: 1.2;
    color: #444;
}

.edu-desc {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 620px;
}

.section-title {
    margin: 0 0 14px;
    font-family: Oswald, sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: #333;
}

.edu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 820px) {
    .edu-cards {
        grid-template-columns: 1fr;
    }
}

.edu-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px 16px 18px;
}

.edu-card__title {
    margin: 0 0 8px;
    font-family: Oswald, sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #333;
}

.edu-card__text {
    margin: 0 0 12px;
    color: #666;
    line-height: 1.65;
}

.edu-faq {
    margin-top: 22px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.edu-subtitle {
    margin: 0 0 8px;
    font-family: Oswald, sans-serif;
    font-weight: 900;
    font-size: 22px;
}

.faq-item {
    border-top: 1px solid rgba(0,0,0,.1);
}

    .faq-item:first-of-type {
        border-top: 0;
    }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: Oswald, sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #333;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border: 2px solid #111;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.faq-a {
    padding: 0 6px 14px 6px;
    color: #666;
    line-height: 1.7;
}

.edu-res-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 980px) {
    .edu-res-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .edu-res-grid {
        grid-template-columns: 1fr;
    }
}

.edu-res {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.edu-res__title {
    font-family: Oswald, sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.edu-res__list {
    margin: 0 0 14px 18px;
    padding: 0;
    color: #666;
    line-height: 1.65;
}

.edu-res .btn {
    width: 100%;
    text-align: center;
}

.edu-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 980px) {
    .edu-split {
        grid-template-columns: 1fr;
    }
}

.edu-panel {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.edu-panel__text {
    margin: 0 0 14px;
    color: #666;
    line-height: 1.7;
}

.edu-panel__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .edu-panel__actions .btn {
        flex: 1 1 180px;
        text-align: center;
    }

.edu-pd {
    margin-top: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.edu-pd__title {
    margin: 6px 0 8px;
    font-family: Oswald, sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #333;
}

.edu-pd__text {
    margin: 0 0 14px;
    color: #666;
    line-height: 1.7;
}
/* ===== About Page ===== */
.section--aboutHero {
    padding-top: 46px;
    padding-bottom: 18px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: center;
}

@media (max-width: 980px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
}

.about-kicker {
    font-family: Oswald, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}

.about-title {
    margin: 0 0 12px;
    font-family: "Press Start 2P", monospace;
    font-size: 28px;
    line-height: 1.2;
    color: #444;
}

.about-desc {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.75;
    color: #666;
    max-width: 660px;
}

.about-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .about-cta .btn {
        flex: 0 1 auto;
    }

.section--aboutStory {
    padding-top: 8px;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 980px) {
    .about-story {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
}

    .about-card .muted {
        opacity: .85;
    }

.about-bullets {
    margin: 10px 0 0 18px;
    color: #666;
    line-height: 1.7;
}

.section--aboutFounders {
    padding-top: 10px;
}

.people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 820px) {
    .people-grid {
        grid-template-columns: 1fr;
    }
}

.person-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.person-card__img img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.person-card__name {
    margin: 10px 0 6px;
    font-family: Oswald, sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #333;
}

.person-card__role {
    color: #666;
    font-weight: 700;
    margin-bottom: 12px;
}

.person-card__btn {
    width: 100%;
    text-align: center;
}

.about-note {
    margin-top: 14px;
    color: #666;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 980px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.team-card__name {
    margin: 0 0 6px;
    font-family: Oswald, sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #333;
}

.team-card__role {
    color: #666;
    line-height: 1.6;
    font-weight: 700;
}

.about-collab {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
}
