  /* ======================================================
     DESIGN TOKENS
     ====================================================== */
  :root {
    --red: #E10600;
    --red-deep: #B80500;
    --red-glow: rgba(225, 6, 0, 0.35);
    --ink: #0A0A0B;
    --ink-2: #111114;
    --ink-3: #1A1A1F;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --line-dark: rgba(10, 10, 11, 0.08);
    --line-dark-strong: rgba(10, 10, 11, 0.14);
    --paper: #F5F3EF;
    --paper-2: #EDEAE3;
    --white: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.62);
    --text-mute: rgba(255, 255, 255, 0.42);
    --text-ink-dim: rgba(10, 10, 11, 0.68);
    --text-ink-mute: rgba(10, 10, 11, 0.48);

    --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "Geist Mono", "SF Mono", ui-monospace, monospace;
    --font-serif: "Instrument Serif", Georgia, serif;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --container: 1240px;
    --gutter: clamp(20px, 4vw, 48px);

    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  /* ======================================================
     RESET / BASE
     ====================================================== */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
  p { margin: 0; }
  ::selection { background: var(--red); color: var(--white); }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  /* Mono micro-labels */
  .eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(225,6,0,0.18);
  }
  .eyebrow.on-dark { color: #FF4A3D; }

  /* Section shell */
  section { position: relative; padding: clamp(80px, 10vw, 140px) 0; }

  /* ======================================================
     NAVBAR
     ====================================================== */
  .nav-wrap {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px var(--gutter);
    transition: all 0.4s var(--ease);
  }
  .nav {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 12px 22px;
    background: rgba(10, 10, 11, 0.72);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--white);
    transition: all 0.4s var(--ease);
  }
  .nav-wrap.scrolled .nav {
    background: rgba(10, 10, 11, 0.88);
  }
  .logo {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s var(--ease);
  }
  .logo:hover { transform: scale(1.04); }
  .logo img {
    height: 38px;
    width: auto;
    display: block;
  }
  .logo span { display: none; } /* Hide any leftover text spans for image-only logo */
  /* Footer logo can be slightly larger for presence */
  footer .logo img { height: 44px; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0; margin: 0;
  }
  .nav-links a {
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-dim);
    transition: all 0.2s var(--ease);
  }
  .nav-links a:hover { color: var(--white); background: var(--line); }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--white);
    color: var(--ink);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s var(--ease);
  }
  .nav-cta:hover { background: var(--red); color: var(--white); }
  .nav-cta svg { transition: transform 0.3s var(--ease); }
  .nav-cta:hover svg { transform: translateX(3px); }

  .nav-toggle {
    display: none;
    width: 40px; height: 40px;
    border-radius: 100px;
    background: var(--line);
  }
  .nav-toggle span {
    display: block;
    width: 16px; height: 1.5px;
    background: currentColor;
    margin: 4px auto;
    transition: all 0.3s var(--ease);
  }

  @media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-block; }
    .nav-cta { display: none; }
  }

  /* ======================================================
     HERO
     ====================================================== */
  .hero {
    background: var(--ink);
    color: var(--white);
    padding-top: clamp(140px, 18vw, 200px);
    padding-bottom: clamp(80px, 12vw, 140px);
    overflow: hidden;
    position: relative;
    isolation: isolate;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
    opacity: 0.7;
    z-index: -2;
  }
  .hero::after {
    content: "";
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle at center, var(--red-glow) 0%, transparent 55%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.95; transform: translateX(-50%) scale(1.08); }
  }

  .hero-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 32px;
    background: rgba(255,255,255,0.03);
  }
  .hero-status .dot {
    width: 8px; height: 8px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  .hero-title {
    font-size: clamp(44px, 7.8vw, 108px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    font-weight: 500;
    max-width: 14ch;
  }
  .hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red);
    letter-spacing: -0.01em;
  }
  .hero-cursor {
    display: inline-block;
    width: 0.5ch;
    height: 0.85em;
    background: var(--red);
    vertical-align: -0.05em;
    margin-left: 0.15ch;
    animation: cursor 1s steps(2) infinite;
  }
  @keyframes cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }

  .hero-sub {
    margin-top: 28px;
    max-width: 54ch;
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-dim);
    line-height: 1.55;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 26px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: all 0.25s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 8px 24px -8px var(--red-glow), 0 0 0 1px var(--red-deep) inset;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px var(--red-glow), 0 0 0 1px var(--red-deep) inset;
  }
  .btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--line-strong);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--white); }
  .btn-dark {
    background: var(--ink);
    color: var(--white);
  }
  .btn-dark:hover { background: var(--red); }
  .btn svg { transition: transform 0.3s var(--ease); }
  .btn:hover svg { transform: translate(2px, -2px); }

  /* Hero metrics row */
  .hero-metrics {
    margin-top: clamp(60px, 8vw, 100px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .metric {
    padding: 28px 24px;
    border-right: 1px solid var(--line);
  }
  .metric:last-child { border-right: none; }
  .metric-num {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .metric-num em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .metric-lbl {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 10px;
  }
  @media (max-width: 780px) {
    .hero-metrics { grid-template-columns: repeat(2, 1fr); }
    .metric:nth-child(2) { border-right: none; }
    .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--line); }
  }

  /* ======================================================
     MARQUEE / TRUST BAND
     ====================================================== */
  .marquee {
    background: var(--ink);
    color: var(--text-mute);
    padding: 30px 0;
    border-top: 1px solid var(--line);
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
  .marquee-track span::after {
    content: "✦";
    color: var(--red);
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ======================================================
     SECTION HEADERS
     ====================================================== */
  .sec-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: clamp(50px, 6vw, 80px);
  }
  .sec-head h2 {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.035em;
    font-weight: 500;
    max-width: 16ch;
  }
  .sec-head h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .sec-head p {
    font-size: 17px;
    color: var(--text-ink-dim);
    max-width: 48ch;
    justify-self: end;
  }
  .sec-head.on-dark p { color: var(--text-dim); }
  @media (max-width: 820px) {
    .sec-head { grid-template-columns: 1fr; gap: 20px; }
    .sec-head p { justify-self: start; }
  }

  /* ======================================================
     HOW IT WORKS
     ====================================================== */
  .how {
    background: var(--paper);
    position: relative;
  }
  .how::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(var(--line-dark-strong) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    opacity: 0.5;
    pointer-events: none;
  }
  .how .container { position: relative; }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
  }
  .step {
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .step:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 24px 40px -24px rgba(225,6,0,0.25);
  }
  .step::before {
    counter-increment: step;
    content: "/ 0" counter(step);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--red);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 60px;
  }
  .step-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--white);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: all 0.3s var(--ease);
  }
  .step:hover .step-icon { background: var(--red); }
  .step h3 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .step p {
    font-size: 14.5px;
    color: var(--text-ink-dim);
    line-height: 1.55;
  }
  .step-line {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    width: 0;
    background: var(--red);
    transition: width 0.5s var(--ease);
  }
  .step:hover .step-line { width: 100%; }

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

  /* ======================================================
     SERVICES (asymmetric)
     ====================================================== */
  .services {
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .services::before {
    content: "";
    position: absolute;
    top: -10%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }
  .services .container { position: relative; }

  .svc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .svc {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
  }
  .svc:hover {
    border-color: var(--red);
    background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
    transform: translateY(-4px);
  }
  .svc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
  }
  .svc-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.1em;
  }
  .svc-ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease);
  }
  .svc:hover .svc-ic { background: var(--red); border-color: var(--red); }
  .svc h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .svc p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
  }
  .svc-link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: var(--font-mono);
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .svc-link svg { transition: transform 0.3s var(--ease); }
  .svc:hover .svc-link svg { transform: translateX(4px); }

  /* Asymmetric sizes */
  .svc-1 { grid-column: span 3; min-height: 320px; }
  .svc-2 { grid-column: span 3; }
  .svc-3 { grid-column: span 2; }
  .svc-4 { grid-column: span 2; }
  .svc-5 { grid-column: span 2; }

  .svc-featured {
    background:
      radial-gradient(circle at 100% 0%, rgba(225,6,0,0.22), transparent 60%),
      var(--ink-2);
    border-color: var(--line-strong);
  }
  .svc-featured h3 { font-size: 32px; max-width: 14ch; }

  @media (max-width: 980px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-1, .svc-2, .svc-3, .svc-4, .svc-5 { grid-column: span 1; }
    .svc-1 { grid-column: span 2; }
  }
  @media (max-width: 560px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-1 { grid-column: span 1; }
    .svc { min-height: 220px; }
    .svc-top { margin-bottom: 40px; }
  }

  /* ======================================================
     PRODUCTS STORE
     ====================================================== */
  .products {
    background: var(--paper);
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .product {
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
  }
  .product:hover {
    transform: translateY(-6px);
    border-color: var(--ink);
    box-shadow: 0 24px 40px -20px rgba(10,10,11,0.18);
  }
  .product-visual {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    background: var(--ink);
    display: grid;
    place-items: center;
  }
  .product-visual svg { width: 100%; height: 100%; }
  .product-badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 5px 10px;
    background: rgba(10,10,11,0.75);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .product-badge.hot { background: var(--red); }
  .product-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .product-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .product h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }
  .product p {
    font-size: 14.5px;
    color: var(--text-ink-dim);
    line-height: 1.55;
    margin-bottom: 22px;
    flex: 1;
  }
  .product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line-dark);
  }
  .price {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .price span {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-ink-mute);
    margin-left: 4px;
    letter-spacing: 0.05em;
  }
  .btn-sm {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 100px;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s var(--ease);
  }
  .btn-sm:hover { background: var(--red); }

  @media (max-width: 860px) {
    .product-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  }

  /* ======================================================
     INSIGHTS
     ====================================================== */
  .insights {
    background: var(--white);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  .insight-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0;
  }
  .insight {
    padding: 34px 32px;
    border-left: 1px solid var(--line-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    position: relative;
    transition: background 0.3s var(--ease);
  }
  .insight:first-child {
    border-left: none;
    background: var(--ink);
    color: var(--white);
    border-radius: 0;
  }
  .insight:hover {
    background: var(--paper-2);
  }
  .insight:first-child:hover {
    background: var(--ink-2);
  }
  .insight-cat {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }
  .insight h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .insight:first-child h3 { font-size: 36px; }
  .insight p {
    font-size: 14.5px;
    color: var(--text-ink-dim);
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .insight:first-child p { color: var(--text-dim); }
  .insight-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-ink-mute);
    letter-spacing: 0.04em;
  }
  .insight:first-child .insight-foot { color: var(--text-mute); }
  .insight-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease);
  }
  .insight:first-child .insight-arrow { border-color: var(--line-strong); }
  .insight:hover .insight-arrow {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: rotate(-45deg);
  }

  @media (max-width: 900px) {
    .insight-grid { grid-template-columns: 1fr; }
    .insight { border-left: none; border-top: 1px solid var(--line-dark); min-height: auto; }
    .insight:first-child { border-top: none; }
  }

  /* ======================================================
     PRICING
     ====================================================== */
  .pricing {
    background: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .pricing::before {
    content: "";
    position: absolute;
    bottom: -30%; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(225,6,0,0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }
  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
  }
  .tier {
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 36px 32px 36px;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .tier:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
  }
  .tier-name {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .tier-name::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
  }
  .tier-price {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .tier-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-ink-mute);
    font-family: var(--font-mono);
  }
  .tier-desc {
    font-size: 14px;
    color: var(--text-ink-dim);
    margin-top: 14px;
    margin-bottom: 28px;
    line-height: 1.55;
  }
  .tier-btn {
    width: 100%;
    padding: 14px;
    border-radius: 100px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s var(--ease);
    margin-bottom: 32px;
  }
  .tier-btn:hover { background: var(--ink); color: var(--white); }
  .tier-features {
    list-style: none;
    padding: 0; margin: 0;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
  }
  .tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-ink-dim);
  }
  .tier-features svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }

  .tier-featured {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-10px);
    box-shadow: 0 30px 50px -30px rgba(10,10,11,0.5);
  }
  .tier-featured:hover { transform: translateY(-14px); }
  .tier-featured .tier-name { color: #FF4A3D; }
  .tier-featured .tier-price small { color: var(--text-dim); }
  .tier-featured .tier-desc { color: var(--text-dim); }
  .tier-featured .tier-btn {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }
  .tier-featured .tier-btn:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
  .tier-featured .tier-features { border-top-color: var(--line); }
  .tier-featured .tier-features li { color: var(--text-dim); }

  .tier-badge {
    position: absolute;
    top: 20px; right: 24px;
    padding: 4px 10px;
    background: var(--red);
    color: var(--white);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  @media (max-width: 900px) {
    .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .tier-featured { transform: translateY(0); }
    .tier-featured:hover { transform: translateY(-4px); }
  }

  /* ======================================================
     CTA BAND
     ====================================================== */
  .cta-band {
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 10vw, 140px) 0;
  }
  .cta-band::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1100px; height: 700px;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(225,6,0,0.4) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 50%, rgba(225,6,0,0.25) 0%, transparent 55%);
    filter: blur(40px);
    opacity: 0.7;
    pointer-events: none;
  }
  .cta-band::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 80%);
    opacity: 0.5;
    pointer-events: none;
  }
  .cta-inner { position: relative; text-align: center; }
  .cta-inner h2 {
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.02;
    max-width: 18ch;
    margin: 20px auto 24px;
  }
  .cta-inner h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .cta-inner p {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 52ch;
    margin: 0 auto 40px;
    line-height: 1.55;
  }

  /* ======================================================
     FOOTER
     ====================================================== */
  footer {
    background: var(--ink);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--line);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
  }
  .footer-brand p {
    margin-top: 20px;
    color: var(--text-dim);
    font-size: 14.5px;
    max-width: 36ch;
    line-height: 1.6;
  }
  .footer-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact a {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.2s var(--ease);
  }
  .footer-contact a:hover { color: var(--red); }
  .footer-col h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mute);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-col a {
    font-size: 14.5px;
    color: var(--text-dim);
    transition: color 0.2s var(--ease);
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .copy {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
  }
  .socials {
    display: flex;
    gap: 8px;
  }
  .socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--text-dim);
    transition: all 0.25s var(--ease);
  }
  .socials a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

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

  /* Ambient footer wordmark */
  .wordmark {
    font-size: clamp(100px, 22vw, 280px);
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-weight: 700;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px var(--line-strong);
    margin-top: 60px;
    opacity: 0.6;
    user-select: none;
    overflow: hidden;
  }

  /* ======================================================
     SCROLL REVEAL
     ====================================================== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-delay="1"] { transition-delay: 0.08s; }
  .reveal[data-delay="2"] { transition-delay: 0.16s; }
  .reveal[data-delay="3"] { transition-delay: 0.24s; }
  .reveal[data-delay="4"] { transition-delay: 0.32s; }

  /* Prefers reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
  }

  /* ======================================================
     PAGE HEADER (for inner pages)
     ====================================================== */
  .page-head {
    background: var(--ink);
    color: var(--white);
    padding: clamp(140px, 18vw, 200px) 0 clamp(80px, 10vw, 120px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .page-head::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 30%, transparent 80%);
    opacity: 0.6;
    z-index: -2;
  }
  .page-head::after {
    content: "";
    position: absolute;
    top: -30%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
    filter: blur(40px);
    z-index: -1;
  }
  .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }
  .breadcrumb a { color: var(--text-dim); transition: color 0.2s var(--ease); }
  .breadcrumb a:hover { color: var(--red); }
  .breadcrumb .sep { color: var(--text-mute); }
  .page-title {
    font-size: clamp(48px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    font-weight: 500;
    max-width: 16ch;
  }
  .page-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .page-lede {
    margin-top: 28px;
    max-width: 56ch;
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-dim);
    line-height: 1.55;
  }

  /* ======================================================
     PROSE / TWO-COLUMN CONTENT
     ====================================================== */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
  }
  .two-col-label {
    position: sticky;
    top: 100px;
  }
  .two-col-label .eyebrow { margin-bottom: 16px; }
  .two-col-label h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
  }
  .two-col-label h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .two-col-body {
    font-size: 17px;
    color: var(--text-ink-dim);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .two-col-body p:first-of-type {
    font-size: 21px;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .two-col-body strong { color: var(--ink); font-weight: 600; }
  @media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; }
    .two-col-label { position: static; }
  }

  /* ======================================================
     STATS STRIP
     ====================================================== */
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  .stats-strip.on-dark {
    border-color: var(--line);
  }
  .stat {
    padding: 36px 28px;
    border-right: 1px solid var(--line-dark);
  }
  .stats-strip.on-dark .stat {
    border-right-color: var(--line);
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .stat-num em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .stat-lbl {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 12px;
  }
  .stats-strip.on-dark .stat-lbl { color: var(--text-mute); }
  @media (max-width: 780px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
    .stats-strip.on-dark .stat:nth-child(1), .stats-strip.on-dark .stat:nth-child(2) { border-bottom-color: var(--line); }
  }

  /* ======================================================
     TEAM GRID
     ====================================================== */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .member {
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
  }
  .member:hover {
    transform: translateY(-6px);
    border-color: var(--ink);
    box-shadow: 0 24px 40px -20px rgba(10,10,11,0.18);
  }
  .member-photo {
    aspect-ratio: 1;
    background: var(--ink);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
  }
  .member-photo svg { width: 100%; height: 100%; }
  .member-info { padding: 20px 22px 22px; }
  .member-info h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .member-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
  }
  @media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
  }

  /* ======================================================
     TIMELINE
     ====================================================== */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .tl-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding: 36px 0;
    border-top: 1px solid var(--line-dark);
    align-items: start;
    transition: background 0.3s var(--ease);
  }
  .tl-item:last-child { border-bottom: 1px solid var(--line-dark); }
  .tl-year {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--red);
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  .tl-content h4 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }
  .tl-content p {
    font-size: 15.5px;
    color: var(--text-ink-dim);
    line-height: 1.6;
    max-width: 60ch;
  }
  @media (max-width: 720px) {
    .tl-item { grid-template-columns: 1fr; gap: 8px; }
  }

  /* ======================================================
     SERVICE DETAIL BLOCK (for services page)
     ====================================================== */
  .svc-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    padding: clamp(60px, 8vw, 100px) 0;
    border-top: 1px solid var(--line-dark);
    align-items: center;
  }
  .svc-detail.alt { direction: rtl; }
  .svc-detail.alt > * { direction: ltr; }
  .svc-detail-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }
  .svc-detail h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .svc-detail h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .svc-detail .lede {
    font-size: 17px;
    color: var(--text-ink-dim);
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .svc-detail ul {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .svc-detail ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--ink);
  }
  .svc-detail ul svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--red);
  }
  .svc-visual {
    aspect-ratio: 5/4;
    background: var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
  }
  .svc-visual svg { width: 100%; height: 100%; }
  @media (max-width: 900px) {
    .svc-detail { grid-template-columns: 1fr; }
    .svc-detail.alt { direction: ltr; }
  }

  /* ======================================================
     INSIGHTS GRID (full blog list)
     ====================================================== */
  .blog-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .filter-pill {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--line-dark);
    font-size: 13px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-ink-dim);
    background: transparent;
    transition: all 0.2s var(--ease);
  }
  .filter-pill:hover { border-color: var(--ink); color: var(--ink); }
  .filter-pill.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .blog-card {
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
  }
  .blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--ink);
    box-shadow: 0 24px 40px -20px rgba(10,10,11,0.18);
  }
  .blog-cover {
    aspect-ratio: 16/10;
    background: var(--ink);
    overflow: hidden;
    position: relative;
  }
  .blog-cover svg { width: 100%; height: 100%; }
  .blog-body {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  .blog-cat {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .blog-time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-ink-mute);
  }
  .blog-card h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .blog-card p {
    font-size: 14.5px;
    color: var(--text-ink-dim);
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
  }
  .blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line-dark);
  }
  .author-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--ink);
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font-mono);
  }
  .author-name {
    font-size: 13px;
    color: var(--text-ink-dim);
  }
  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
  }

  /* ======================================================
     CONTACT FORM
     ====================================================== */
  .contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
  }
  .contact-info-card {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: sticky;
    top: 100px;
  }
  .contact-info-card h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .contact-info-card h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .contact-info-card > p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }
  .contact-channel:last-child { border-bottom: 1px solid var(--line); }
  .contact-channel-ic {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--red);
  }
  .contact-channel-text strong {
    display: block;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    font-weight: 500;
  }
  .contact-channel-text a {
    font-size: 15px;
    color: var(--white);
    transition: color 0.2s var(--ease);
  }
  .contact-channel-text a:hover { color: var(--red); }

  .contact-form {
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
  }
  .form-field {
    margin-bottom: 22px;
  }
  .form-field.full { grid-column: span 2; }
  .form-field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-ink-mute);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line-dark);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    transition: all 0.2s var(--ease);
  }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(225,6,0,0.08);
  }
  .form-field textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--font-sans);
  }
  .form-submit {
    width: 100%;
    padding: 16px;
    background: var(--ink);
    color: var(--white);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .form-submit:hover { background: var(--red); transform: translateY(-2px); }
  .form-submit svg { transition: transform 0.3s var(--ease); }
  .form-submit:hover svg { transform: translateX(3px); }

  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .form-field.full { grid-column: span 1; }
  }

  /* ======================================================
     PROGRAMS / GRANTS GRID
     ====================================================== */
  .program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .program {
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .program:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 24px 40px -20px rgba(225,6,0,0.18);
  }
  .program-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    align-self: flex-start;
    margin-bottom: 24px;
  }
  .program-status.open { background: rgba(34,197,94,0.1); color: #16a34a; }
  .program-status.open::before {
    content: ""; width: 6px; height: 6px; background: #16a34a; border-radius: 50%;
  }
  .program-status.soon { background: rgba(245,158,11,0.1); color: #d97706; }
  .program-status.soon::before {
    content: ""; width: 6px; height: 6px; background: #d97706; border-radius: 50%;
  }
  .program-status.closed { background: rgba(10,10,11,0.05); color: var(--text-ink-mute); }
  .program-status.closed::before {
    content: ""; width: 6px; height: 6px; background: var(--text-ink-mute); border-radius: 50%;
  }
  .program h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
  }
  .program p {
    font-size: 14.5px;
    color: var(--text-ink-dim);
    line-height: 1.55;
    margin-bottom: 22px;
    flex: 1;
  }
  .program-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--line-dark);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-ink-mute);
  }
  .program-meta strong {
    color: var(--ink);
    font-weight: 500;
  }
  @media (max-width: 900px) {
    .program-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .program-grid { grid-template-columns: 1fr; }
  }

  /* ======================================================
     FAQ
     ====================================================== */
  .faq {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line-dark);
    padding: 24px 0;
    cursor: pointer;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .faq-q-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    color: var(--ink);
  }
  .faq-item.open .faq-q-icon {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    color: var(--text-ink-dim);
    font-size: 15.5px;
    line-height: 1.65;
    padding-right: 50px;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    padding-top: 16px;
  }
