    :root {
      --mint: #5fd3a2;
      --mint-bright: #7dffc0;
      --mint-dim: #3f9b76;
      --bg: #060b09;
      --bg-raised: #0a120f;
      --bg-card: #0d1814;
      --bg-glass: rgba(16, 30, 25, 0.55);
      --line: rgba(95, 211, 162, 0.16);
      --line-soft: rgba(95, 211, 162, 0.09);
      --text: #eaf6f0;
      --text-dim: #90a69c;
      --text-faint: #5f7168;
      --display: 'Onest', sans-serif;
      --body: 'Onest', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ::selection {
      background: rgba(95, 211, 162, 0.3);
      color: #fff;
    }

    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* animated ambient background */
    .ambient {
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      overflow: hidden;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.5;
    }

    .orb.a {
      width: 620px;
      height: 620px;
      background: radial-gradient(circle, rgba(95, 211, 162, 0.28), transparent 70%);
      top: -180px;
      right: -120px;
      animation: drift1 22s ease-in-out infinite;
    }

    .orb.b {
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(60, 140, 110, 0.22), transparent 70%);
      top: 45%;
      left: -160px;
      animation: drift2 28s ease-in-out infinite;
    }

    .orb.c {
      width: 460px;
      height: 460px;
      background: radial-gradient(circle, rgba(95, 211, 162, 0.14), transparent 70%);
      bottom: -160px;
      right: 20%;
      animation: drift1 26s ease-in-out infinite reverse;
    }

    @keyframes drift1 {

      0%,
      100% {
        transform: translate(0, 0);
      }

      50% {
        transform: translate(-60px, 50px);
      }
    }

    @keyframes drift2 {

      0%,
      100% {
        transform: translate(0, 0);
      }

      50% {
        transform: translate(70px, -40px);
      }
    }

    .grid-overlay {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image: linear-gradient(rgba(95, 211, 162, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 211, 162, 0.025) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
    }

    /* ---------- nav ---------- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
      border-bottom: 1px solid transparent;
    }

    header.scrolled {
      background: rgba(6, 11, 9, 0.8);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line-soft);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--display);
      font-weight: 600;
      font-size: 17px;
      letter-spacing: -0.2px;
    }

    .brand .mark {
      width: 34px;
      height: 34px;
      border: 2.5px solid var(--mint);
      border-radius: 7px;
      display: grid;
      place-items: center;
      position: relative;
      box-shadow: 0 0 18px rgba(95, 211, 162, 0.25);
    }

    .brand .mark::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      width: 5px;
      height: 5px;
      background: var(--mint);
      border-radius: 1px;
    }

    .brand .mark span {
      font-family: var(--display);
      font-weight: 700;
      font-size: 18px;
      color: #fff;
      line-height: 1;
    }

    .brand em {
      font-style: normal;
      color: var(--mint);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: 0.3px;
      color: var(--text-dim);
    }

    .nav-links a {
      position: relative;
      transition: color 0.2s;
      padding: 4px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1.5px;
      background: var(--mint);
      transition: width 0.25s;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--display);
      font-weight: 600;
      font-size: 14px;
      padding: 12px 24px;
      border-radius: 12px;
      color: #eafff5;
      background: linear-gradient(180deg, rgba(95, 211, 162, 0.32), rgba(95, 211, 162, 0.12));
      border: 1px solid rgba(125, 255, 192, 0.42);
      backdrop-filter: blur(12px) saturate(1.35);
      -webkit-backdrop-filter: blur(12px) saturate(1.35);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 26px rgba(0, 0, 0, 0.28);
      transition: transform 0.2s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
      background: linear-gradient(180deg, rgba(95, 211, 162, 0.46), rgba(95, 211, 162, 0.2));
      border-color: rgba(125, 255, 192, 0.7);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 14px 38px rgba(95, 211, 162, 0.3);
    }

    .btn.ghost {
      color: var(--mint);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(95, 211, 162, 0.28);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .btn.ghost:hover {
      border-color: rgba(95, 211, 162, 0.55);
      background: rgba(95, 211, 162, 0.12);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .btn .arrow {
      transition: transform 0.2s;
    }

    .btn:hover .arrow {
      transform: translateX(4px);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text);
      cursor: pointer;
      width: 40px;
      height: 40px;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: currentColor;
      margin: 4px auto;
      transition: 0.3s;
    }

    /* ---------- hero ---------- */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 60px;
    }

    /* balanced hero width — keeps left/right whitespace even */
    .hero .wrap {
      max-width: 1320px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: 20px;
      align-items: center;
      width: 100%;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--display);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--mint);
      margin-bottom: 24px;
      padding: 7px 14px;
      border: 1px solid var(--line);
      border-radius: 100px;
      background: rgba(95, 211, 162, 0.04);
    }

    .eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 10px var(--mint);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.8);
      }
    }

    h1 {
      font-family: var(--display);
      font-size: clamp(44px, 5.6vw, 74px);
      font-weight: 700;
      line-height: 1.04;
      letter-spacing: -2px;
      margin-bottom: 26px;
    }

    h1 .accent {
      background: linear-gradient(120deg, var(--mint), var(--mint-bright));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-sub {
      font-size: 18px;
      color: var(--text-dim);
      max-width: 480px;
      margin-bottom: 36px;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .hero-mini {
      display: flex;
      gap: 26px;
      margin-top: 46px;
      flex-wrap: wrap;
    }

    .hero-mini div b {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 700;
      color: var(--text);
      display: block;
    }

    .hero-mini div span {
      font-size: 12.5px;
      color: var(--text-faint);
      letter-spacing: 0.4px;
    }

    #logo3d {
      position: relative;
      width: calc(100% + 130px);
      margin-right: -130px;
      aspect-ratio: 1 / 1.12;
      max-height: 680px;
      cursor: grab;
    }

    #logo3d:active {
      cursor: grabbing;
    }

    #logo3d canvas {
      display: block;
      width: 100% !important;
      height: 100% !important;
    }

    .scroll-cue {
      position: absolute;
      bottom: 26px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--text-faint);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-family: var(--display);
    }

    .scroll-cue .mouse {
      width: 22px;
      height: 34px;
      border: 1.5px solid var(--line);
      border-radius: 12px;
      position: relative;
    }

    .scroll-cue .mouse::after {
      content: '';
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 6px;
      background: var(--mint);
      border-radius: 2px;
      animation: scrollw 1.8s ease-in-out infinite;
    }

    @keyframes scrollw {
      0% {
        opacity: 0;
        transform: translate(-50%, 0);
      }

      40% {
        opacity: 1;
      }

      100% {
        opacity: 0;
        transform: translate(-50%, 10px);
      }
    }

    /* ---------- stats ---------- */
    .stats {
      background: var(--bg-raised);
      position: relative;
      z-index: 1;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      position: relative;
      padding: 42px 30px 40px;
      border-radius: 16px;
      transition: background 0.3s, transform 0.3s;
      overflow: hidden;
    }

    /* animated top accent bar on hover */
    .stat::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 2px;
      width: 0;
      background: linear-gradient(90deg, var(--mint), var(--mint-bright));
      box-shadow: 0 0 14px var(--mint);
      transition: width 0.45s ease;
    }

    .stat:hover {
      background: rgba(95, 211, 162, 0.04);
      transform: translateY(-3px);
    }

    .stat:hover::before {
      width: 100%;
    }

    .stat b {
      display: block;
      font-family: var(--display);
      font-size: 46px;
      font-weight: 700;
      letter-spacing: -1.5px;
      color: var(--mint);
      line-height: 1.05;
    }

    .stat .label {
      display: block;
      margin-top: 10px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text);
    }

    .stat .sub {
      display: block;
      margin-top: 3px;
      font-size: 12.5px;
      color: var(--text-faint);
    }

    /* self-drawing sparkline */
    .stat .spark {
      display: block;
      width: 100%;
      height: 26px;
      margin-top: 18px;
      overflow: visible;
    }

    .stat .spark .line {
      fill: none;
      stroke: var(--mint);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0.65;
      /* pathLength is normalized to 1, so the draw is perfectly even */
      stroke-dasharray: 1;
      stroke-dashoffset: 1;
      transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, opacity 0.3s;
      will-change: stroke-dashoffset;
    }

    .stat .spark .area {
      fill: var(--mint);
      opacity: 0;
      transition: opacity 0.9s ease 0.9s;
    }

    .stat.in .spark .line {
      stroke-dashoffset: 0;
    }

    .stat.in .spark .area {
      opacity: 0.1;
    }

    .stat:hover .spark .line {
      opacity: 1;
    }

    .stat:hover .spark .area {
      opacity: 0.16;
    }

    @media (prefers-reduced-motion: reduce) {
      .stat .spark .line { transition: none; stroke-dashoffset: 0; }
      .stat .spark .area { transition: none; }
    }

    /* animated meter (market share) */
    .stat .meter {
      margin-top: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .stat .meter i {
      position: relative;
      flex: 1;
      height: 6px;
      border-radius: 100px;
      background: rgba(95, 211, 162, 0.12);
      overflow: hidden;
    }

    .stat .meter i::after {
      content: '';
      position: absolute;
      inset: 0;
      width: 0;
      border-radius: 100px;
      background: linear-gradient(90deg, var(--mint-dim), var(--mint-bright));
      box-shadow: 0 0 12px rgba(95, 211, 162, 0.5);
      transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
    }

    .stat.in .meter i::after {
      width: var(--val);
    }

    .stat .meter em {
      font-family: var(--display);
      font-style: normal;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--mint);
    }

    /* ---------- sections ---------- */
    section {
      padding: 120px 0;
      position: relative;
    }

    .section-head {
      max-width: 680px;
      margin-bottom: 56px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    h2 {
      font-family: var(--display);
      font-size: clamp(32px, 3.6vw, 46px);
      font-weight: 700;
      letter-spacing: -1.2px;
      line-height: 1.1;
      margin: 16px 0 18px;
    }

    h2 .accent {
      color: var(--mint);
    }

    .section-head p {
      color: var(--text-dim);
      font-size: 17px;
    }

    .tag-eyebrow {
      font-family: var(--display);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--mint);
    }

    /* about */
    .about-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 64px;
      align-items: center;
    }

    .about-copy p {
      color: var(--text-dim);
      font-size: 17.5px;
      line-height: 1.75;
    }

    .about-copy strong {
      color: var(--text);
      font-weight: 600;
    }

    .about-hq {
      background: var(--bg-glass);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 32px;
      backdrop-filter: blur(10px);
    }

    .about-hq h3 {
      font-family: var(--display);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--mint);
      margin-bottom: 20px;
    }

    .about-hq li {
      list-style: none;
      padding: 13px 0;
      border-bottom: 1px solid var(--line-soft);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 15px;
    }

    .about-hq li:last-child {
      border-bottom: none;
    }

    .about-hq li span {
      color: var(--text-faint);
      font-size: 13px;
    }

    .about-hq li.head-loc b {
      color: var(--mint);
    }

    /* timeline */
    .timeline {
      background: var(--bg-raised);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .tl-track {
      position: relative;
      margin-top: 12px;
    }

    /* neutralize the block-level reveal so children can stagger individually */
    .tl-track.reveal {
      opacity: 1;
      transform: none;
    }

    .tl-line {
      position: absolute;
      left: 0;
      right: 0;
      top: 54px;
      height: 2px;
      border-radius: 2px;
      background: var(--line);
    }

    .tl-progress {
      position: absolute;
      left: 0;
      top: 54px;
      height: 2px;
      width: 0;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--mint-dim), var(--mint-bright));
      box-shadow: 0 0 12px var(--mint);
      transition: width 1.8s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
    }

    .tl-track.in .tl-progress {
      width: 100%;
    }

    .tl-items {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 22px;
      position: relative;
    }

    .tl-item {
      cursor: default;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .tl-track.in .tl-item {
      opacity: 1;
      transform: none;
    }

    .tl-track.in .tl-item:nth-child(2) { transition-delay: 0.10s; }
    .tl-track.in .tl-item:nth-child(3) { transition-delay: 0.20s; }
    .tl-track.in .tl-item:nth-child(4) { transition-delay: 0.30s; }
    .tl-track.in .tl-item:nth-child(5) { transition-delay: 0.40s; }
    .tl-track.in .tl-item:nth-child(6) { transition-delay: 0.50s; }

    .tl-year {
      font-family: var(--display);
      font-size: 23px;
      font-weight: 700;
      line-height: 1;
      color: var(--mint);
      letter-spacing: -0.8px;
      margin-bottom: 20px;
      white-space: nowrap;
    }

    .tl-node {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--bg-raised);
      border: 2px solid var(--mint);
      margin: 0 0 22px;
      position: relative;
      /* lighting delay is variable (--nd) so it can trail the progress line;
         transform stays instant so hover is snappy */
      transition: background 0.45s ease var(--nd, 0s), box-shadow 0.45s ease var(--nd, 0s), transform 0.3s ease;
    }

    .tl-track.in .tl-node {
      background: var(--mint);
      box-shadow: 0 0 14px rgba(95, 211, 162, 0.55);
    }

    /* nodes light up in sequence as the line sweeps past them */
    .tl-track.in .tl-item:nth-child(1) .tl-node { --nd: 0.30s; }
    .tl-track.in .tl-item:nth-child(2) .tl-node { --nd: 0.58s; }
    .tl-track.in .tl-item:nth-child(3) .tl-node { --nd: 0.86s; }
    .tl-track.in .tl-item:nth-child(4) .tl-node { --nd: 1.14s; }
    .tl-track.in .tl-item:nth-child(5) .tl-node { --nd: 1.42s; }
    .tl-track.in .tl-item:nth-child(6) .tl-node { --nd: 1.70s; }

    .tl-item:hover .tl-node {
      --nd: 0s;
      transform: scale(1.4);
      box-shadow: 0 0 22px var(--mint);
      background: var(--mint);
    }

    .tl-item p {
      color: var(--text-dim);
      font-size: 14.5px;
      line-height: 1.62;
      margin-top: 0;
      max-width: 210px;
    }

    @media (prefers-reduced-motion: reduce) {
      .tl-item { opacity: 1; transform: none; transition: none; }
      .tl-progress, .tl-node { transition: none; }
    }

    /* divisions */
    .div-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .division {
      background:
        linear-gradient(180deg, rgba(95, 211, 162, 0.035), transparent 40%),
        var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 40px 36px 34px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.4s;
    }

    /* cursor-follow spotlight */
    .division::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(340px circle at var(--mx, 50%) var(--my, -20%), rgba(95, 211, 162, 0.16), transparent 62%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    /* animated gradient top edge */
    .division::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1.5px;
      background: linear-gradient(90deg, transparent, var(--mint), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .division:hover {
      transform: translateY(-6px);
      border-color: rgba(95, 211, 162, 0.5);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    }

    .division:hover::before {
      opacity: 1;
    }

    .division:hover::after {
      transform: scaleX(1);
    }

    .division > * {
      position: relative;
      z-index: 1;
    }

    /* big ghost index number */
    .dv-num {
      position: absolute;
      top: 26px;
      right: 32px;
      font-family: var(--display);
      font-size: 66px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -3px;
      color: transparent;
      -webkit-text-stroke: 1.3px rgba(95, 211, 162, 0.16);
      transition: -webkit-text-stroke 0.35s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .division:hover .dv-num {
      -webkit-text-stroke: 1.3px rgba(95, 211, 162, 0.42);
      transform: translateY(-2px) scale(1.04);
    }

    .division h3 {
      font-family: var(--display);
      font-size: 25px;
      font-weight: 600;
      margin-bottom: 4px;
      letter-spacing: -0.5px;
    }

    .division h3 em {
      font-style: normal;
      color: var(--mint);
    }

    .dv-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0 18px;
    }

    .dv-tag {
      font-family: var(--display);
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.3px;
      color: var(--mint);
      padding: 5px 12px;
      border: 1px solid var(--line);
      border-radius: 100px;
      background: rgba(95, 211, 162, 0.05);
      transition: background 0.25s, border-color 0.25s;
    }

    .division:hover .dv-tag {
      background: rgba(95, 211, 162, 0.1);
      border-color: rgba(95, 211, 162, 0.3);
    }

    .division p {
      color: var(--text-dim);
      font-size: 15px;
      line-height: 1.65;
    }

    /* media marquee */
    .media {
      background: var(--bg-raised);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }

    .marquee-label {
      font-family: var(--display);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-faint);
      margin: 0 0 16px;
    }

    .marquee {
      position: relative;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .marquee-inner {
      display: flex;
      gap: 14px;
      width: max-content;
      animation: scrollx 44s linear infinite;
    }

    .marquee.rev .marquee-inner {
      animation-direction: reverse;
      animation-duration: 52s;
    }

    .marquee:hover .marquee-inner {
      animation-play-state: paused;
    }

    @keyframes scrollx {
      to {
        transform: translateX(-50%);
      }
    }

    .outlet {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 500;
      color: var(--text-dim);
      padding: 12px 24px;
      border: 1px solid var(--line-soft);
      border-radius: 100px;
      white-space: nowrap;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }

    .outlet:hover {
      color: var(--mint);
      border-color: var(--line);
      background: rgba(95, 211, 162, 0.04);
    }

    /* portfolio */
    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
      justify-content: center;
    }

    .filter {
      font-family: var(--display);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dim);
      padding: 9px 16px;
      border: 1px solid var(--line);
      border-radius: 100px;
      background: transparent;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter:hover {
      color: var(--text);
      border-color: rgba(95, 211, 162, 0.4);
    }

    .filter.active {
      background: var(--mint);
      color: #06110c;
      border-color: var(--mint);
      font-weight: 600;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      min-height: 120px;
    }

    .chip {
      font-family: var(--body);
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      padding: 10px 18px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--bg-card);
      transition: transform 0.25s, opacity 0.25s, border-color 0.2s, background 0.2s;
    }

    .chip:hover {
      border-color: rgba(95, 211, 162, 0.5);
      background: rgba(95, 211, 162, 0.06);
      color: var(--mint);
      transform: translateY(-2px);
    }

    .chip.hide {
      display: none;
    }

    .chip .cat {
      display: block;
      font-size: 10.5px;
      color: var(--text-faint);
      letter-spacing: 0.5px;
      margin-top: 1px;
    }

    /* leadership */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .leader {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 32px;
      transition: border-color 0.3s;
    }

    .leader:hover {
      border-color: rgba(95, 211, 162, 0.35);
    }

    .leader-head {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 18px;
    }

    .avatar {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(95, 211, 162, 0.25), rgba(95, 211, 162, 0.05));
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      font-family: var(--display);
      font-weight: 700;
      font-size: 22px;
      color: var(--mint);
      flex-shrink: 0;
    }

    .leader-head h3 {
      font-family: var(--display);
      font-size: 21px;
      font-weight: 600;
      letter-spacing: -0.3px;
    }

    .leader-head .role {
      color: var(--mint);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.4px;
      margin-top: 2px;
    }

    .bio {
      color: var(--text-dim);
      font-size: 15px;
      line-height: 1.72;
      position: relative;
    }

    .bio-clip {
      max-height: 132px;
      overflow: hidden;
      transition: max-height 0.5s ease;
      -webkit-mask-image: linear-gradient(#000 55%, transparent);
      mask-image: linear-gradient(#000 55%, transparent);
    }

    .bio-clip.open {
      max-height: 1400px;
      -webkit-mask-image: none;
      mask-image: none;
    }

    .bio-toggle {
      margin-top: 14px;
      font-family: var(--display);
      font-size: 13px;
      font-weight: 600;
      color: var(--mint);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .bio-toggle .ico {
      transition: transform 0.3s;
    }

    .bio-toggle.open .ico {
      transform: rotate(180deg);
    }

    /* contact */
    .contact {
      text-align: center;
    }

    .contact-card {
      max-width: 760px;
      margin: 0 auto;
      background: var(--bg-glass);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 64px 48px;
      backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(95, 211, 162, 0.12), transparent 70%);
    }

    .contact-card>* {
      position: relative;
    }

    .contact-card h2 {
      margin-bottom: 18px;
    }

    .contact-card p {
      color: var(--text-dim);
      max-width: 520px;
      margin: 0 auto 32px;
      font-size: 17px;
    }

    .contact-meta {
      margin-top: 34px;
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
      color: var(--text-faint);
      font-size: 13.5px;
    }

    .contact-meta b {
      color: var(--text);
      font-weight: 600;
      display: block;
      font-size: 15px;
      margin-bottom: 2px;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 48px 0 40px;
    }

    .foot {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 30px;
      flex-wrap: wrap;
    }

    .foot .brand {
      font-size: 16px;
      margin-bottom: 14px;
    }

    .foot-col h4 {
      font-family: var(--display);
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 14px;
    }

    .foot-col a {
      display: block;
      color: var(--text-dim);
      font-size: 14px;
      padding: 5px 0;
      transition: color 0.2s;
    }

    .foot-col a:hover {
      color: var(--mint);
    }

    .foot-cols {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
    }

    .foot-bottom {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid var(--line-soft);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--text-faint);
    }

    /* reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    .reveal.d1 {
      transition-delay: 0.08s;
    }

    .reveal.d2 {
      transition-delay: 0.16s;
    }

    .reveal.d3 {
      transition-delay: 0.24s;
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .orb,
      .marquee-inner {
        animation: none !important;
      }
    }

    /* responsive */
    @media (max-width: 980px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .div-grid,
      .team-grid {
        grid-template-columns: 1fr;
      }

      /* mobile timeline: clean vertical list with a connecting line through the nodes */
      .tl-items {
        grid-template-columns: 1fr;
        gap: 0;
        margin-left: 2px;
      }

      .tl-line,
      .tl-progress {
        display: none;
      }

      .tl-item {
        display: block;
        position: relative;
        padding: 0 0 30px 34px;
      }

      /* connecting line segment (not after the last item) */
      .tl-item:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 7px;
        top: 8px;
        bottom: -8px;
        width: 2px;
        background: var(--line);
      }

      .tl-node {
        position: absolute;
        left: 0;
        top: 2px;
        margin: 0;
      }

      .tl-year {
        font-size: 21px;
        margin-bottom: 8px;
      }

      .tl-item p {
        margin-top: 0;
        max-width: none;
      }
    }

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

      #logo3d {
        max-height: 400px;
        order: -1;
      }

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

      .nav-links,
      .nav .btn {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      header.open .nav-links {
        display: flex;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 4px;
        background: rgba(6, 11, 9, 0.97);
        backdrop-filter: blur(16px);
        padding: 20px 32px 28px;
        border-bottom: 1px solid var(--line);
      }

      header.open .nav-links a {
        padding: 12px 0;
        font-size: 16px;
      }

      header.open .nav .btn {
        display: inline-flex;
      }

      .scroll-cue {
        display: none;
      }
    }

    @media (max-width: 560px) {
      .wrap {
        padding: 0 20px;
      }

      section {
        padding: 84px 0;
      }

      .stat b {
        font-size: 38px;
      }
    }

    /* ---------- nav dropdown (Divisions) ---------- */
    .nav-links .has-sub {
      position: relative;
    }

    .nav-links .has-sub > a {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .nav-links .has-sub .caret {
      font-size: 9px;
      transition: transform 0.25s;
    }

    .nav-links .has-sub:hover .caret {
      transform: rotate(180deg);
    }

    .submenu {
      position: absolute;
      top: calc(100% + 6px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 250px;
      padding: 8px;
      background: rgba(10, 18, 15, 0.97);
      backdrop-filter: blur(16px);
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    }

    .submenu::before {
      content: '';
      position: absolute;
      top: -14px;
      left: 0;
      right: 0;
      height: 14px;
    }

    .nav-links .has-sub:hover .submenu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .submenu a {
      display: block;
      padding: 11px 14px;
      border-radius: 9px;
      letter-spacing: 0;
    }

    .submenu a::after {
      display: none;
    }

    .submenu a:hover {
      background: rgba(95, 211, 162, 0.08);
    }

    .submenu a b {
      display: block;
      font-family: var(--display);
      font-weight: 600;
      font-size: 14px;
      color: var(--text);
      margin-bottom: 2px;
    }

    .submenu a b em {
      font-style: normal;
      color: var(--mint);
    }

    .submenu a:hover b {
      color: var(--mint);
    }

    .submenu a span {
      display: block;
      font-size: 11.5px;
      color: var(--text-faint);
      line-height: 1.4;
    }

    /* clickable division card affordance */
    .division .learn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 20px;
      font-family: var(--display);
      font-size: 13px;
      font-weight: 600;
      color: var(--mint);
    }

    .division .learn .arrow {
      transition: transform 0.25s;
    }

    .division:hover .learn .arrow {
      transform: translateX(4px);
    }

    /* ---------- division sub-page ---------- */
    .subhero {
      padding: 150px 0 70px;
      position: relative;
    }

    .crumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--display);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dim);
      margin-bottom: 26px;
      transition: color 0.2s;
    }

    .crumb:hover {
      color: var(--mint);
    }

    .subhero h1 {
      font-size: clamp(40px, 5vw, 66px);
      margin-bottom: 22px;
    }

    .subhero h1 em {
      font-style: normal;
      color: var(--mint);
    }

    .subhero .lead {
      font-size: 19px;
      color: var(--text-dim);
      max-width: 640px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
      margin-top: 20px;
    }

    .feature {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 30px 30px 32px;
      transition: transform 0.3s, border-color 0.3s;
    }

    .feature:hover {
      transform: translateY(-4px);
      border-color: rgba(95, 211, 162, 0.4);
    }

    .feature .k {
      font-family: var(--display);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--mint);
      font-weight: 600;
    }

    .feature h3 {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 600;
      margin: 12px 0 10px;
      letter-spacing: -0.3px;
    }

    .feature p {
      color: var(--text-dim);
      font-size: 15px;
      line-height: 1.65;
    }

    .sub-nav-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .sub-nav-strip a {
      font-family: var(--display);
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-dim);
      padding: 10px 18px;
      border: 1px solid var(--line);
      border-radius: 100px;
      transition: all 0.2s;
    }

    .sub-nav-strip a:hover {
      color: var(--text);
      border-color: rgba(95, 211, 162, 0.45);
    }

    .sub-nav-strip a.current {
      background: var(--mint);
      color: #06110c;
      border-color: var(--mint);
      font-weight: 600;
    }

    @media (max-width: 860px) {
      /* mobile submenu: collapsed by default, expands when its parent is tapped */
      header.open .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        margin: 0;
        min-width: 0;
        backdrop-filter: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        text-align: center;
        transition: max-height 0.32s ease, padding 0.32s ease;
      }

      header.open .submenu::before {
        display: none;
      }

      /* cancel the desktop hover/focus centering transform on mobile (was shoving it off-screen) */
      header.open .nav-links .has-sub:hover .submenu,
      header.open .nav-links .has-sub:focus-within .submenu {
        transform: none;
      }

      header.open .submenu a {
        text-align: center;
      }

      header.open .has-sub.sub-open .submenu {
        max-height: 340px;
        padding: 2px 0 10px;
      }

      header.open .has-sub .caret {
        display: inline-block;
        transition: transform 0.3s;
      }

      header.open .has-sub.sub-open .caret {
        transform: rotate(180deg);
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }
    }

    /* team sub-page: offset anchored members below the fixed header */
    .leader[id] {
      scroll-margin-top: 104px;
    }

    /* team sub-page: single stacked column (one member after another) */
    .team-grid.stacked {
      grid-template-columns: 1fr;
      max-width: 880px;
      margin: 0 auto;
      gap: 22px;
    }

    /* team sub-page: photo avatar + social buttons */
    .leader-head {
      align-items: center;
    }

    .avatar.avatar-lg {
      width: 84px;
      height: 84px;
      border-radius: 16px;
      font-size: 28px;
      position: relative;
      overflow: hidden;
    }

    .avatar.avatar-lg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 12%;
      z-index: 1;
    }

    .socials {
      display: flex;
      gap: 8px;
      margin-top: 13px;
    }

    .social {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      background: rgba(95, 211, 162, 0.05);
      color: var(--text-dim);
      transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .social:hover {
      color: var(--mint);
      border-color: rgba(95, 211, 162, 0.42);
      background: rgba(95, 211, 162, 0.1);
      transform: translateY(-2px);
    }

    .social svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    /* ---------- landing team photo cards ---------- */
    .team-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .tmember {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px 18px 24px;
      text-align: center;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.35s;
    }

    .tmember:hover {
      transform: translateY(-6px);
      border-color: rgba(95, 211, 162, 0.45);
      box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
    }

    .tphoto {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1.1;
      border-radius: 14px;
      overflow: hidden;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: linear-gradient(150deg, rgba(95, 211, 162, 0.24), rgba(95, 211, 162, 0.04));
    }

    .tphoto img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      z-index: 1;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .tmember:hover .tphoto img {
      transform: scale(1.05);
    }

    .tphoto::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(to top, rgba(6, 11, 9, 0.4), transparent 45%);
      pointer-events: none;
    }

    .tphoto .ini {
      font-family: var(--display);
      font-weight: 700;
      font-size: 46px;
      letter-spacing: -1px;
      color: var(--mint);
    }

    .tmember h3 {
      font-family: var(--display);
      font-size: 19px;
      font-weight: 600;
      letter-spacing: -0.3px;
    }

    .tmember h3 em {
      font-style: normal;
      color: var(--mint);
    }

    .tmember .role {
      color: var(--text-dim);
      font-size: 13px;
      font-style: italic;
      margin-top: 4px;
    }

    .tsocials {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
    }

    .tsocials a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      background: rgba(95, 211, 162, 0.05);
      color: var(--text-dim);
      transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .tsocials a:hover {
      color: var(--mint);
      border-color: rgba(95, 211, 162, 0.42);
      background: rgba(95, 211, 162, 0.1);
      transform: translateY(-2px);
    }

    .tsocials svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    .tsocials .bio {
      width: auto;
      border-radius: 100px;
      padding: 0 18px;
      font-family: var(--display);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      background: var(--mint);
      color: #06110c;
      border-color: var(--mint);
    }

    .tsocials .bio:hover {
      color: #06110c;
      background: var(--mint-bright);
      border-color: var(--mint-bright);
    }

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

    @media (max-width: 520px) {
      .team-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
      }
    }

    /* brand logo image (nav + footer) */
    .brand-logo {
      height: 52px;
      width: auto;
      display: block;
    }

    .foot .brand-logo {
      height: 40px;
    }

    /* ---------- hero floating 3D logo ---------- */
    .hero3d {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      perspective: 1200px;
    }

    /* on desktop, keep the logo its normal size but pin it to the right of its
       column so the far-right whitespace matches the left text margin */
    @media (min-width: 861px) {
      .hero3d {
        justify-self: end;
        margin: 0;
        max-width: 560px;
      }
    }

    /* on wide screens, let the logo bleed toward the right edge so the space to
       its right roughly matches the center gap (safe: only past 1600px) */
    @media (min-width: 1600px) {
      .hero3d {
        margin-right: -90px;
      }
    }

    .hero3d-glow {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 82%;
      aspect-ratio: 1;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(31, 224, 137, 0.4), transparent 62%);
      filter: blur(50px);
      z-index: 0;
      animation: hero3dGlow 5s ease-in-out infinite;
    }

    .hero3d-float {
      position: relative;
      z-index: 1;
      transform-style: preserve-3d;
      will-change: transform;
      animation: hero3dFloat 6.5s ease-in-out infinite;
    }

    .hero3d-img {
      display: block;
      width: 100%;
      height: auto;
      transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
      transition: transform 0.35s ease-out;
      filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 44px rgba(31, 224, 137, 0.28));
    }

    @keyframes hero3dFloat {
      0%, 100% { transform: translateY(0) rotate(-0.5deg); }
      50%      { transform: translateY(-20px) rotate(0.5deg); }
    }

    @keyframes hero3dGlow {
      0%, 100% { opacity: 0.7;  transform: translate(-50%, -50%) scale(1); }
      50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.08); }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero3d-float { animation: none; }
      .hero3d-glow { animation: none; }
    }

    /* scrim only used on mobile overlay */
    .hero-scrim { display: none; }

    @media (max-width: 860px) {
      /* mobile hero: clean text only — 3D logo watermark hidden */
      .hero {
        min-height: auto;
        padding: 82px 0 48px;
      }
      .hero3d,
      .hero-scrim {
        display: none;
      }
    }

    @media (max-width: 560px) {
      .hero3d {
        width: 76%;
        max-width: 260px;
        opacity: 0.9;
      }
    }

    /* ---------- hero staggered entrance ---------- */
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-enter {
      opacity: 0;
      animation: heroFadeUp 600ms ease-out both;
      /* delays: heading 0ms, subheading 200ms, CTA 500ms (set inline per element) */
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-enter {
        opacity: 1;
        animation: none;
      }
    }

    /* no arrows on buttons */
    .btn .arrow {
      display: none;
    }

    /* ============================================================
       UX / accessibility polish
       ============================================================ */

    /* visible keyboard focus (only for keyboard, not mouse) */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    .btn:focus-visible,
    .filter:focus-visible,
    .chip:focus-visible,
    .social:focus-visible,
    .faq-q:focus-visible {
      outline: 2px solid var(--mint);
      outline-offset: 3px;
      border-radius: 8px;
    }

    :focus:not(:focus-visible) {
      outline: none;
    }

    /* fixed-header anchor offset so section titles aren't hidden */
    #top, #about, #track, #divisions, #media, #portfolio, #team, #contact, #faq, .leader[id] {
      scroll-margin-top: 92px;
    }

    /* active nav item (scroll-spy) */
    .nav-links a.active {
      color: var(--text);
    }

    .nav-links a.active::after {
      width: 100%;
    }

    /* open dropdowns on keyboard focus, not only hover */
    .nav-links .has-sub:focus-within .submenu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    /* hamburger morphs into an X when the mobile menu is open */
    .menu-toggle span {
      transform-origin: center;
      transition: transform 0.3s, opacity 0.2s;
    }

    header.open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    header.open .menu-toggle span:nth-child(2) { opacity: 0; }
    header.open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* back-to-top */
    .to-top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 90;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(13, 24, 20, 0.82);
      border: 1px solid var(--line);
      color: var(--mint);
      cursor: pointer;
      backdrop-filter: blur(10px);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s, visibility 0.3s, border-color 0.2s, background 0.2s;
    }

    .to-top.show {
      opacity: 1;
      visibility: visible;
      transform: none;
    }

    .to-top:hover {
      border-color: rgba(95, 211, 162, 0.5);
      background: rgba(95, 211, 162, 0.12);
      transform: translateY(-2px);
    }

    .to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; }

    /* portfolio result count */
    .chips-count {
      text-align: center;
      font-family: var(--display);
      font-size: 13px;
      color: var(--text-faint);
      letter-spacing: 0.3px;
      margin-bottom: 20px;
    }

    .chips-count b { color: var(--mint); }

    /* contact form */
    .contact-form {
      max-width: 540px;
      margin: 6px auto 0;
      text-align: left;
      display: grid;
      gap: 14px;
    }

    .contact-form .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .contact-form label {
      display: block;
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 6px;
      font-family: var(--display);
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 12px 14px;
      color: var(--text);
      font-family: var(--body);
      font-size: 15px;
      transition: border-color 0.2s, background 0.2s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: rgba(95, 211, 162, 0.5);
      background: rgba(95, 211, 162, 0.05);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 110px;
    }

    .contact-form .btn {
      justify-content: center;
      width: 100%;
    }

    /* FAQ (AEO/GEO answer content) */
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
      text-align: left;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--bg-card);
      overflow: hidden;
      transition: border-color 0.25s;
    }

    .faq-item.open {
      border-color: rgba(95, 211, 162, 0.32);
    }

    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: var(--display);
      font-size: 17px;
      font-weight: 600;
      color: var(--text);
    }

    .faq-q .chev {
      color: var(--mint);
      transition: transform 0.3s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q .chev {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-a p {
      padding: 0 24px 20px;
      color: var(--text-dim);
      font-size: 15.5px;
      line-height: 1.68;
    }

    .faq-item.open .faq-a {
      max-height: 520px;
    }

    /* mobile refinements */
    @media (max-width: 560px) {
      .to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
      .contact-form .row { grid-template-columns: 1fr; }
      .contact-card { padding: 44px 22px; }
      .faq-q { font-size: 15.5px; padding: 18px 18px; }
      .faq-a p { padding: 0 18px 18px; }
    }

    /* honor reduced-motion everywhere */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* portfolio "see more" toggle */
    .chips-more-wrap {
      display: flex;
      justify-content: center;
      margin-top: 24px;
    }

    .chips-more {
      font-family: var(--display);
      font-size: 13.5px;
      font-weight: 600;
      color: var(--mint);
      background: rgba(95, 211, 162, 0.06);
      border: 1px solid rgba(95, 211, 162, 0.3);
      border-radius: 100px;
      padding: 11px 24px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }

    .chips-more:hover {
      background: rgba(95, 211, 162, 0.12);
      border-color: rgba(95, 211, 162, 0.5);
      transform: translateY(-2px);
    }

    /* ============ extra life / motion ============ */

    /* animated gradient on the headline accent word */
    .hero-accent {
      background: linear-gradient(90deg, var(--mint-dim) 0%, var(--mint) 35%, var(--mint-bright) 50%, var(--mint) 65%, var(--mint-dim) 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: var(--mint);
      animation: heroAccentShift 6s linear infinite;
    }

    @keyframes heroAccentShift {
      to { background-position: -200% center; }
    }

    /* soft pulsing ring on the primary CTA */
    .pulse-cta {
      animation: ctaPulse 2.8s ease-out infinite;
    }

    @keyframes ctaPulse {
      0% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(95, 211, 162, 0.4); }
      70% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 26px rgba(0, 0, 0, 0.28), 0 0 0 12px rgba(95, 211, 162, 0); }
      100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(95, 211, 162, 0); }
    }

    .pulse-cta:hover {
      animation: none;
    }

    /* contact form status note */
    .form-note {
      margin: 2px 0 0;
      font-size: 14px;
      line-height: 1.5;
      border-radius: 10px;
      padding: 12px 14px;
    }

    .form-note.ok {
      background: rgba(95, 211, 162, 0.1);
      border: 1px solid rgba(95, 211, 162, 0.35);
      color: var(--mint);
    }

    .form-note.err {
      background: rgba(255, 120, 120, 0.08);
      border: 1px solid rgba(255, 120, 120, 0.3);
      color: #ffb4b4;
    }

    .form-note a {
      color: inherit;
      text-decoration: underline;
    }

    /* mobile: divisions become a swipeable, auto-advancing carousel */
    @media (max-width: 860px) {
      .div-grid {
        display: flex;
        position: relative;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .div-grid::-webkit-scrollbar {
        display: none;
      }

      .div-grid .division {
        flex: 0 0 88%;
        scroll-snap-align: center;
      }

      /* keep every card rendered inside the horizontal scroller */
      .div-grid .division.reveal {
        opacity: 1;
        transform: none;
      }
    }

    /* mobile: team cards become a smaller swipeable, auto-advancing carousel */
    @media (max-width: 860px) {
      .team-cards {
        display: flex;
        position: relative;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 14px;
        max-width: none;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .team-cards::-webkit-scrollbar {
        display: none;
      }

      .team-cards .tmember {
        flex: 0 0 62%;
        scroll-snap-align: center;
        padding: 14px 14px 20px;
      }

      .team-cards .tmember.reveal {
        opacity: 1;
        transform: none;
      }

      /* shorter photo so cards aren't overwhelming */
      .team-cards .tphoto {
        aspect-ratio: 1 / 1;
        margin-bottom: 14px;
      }

      .team-cards .tmember h3 {
        font-size: 17px;
      }
    }

    /* mobile: compact contact form so it fits the screen */
    @media (max-width: 560px) {
      .contact-card {
        padding: 30px 18px;
      }

      .contact-card h2 {
        font-size: 30px;
      }

      .contact-card p {
        font-size: 15px;
        margin-bottom: 22px;
      }

      .contact-form {
        gap: 11px;
      }

      .contact-form label {
        margin-bottom: 4px;
        font-size: 10.5px;
      }

      .contact-form input,
      .contact-form textarea {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 9px;
      }

      .contact-form textarea {
        min-height: 84px;
      }

      .contact-form .btn {
        padding: 12px 20px;
      }
    }

    /* mobile: portfolio category filters as a single horizontal scroll row */
    @media (max-width: 860px) {
      .filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        margin-bottom: 26px;
        -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
        mask-image: linear-gradient(90deg, #000 92%, transparent);
      }

      .filters::-webkit-scrollbar {
        display: none;
      }

      .filter {
        flex: 0 0 auto;
        white-space: nowrap;
      }
    }
