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

    body {
      font-family: 'DM Sans', sans-serif;
      background: #CDD9DE;
      min-height: 100vh;
    }

    nav {
      position: fixed;
      top: 16px;
      z-index: 1000;
      left: 50%;
      transform: translateX(-50%);
      width: min(960px, calc(100vw - 32px));
      background: #0A1929;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.28), 0 1px 0 rgba(255,255,255,0.06) inset;
      overflow: visible;
    }

    .nav-logo {
      position: absolute;
      top: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      height: 80px;
      width: auto;
      display: block;
      transform: rotate(15deg);
      transform-origin: center;
      filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
    }

    .nav-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .nav-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 2.14rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      white-space: nowrap;
    }

    .nav-pill {
      list-style: none;
      display: flex;
      gap: 8px;
    }
    .nav-pill a {
      display: block;
      padding: 16px 32px;
      color: rgba(255, 255, 255, 0.72);
      text-decoration: none;
      font-size: 1.76rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 100px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-pill a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
    }

    main {
      padding-top: 180px;
    }

    .section {
      padding: 80px clamp(24px, 6vw, 100px);
    }
    #who-we-are { background: #CDD9DE; }
    #what-we-do { background: #0A1929; }
    #help       { background: #ffffff; }
    #socials    { background: #BFD0D7; }
    .section-dark {
      background: #0A1929;
      color: #f0f4ff;
    }
    .section-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 0 32px;
      align-items: start;
    }

    .section-eyebrow {
      font-family: 'Caveat', cursive;
      font-size: 3.6rem;
      font-weight: 600;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      white-space: nowrap;
      padding-top: 4px;
      line-height: 1;
      user-select: none;
      -webkit-user-select: none;
      text-shadow: 0 0 1px transparent;
      transition: text-shadow 0.25s;
      cursor: default;
    }
    #who-we-are .section-eyebrow { color: #588DEF; }
    #what-we-do  .section-eyebrow { color: #58EF6E; }
    #help        .section-eyebrow { color: #EFBA58; }

    .section-content { min-width: 0; }

    #socials     .section-eyebrow { color: #EF58D9; }
    #who-we-are  .section-eyebrow:hover { text-shadow: 0 0 6px #588DEF, 0 0 18px #588DEF, 0 0 40px #588DEFcc, 0 0 80px #588DEF88; }
    #what-we-do  .section-eyebrow:hover { text-shadow: 0 0 6px #58EF6E, 0 0 18px #58EF6E, 0 0 40px #58EF6Ecc, 0 0 80px #58EF6E88; }
    #help        .section-eyebrow:hover { text-shadow: 0 0 6px #EFBA58, 0 0 18px #EFBA58, 0 0 40px #EFBA58cc, 0 0 80px #EFBA5888; }
    #socials     .section-eyebrow:hover { text-shadow: 0 0 6px #EF58D9, 0 0 18px #EF58D9, 0 0 40px #EF58D9cc, 0 0 80px #EF58D988; }

    .socials-grid {
      display: flex;
      flex-direction: column;
      margin-top: 32px;
      border-top: 1px solid rgba(10,25,41,0.08);
    }
    .social-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(10,25,41,0.08);
      text-decoration: none;
      color: #0A1929;
    }
    .social-card:hover {}
    .social-card svg { width: 24px; height: 24px; flex-shrink: 0; color: #3d5a6a; }
    .social-card-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      min-width: 120px;
    }
    .social-card-handle { font-size: 0.88rem; color: #3d5a6a; }

    .section h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2.4rem, 6vw, 4rem);
      text-transform: uppercase;
      line-height: 1;
      color: #0A1929;
      margin-bottom: 20px;
      user-select: none;
      -webkit-user-select: none;
    }
    .section-dark h2 { color: #f0f4ff; }

    .section-lead {
      font-size: 1.05rem;
      line-height: 1.75;
      color: #3d5a6a;
      max-width: 640px;
    }
    .section-dark .section-lead { color: #8ea6c8; }

    /* What We Do list */
    .activities {
      display: flex;
      flex-direction: column;
      margin-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .activity-card {
      display: flex;
      align-items: baseline;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .activity-card:hover {}
    .activity-icon { font-size: 1.3rem; flex-shrink: 0; }
    .activity-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #f0f4ff;
      margin-bottom: 3px;
      white-space: nowrap;
      min-width: 180px;
    }
    .activity-card p { font-size: 0.88rem; color: #8ea6c8; line-height: 1.55; }

    /* How Can You Help list */
    .help-grid {
      display: flex;
      flex-direction: column;
      margin-top: 32px;
      border-top: 1px solid rgba(10,25,41,0.08);
    }
    .help-card {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(10,25,41,0.08);
    }
    .help-card-icon { font-size: 1.4rem; flex-shrink: 0; }
    .help-card-body { flex: 1; min-width: 0; }
    .help-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #0A1929;
      margin-bottom: 3px;
    }
    .help-card p { font-size: 0.9rem; color: #3d5a6a; line-height: 1.6; }
    .help-card a {
      flex-shrink: 0;
      display: inline-block;
      padding: 9px 22px;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      background: #0A1929;
      color: #fff;
      transition: background 0.2s, color 0.2s;
    }
    .help-card:nth-child(1) a:hover { background: #588DEF; }
    .help-card:nth-child(2) a:hover { background: #58EF6E; color: #0A1929; }
    .help-card:nth-child(3) a:hover { background: #EFBA58; color: #0A1929; }



    .nav-title span {
      position: relative;
      display: inline-block;
      padding-bottom: 9px;
      text-shadow: 0 0 1px transparent;
      transition: text-shadow 0.25s;
      cursor: default;
    }
    .nav-title .w1:hover { text-shadow: 0 0 6px #588DEF, 0 0 18px #588DEF, 0 0 40px #588DEFcc, 0 0 80px #588DEF88; }
    .nav-title .w2:hover { text-shadow: 0 0 6px #58EF6E, 0 0 18px #58EF6E, 0 0 40px #58EF6Ecc, 0 0 80px #58EF6E88; }
    .nav-title .w3:hover { text-shadow: 0 0 6px #EFBA58, 0 0 18px #EFBA58, 0 0 40px #EFBA58cc, 0 0 80px #EFBA5888; }
    .nav-title .w4:hover { text-shadow: 0 0 6px #EF58D9, 0 0 18px #EF58D9, 0 0 40px #EF58D9cc, 0 0 80px #EF58D988; }
    .nav-title span::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      bottom: 0;
      height: 7px;
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    .nav-title .w1::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M2,3.5 C20,2 48,4.5 72,3 C87,2.5 96,3.5 99,3 L99,5.5 C92,6.5 76,5.5 52,6.5 C28,6 8,6 2,5.5 Z' fill='%23588DEF'/%3E%3C/svg%3E"); }
    .nav-title .w2::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M2,4 C22,2.5 50,5 74,3.5 C88,3 96,4 99,3.5 L99,6 C91,7 74,6 50,7 C25,6.5 8,6.5 2,6 Z' fill='%2358EF6E'/%3E%3C/svg%3E"); }
    .nav-title .w3::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M2,3 C28,1.5 55,4.5 78,3 C90,2.5 96,3.5 99,3 L99,5.5 C91,7 78,6 55,6.5 C28,6 7,5.5 2,5 Z' fill='%23EFBA58'/%3E%3C/svg%3E"); }
    .nav-title .w4::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M2,4 C18,2.5 45,5 70,3.5 C85,2.5 96,3.5 99,3 L99,5.5 C90,7 76,6 52,7 C28,6.5 8,6 2,6 Z' fill='%23EF58D9'/%3E%3C/svg%3E"); }

    #who-we-are h2 span {
      transition: color 0.2s;
      cursor: default;
    }
    #who-we-are h2 .hw1:hover { color: #588DEF; }
    #who-we-are h2 .hw2:hover { color: #58EF6E; }
    #who-we-are h2 .hw3:hover { color: #EFBA58; }
    #who-we-are h2 .hw4:hover { color: #EF58D9; }


    #logo-ticker {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      transition: opacity 0.5s;
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
    }
    #flip-digits {
      display: flex;
      gap: 3px;
    }
    .flip-tile {
      transition: opacity 0.3s, transform 0.3s;
    }
    #logo-ticker.visible { opacity: 1; }
    .ticker-x {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: rgba(255,255,255,0.45);
      line-height: 1;
    }
    /* Flip tile */
    .flip-tile {
      position: relative;
      width: 52px;
      height: 50px;
      perspective: 240px;
    }
    /* Static back halves */
    .fd-back-top, .fd-back-bot {
      position: absolute;
      left: 0; right: 0;
      height: 25px;
      background: #152336;
      overflow: hidden;
    }
    .fd-back-top {
      top: 0;
      border-radius: 5px 5px 0 0;
    }
    .fd-back-bot { bottom: 0; border-radius: 0 0 5px 5px; }
    .flip-tile::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      top: calc(50% - 0.5px);
      height: 1px;
      background: rgba(0,0,0,0.65);
      z-index: 4;
      pointer-events: none;
    }
    /* Animated flaps */
    .fd-flap-top, .fd-flap-bot {
      position: absolute;
      left: 0; right: 0;
      height: 25px;
      background: #152336;
      overflow: hidden;
      z-index: 2;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      will-change: transform;
    }
    .fd-flap-top {
      top: 0;
      transform-origin: bottom center;
      border-radius: 5px 5px 0 0;
    }
    .fd-flap-bot {
      bottom: 0;
      transform-origin: top center;
      transform: rotateX(90deg);
      border-radius: 0 0 5px 5px;
    }
    /* Number rendering   full tile height, clipped by each half */
    .fd-num {
      width: 100%;
      text-align: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      line-height: 50px;
      height: 50px;
      letter-spacing: 0;
    }
    .fd-back-bot .fd-num,
    .fd-flap-bot .fd-num { margin-top: -25px; }
    /* Flip animations */
    .flip-tile.flipping .fd-flap-top {
      animation: flapDown 0.26s ease-in forwards;
    }
    .flip-tile.flipping .fd-flap-bot {
      animation: flapUp  0.28s ease-out 0.22s forwards;
    }
    @keyframes flapDown {
      from { transform: rotateX(0deg); }
      to   { transform: rotateX(-90deg); }
    }
    @keyframes flapUp {
      from { transform: rotateX(90deg); }
      to   { transform: rotateX(0deg); }
    }
    /* ── Tablet ─────────────────────────────────────────────── */
    @media (max-width: 860px) {
      .nav-title { font-size: 1.4rem; letter-spacing: 0.1em; }
      .nav-pill a { padding: 10px 24px; font-size: 1.2rem; }
      main { padding-top: 140px; }
      .section-inner { grid-template-columns: 140px 1fr; }
    }

    /* ── Mobile ─────────────────────────────────────────────── */
    @media (max-width: 600px) {
      .nav-logo { display: none; }
      nav { padding: 8px 16px; }
      .nav-body { width: 100%; }
      .nav-title {
        font-size: clamp(0.85rem, 4.8vw, 1.35rem);
        letter-spacing: 0.08em;
        white-space: nowrap;
        text-align: center;
        width: 100%;
      }
      .nav-title span { padding-bottom: 5px; }
      .nav-title span::after { height: 4px; }
      .nav-pill { gap: 4px; }
      .nav-pill a { padding: 7px 14px; font-size: 0.88rem; }
      main { padding-top: 105px; }

      .section { padding: 48px 20px; }
      .section-inner {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .section-eyebrow {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2rem;
        padding-top: 0;
        padding-bottom: 10px;
        margin-bottom: 4px;
      }

      .activity-card { flex-direction: column; gap: 6px; }
      .activity-card h3 { white-space: normal; min-width: 0; }

      .help-card { flex-wrap: wrap; }
      .help-card a { margin-top: 10px; }

      .social-card-name { min-width: 90px; }
    }


    .footer-socials {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 4px;
      padding: 20px 20px 8px;
      background: #0A1929;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .footer-socials a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 100px;
      text-decoration: none;
      color: rgba(255,255,255,0.45);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.15s, background 0.15s;
    }
    .footer-socials a:hover {
      color: rgba(255,255,255,0.9);
      background: rgba(255,255,255,0.07);
    }
    .footer-socials svg { width: 16px; height: 16px; flex-shrink: 0; }
    footer {
      background: #0A1929;
      text-align: center;
      padding: 12px 20px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
    }
    /* ── Exit warning modal ─────────────────────────────────── */
    #exit-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,25,41,0.82);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    #exit-modal.visible { display: flex; }
    #exit-modal-box {
      background: #0A1929;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 20px;
      padding: 40px 48px;
      max-width: 380px;
      width: calc(100vw - 48px);
      text-align: center;
      box-shadow: 0 24px 64px rgba(0,0,0,0.55);
    }
    #exit-modal-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.9);
      margin-bottom: 6px;
    }
    #exit-modal-dest {
      font-size: 0.88rem;
      color: #588DEF;
      margin-bottom: 28px;
    }
    #exit-countdown {
      position: relative;
      width: 72px;
      height: 72px;
      margin: 0 auto 28px;
    }
    #exit-countdown svg {
      width: 72px;
      height: 72px;
      transform: rotate(-90deg);
      display: block;
    }
    .exit-ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 3; }
    .exit-ring-fg {
      fill: none;
      stroke: #588DEF;
      stroke-width: 3;
      stroke-linecap: round;
    }
    #exit-num {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
    }
    #exit-actions { display: flex; gap: 12px; justify-content: center; }
    #exit-stay, #exit-go {
      padding: 10px 28px;
      border-radius: 100px;
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    #exit-stay { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
    #exit-stay:hover { background: rgba(255,255,255,0.14); color: #fff; }
    #exit-go { background: #588DEF; color: #fff; }
    #exit-go:hover { background: #76a2f5; }

    #primary-countdown {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      z-index: 998;
      background: rgba(10,25,41,0.88);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 100px;
      padding: 5px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.22);
      pointer-events: auto;
      cursor: pointer;
      transition: opacity 0.15s;
    }
    #primary-countdown:hover { opacity: 0.85; }
    #countdown-value {
      color: #EFBA58;
      font-weight: 700;
      font-size: 1rem;
    }
    .countdown-cta { color: #588DEF; font-weight: 700; }

    .blur-vignette {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      pointer-events: none;
    }
    .blur-vignette > div {
      position: absolute;
      inset: 0;
    }
    .bv1 {
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }
    .bv2 {
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      mask-image: linear-gradient(to bottom, black 35%, transparent 85%);
      -webkit-mask-image: linear-gradient(to bottom, black 35%, transparent 85%);
    }
    .bv3 {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      mask-image: linear-gradient(to bottom, black 20%, transparent 65%);
      -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 65%);
    }
    .bv4 {
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      mask-image: linear-gradient(to bottom, black 5%, transparent 40%);
      -webkit-mask-image: linear-gradient(to bottom, black 5%, transparent 40%);
    }
    .bv5 {
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      mask-image: linear-gradient(to bottom, black 0%, transparent 20%);
      -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 20%);
    }
