  :root {
    --ink: #0a0a0c;
    --ink-soft: #1a1a1f;
    --ink-medium: #2a2a32;
    --paper: #ffffff;
    --paper-warm: #fbf8f3;
    --paper-soft: #f4eee3;
    --red: #c8102e;
    --red-bright: #e30b1d;
    --red-deep: #8b0a1f;
    --red-dark: #5a0613;
    --gold-accent: #c89a2a;
    --gold: #ffc93c;
    --gold-deep: #e0a300;
    --teal: #2ec4b6;
    --teal-deep: #1a9c90;
    --blue: #0a6cff;
    --blue-bright: #3f8dff;
    --blue-deep: #0047b3;
    --line: rgba(10,10,12,0.12);
    --line-strong: rgba(10,10,12,0.35);
    --shadow: 0 30px 60px -30px rgba(10,10,12,0.45);
    --shadow-red: 0 20px 50px -20px rgba(200,16,46,0.4);
    --display: 'Fraunces', Georgia, serif;
    --body: 'Inter Tight', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none; z-index: 100;
    opacity: 0.35; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ============ NAV ============ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 18px 40px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: padding 0.3s ease;
  }
  nav.scrolled { padding: 12px 40px; }
  .logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--display); font-weight: 900; font-size: 22px;
    letter-spacing: -0.02em; text-decoration: none; color: inherit;
  }
  .logo-mark {
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; overflow: hidden;
    transition: width 0.3s ease, height 0.3s ease;
  }
  nav.scrolled .logo-mark { width: 48px; height: 48px; }
  .logo-mark img {
    width: 100%; height: 100%; object-fit: contain;
    display: block;
  }
  /* Inverted logo for use over dark/red backgrounds */
  .logo-mark.invert img { filter: brightness(0) invert(1); }
  nav ul { display: flex; gap: 28px; list-style: none; }
  nav ul a {
    color: var(--ink); text-decoration: none;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    position: relative; transition: color 0.2s;
  }
  nav ul a::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
  }
  nav ul a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--red); color: var(--paper);
    padding: 11px 22px; border-radius: 3px; text-decoration: none;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    transition: all 0.3s; border: 1px solid var(--red);
  }
  .nav-cta:hover { background: var(--red-deep); border-color: var(--red-deep); }

  .nav-toggle {
    display: none; background: var(--ink); color: var(--paper);
    border: none; width: 44px; height: 44px; border-radius: 4px;
    cursor: pointer; align-items: center; justify-content: center;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--ink); z-index: 49;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 28px; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    color: var(--paper); text-decoration: none;
    font-family: var(--display); font-size: 28px; font-weight: 700;
    letter-spacing: -0.02em;
  }
  .mobile-menu a.cta {
    background: var(--red); padding: 14px 32px;
    border-radius: 4px; font-size: 18px; margin-top: 12px;
  }

  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    padding: 140px 40px 80px;
    position: relative;
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 60px; align-items: center;
    background:
      radial-gradient(circle at 85% 25%, rgba(200,16,46,0.10) 0%, transparent 50%),
      radial-gradient(circle at 12% 75%, rgba(200,16,46,0.06) 0%, transparent 45%),
      var(--paper);
    overflow: hidden;
  }
  .hero-decor {
    position: absolute; inset: 0; pointer-events: none;
    opacity: 0.05; overflow: hidden;
  }
  .hero-decor svg {
    position: absolute;
    width: 900px; height: 900px;
    top: -100px; right: -250px;
    color: var(--red);
  }
  .hype-strip {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    background: var(--ink); color: var(--paper); text-decoration: none;
    padding: 12px 22px; border-radius: 100px;
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em;
    margin-bottom: 20px; width: fit-content; max-width: 100%;
    transition: background 0.25s;
  }
  .hype-strip:hover { background: var(--ink-medium); }
  .hype-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright);
    animation: pulse 2s infinite; flex-shrink: 0;
  }
  .hype-label {
    text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700;
    font-size: 10px; color: var(--red-bright);
  }
  .hype-event { font-weight: 600; }
  .hype-countdown {
    font-weight: 700; color: var(--red-bright);
    padding-left: 12px; border-left: 1px solid rgba(255,255,255,0.25);
  }
  .hero-slogan {
    font-family: var(--mono); font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--red); margin-bottom: 22px;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; margin-bottom: 32px;
    padding: 9px 18px; border: 1.5px solid var(--ink);
    border-radius: 100px; background: var(--paper); font-weight: 500;
  }
  .hero-tag .dot {
    width: 8px; height: 8px; background: var(--red);
    border-radius: 50%; animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.7); }
    50% { box-shadow: 0 0 0 10px rgba(200,16,46,0); }
  }
  h1.hero-title {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.94; letter-spacing: -0.035em;
    margin-bottom: 28px;
  }
  h1.hero-title .accent {
    color: var(--red); font-style: italic; font-weight: 800;
    padding-right: 0.08em; display: inline-block;
  }
  .hero-sub {
    font-size: 18px; color: var(--ink-soft);
    max-width: 540px; margin-bottom: 40px; line-height: 1.6;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn-primary {
    background: var(--red); color: var(--paper);
    padding: 16px 30px; border: none; border-radius: 3px;
    font-family: var(--body); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 12px;
    transition: all 0.3s; box-shadow: var(--shadow-red);
  }
  .btn-primary:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
  }
  .btn-secondary {
    background: transparent; color: var(--ink);
    padding: 16px 30px; border: 1.5px solid var(--ink); border-radius: 3px;
    font-family: var(--body); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 12px;
    transition: all 0.3s;
  }
  .btn-secondary:hover { background: var(--ink); color: var(--paper); }
  .btn-text {
    color: var(--ink); text-decoration: none;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    padding: 8px 4px; border-bottom: 1.5px solid var(--ink);
    transition: color 0.2s;
  }
  .btn-text:hover { color: var(--red); border-color: var(--red); }

  /* Hero visual */
  .hero-visual {
    position: relative; aspect-ratio: 0.95;
    max-width: 440px; justify-self: center; width: 100%;
  }
  .hero-card { position: absolute; border-radius: 4px; box-shadow: var(--shadow); }
  .hero-card-main {
    inset: 8% 18% 12% 0;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-medium) 100%);
    color: var(--paper); padding: 36px 32px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .hero-card-main .label {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red-bright); font-weight: 600;
  }
  .hero-card-main .big {
    font-family: var(--display); font-size: 88px; font-weight: 900;
    line-height: 0.9; letter-spacing: -0.04em; margin: 20px 0;
  }
  .hero-card-main .big .grad { color: var(--red-bright); }
  .hero-card-main .meta { font-size: 13px; opacity: 0.78; line-height: 1.6; }
  .hero-card-accent {
    bottom: 0; right: 0; width: 52%; aspect-ratio: 1;
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-deep) 100%);
    display: flex; align-items: center; justify-content: center; color: var(--paper);
  }
  .hero-card-accent svg { width: 55%; height: 55%; }
  .hero-card-stat {
    top: 0; right: 8%; width: 38%;
    background: var(--paper); text-align: center;
    padding: 22px 16px; border: 1.5px solid var(--ink);
  }
  .hero-card-stat .num {
    font-family: var(--display); font-size: 46px; font-weight: 900;
    color: var(--red); line-height: 1;
  }
  .hero-card-stat .lbl {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-top: 8px; color: var(--ink); font-weight: 600;
  }

  /* Hero mobile card */
  .hero-mobile {
    display: none;
    margin-top: 32px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-medium) 100%);
    color: var(--paper); padding: 32px 28px;
    border-radius: 4px; position: relative; overflow: hidden;
    box-shadow: var(--shadow);
  }
  .hero-mobile::before {
    content: ''; position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: var(--red);
    border-radius: 50%; opacity: 0.9;
  }
  .hero-mobile-content { position: relative; }
  .hero-mobile .label {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red-bright); font-weight: 600;
  }
  .hero-mobile .big {
    font-family: var(--display); font-size: 64px; font-weight: 900;
    line-height: 0.9; letter-spacing: -0.04em; margin: 14px 0;
  }
  .hero-mobile .big .grad { color: var(--red-bright); }
  .hero-mobile .meta { font-size: 14px; opacity: 0.78; line-height: 1.6; margin-bottom: 20px; }
  .hero-mobile-row {
    display: flex; gap: 16px;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15);
  }
  .hero-mobile-pill { flex: 1; }
  .hero-mobile-pill .n {
    font-family: var(--display); font-size: 32px; font-weight: 900;
    color: var(--red-bright); line-height: 1;
  }
  .hero-mobile-pill .l {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 500;
  }

  /* ============ SECTIONS ============ */
  section { padding: 120px 40px; position: relative; }
  .container { max-width: 1280px; margin: 0 auto; }
  .section-tag {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--red); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px; font-weight: 600;
  }
  .section-tag::before {
    content: ''; width: 36px; height: 2px; background: var(--red);
  }
  .section-tag.center { justify-content: center; }
  .section-title {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95; letter-spacing: -0.03em;
    margin-bottom: 24px; max-width: 900px;
  }
  .section-title em { font-style: italic; color: var(--red); }
  .section-intro {
    font-size: 18px; color: var(--ink-soft);
    max-width: 680px; margin-bottom: 64px; line-height: 1.6;
  }

  /* ============ ABOUT ============ */
  .about {
    background: var(--paper-warm);
    border-top: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
  }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .about-intro p {
    font-size: 17px; color: var(--ink-soft);
    line-height: 1.7; margin-bottom: 20px;
  }
  .about-intro p:first-child { font-size: 19px; color: var(--ink); }
  .about-intro p strong { color: var(--ink); font-weight: 600; }

  .goals {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; background: var(--ink); border: 2px solid var(--ink);
  }
  .goal {
    background: var(--paper); padding: 28px 24px;
    position: relative; transition: all 0.3s;
    cursor: pointer; text-align: left; width: 100%;
    font-family: inherit; border: none;
    color: var(--ink);
    display: flex; flex-direction: column;
  }
  .goal:hover { background: var(--red); color: var(--paper); }
  .goal:hover .goal-num { color: var(--paper); }
  .goal:hover .goal-expand { background: var(--paper); color: var(--red); border-color: var(--paper); }
  .goal-num {
    font-family: var(--mono); font-size: 11px; color: var(--red);
    letter-spacing: 0.18em; margin-bottom: 16px;
    font-weight: 600; transition: color 0.3s;
  }
  .goal h3 {
    font-family: var(--display); font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em; margin-bottom: 10px;
  }
  .goal p { font-size: 14px; line-height: 1.6; opacity: 0.9; flex: 1; }
  .goal-expand {
    margin-top: 18px; padding-top: 14px;
    border-top: 1px solid currentColor;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 600; opacity: 0.85;
    transition: all 0.3s;
  }
  .goal-expand .icon {
    width: 24px; height: 24px; border-radius: 50%;
    border: 1.5px solid currentColor;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
  }

  .founding-story {
    margin-top: 100px; padding-top: 80px;
    border-top: 1.5px solid var(--ink);
  }
  .founding-story h3 {
    font-family: var(--display); font-size: 32px; font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 20px;
  }
  .founding-story h3 em { font-style: italic; color: var(--red); }
  .founding-story p {
    font-size: 17px; color: var(--ink-soft);
    line-height: 1.7; margin-bottom: 18px;
    max-width: 760px;
  }
  .founding-photos {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 16px; margin: 40px 0 16px; max-width: 760px;
  }
  .founding-photo {
    margin: 0; border-radius: 4px; overflow: hidden;
    box-shadow: var(--shadow); aspect-ratio: 4/3;
  }
  .founding-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .founding-photo-tall { aspect-ratio: 3/4; }
  .ig-follow-chip {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--ink-soft); text-decoration: none;
    font-family: var(--mono); font-size: 12px; font-weight: 600;
    letter-spacing: 0.04em; transition: color 0.2s;
  }
  .ig-follow-chip:hover { color: var(--red); }

  .schools-served {
    margin-top: 40px; padding-top: 32px;
    border-top: 1px solid var(--line-strong);
  }
  .schools-served h4 {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); margin-bottom: 16px; font-weight: 600;
  }
  .schools-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }
  .school-card {
    margin: 0; background: var(--paper); border: 1.5px solid var(--ink);
    border-radius: 6px; overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  }
  .school-card img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  }
  .school-card figcaption {
    padding: 12px 14px; font-size: 13px; font-weight: 600;
    position: relative;
  }
  .school-card figcaption::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 0; height: 3px;
    background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s;
  }
  .school-card:hover {
    border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow);
  }
  .school-card:hover figcaption::after { transform: scaleX(1); }
  .photo-credit {
    margin-top: 20px; font-size: 11px; color: var(--ink-soft); opacity: 0.65;
  }

  /* ============ UPCOMING ============ */
  .upcoming-list { display: flex; flex-direction: column; gap: 2px; background: var(--ink); border: 2px solid var(--ink); }
  .upcoming-item {
    display: flex; align-items: center; gap: 28px;
    background: var(--paper); padding: 26px 30px;
    text-decoration: none; color: var(--ink);
    transition: background 0.25s;
  }
  .upcoming-item:hover { background: var(--paper-warm); }
  .upcoming-item:hover .upcoming-arrow { transform: translateX(6px); color: var(--red); }
  .upcoming-date {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 74px; height: 74px; flex-shrink: 0;
    border: 1.5px solid var(--ink); border-radius: 6px;
  }
  .upcoming-date .d {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--red); font-weight: 700;
  }
  .upcoming-date .n { font-family: var(--display); font-size: 26px; font-weight: 800; }
  .upcoming-info h3 { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
  .upcoming-info p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; max-width: 560px; }
  .upcoming-arrow { margin-left: auto; font-size: 20px; flex-shrink: 0; transition: all 0.25s; }

  /* ============ PARTNERS ============ */
  .partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
  .partner-card {
    background: var(--paper); border: 1.5px solid var(--ink); border-radius: 6px;
    padding: 20px 18px; font-size: 14px; font-weight: 600;
    text-decoration: none; color: var(--ink);
    display: flex; flex-direction: column; gap: 8px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  }
  .partner-card-ig:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow); }
  .partner-meta {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 11px; font-weight: 600;
    letter-spacing: 0.04em; color: var(--ink-soft); text-transform: none;
  }
  .partner-card-ig:hover .partner-meta { color: var(--red); }

  /* ============ MOMENTS ============ */
  .moments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .moment-photo { margin: 0; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1; }
  .moment-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .moment-photo:hover img { transform: scale(1.06); }

  /* ============ ENGAGE ============ */
  .engage { background: var(--ink); color: var(--paper); text-align: center; }
  .engage-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .engage-question {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .engage-sub { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 32px; }

  /* ============ CONFERENCE ============ */
  .conference {
    background: var(--ink); color: var(--paper);
    overflow: hidden; position: relative;
  }
  .conference::before {
    content: ''; position: absolute;
    top: -250px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200,16,46,0.20) 0%, transparent 65%);
    pointer-events: none;
  }
  .conference .section-tag { color: var(--red-bright); }
  .conference .section-tag::before { background: var(--red-bright); }
  .conference .section-intro { color: rgba(255,255,255,0.7); }
  .conference .section-title em { color: var(--red-bright); }
  .days-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 48px; position: relative;
  }
  .day-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 36px 28px; position: relative; overflow: hidden;
    transition: all 0.4s; border-radius: 4px;
  }
  .day-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--red-bright);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
  }
  .day-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-6px);
  }
  .day-card:hover::before { transform: scaleX(1); }
  .day-num {
    font-family: var(--display); font-size: 100px; font-weight: 900;
    line-height: 1; letter-spacing: -0.05em;
    color: var(--red-bright);
    margin-bottom: 4px;
  }
  .day-label {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--red-bright); margin-bottom: 20px; font-weight: 600;
  }
  .day-card h3 {
    font-family: var(--display); font-size: 26px; font-weight: 700;
    letter-spacing: -0.02em; margin-bottom: 14px;
  }
  .day-card p {
    color: rgba(255,255,255,0.72);
    font-size: 14px; line-height: 1.6; margin-bottom: 22px;
  }
  .day-card ul {
    list-style: none; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .day-card ul li {
    font-size: 13px; padding: 6px 0 6px 22px;
    color: rgba(255,255,255,0.85); position: relative;
  }
  .day-card ul li::before {
    content: '★'; position: absolute; left: 0;
    color: var(--red-bright); font-size: 11px; top: 8px;
  }
  .conference-partners {
    margin-top: 60px; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
  }
  .conference-partners .lbl {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red-bright); margin-bottom: 16px; font-weight: 600;
  }
  .conference-partners p {
    font-size: 15px; color: rgba(255,255,255,0.7);
    max-width: 640px; margin: 0 auto; line-height: 1.6;
  }

  /* ============ LEADERSHIP (BOARD DIRECTORY) ============ */
  .leadership { background: var(--paper); }
  .leadership-category {
    margin-bottom: 80px;
  }
  .leadership-category:last-child { margin-bottom: 0; }
  .leadership-category-header {
    display: flex; align-items: baseline; gap: 20px;
    margin-bottom: 32px; padding-bottom: 16px;
    border-bottom: 1.5px solid var(--ink);
  }
  .leadership-category-header h3 {
    font-family: var(--display); font-size: 32px; font-weight: 800;
    letter-spacing: -0.02em;
  }
  .leadership-category-header .count {
    font-family: var(--mono); font-size: 12px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--red); font-weight: 600;
  }
  .leaders-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .leader-card {
    border: 1.5px solid var(--line-strong);
    padding: 28px 24px; background: var(--paper);
    transition: all 0.3s; position: relative;
    border-radius: 4px; cursor: pointer;
    text-align: left; width: 100%;
    font-family: inherit;
  }
  .leader-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow);
    border-color: var(--ink);
  }
  .leader-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--red);
    margin-bottom: 18px;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 12px -2px rgba(200,16,46,0.3);
  }
  .leader-avatar .initials {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--paper); font-family: var(--display);
    font-weight: 800; font-size: 22px;
    transition: opacity 0.3s ease;
  }
  .leader-avatar .photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.3s ease;
  }
  .leader-card:hover .leader-avatar.has-photo .initials { opacity: 0; }
  .leader-card:hover .leader-avatar.has-photo .photo { opacity: 1; }
  .leader-card h4 {
    font-family: var(--display); font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em; margin-bottom: 4px; color: var(--ink);
  }
  .leader-card .role {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--red); font-weight: 600; line-height: 1.5;
  }
  .leader-card .view-more {
    margin-top: 16px; padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 12px; color: var(--ink-soft);
    display: flex; justify-content: space-between; align-items: center;
  }
  .leader-card .view-more .arrow {
    transition: transform 0.2s;
  }
  .leader-card:hover .view-more .arrow { transform: translateX(4px); color: var(--red); }

  /* Modal */
  .modal-backdrop {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10,10,12,0.7);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .modal-backdrop.open { opacity: 1; pointer-events: auto; }
  .modal {
    background: var(--paper); max-width: 640px; width: 100%;
    border-radius: 6px; box-shadow: var(--shadow);
    max-height: 90vh; overflow-y: auto;
    transform: translateY(20px); transition: transform 0.3s;
  }
  .modal-backdrop.open .modal { transform: translateY(0); }
  .modal-header {
    padding: 36px 36px 24px;
    border-bottom: 1px solid var(--line);
    display: flex; gap: 24px; align-items: center;
    position: relative;
  }
  .modal-avatar {
    width: 88px; height: 88px; border-radius: 50%;
    background: var(--red);
    flex-shrink: 0; position: relative; overflow: hidden;
    box-shadow: 0 6px 16px -2px rgba(200,16,46,0.3);
  }
  .modal-avatar .initials {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--paper); font-family: var(--display);
    font-weight: 800; font-size: 30px;
  }
  .modal-avatar .photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .modal-title h3 {
    font-family: var(--display); font-size: 28px; font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 4px;
  }
  .modal-title .role {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--red); font-weight: 600;
  }
  .modal-title .affil {
    font-size: 14px; color: var(--ink-soft); margin-top: 6px;
  }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    background: transparent; border: 1.5px solid var(--line-strong);
    width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--ink); transition: all 0.2s;
  }
  .modal-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .modal-body { padding: 28px 36px 36px; }
  .modal-body .section {
    margin-bottom: 24px; padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .modal-body .section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .modal-body h5 {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red); font-weight: 600; margin-bottom: 10px;
  }
  .modal-body p {
    font-size: 15px; line-height: 1.7; color: var(--ink-soft);
  }
  .modal-contact-note {
    background: var(--paper-warm); padding: 16px 20px;
    border-radius: 4px; border-left: 3px solid var(--red);
    font-size: 13px; color: var(--ink-soft);
    line-height: 1.6;
  }
  .modal-contact-note strong { color: var(--ink); }

  /* Goal Modal — wider for scholarly content */
  .modal-backdrop.wide .modal { max-width: 760px; }
  .goal-modal-eyebrow {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); font-weight: 600; margin-bottom: 8px;
  }
  .goal-modal-title {
    font-family: var(--display); font-size: 32px; font-weight: 800;
    letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 12px;
  }
  .goal-modal-tagline {
    font-size: 17px; color: var(--ink-soft);
    line-height: 1.55; font-style: italic;
    padding-left: 16px; border-left: 3px solid var(--red);
  }
  .goal-section { margin-bottom: 28px; }
  .goal-section:last-child { margin-bottom: 0; }
  .goal-section h5 {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red); font-weight: 700; margin-bottom: 12px;
  }
  .goal-section p {
    font-size: 15px; line-height: 1.7; color: var(--ink-soft);
    margin-bottom: 12px;
  }
  .goal-section p:last-child { margin-bottom: 0; }
  .goal-reading {
    background: var(--paper-warm); padding: 18px 22px;
    border-radius: 4px;
  }
  .goal-reading ul {
    list-style: none; margin-top: 4px;
  }
  .goal-reading li {
    padding: 6px 0 6px 18px; position: relative;
    font-size: 14px; line-height: 1.5; color: var(--ink-soft);
  }
  .goal-reading li::before {
    content: '→'; position: absolute; left: 0;
    color: var(--red); font-weight: 700;
  }
  .goal-reading em { color: var(--ink); font-style: italic; }
  .modal-header.goal-header-block {
    flex-direction: column; align-items: flex-start; gap: 0;
    padding-bottom: 28px;
  }
  .membership {
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  }
  .membership-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 64px; align-items: start;
  }
  .membership-info p {
    font-size: 16px; color: var(--ink-soft);
    line-height: 1.7; margin-bottom: 18px;
  }
  .membership-info p:first-of-type {
    font-size: 18px; color: var(--ink);
  }
  .involvement-types {
    margin-top: 32px; padding-top: 28px;
    border-top: 1.5px solid var(--ink);
  }
  .involvement-types h4 {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); font-weight: 600; margin-bottom: 16px;
  }
  .involvement-list {
    list-style: none;
  }
  .involvement-list li {
    padding: 8px 0 8px 22px; position: relative;
    font-size: 15px; color: var(--ink);
  }
  .involvement-list li::before {
    content: '→'; position: absolute; left: 0;
    color: var(--red); font-weight: 700;
  }
  .form-card {
    background: var(--paper); padding: 40px;
    border-radius: 4px; border: 1.5px solid var(--ink);
    box-shadow: var(--shadow);
  }
  .form-card > h3 {
    font-family: var(--display); font-size: 26px; font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 6px;
  }
  .form-card > p {
    font-size: 14px; color: var(--ink-soft); margin-bottom: 28px;
  }
  .form-section {
    margin-bottom: 28px; padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .form-section:last-of-type { border-bottom: none; padding-bottom: 0; }
  .form-section-label {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red); font-weight: 700; margin-bottom: 16px;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-bottom: 14px;
  }
  .form-field { margin-bottom: 14px; }
  .form-field label {
    display: block; font-size: 12px;
    margin-bottom: 6px; color: var(--ink-soft);
    font-weight: 600;
  }
  .form-field label .req { color: var(--red); }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--line-strong); background: var(--paper);
    font-family: var(--body); font-size: 15px; border-radius: 3px;
    transition: all 0.2s; color: var(--ink); min-height: 46px;
  }
  .form-field textarea { min-height: 80px; resize: vertical; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none; border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
  }
  .checkbox-group {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  }
  .checkbox-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border: 1.5px solid var(--line);
    border-radius: 3px; cursor: pointer; transition: all 0.2s;
    font-size: 13px;
  }
  .checkbox-item:hover { border-color: var(--ink); }
  .checkbox-item input {
    width: 16px; height: 16px; min-height: 16px;
    margin: 0; cursor: pointer;
    accent-color: var(--red);
  }
  .agreement-box {
    background: var(--paper-warm); padding: 16px 20px;
    border-radius: 4px; border-left: 3px solid var(--red);
    font-size: 13px; color: var(--ink-soft);
    line-height: 1.5; margin-bottom: 16px;
  }
  .form-submit {
    width: 100%; background: var(--red); color: var(--paper);
    padding: 18px; border: none;
    font-family: var(--body); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    cursor: pointer; margin-top: 16px; border-radius: 3px;
    transition: all 0.3s; min-height: 56px;
    box-shadow: var(--shadow-red);
  }
  .form-submit:hover { background: var(--red-deep); transform: translateY(-2px); }
  .form-helper {
    text-align: center; margin-top: 14px;
    font-size: 12px; color: var(--ink-soft);
  }
  .form-success { display: none; text-align: center; padding: 32px 0; }
  .form-success.show { display: block; }
  .form-success .check {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--red); color: var(--paper);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 32px;
  }
  .form-success h4 {
    font-family: var(--display); font-size: 28px; font-weight: 800;
    margin-bottom: 12px;
  }
  .form-success p {
    font-size: 15px; color: var(--ink-soft);
    margin-bottom: 18px; max-width: 360px;
    margin-left: auto; margin-right: auto; line-height: 1.6;
  }
  .form-success .email-note {
    background: var(--paper-warm); padding: 14px 18px;
    border-radius: 4px; font-size: 13px; color: var(--ink-soft);
    max-width: 400px; margin: 0 auto;
  }

  /* ============ DONATE ============ */
  .donate {
    background: var(--ink); color: var(--paper);
    position: relative; overflow: hidden;
  }
  .donate::before {
    content: ''; position: absolute;
    top: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .donate .container { position: relative; }
  .donate .section-tag { color: var(--red-bright); }
  .donate .section-tag::before { background: var(--red-bright); }
  .donate .section-intro { color: rgba(255,255,255,0.7); }
  .donate .section-title em { color: var(--red-bright); }
  .donate-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 64px; align-items: center;
  }
  .donate-info p {
    color: rgba(255,255,255,0.78); font-size: 16px;
    line-height: 1.7; margin-bottom: 18px;
  }
  .donate-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 40px; border-radius: 6px;
    text-align: center;
  }
  .donate-card .status-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red-bright); padding: 6px 14px;
    border: 1px solid var(--red-bright); border-radius: 100px;
    margin-bottom: 24px; font-weight: 600;
  }
  .donate-card h3 {
    font-family: var(--display); font-size: 32px; font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 12px;
  }
  .donate-card p {
    font-size: 15px; color: rgba(255,255,255,0.7);
    line-height: 1.6; margin-bottom: 28px;
  }
  .donate-btn {
    display: inline-block;
    background: var(--red); color: var(--paper);
    padding: 16px 36px; border: none;
    font-family: var(--body); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    border-radius: 3px; opacity: 0.6;
    cursor: not-allowed; text-decoration: none;
  }
  .donate-options {
    margin-top: 24px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  /* ============ CONTACT ============ */
  .contact { background: var(--paper-warm); border-top: 1.5px solid var(--ink); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
  }
  .contact-info p {
    font-size: 17px; color: var(--ink-soft);
    line-height: 1.7; margin-bottom: 20px;
  }
  .contact-channel {
    margin-top: 24px; padding: 24px 28px;
    background: var(--paper); border: 1.5px solid var(--ink);
    border-radius: 4px;
  }
  .contact-channel .label {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); font-weight: 600; margin-bottom: 8px;
  }
  .contact-channel .value {
    font-family: var(--display); font-size: 22px;
    font-weight: 700; letter-spacing: -0.01em;
    word-break: break-all;
  }
  .contact-form {
    background: var(--paper); padding: 36px;
    border-radius: 4px; border: 1.5px solid var(--ink);
    box-shadow: var(--shadow);
  }
  .contact-form h3 {
    font-family: var(--display); font-size: 26px; font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 6px;
  }
  .contact-form > p {
    font-size: 14px; color: var(--ink-soft); margin-bottom: 24px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ink); color: var(--paper);
    padding: 60px 40px 30px;
  }
  .footer-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand h4 {
    font-family: var(--display); font-size: 28px; font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 12px;
  }
  .footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 14px; line-height: 1.6; max-width: 360px;
  }
  .footer-col h5 {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red-bright); margin-bottom: 14px; font-weight: 600;
  }
  .footer-col a {
    display: block; color: rgba(255,255,255,0.82);
    text-decoration: none; font-size: 14px; padding: 5px 0;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--red-bright); }
  .footer-ig { display: flex !important; align-items: center; gap: 7px; }
  .footer-bottom {
    max-width: 1280px; margin: 28px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.5);
    text-transform: uppercase; gap: 16px; flex-wrap: wrap;
  }

  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* TABLET */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding: 130px 32px 70px; }
    .hero-visual { max-width: 380px; margin-top: 20px; }
    section { padding: 100px 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .days-grid { grid-template-columns: 1fr; }
    .leaders-grid { grid-template-columns: repeat(2, 1fr); }
    .membership-grid { grid-template-columns: 1fr; gap: 48px; }
    .donate-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* MOBILE */
  @media (max-width: 680px) {
    nav { padding: 14px 20px; }
    nav.scrolled { padding: 10px 20px; }
    .logo-mark { width: 48px; height: 48px; }
    nav.scrolled .logo-mark { width: 42px; height: 42px; }
    nav ul { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }

    .hero {
      padding: 100px 20px 60px;
      min-height: auto;
      grid-template-columns: 1fr; gap: 0;
    }
    .hero-decor { opacity: 0.04; }
    .hero-decor svg { width: 500px; height: 500px; top: -50px; right: -150px; }
    .hero-visual { display: none; }
    .hero-mobile { display: block; }
    .hype-strip { font-size: 11px; padding: 10px 16px; gap: 10px; }
    .hype-countdown { padding-left: 10px; }
    .hero-tag { font-size: 10px; padding: 8px 14px; margin-bottom: 24px; }
    .hero-slogan { font-size: 11px; margin-bottom: 18px; }
    h1.hero-title { font-size: 42px; margin-bottom: 22px; }
    .hero-sub { font-size: 16px; margin-bottom: 30px; }
    .hero-actions { gap: 10px; }
    .btn-primary, .btn-secondary {
      padding: 15px 22px; font-size: 13px;
      width: 100%; justify-content: center;
    }
    .btn-text { width: 100%; text-align: center; padding: 14px 0; }

    section { padding: 72px 20px; }
    .section-title { font-size: 34px; }
    .section-intro { font-size: 16px; margin-bottom: 40px; }

    .goals { grid-template-columns: 1fr; }
    .goal { padding: 24px 20px; }
    .founding-story h3 { font-size: 26px; }
    .founding-story p { font-size: 16px; }
    .founding-photos { grid-template-columns: 1fr; }
    .founding-photo-tall { aspect-ratio: 4/3; }
    .schools-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
    .upcoming-item { flex-wrap: wrap; gap: 16px; padding: 20px; }
    .upcoming-arrow { display: none; }
    .partners-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .moments-grid { grid-template-columns: repeat(2, 1fr); }
    .school-chip { padding: 7px 14px; font-size: 12px; }

    .day-card { padding: 28px 22px; }
    .day-num { font-size: 80px; }
    .day-card h3 { font-size: 22px; }

    .leadership-category { margin-bottom: 56px; }
    .leadership-category-header { flex-direction: column; align-items: flex-start; gap: 6px; }
    .leadership-category-header h3 { font-size: 26px; }
    .leaders-grid { grid-template-columns: 1fr; gap: 14px; }
    .leader-card { padding: 24px 22px; }

    .modal { max-height: 95vh; }
    .modal-header { padding: 28px 24px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .modal-close { top: 16px; right: 16px; }
    .modal-title h3 { font-size: 24px; }
    .modal-body { padding: 20px 24px 28px; }

    .form-card { padding: 28px 22px; }
    .form-card > h3 { font-size: 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .checkbox-group { grid-template-columns: 1fr; }
    .form-field input, .form-field select, .form-field textarea { font-size: 16px; }
    .involvement-list li { font-size: 14px; }

    .donate-card { padding: 28px 22px; }
    .donate-card h3 { font-size: 26px; }

    .contact-form { padding: 28px 22px; }
    .contact-form h3 { font-size: 22px; }
    .contact-channel { padding: 20px 22px; }
    .contact-channel .value { font-size: 18px; }

    footer { padding: 48px 20px 24px; }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 28px; padding-bottom: 28px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom {
      flex-direction: column; text-align: center;
      font-size: 10px; gap: 10px;
    }
  }

  @media (max-width: 380px) {
    h1.hero-title { font-size: 36px; }
    .section-title { font-size: 28px; }
    .hero-mobile .big { font-size: 52px; }
    .day-num { font-size: 68px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
  }

  /* ============ COUNTDOWN PAGE ============ */
  body.countdown-page {
    background:
      radial-gradient(circle at 88% 8%, rgba(10,108,255,0.20) 0%, transparent 42%),
      radial-gradient(circle at 8% 18%, rgba(227,11,29,0.20) 0%, transparent 42%),
      radial-gradient(circle at 60% 95%, rgba(255,201,60,0.18) 0%, transparent 48%),
      radial-gradient(circle at 25% 70%, rgba(46,196,182,0.14) 0%, transparent 40%),
      var(--paper);
  }
  .cd-logo-link {
    position: fixed; top: 24px; left: 32px; z-index: 10;
    width: 84px; height: 84px; display: block;
  }
  .cd-logo { width: 100%; height: 100%; object-fit: contain; }
  .cd-wrap {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 140px 24px 80px; max-width: 720px; margin: 0 auto;
  }
  .cd-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; margin-bottom: 22px;
    padding: 9px 18px; border: 1.5px solid var(--ink);
    border-radius: 100px; background: var(--paper); font-weight: 500;
  }
  .cd-tag .dot {
    width: 8px; height: 8px; background: var(--red); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  .cd-slogan {
    font-family: var(--mono); font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--red); margin-bottom: 20px;
  }
  .cd-headline {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(38px, 6vw, 68px); line-height: 0.98;
    letter-spacing: -0.03em; margin-bottom: 20px;
  }
  .cd-headline em { font-style: italic; color: var(--red); }
  .cd-accent-bar {
    width: 84px; height: 5px; margin: 0 auto 26px; border-radius: 3px;
    background: linear-gradient(90deg, var(--red-bright), var(--gold) 34%, var(--teal) 67%, var(--blue));
  }
  .cd-sub {
    font-size: 17px; color: var(--ink-soft); line-height: 1.65;
    max-width: 540px; margin-bottom: 44px;
  }
  .cd-event {
    font-family: var(--mono); font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-soft); margin-bottom: 18px;
  }
  .cd-countdown {
    display: flex; gap: 14px; margin-bottom: 44px;
  }
  .cd-unit {
    background: var(--ink); color: var(--paper);
    border-radius: 6px; padding: 18px 20px;
    min-width: 84px; display: flex; flex-direction: column; align-items: center;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--unit-color, var(--red-bright));
  }
  .cd-unit .n {
    font-family: var(--display); font-weight: 800; font-size: 40px;
    line-height: 1; color: var(--unit-color, var(--red-bright));
  }
  .cd-unit .l {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; margin-top: 8px; opacity: 0.75;
  }
  .cd-unit:nth-child(1) { --unit-color: var(--red-bright); }
  .cd-unit:nth-child(2) { --unit-color: var(--blue-bright); }
  .cd-unit:nth-child(3) { --unit-color: var(--gold); }
  .cd-unit:nth-child(4) { --unit-color: var(--teal); }
  .cd-actions {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    justify-content: center;
  }
  .cd-moments {
    text-align: center; padding-bottom: 40px;
  }
  .cd-moments .section-tag { justify-content: center; color: var(--teal-deep); }
  .cd-moments .section-tag::before { background: var(--teal-deep); }
  .cd-moments .section-title { margin-left: auto; margin-right: auto; }
  .cd-serve {
    padding: 100px 24px 80px; text-align: center;
  }
  .cd-serve .section-tag { justify-content: center; color: var(--blue-deep); }
  .cd-serve .section-tag::before { background: var(--blue-deep); }
  .cd-serve .section-title {
    margin-left: auto; margin-right: auto; margin-bottom: 48px;
  }
  .cd-serve .schools-grid { text-align: left; }
  .cd-serve .school-card:hover { border-color: var(--blue-deep); }
  .cd-serve .school-card:hover figcaption::after { background: var(--blue-deep); }
  .cd-serve .photo-credit { text-align: center; }
  .cd-engage {
    background: var(--ink); color: var(--paper);
    text-align: center; padding: 100px 24px;
    position: relative; overflow: hidden;
  }
  .cd-engage::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(circle at 15% 20%, rgba(255,201,60,0.10) 0%, transparent 40%),
      radial-gradient(circle at 85% 80%, rgba(46,196,182,0.12) 0%, transparent 42%);
  }
  .cd-engage .section-tag { justify-content: center; color: var(--gold); }
  .cd-engage .section-tag::before { background: var(--gold); }
  .cd-engage-inner { position: relative; }
  .cd-engage-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .cd-footer {
    background: var(--ink); color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center; gap: 28px;
    flex-wrap: wrap; padding: 24px; font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cd-footer a { color: rgba(255,255,255,0.75); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
  .cd-footer a:hover { color: var(--red-bright); }

  @media (max-width: 560px) {
    .cd-logo-link { top: 16px; left: 20px; width: 64px; height: 64px; }
    .cd-wrap { padding: 100px 20px 60px; }
    .cd-countdown { gap: 8px; }
    .cd-unit { min-width: 66px; padding: 12px 10px; }
    .cd-unit .n { font-size: 28px; }
    .cd-unit .l { font-size: 8px; margin-top: 6px; }
    .cd-sub { font-size: 15px; }
  }
