    /* ═══════════════════════════════════════════════════════════════
       BDS Section Styles
       Section-specific layouts and components.
       Design system tokens are in globals.css.
       ═══════════════════════════════════════════════════════════════ */

    /* ─── HERO ─────────────────────────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      padding: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: var(--color-void);
    }
    .hero-bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.4) brightness(0.45) contrast(1.1);
    }
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.6) 50%, var(--color-void) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
      margin: 0 auto;
      padding-bottom: 80px;
      padding-top: 120px;
      text-align: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 32px;
      color: var(--color-yellow);
      opacity: 0;
      animation: fadeUp 1s var(--ease-out-expo) 0.3s forwards;
    }
    .hero-eyebrow-line {
      width: 40px;
      height: 1px;
      background: var(--color-yellow);
    }

    .hero-headline {
      opacity: 0;
      animation: fadeUp 1.1s var(--ease-out-expo) 0.5s forwards;
      margin-bottom: 28px;
      color: var(--color-cream);
    }
    .hero-headline em {
      font-style: italic;
      color: var(--color-yellow);
    }

    .hero-body {
      font-size: 18px;
      line-height: 1.7;
      color: var(--color-fog);
      max-width: 560px;
      margin: 0 auto 44px;
      opacity: 0;
      animation: fadeUp 1.1s var(--ease-out-expo) 0.7s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1.1s var(--ease-out-expo) 0.9s forwards;
    }

    .hero-featured {
      position: relative;
      z-index: 2;
      padding: 48px 0 40px;
      border-top: 1px solid var(--border-cream-faint);
      background: rgba(5,5,5,0.5);
    }
    .hero-featured .featured-title {
      margin-bottom: 20px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      color: var(--color-yellow);
      opacity: 1;
    }

    /* ─── MARQUEE ──────────────────────────────────────────────────── */
    .marquee-section {
      border-top: 1px solid var(--color-stone);
      border-bottom: 1px solid var(--color-stone);
      padding: 18px 0;
      overflow: hidden;
      background: var(--color-soot);
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marqueeScroll 28s linear infinite;
      width: max-content;
    }
    .marquee-track:hover { animation-play-state: paused; }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 40px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-ash);
      white-space: nowrap;
    }
    .marquee-item .dot {
      width: 4px; height: 4px;
      background: var(--color-yellow);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .marquee-item.highlight { color: var(--color-yellow); }

    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-33.333%); }
    }

    .featured-title {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      font-style: normal;
      color: var(--color-brown);
      text-align: center;
      margin-bottom: 36px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .featured-scroll-wrap {
      overflow: hidden;
      width: 100%;
      position: relative;
    }
    .featured-scroll-wrap::before,
    .featured-scroll-wrap::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 1;
      pointer-events: none;
    }
    .featured-scroll-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--color-void) 0%, rgba(5,5,5,0) 100%);
    }
    .featured-scroll-wrap::after {
      right: 0;
      background: linear-gradient(270deg, var(--color-void) 0%, rgba(5,5,5,0) 100%);
    }
    .featured-scroll-track {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: featuredLoop 30s linear infinite;
    }
    .featured-scroll-track:hover { animation-play-state: paused; }
    .featured-logo-slot {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      height: 64px;
      margin: 0 28px;
    }
    .featured-logo-slot.is-horizontal {
      width: 160px;
    }
    .featured-logo-slot.is-vertical {
      width: 106px;
      margin: 0 20px;
    }
    .featured-logo-slot.move-slot {
      width: 128px;
    }
    .featured-logo-slot img {
      width: auto;
      max-width: 100%;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 0.85;
      transition: opacity 0.3s;
    }
    .featured-logo-slot:hover img { opacity: 0.32; }
    .featured-logo-slot.is-horizontal img { height: 36px; }
    .featured-logo-slot.is-vertical img { height: 52px; }
    .featured-logo-slot.is-native img {
      filter: none;
      opacity: 1;
    }
    .featured-logo-slot img[alt="MetaHuman"] { height: 40px; }
    .featured-logo-slot img[alt="80 Level"] { height: 34px; }
    .featured-logo-slot img[alt="Snapchat"] { height: 50px; }
    .featured-logo-slot img[alt="Move AI"] { height: 40px; }
    .featured-logo-slot img[alt="Epic Games"] { height: 56px; }
    .featured-logo-slot img[alt="Unreal Engine"] { height: 56px; }
    .featured-logo-slot img[alt="Dell Technologies"] { height: 38px; }
    .featured-logo-slot img[alt="Autodesk"] { height: 38px; }
    .featured-logo-slot img[alt="Polycam"] { height: 41px; }
    @keyframes featuredLoop {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── SECTION BASE ─────────────────────────────────────────────── */
    section { padding: var(--section-space-lg) 0; }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: var(--section-header-gap);
      gap: var(--section-grid-gap);
      flex-wrap: wrap;
    }

    .section-header-left { max-width: 580px; }

    .section-link {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-fog);
      border-bottom: 1px solid var(--color-stone);
      padding-bottom: 4px;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .section-link:hover { color: var(--color-blue); border-color: var(--color-blue); }

    #learn .learn-premium-section .heading-hero,
    #podcast .podcast-page-header .heading-hero,
    .workhub-page .workhub-hero-title,
    .services-section .heading-hero,
    .open-roles-header .heading-hero {
      font-family: var(--font-body);
      font-weight: 650;
      letter-spacing: 0;
    }

    #learn .learn-premium-section .heading-hero em,
    #podcast .podcast-page-header .heading-hero em,
    .workhub-page .workhub-hero-title em,
    .services-section .heading-hero em,
    .open-roles-header .heading-hero em {
      font-family: var(--font-editorial);
      font-weight: 300;
      font-style: italic;
    }

    /* ─── PILLARS / ECO SYSTEM POSTER CARDS ─────────────────────── */
    #pillars {
      position: relative;
      padding: var(--section-space-lg) 0 var(--section-space-md);
      background: var(--surface-premium);
      overflow: hidden;
      isolation: isolate;
    }
    #pillars .container { position: relative; z-index: 1; }

    #pillars .section-header { margin-bottom: 56px; }
    .pillars-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
    }

    .pillar-panel--watch { --pillar-accent: var(--color-yellow); }
    .pillar-panel--learn { --pillar-accent: var(--color-blue); }
    .pillar-panel--services { --pillar-accent: var(--color-peach); }

    .pillar-panel {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      aspect-ratio: 4 / 5.4;
      overflow: hidden;
      border-radius: 2px;
      text-decoration: none;
      color: inherit;
      isolation: isolate;
      background: var(--color-soot);
      border: 1px solid var(--border-cream-faint);
      transition:
        transform 0.55s var(--ease-out-expo),
        border-color 0.55s var(--ease-out-expo),
        box-shadow 0.55s var(--ease-out-expo);
    }
    .pillar-panel:hover {
      transform: translateY(-3px);
      border-color: rgba(255,239,123,0.18);
      box-shadow: 0 40px 90px rgba(0,0,0,0.6);
    }

    .pillar-panel::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      z-index: 4;
      background: var(--pillar-accent);
    }

    .pillar-panel-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.9);
      transition: transform 1.4s var(--ease-out-expo);
      will-change: transform;
    }
    .pillar-panel:hover .pillar-panel-img {
      transform: scale(1.05);
    }

    .pillar-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(
        180deg,
        rgba(5,5,5,0) 18%,
        rgba(5,5,5,0.55) 55%,
        rgba(5,5,5,0.96) 96%
      );
    }

    .pillar-grain {
      position: absolute;
      inset: 0;
      z-index: 3;
      opacity: 0.06;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' /%3E%3C/svg%3E");
    }

    .pillar-panel-content {
      position: relative;
      z-index: 4;
      padding: 28px 30px 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .pillar-panel-title {
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(40px, 3.6vw, 56px);
      line-height: 0.92;
      letter-spacing: -0.02em;
      color: var(--color-cream);
      margin: 0;
    }

    .pillar-panel-desc {
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 1.55;
      color: var(--color-bone);
      margin: 0;
      max-width: 38ch;
    }

    .pillar-panel-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(245,242,234,0.10);
    }

    .pillar-panel-stat {
      font-family: var(--font-mono);
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-fog);
    }

    .pillar-panel-stat strong {
      color: var(--color-cream);
      font-weight: 500;
    }

    .pillar-panel-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(245,242,234,0.25);
      font-family: var(--font-body);
      font-size: 18px;
      color: var(--color-cream);
      transition:
        background 0.35s var(--ease-out-expo),
        color 0.35s var(--ease-out-expo),
        border-color 0.35s var(--ease-out-expo),
        transform 0.35s var(--ease-out-expo);
    }
    .pillar-panel:hover .pillar-panel-arrow {
      background: var(--pillar-accent);
      color: var(--color-void);
      border-color: var(--pillar-accent);
      transform: translateX(4px);
    }

    /* ─── FIND US BAR ─────────────────────────────────────────────── */
    .find-us-section {
      padding: var(--section-space-sm) 0;
      background: var(--color-void);
    }
    .find-us-section.surface-premium {
      background: var(--surface-premium);
    }
    .find-us-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      max-width: 1120px;
      margin: 0 auto;
      padding: 24px 0;
      border-top: 1px solid var(--border-cream-soft);
      border-bottom: 1px solid var(--border-cream-soft);
    }
    .find-us-section.surface-premium .find-us-bar {
      border-color: var(--ctx-border);
    }
    .find-us-label {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-shrink: 0;
    }
    .find-us-logo {
      height: clamp(40px, 4.5vw, 56px);
      width: auto;
      display: block;
    }
    .find-us-icons {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      flex-wrap: nowrap;
      min-width: 0;
    }
    .find-us-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      flex: 0 0 64px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%),
        rgba(255, 255, 255, 0.015);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 30px rgba(0, 0, 0, 0.18);
      transition: transform 0.25s var(--ease-out-expo), border-color 0.25s ease, background-color 0.25s ease;
    }
    .find-us-section.surface-premium .find-us-icon {
      border-color: var(--ctx-border);
      border-radius: var(--radius-card);
      background: var(--ctx-card-bg);
      box-shadow: var(--shadow-card-quiet);
    }
    .find-us-icon:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.2);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%),
        rgba(255, 255, 255, 0.02);
    }
    .find-us-section.surface-premium .find-us-icon:hover {
      border-color: var(--ctx-border-hover);
      background: var(--ctx-card-bg);
      box-shadow: var(--shadow-card-quiet);
    }
    .find-us-icon-img {
      display: block;
      width: auto;
      height: 30px;
      max-width: 30px;
      flex-shrink: 0;
    }
    .find-us-icon-img--youtube {
      height: 40px;
      max-width: 68px;
    }
    .find-us-icon-img--instagram {
      height: 33px;
      max-width: 33px;
    }
    .find-us-icon-img--spotify {
      height: 29px;
      max-width: 29px;
    }
    .find-us-icon-img--x {
      height: 27px;
      max-width: 27px;
    }
    .find-us-icon-img--linkedin {
      height: 26px;
      max-width: 26px;
    }
    .find-us-icon-img--tiktok {
      height: 27px;
      max-width: 27px;
    }
    .find-us-icon-img--threads {
      height: 27px;
      max-width: 27px;
    }
    .find-us-icon-img--apple {
      height: 31px;
      max-width: 31px;
    }
    @media (max-width: 900px) {
      .find-us-bar { flex-direction: column; gap: 28px; padding: 32px 0; }
      .find-us-icons {
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
      }
    }
    @media (max-width: 640px) {
      .find-us-section { padding: var(--section-space-sm) 0; }
      .find-us-icons {
        gap: 6px;
        justify-content: space-between;
        flex-wrap: nowrap;
      }
      .find-us-icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        border-radius: 10px;
      }
      .find-us-icon-img {
        height: 20px;
        max-width: 20px;
      }
      .find-us-icon-img--youtube {
        height: 24px;
        max-width: 42px;
      }
      .find-us-icon-img--instagram {
        height: 22px;
        max-width: 22px;
      }
      .find-us-icon-img--spotify {
        height: 19px;
        max-width: 19px;
      }
      .find-us-icon-img--x {
        height: 18px;
        max-width: 18px;
      }
      .find-us-icon-img--linkedin {
        height: 17px;
        max-width: 17px;
      }
      .find-us-icon-img--tiktok {
        height: 18px;
        max-width: 18px;
      }
      .find-us-icon-img--threads {
        height: 18px;
        max-width: 18px;
      }
      .find-us-icon-img--apple {
        height: 20px;
        max-width: 20px;
      }
    }

    /* ─── NEWSLETTER ─────────────────────────────────────────── */
    .newsletter {
      position: relative;
      padding: var(--section-space-lg) 0;
      background: var(--color-void);
      overflow: hidden;
      isolation: isolate;
    }
    .newsletter.surface-premium {
      background: var(--surface-premium);
    }
    .newsletter.surface-premium .nl-atmosphere {
      display: none;
    }
    .nl-atmosphere {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .nl-glow {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      height: 90%;
      max-width: 1000px;
      background: radial-gradient(ellipse at center, var(--border-yellow-faint) 0%, transparent 60%);
      filter: blur(40px);
    }
    .nl-shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
      gap: 42px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 56px;
      background: linear-gradient(180deg, var(--color-soot) 0%, var(--color-ink) 100%);
      border: 1px solid var(--border-cream-faint);
      border-radius: var(--radius-card-lg);
      box-shadow:
        inset 0 1px 0 rgba(245,242,237,0.05),
        0 40px 80px rgba(0,0,0,0.5);
    }
    .newsletter.surface-premium .nl-shell {
      background: var(--ctx-card-bg);
      border-color: var(--ctx-border);
      box-shadow: var(--shadow-card-feature);
    }
    .nl-shell::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,239,123,0.3), transparent);
    }
    .newsletter.surface-premium .nl-shell::before {
      content: none;
    }
    .nl-copy { min-width: 0; }
    .nl-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .nl-eyebrow-line {
      width: 28px;
      height: 1px;
      background: var(--color-yellow);
    }
    .nl-eyebrow-text {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-yellow);
    }
    .nl-heading {
      font-family: var(--font-editorial);
      font-size: clamp(32px, 3.6vw, 48px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--color-cream);
      margin-bottom: 18px;
    }
    .nl-heading em {
      font-style: italic;
      color: var(--color-yellow);
    }
    .nl-body {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 400;
      line-height: 1.65;
      color: var(--ctx-body, var(--color-fog));
      max-width: 460px;
    }
    .nl-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-width: 0;
    }
    .nl-fields {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .nl-field {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }
    .nl-field-label {
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ctx-label);
      margin-bottom: 8px;
    }
    .nl-field input {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      color: var(--color-cream);
      background: rgba(5,5,5,0.5);
      border: 1px solid var(--border-cream-soft);
      border-radius: var(--radius-button);
      min-height: 50px;
      padding: 0 15px;
      width: 100%;
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }
    .nl-field input::placeholder { color: var(--color-ash); }
    .nl-field input:hover { border-color: rgba(245,242,237,0.16); }
    .nl-field input:focus {
      border-color: rgba(255,239,123,0.5);
      background: rgba(5,5,5,0.7);
      box-shadow: 0 0 0 3px var(--glow-yellow);
    }
    .nl-field input:-webkit-autofill {
      -webkit-box-shadow: 0 0 0 1000px var(--color-soot) inset;
      -webkit-text-fill-color: var(--color-cream);
      caret-color: var(--color-cream);
    }
    .nl-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 24px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 750;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ctx-btn-primary-text);
      background: var(--ctx-btn-primary-bg);
      border: none;
      border-radius: var(--radius-button);
      cursor: pointer;
      transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s ease, background 0.2s ease;
      width: 100%;
      align-self: stretch;
    }
    .nl-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 28px var(--glow-yellow-strong), 0 0 0 1px rgba(255,239,123,0.3);
    }
    .nl-submit:active { transform: translateY(0); }
    .nl-submit:disabled { opacity: 0.6; cursor: wait; }
    .nl-submit-arrow {
      font-size: 15px;
      transition: transform 0.2s var(--ease-out-expo);
    }
    .nl-submit:hover .nl-submit-arrow { transform: translateX(3px); }
    .nl-honeypot {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    .nl-success,
    .nl-error {
      display: none;
      align-items: center;
      gap: 10px;
      padding: 14px 16px;
      border-radius: var(--radius-button);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .nl-success {
      background: var(--border-yellow-faint);
      border: 1px solid rgba(255,239,123,0.2);
      color: var(--color-yellow);
    }
    .nl-error {
      background: rgba(193,126,89,0.08);
      border: 1px solid rgba(193,126,89,0.25);
      color: var(--color-peach-light);
    }
    .nl-success:not([hidden]),
    .nl-error:not([hidden]) { display: flex; }
    .nl-form [hidden] { display: none; }
    @media (max-width: 900px) {
      .newsletter { padding: var(--section-space-lg) 0; }
      .nl-shell { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    }
    @media (max-width: 640px) {
      .newsletter { padding: var(--section-space-lg) 0; }
      .nl-shell { padding: 28px 24px; border-radius: var(--radius-card); }
      .nl-heading { font-size: clamp(28px, 8vw, 36px); }
      .nl-fields { grid-template-columns: 1fr; }
      .nl-submit { width: 100%; }
    }

    /* ─── WORK WITH US — MAGAZINE SPREAD ──────────────────────── */
    .wwu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
      margin-bottom: 28px;
    }
    .wwu-card {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 580px;
      padding: 48px 40px;
      overflow: hidden;
      border-radius: var(--radius-card-lg);
      border: 1px solid var(--border-cream-faint);
      text-decoration: none;
      color: inherit;
      isolation: isolate;
      transition: transform 0.5s var(--transition), border-color 0.5s var(--transition), box-shadow 0.5s var(--transition);
    }
    .wwu-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-yellow-soft);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    }
    .wwu-card-services:hover {
      border-color: rgba(193, 126, 89, 0.28);
    }
    .feature-card-corner {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 32px;
      height: 32px;
      z-index: 4;
      opacity: 0;
      transform: translate(6px, -6px);
      transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
      pointer-events: none;
    }
    .feature-card-corner::before,
    .feature-card-corner::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      background: var(--ctx-label, var(--color-yellow));
    }
    .feature-card-corner::before {
      width: 32px;
      height: 1px;
    }
    .feature-card-corner::after {
      width: 1px;
      height: 32px;
    }
    :is(.premium-card, .wwu-card):hover .feature-card-corner {
      opacity: 1;
      transform: translate(0, 0);
    }
    .wwu-card-services .feature-card-corner::before,
    .wwu-card-services .feature-card-corner::after {
      background: var(--color-peach);
    }

    .wwu-card-services,
    .wwu-card-media {
      background: var(--color-soot);
    }
    .wwu-card-body {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: grid;
      align-content: start;
      grid-template-rows: auto auto auto auto auto;
    }
    .wwu-card-title {
      font-family: var(--font-body);
      font-size: clamp(28px, 3.4vw, 36px);
      font-weight: 650;
      line-height: 0.98;
      letter-spacing: -0.025em;
      color: var(--color-cream);
      margin: 0 0 14px;
      min-height: 2.05em;
      display: flex;
      align-items: flex-end;
      max-width: 16ch;
      text-wrap: balance;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }
    .wwu-card-title em {
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 300;
      color: var(--color-yellow);
      letter-spacing: -0.01em;
      font-size: 0.96em;
    }
    .wwu-card-copy {
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 400;
      color: var(--color-bone);
      margin: 0 0 22px;
      min-height: 4.8em;
      max-width: 40ch;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    }
    .wwu-card-video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      margin: 0 0 20px;
      border-radius: var(--radius-card);
      overflow: hidden;
      border: 1px solid var(--border-cream-soft);
      background: var(--color-black);
    }
    .wwu-card-video-frame .wwu-card-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      filter: saturate(0.75) brightness(0.78) contrast(1.08);
      transition: transform 0.8s var(--transition), filter 0.4s ease;
    }
    .wwu-card:hover .wwu-card-video {
      transform: scale(1.04);
      filter: saturate(0.9) brightness(0.86) contrast(1.06);
    }
    .wwu-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 24px;
      background: var(--ctx-btn-primary-bg, var(--color-yellow));
      color: var(--ctx-btn-primary-text, var(--color-void));
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 750;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: var(--radius-button);
      align-self: flex-start;
      transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, background 0.35s ease;
    }
    .wwu-card:hover .wwu-card-cta {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(255, 239, 123, 0.3);
    }
    .wwu-card-cta-arrow {
      font-size: 16px;
      transition: transform 0.35s var(--ease-out-expo);
    }
    .wwu-card:hover .wwu-card-cta-arrow { transform: translateX(4px); }
    .premium-card-tags,
    .wwu-card-tags {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 22px;
      min-height: 34px;
    }
    .premium-card-tag,
    .wwu-card-tag {
      display: inline-flex;
      align-items: center;
      padding: 5px 12px;
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 650;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: rgba(255, 239, 123, 0.07);
      border: 1px solid rgba(255, 239, 123, 0.18);
      border-radius: 999px;
      color: var(--color-yellow);
      transition: background var(--duration-base) ease, border-color var(--duration-base) ease, color var(--duration-base) ease;
    }
    .premium-card-ue .premium-card-tag,
    .wwu-card-services .wwu-card-tag {
      background: rgba(193, 126, 89, 0.12);
      border-color: rgba(193, 126, 89, 0.28);
      color: var(--color-peach-light);
    }
    .premium-card:hover .premium-card-tag,
    .wwu-card:hover .wwu-card-tag {
      background: rgba(255, 239, 123, 0.11);
      border-color: rgba(255,239,123,0.36);
      color: var(--color-yellow);
    }
    .premium-card-ue:hover .premium-card-tag,
    .wwu-card-services:hover .wwu-card-tag {
      background: rgba(193, 126, 89, 0.18);
      border-color: rgba(193, 126, 89, 0.42);
      color: var(--color-peach-light);
    }
    .wwu-card-services .wwu-card-cta {
      background: var(--color-peach);
      color: var(--color-cream);
    }
    .wwu-card-media .wwu-card-cta {
      background: var(--color-yellow);
      color: var(--color-void);
    }
    .wwu-card-services:hover .wwu-card-cta {
      box-shadow: 0 4px 20px rgba(193, 126, 89, 0.32);
    }

    .wwu-roles {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 28px 40px;
      margin-top: 12px;
      background: linear-gradient(180deg, var(--color-soot) 0%, var(--color-ink) 100%);
      border: 1px solid var(--border-cream-faint);
      border-radius: var(--radius-card);
      text-decoration: none;
      color: inherit;
      position: relative;
      overflow: hidden;
      transition: transform 0.35s var(--ease-out-expo), border-color 0.35s ease, background 0.35s ease;
    }
    .wwu-roles::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--color-yellow);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.4s var(--ease-out-expo);
    }
    .wwu-roles:hover {
      transform: translateY(-2px);
      border-color: rgba(255,239,123,0.2);
      background: linear-gradient(180deg, var(--color-charcoal) 0%, var(--color-soot) 100%);
    }
    .wwu-roles:hover::before { transform: scaleY(1); }
    .wwu-roles-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      flex: 1;
      min-width: 0;
    }
    .wwu-roles-title {
      display: block;
      font-family: var(--font-body);
      font-size: clamp(28px, 3.2vw, 36px);
      font-weight: 650;
      line-height: 0.98;
      letter-spacing: -0.025em;
      color: var(--color-cream);
    }
    .wwu-roles-copy {
      display: block;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 400;
      line-height: 1.55;
      color: var(--color-fog);
      max-width: 70ch;
    }
    .wwu-roles-title em {
      font-style: italic;
      color: var(--color-yellow);
    }
    .wwu-roles-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-fog);
      white-space: nowrap;
      flex-shrink: 0;
      transition: color 0.3s ease;
    }
    .wwu-roles:hover .wwu-roles-link { color: var(--color-yellow); }
    .wwu-roles-link-arrow {
      font-size: 14px;
      transition: transform 0.35s var(--ease-out-expo);
    }
    .wwu-roles:hover .wwu-roles-link-arrow { transform: translateX(4px); }

    .workhub-page.surface-premium .workhub-hero-copy {
      color: var(--ctx-body);
    }
    .workhub-page.surface-premium .workhub-hero-title em,
    .workhub-page.surface-premium .wwu-roles-title em {
      color: var(--ctx-label);
    }
    .workhub-page.surface-premium .wwu-card-media .wwu-card-title em {
      color: var(--color-yellow);
    }
    .workhub-page.surface-premium .wwu-card-services .wwu-card-title em {
      color: var(--color-peach-light);
    }
    .workhub-page.surface-premium .wwu-card {
      border-color: var(--ctx-border);
    }
    .workhub-page.surface-premium .wwu-card:hover {
      border-color: var(--ctx-border-hover);
    }
    .workhub-page.surface-premium .wwu-card-services:hover {
      border-color: rgba(193, 126, 89, 0.28);
    }
    .workhub-page.surface-premium .wwu-card-title {
      font-family: var(--font-body);
      font-weight: 650;
      letter-spacing: 0;
      color: var(--ctx-card-heading);
    }
    .workhub-page.surface-premium .wwu-card-title em {
      font-family: var(--font-editorial);
      font-weight: 300;
      font-style: italic;
    }
    .workhub-page.surface-premium .wwu-card-copy {
      color: var(--ctx-card-body);
    }
    .workhub-page.surface-premium .wwu-card-tag {
      border-color: rgba(255, 239, 123, 0.18);
      background: rgba(255, 239, 123, 0.07);
      color: var(--color-yellow);
    }
    .workhub-page.surface-premium .wwu-card:hover .wwu-card-tag {
      border-color: rgba(255, 239, 123, 0.36);
      background: rgba(255, 239, 123, 0.11);
      color: var(--color-yellow);
    }
    .workhub-page.surface-premium .wwu-card-services .wwu-card-tag {
      border-color: rgba(193, 126, 89, 0.28);
      background: rgba(193, 126, 89, 0.12);
      color: var(--color-peach-light);
    }
    .workhub-page.surface-premium .wwu-card-services:hover .wwu-card-tag {
      border-color: rgba(193, 126, 89, 0.42);
      background: rgba(193, 126, 89, 0.18);
      color: var(--color-peach-light);
    }
    .workhub-page.surface-premium .wwu-roles {
      border-color: var(--ctx-border);
      background: var(--ctx-card-bg);
      box-shadow: var(--shadow-card-quiet);
    }
    .workhub-page.surface-premium .wwu-roles:hover {
      border-color: var(--ctx-border-hover);
      background: var(--ctx-card-bg);
      box-shadow: var(--shadow-card-quiet);
    }
    .workhub-page.surface-premium .wwu-roles-title {
      font-family: var(--font-body);
      font-weight: 650;
      color: var(--ctx-card-heading);
    }
    .workhub-page.surface-premium .wwu-roles-copy {
      color: var(--ctx-card-body);
    }
    .workhub-page.surface-premium .wwu-roles-link {
      color: var(--ctx-body);
    }
    .workhub-page.surface-premium .wwu-roles:hover .wwu-roles-link {
      color: var(--ctx-label);
    }
    @media (max-width: 1024px) {
      .wwu-grid { grid-template-columns: 1fr; gap: 16px; }
      .wwu-card { min-height: 420px; padding: 40px; }
      .wwu-card-title { font-size: clamp(28px, 3.4vw, 36px); }
      .wwu-card-title,
      .wwu-card-copy,
      .wwu-card-tags { min-height: 0; }
    }
    @media (max-width: 640px) {
      .wwu-card { min-height: 400px; padding: 32px 24px; border-radius: var(--radius-card); }
      .wwu-card-title { font-size: clamp(25px, 7vw, 32px); }
      .wwu-card-copy { margin-bottom: 28px; }
      .wwu-roles { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px 28px; }
      .wwu-roles-left { flex-direction: column; align-items: flex-start; gap: 14px; }
    }

    /* ─── PODCAST ──────────────────────────────────────────────────── */
    #podcast {
      background: var(--color-ink);
      padding-top: var(--section-space-lg);
    }

    .ep-featured-card {
      background: var(--color-soot);
      border: 1px solid var(--color-stone);
      padding: 60px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-card);
    }
    .ep-featured-card.main {
      background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-void) 100%);
    }

    .ep-number {
      font-family: var(--font-editorial);
      font-size: 100px;
      font-weight: 300;
      line-height: 1;
      color: rgba(255,255,255,0.04);
      position: absolute;
      top: 20px;
      right: 30px;
      pointer-events: none;
    }

    .ep-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .ep-badge {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 5px 12px;
      background: var(--glow-yellow);
      border: 1px solid var(--border-yellow-soft);
      border-radius: 6px;
      color: var(--color-yellow);
    }
    .ep-date {
      font-size: 11px;
      color: var(--color-ash);
      letter-spacing: 0.1em;
    }

    .ep-title {
      font-family: var(--font-editorial);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .ep-guest {
      font-size: 13px;
      color: var(--color-fog);
      margin-bottom: 24px;
    }
    .ep-guest strong { color: var(--color-cream); font-weight: 600; }

    .ep-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .ep-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 18px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: 1px solid var(--color-stone);
      border-radius: var(--radius-button);
      color: var(--color-fog);
      transition: border-color 0.2s, color 0.2s;
    }
    .ep-btn:hover { border-color: var(--border-yellow-soft); color: var(--color-yellow); }
    .ep-btn svg { width: 12px; height: 12px; fill: currentColor; }

    .ep-schedule {
      background: var(--color-void);
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .schedule-title {
      font-family: var(--font-editorial);
      font-size: 20px;
      font-weight: 300;
      margin-bottom: 32px;
      color: var(--color-fog);
    }
    .schedule-days {
      display: flex;
      gap: 2px;
      margin-bottom: 32px;
    }
    .schedule-day {
      flex: 1;
      background: var(--color-soot);
      padding: 20px 12px;
      text-align: center;
      border-radius: var(--radius-button);
    }
    .schedule-day.active { background: var(--glow-yellow); border: 1px solid var(--border-yellow-soft); }
    .schedule-day-name {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-ash);
    }
    .schedule-day.active .schedule-day-name { color: var(--color-yellow); }
    .schedule-day-freq {
      font-family: var(--font-editorial);
      font-size: 11px;
      color: var(--color-ash);
      margin-top: 4px;
    }
    .schedule-day.active .schedule-day-freq { color: var(--color-fog); }

    .schedule-platforms {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .platform-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      background: var(--color-soot);
      border: 1px solid var(--color-stone);
      border-radius: var(--radius-button);
      transition: border-color 0.2s;
    }
    .platform-row:hover { border-color: var(--border-yellow-soft); }
    .platform-row-name {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      flex: 1;
    }
    .platform-row-arrow {
      font-size: 14px;
      color: var(--color-ash);
      transition: transform 0.2s, color 0.2s;
    }
    .platform-row:hover .platform-row-arrow { transform: translateX(4px); color: var(--color-yellow); }

    /* Episode grid */
    .episodes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .ep-card {
      background: var(--color-soot);
      border: 1px solid var(--color-stone);
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s, border-color 0.3s;
      border-radius: var(--radius-card);
    }
    .ep-card:hover { background: var(--color-soot); }

    .ep-featured-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: var(--radius-button);
      margin-bottom: 24px;
    }
    .ep-card-art {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: var(--radius-button);
      margin-bottom: 16px;
    }
    .ep-card-number {
      font-family: var(--font-editorial);
      font-size: 11px;
      color: var(--color-yellow);
      letter-spacing: 0.15em;
      margin-bottom: 16px;
    }
    .ep-card-title {
      font-family: var(--font-editorial);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .ep-card-guest {
      font-size: 12px;
      color: var(--color-fog);
      margin-bottom: 20px;
    }
    .ep-card-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .ep-card-date {
      font-size: 10px;
      color: var(--color-ash);
      letter-spacing: 0.1em;
    }
    .ep-card-play {
      width: 32px; height: 32px;
      border: 1px solid var(--color-stone);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
    }
    .ep-card-play:hover { background: var(--glow-yellow); border-color: var(--border-yellow-soft); }
    .ep-card-play svg { width: 10px; height: 10px; fill: var(--color-yellow); margin-left: 2px; }

    /* ─── LEARN ────────────────────────────────────────────────────── */
    #learn {
      padding-top: 20px;
      padding-bottom: 0;
    }
    @media (max-width: 768px) {
      #learn { padding-top: var(--section-space-md); padding-bottom: 0; }
    }
    @media (max-width: 480px) {
      #learn { padding-top: var(--section-space-sm); }
    }

    .course-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 2px;
    }

    .course-info {
      background: var(--color-soot);
      padding: 80px 60px;
      border-radius: var(--radius-card);
    }

    .course-visual {
      background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-soot) 100%);
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-card);
    }

    /* Cinematic UE render placeholder */
    .course-render {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,164,74,0.08) 0%, transparent 70%),
        linear-gradient(135deg, var(--color-void) 0%, var(--color-soot) 50%, var(--color-void) 100%);
    }
    .course-render-text {
      position: relative;
      text-align: center;
      z-index: 2;
    }
    .course-render-title {
      font-family: var(--font-editorial);
      font-size: 14px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--color-ash);
      margin-bottom: 12px;
    }
    .course-render-year {
      font-family: var(--font-editorial);
      font-size: 80px;
      font-weight: 300;
      color: rgba(200,164,74,0.2);
      line-height: 1;
    }
    .course-render-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      padding: 8px 20px;
      border: 1px solid var(--border-yellow-soft);
      background: var(--glow-yellow);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-yellow);
    }

    .course-badge-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .course-badge {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 5px 12px;
      background: var(--color-charcoal);
      border: 1px solid var(--color-stone);
      border-radius: 6px;
      color: var(--color-fog);
    }
    .course-badge.gold { background: var(--glow-yellow); border-color: var(--border-yellow-soft); color: var(--color-yellow); }

    .course-title {
      font-family: var(--font-editorial);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .course-desc {
      font-size: 15px;
      line-height: 1.7;
      color: var(--color-fog);
      margin-bottom: 36px;
      max-width: 460px;
    }

    .course-stats-row {
      display: flex;
      gap: 32px;
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--color-stone);
    }
    .course-stat-n {
      font-family: var(--font-editorial);
      font-size: 28px;
      font-weight: 300;
      color: var(--color-yellow);
      line-height: 1;
    }
    .course-stat-l {
      font-size: 10px;
      color: var(--color-ash);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .course-pricing {
      display: flex;
      gap: 12px;
      margin-bottom: 32px;
    }
    .pricing-tier {
      flex: 1;
      background: var(--color-void);
      padding: 24px 20px;
    }
    .pricing-tier.featured { background: var(--color-charcoal); }
    .pricing-name {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-ash);
      margin-bottom: 8px;
    }
    .pricing-price {
      font-family: var(--font-editorial);
      font-size: 32px;
      font-weight: 300;
      line-height: 1;
    }

    .tutorials-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding-bottom: var(--section-space-lg);
      margin-top: 0;
    }

    .tutorial-card {
      border-radius: var(--radius-card);
      background: var(--color-soot);
      padding: 40px 36px;
      transition: background 0.3s;
      cursor: pointer;
    }
    .tutorial-card:hover { background: var(--color-charcoal); }

    .tutorial-views {
      font-size: 11px;
      color: var(--color-yellow);
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }
    .tutorial-title {
      font-family: var(--font-editorial);
      font-size: 22px;
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .tutorial-desc {
      font-size: 13px;
      color: var(--color-fog);
      line-height: 1.6;
    }

    .quote-block {
      border-left: 1px solid var(--border-yellow-soft);
      padding-left: 24px;
      margin-bottom: 40px;
    }
    .quote-text {
      font-family: var(--font-editorial);
      font-size: 20px;
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      color: var(--color-fog);
      margin-bottom: 12px;
    }
    .quote-attribution {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-ash);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .testimonial-card {
      background: var(--color-soot);
      border: 1px solid var(--color-stone);
      padding: 36px;
      border-radius: var(--radius-card);
    }
    .testimonial-text {
      font-family: var(--font-editorial);
      font-size: 22px;
      font-weight: 300;
      font-style: italic;
      line-height: 1.6;
      color: var(--color-cream);
      margin-bottom: 20px;
    }
    .testimonial-name {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-ash);
    }

    .stars {
      font-size: 16px;
      color: var(--color-yellow);
      font-size: 12px;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    /* ─── ABOUT ────────────────────────────────────────────────────── */
    #about {
      padding-top: var(--section-space-lg);
      padding-bottom: var(--section-space-lg);
    }
    @media (max-width: 768px) {
      #about { padding-top: var(--section-space-md); padding-bottom: var(--section-space-lg); }
    }
    @media (max-width: 480px) {
      #about { padding-top: var(--section-space-sm); padding-bottom: var(--section-space-lg); }
    }

    .contact-link {
      font-family: var(--font-editorial);
      font-size: 24px;
      color: var(--color-yellow);
      transition: opacity 0.2s;
    }
    .contact-link:hover { opacity: 0.7; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 2px;
    }

    .about-story {
      background: var(--color-soot);
      padding: 72px 60px;
      border-radius: var(--radius-card);
    }
    .about-founders {
      background: var(--color-void);
      padding: 72px 60px;
      border-radius: var(--radius-card);
    }

    .about-origin {
      font-family: var(--font-editorial);
      font-size: 14px;
      font-weight: 300;
      font-style: italic;
      line-height: 1.8;
      color: var(--color-fog);
      margin-bottom: 40px;
      padding: 24px;
      border: 1px solid var(--color-stone);
      background: var(--color-void);
    }

    .founder-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .founder-card {
      background: var(--color-soot);
      padding: 32px;
      display: flex;
      align-items: center;
      gap: 24px;
      border-radius: var(--radius-card);
      transition: background 0.3s;
    }
    .founder-card:hover { background: var(--color-charcoal); }

    .founder-avatar {
      width: 64px;
      height: 64px;
      background: var(--glow-yellow);
      border: 1px solid var(--border-yellow-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-editorial);
      font-size: 24px;
      font-weight: 300;
      color: var(--color-yellow);
      flex-shrink: 0;
    }
    .founder-name {
      font-family: var(--font-editorial);
      font-size: 22px;
      font-weight: 300;
      line-height: 1.2;
    }
    .founder-role {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-ash);
      margin-top: 4px;
    }

    /* About page feature */
    .about-feature-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 32px;
      align-items: center;
    }
    .about-feature-copy {
      max-width: 520px;
    }
    .about-feature-copy .section-label,
    .about-feature-copy .heading-section {
      text-align: left;
    }
    .about-feature-copy .heading-section {
      margin-bottom: 20px;
    }
    .about-feature-body {
      max-width: 100%;
      margin: 0;
      text-align: left;
    }
    .about-video-card {
      border-radius: var(--radius-card);
      overflow: hidden;
      border: 1px solid rgba(251,249,237,0.08);
    }
    .about-video-card--feature {
      justify-self: end;
      width: 100%;
    }
    .about-video-card video {
      width: 100%;
      display: block;
      aspect-ratio: 16/9;
      object-fit: cover;
    }

    /* Founders redesign */
    .about-founders-section { padding: 20px 0; }
    .about-founders-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      max-width: 800px;
      margin: 0 auto;
    }
    .about-founder-card {
      background: var(--color-soot);
      border: 1px solid var(--color-stone);
      border-radius: var(--radius-card);
      padding: 40px 32px;
      text-align: center;
      transition: border-color 0.3s;
    }
    .about-founder-card:hover { border-color: rgba(193, 126, 89, 0.35); }
    .about-founder-avatar {
      width: 80px;
      height: 80px;
      background: var(--glow-yellow);
      border: 1px solid var(--border-yellow-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-editorial);
      font-size: 28px;
      font-weight: 300;
      color: var(--color-yellow);
      margin: 0 auto 20px;
    }
    .about-founder-card h3 {
      font-family: var(--font-editorial);
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 4px;
    }
    .about-founder-role {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-yellow);
      display: block;
      margin-bottom: 16px;
    }
    .about-founder-card p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--color-fog);
    }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }
    .client-cell {
      background: var(--color-soot);
      padding: 28px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-radius: var(--radius-button);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-ash);
      transition: background 0.3s, color 0.3s;
      cursor: default;
    }
    .client-cell:hover { background: var(--color-charcoal); color: var(--color-fog); }
    .client-cell img {
      height: 28px;
      max-width: 100%;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 1;
      transition: opacity 0.3s;
      object-fit: contain;
    }
    .client-cell:hover img { opacity: 0.3; }
    .sponsor-card img {
      max-width: 80%;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 1;
      transition: opacity 0.3s;
    }
    .sponsor-card:hover img { opacity: 0.3; }

    /* ─── TOOLS ────────────────────────────────────────────────────── */
    #tools {
      background: var(--color-soot);
      border-top: 1px solid var(--color-stone);
      padding: var(--section-space-lg) 0;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .tool-card {
      background: var(--color-soot);
      border: 1px solid var(--color-stone);
      padding: 36px 32px;
      transition: background 0.3s, border-color 0.3s;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-card);
    }
    .tool-card:hover { background: var(--color-charcoal); }

    .tool-icon-wrap {
      width: 40px;
      height: 40px;
      background: var(--glow-yellow);
      border: 1px solid var(--border-yellow-soft);
      border-radius: var(--radius-button);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-family: var(--font-editorial);
      font-size: 16px;
      color: var(--color-yellow);
    }

    .tool-name {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }
    .tool-desc {
      font-size: 13px;
      line-height: 1.6;
      color: var(--color-fog);
    }

    .tool-status {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 4px 10px;
      background: var(--color-charcoal);
      border-radius: 6px;
      color: var(--color-ash);
    }
    .tool-status.live {
      background: rgba(151, 199, 205, 0.1);
      color: var(--color-blue);
    }

    /* ─── COMMUNITY ────────────────────────────────────────────────── */
    #community {
      padding: var(--section-space-lg) 0;
      overflow: hidden;
    }

	    /* Footer brand (legacy selectors removed — see FOOTER block) */

    /* Podcast section helpers (replaces inline styles) */
    .pod-section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    /* ─── PODCAST PLATFORMS (shared component) ───────────────────── */
    /* Used on home page (podcast-landing) AND /podcast page.
       One component, one markup, one place to style. */
	    .pod-platforms {
	      display: flex;
	      align-items: center;
	      gap: 22px;
	      margin-top: 36px;
	      margin-bottom: 36px;
	    }
    .pod-platforms-label {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
	      color: var(--ctx-label, var(--color-yellow));
	      letter-spacing: 0.18em;
	      text-transform: uppercase;
	      margin-bottom: 0;
	      opacity: 0.78;
	      white-space: nowrap;
      line-height: 1;
      align-self: center;
	    }
    .pod-platforms-grid {
	      display: flex;
	      flex-wrap: wrap;
	      align-items: center;
	      gap: 24px;
	    }
    .pod-platforms-btn {
      display: flex;
      align-items: center;
      justify-content: center;
	      padding: 0;
	      background: transparent;
	      border: 0;
	      border-radius: 0;
	      min-height: 0;
	      flex: 0 0 auto;
	      min-width: 0;
	      opacity: 0.92;
	      transition: opacity 0.24s var(--ease-out-expo), transform 0.24s var(--ease-out-expo);
	    }
	    .pod-platforms-btn:hover {
	      opacity: 1;
	      transform: translateY(-1px);
	    }
    .pod-platforms-lockup {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 0;
    }
    .pod-platforms-lockup--apple {
      gap: 12px;
    }
    .pod-platforms-logo {
      display: block;
      width: auto;
      max-width: 100%;
      flex-shrink: 0;
    }
    .pod-platforms-logo--youtube { height: 24px; }
    .pod-platforms-logo--youtube-lockup { height: 34px; }
    .pod-platforms-logo--spotify { height: 29px; }
    .pod-platforms-logo--apple { height: 29px; }
    .pod-platforms-stack {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1;
      gap: 2px;
    }
    .pod-platforms-overline {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      color: var(--color-cream);
      opacity: 0.9;
    }
    .pod-platforms-wordmark {
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 700;
      line-height: 1;
      color: var(--color-cream);
      white-space: nowrap;
    }
    .pod-platforms-btn--spotify .pod-platforms-wordmark {
      color: #1ED760;
    }

    .pod-landing-schedule-accent {
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 300;
      color: var(--ctx-label, var(--color-yellow));
    }

    /* Center alignment modifier (used on /podcast page) */
    .pod-platforms--center { text-align: center; }
    .pod-platforms--center .pod-platforms-grid { justify-content: center; }
    .pod-platforms--inline {
      --pod-platform-rail: 42px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
      margin-top: 48px;
    }
    .pod-platforms--inline .pod-platforms-label {
      display: inline-flex;
      align-items: center;
      margin-bottom: 0;
      flex-shrink: 0;
      min-height: var(--pod-platform-rail);
      transform: none;
      padding-bottom: 6px;
    }
    .pod-platforms--inline .pod-platforms-grid {
      gap: 22px;
      align-items: center;
      flex-wrap: wrap;
    }
    .pod-platforms--inline .pod-platforms-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      min-height: var(--pod-platform-rail);
      padding: 0;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }
    .pod-platforms--inline .pod-platforms-btn:hover {
      border-color: transparent;
      transform: translateY(0);
      box-shadow: none;
      opacity: 0.8;
    }
    .pod-platforms--inline .pod-platforms-lockup {
      min-height: var(--pod-platform-rail);
      align-items: center;
      gap: 9px;
    }
    .pod-platforms--inline .pod-platforms-lockup--apple {
      gap: 10px;
    }
    .pod-platforms--inline .pod-platforms-wordmark {
      font-size: 18px;
    }
    .pod-platforms--inline .pod-platforms-overline {
      font-size: 11px;
    }
    .pod-platforms--inline .pod-platforms-logo--youtube {
      height: 29px;
    }
    .pod-platforms--inline .pod-platforms-logo--youtube-lockup {
      height: 41px;
    }
    .pod-platforms--inline .pod-platforms-logo--spotify {
      height: 35px;
    }
    .pod-platforms--inline .pod-platforms-logo--apple {
      height: 35px;
    }
    .pod-platforms--inline .pod-platforms-stack {
      justify-content: center;
      min-height: var(--pod-platform-rail);
    }

	    @media (max-width: 768px) {
	      .pod-platforms {
	        flex-direction: column;
	        align-items: center;
	        width: 100%;
	        gap: 14px;
	      }
	      .pod-platforms-grid {
	        flex-direction: row;
	        flex-wrap: wrap;
	        width: 100%;
	        max-width: 100%;
	        justify-content: center;
	        gap: 18px 22px;
	        overflow-x: visible;
	        padding-bottom: 0;
	      }
	      .pod-platforms-btn {
	        width: auto;
	        max-width: 100%;
	        flex: 0 1 auto;
	        min-width: 0;
	      }
      .pod-platforms-logo--youtube {
        height: 20px;
      }
      .pod-platforms-logo--youtube-lockup {
        height: 28px;
      }
      .pod-platforms-logo--spotify {
        height: 24px;
      }
      .pod-platforms-logo--apple {
        height: 23px;
      }
      .pod-platforms-wordmark {
        font-size: 14px;
      }
      .pod-platforms-overline {
        font-size: 8px;
      }
      .pod-platforms--inline {
        --pod-platform-rail: 38px;
        align-items: center;
        gap: 14px;
        margin-top: 36px;
      }
      .pod-platforms--inline .pod-platforms-label {
        padding-bottom: 0;
      }
	      .pod-platforms--inline .pod-platforms-grid {
	        width: auto;
	        flex-direction: row;
	        flex-wrap: wrap;
	        justify-content: center;
	        gap: 12px;
	        overflow-x: visible;
	        padding-bottom: 0;
	      }
      .pod-platforms--inline .pod-platforms-btn {
        width: auto;
      }
      .pod-platforms--inline .pod-platforms-lockup {
        gap: 8px;
      }
      .pod-platforms--inline .pod-platforms-wordmark {
        font-size: 15.5px;
      }
      .pod-platforms--inline .pod-platforms-overline {
        font-size: 9.5px;
      }
      .pod-platforms--inline .pod-platforms-logo--youtube {
        height: 24px;
      }
      .pod-platforms--inline .pod-platforms-logo--youtube-lockup {
        height: 35px;
      }
      .pod-platforms--inline .pod-platforms-logo--spotify {
        height: 29px;
      }
      .pod-platforms--inline .pod-platforms-logo--apple {
        height: 28px;
      }
    }
    @media (max-width: 640px) {
      .pod-platforms--inline {
        flex-direction: column;
        gap: 12px;
      }
      .pod-platforms--inline .pod-platforms-label {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
      .pod-platforms--inline .pod-platforms-grid {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 18px;
      }
    }

	    /* ─── PODCAST GUESTS SECTION ──────────────────────────────────── */
    .pod-guests-section {
      background-color: var(--color-tan);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='t'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23t)' opacity='0.025'/%3E%3C/svg%3E");
      padding: var(--section-space-lg) 0;
    }
    .pod-guests-section.surface-editorial {
      background: var(--surface-editorial);
    }
    .podcast-page-header {
      margin-bottom: 48px;
      text-align: center;
    }
    #podcast.surface-premium {
      background: var(--surface-premium);
    }
    #podcast.surface-premium .podcast-page-header .label,
    #podcast.surface-premium .podcast-page-header .heading-hero em {
      color: var(--ctx-label);
    }
    #podcast.surface-premium .podcast-page-copy {
      color: var(--ctx-body);
    }
    #podcast.surface-premium .pod-section-label {
      color: var(--ctx-label);
    }
    .podcast-page-header .label {
      justify-content: center;
    }
    .podcast-page-header .heading-hero {
      margin-bottom: 24px;
    }
    .podcast-page-copy {
      margin-top: 18px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      font-size: 16px;
      line-height: 1.68;
    }
    .pod-guests-header {
      margin-bottom: 48px;
      text-align: left;
    }
    .pod-guests-section .section-label {
      color: var(--color-green);
    }
    .pod-guests-section.surface-editorial .section-label,
    .pod-guests-section.surface-editorial .heading-section em {
      color: var(--ctx-label);
    }
    .pod-guests-section .heading-section {
      color: var(--color-void);
      max-width: 860px;
      margin-bottom: 0;
    }
    .pod-guests-section.surface-editorial .heading-section {
      color: var(--ctx-heading);
    }
    .pod-guests-section .heading-section em {
      color: var(--color-green);
    }
    .sponsors-header {
      margin-bottom: 48px;
    }

    .pod-guest-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      align-items: stretch;
      gap: 28px;
    }
    @media (min-width: 1025px) {
      .pod-guest-grid .pod-guest-tile:nth-last-child(4) {
        grid-column-start: 2;
      }
    }
    .pod-guest-tile {
      display: flex;
      flex-direction: column;
      color: inherit;
      min-width: 0;
      height: 100%;
    }
    .pod-guest-image-wrap {
      position: relative;
      aspect-ratio: 1;
      border-radius: var(--radius-card);
      overflow: hidden;
      background: rgba(0,0,0,0.06);
      transition: box-shadow 0.3s ease;
    }
    .pod-guest-tile:hover .pod-guest-image-wrap {
      box-shadow: none;
    }
    .pod-guest-image-wrap img {
      --guest-scale: 1;
      --guest-hover-scale: 1.04;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: none;
      transform: scale(var(--guest-scale));
      transition: filter 0.5s ease, transform 0.5s ease;
    }
    .pod-guest-image--zoom-20 {
      --guest-scale: 1.2;
      --guest-hover-scale: 1.24;
    }
    .pod-guest-tile:hover .pod-guest-image-wrap img {
      filter: none;
      transform: scale(var(--guest-hover-scale));
    }
    .pod-guest-arrow {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(0,0,0,0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .pod-guest-tile:hover .pod-guest-arrow {
      opacity: 1;
      transform: translateY(0);
    }
    .pod-guest-arrow svg {
      width: 14px;
      height: 14px;
      stroke: var(--color-cream);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .pod-guest-meta {
      margin-top: 14px;
      min-height: 74px;
      display: flex;
      flex-direction: column;
    }
	    .pod-guest-meta h3 {
	      font-family: var(--font-editorial);
	      font-size: 18px;
	      font-style: italic;
	      font-weight: 400;
	      line-height: 1.15;
	      color: var(--color-void);
	      margin: 0 0 4px;
	      transition: color 0.3s ease;
	    }
    .pod-guest-tile:hover .pod-guest-meta h3 {
      color: var(--color-green);
    }
	    .pod-guest-meta span {
	      margin-top: 0;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--color-ash);
      line-height: 1.5;
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    /* ─── FOOTER ───────────────────────────────────────────────────── */
    footer {
      background: var(--color-void);
      padding: var(--section-space-lg) 0 var(--section-space-xs);
    }
    footer.surface-premium {
      background: var(--surface-premium);
      color: var(--ctx-body);
    }

    .footer-top {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 0.82fr));
      gap: 48px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--color-stone);
    }
    footer.surface-premium .footer-top {
      border-color: var(--ctx-border);
    }

    .footer-brand-logo {
      display: block;
      width: min(340px, 100%);
      height: auto;
      margin-bottom: 18px;
    }
    .footer-tagline {
      font-size: 13px;
      line-height: 1.65;
      color: var(--color-ash);
      margin-bottom: 10px;
      max-width: none;
      white-space: nowrap;
    }
    footer.surface-premium .footer-tagline {
      color: var(--ctx-body);
    }
    .footer-brand-location {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.15em;
      color: var(--color-ash);
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    footer.surface-premium .footer-brand-location {
      color: var(--ctx-body);
    }

    .footer-social-row {
      display: flex;
      gap: 18px;
      flex-wrap: nowrap;
      align-items: center;
      opacity: 0.92;
    }
    .footer-social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s, opacity 0.2s;
    }
    .footer-social-btn:hover {
      transform: translateY(-1px);
      opacity: 0.9;
    }
    footer.surface-premium .footer-social-btn {
      width: auto;
      height: auto;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: var(--shadow-card-quiet);
    }
    footer.surface-premium .footer-social-btn:hover {
      opacity: 1;
    }
    .footer-social-icon {
      display: block;
      width: auto;
      height: 18px;
      flex-shrink: 0;
    }
    .footer-social-icon--youtube { height: 23px; }
    .footer-social-icon--instagram { height: 21px; }
    .footer-social-icon--spotify { height: 19px; }
    .footer-social-icon--x { height: 16px; }
    .footer-social-icon--linkedin { height: 18px; }
    .footer-social-icon--tiktok { height: 18px; }
    .footer-social-icon--apple { height: 19px; }
    .footer-social-icon--discord { height: 18px; }
    .footer-social-btn .footer-social-icon {
      display: block;
    }

    .footer-col-title {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-ash);
      margin-bottom: 18px;
    }
    footer.surface-premium .footer-col-title {
      color: var(--ctx-label);
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--color-fog);
      transition: color 0.2s;
    }
    footer.surface-premium .footer-links a {
      color: var(--ctx-body);
    }
    .footer-links a:hover { color: var(--color-cream); }
    footer.surface-premium .footer-links a:hover {
      color: var(--ctx-heading);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-copyright {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--color-stone);
      letter-spacing: 0.02em;
    }
    footer.surface-premium .footer-copyright {
      color: var(--ctx-body);
    }

    /* ─── 404 ───────────────────────────────────────────────────── */
    .not-found-page {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 132px 0 var(--section-space-md);
      overflow: hidden;
      position: relative;
      isolation: isolate;
    }
    .not-found-page::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 18% 22%, rgba(255, 239, 123, 0.12), transparent 28%),
        radial-gradient(circle at 82% 38%, rgba(151, 199, 205, 0.08), transparent 30%),
        linear-gradient(135deg, rgba(58, 93, 91, 0.18), transparent 38%);
    }
    .not-found-page::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0.028;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }
    .not-found-shell {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
      align-items: center;
      gap: clamp(40px, 7vw, 96px);
    }
    .not-found-logo {
      width: min(300px, 78vw);
      height: auto;
      margin-bottom: 44px;
    }
    .not-found-kicker {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ctx-label);
      margin-bottom: 22px;
    }
    .not-found-title {
      max-width: 740px;
      font-family: var(--font-body);
      font-size: clamp(46px, 7vw, 92px);
      font-weight: 760;
      line-height: 0.96;
      letter-spacing: 0;
      color: var(--ctx-heading);
      margin-bottom: 26px;
      text-wrap: balance;
    }
    .not-found-title em {
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 300;
      color: var(--ctx-label);
    }
    .not-found-body {
      max-width: 580px;
      font-size: 17px;
      line-height: 1.7;
      color: var(--ctx-body);
      margin-bottom: 34px;
    }
    .not-found-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .not-found-art {
      position: relative;
      min-height: 440px;
      border: 1px solid var(--ctx-border);
      border-radius: var(--radius-card);
      background:
        linear-gradient(135deg, rgba(255, 239, 123, 0.06), transparent 40%),
        var(--ctx-card-bg);
      overflow: hidden;
    }
    .not-found-number {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-body);
      font-size: clamp(140px, 22vw, 260px);
      font-weight: 850;
      line-height: 0.8;
      letter-spacing: 0;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 239, 123, 0.58);
      text-shadow: 0 0 46px rgba(255, 239, 123, 0.12);
    }
    .not-found-card {
      position: absolute;
      max-width: 220px;
      padding: 12px 14px;
      border: 1px solid rgba(245, 242, 234, 0.12);
      border-radius: var(--radius-card);
      background: rgba(5, 5, 5, 0.54);
      color: var(--ctx-heading);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 650;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
    }
    .not-found-card--one {
      left: 28px;
      top: 34px;
      color: var(--ctx-label);
    }
    .not-found-card--two {
      right: 30px;
      top: 126px;
      transform: rotate(4deg);
    }
    .not-found-card--three {
      left: 54px;
      bottom: 44px;
      transform: rotate(-3deg);
    }

    /* ─── LEARN — NETFLIX STYLE ────────────────────────────────── */

    .learn-premium-section {
      padding: var(--section-space-sm) 0 var(--section-space-md);
      background: var(--color-void);
    }
	    .learn-premium-section.surface-premium {
	      background: var(--surface-premium);
	    }
	    .learn-free-section {
      padding: var(--section-space-md) 0;
      background: var(--color-green);
    }
    .learn-section-header {
      margin-bottom: 36px;
    }
    .learn-free-section .section-label,
    .learn-free-section .heading-section {
      color: var(--color-tan);
    }
    .learn-free-section .heading-section em {
      color: var(--color-yellow);
    }
    .learn-free-section .learn-row-title {
      color: var(--color-tan);
    }

    /* Free guides — horizontal editorial rows */
    .learn-free-list {
      display: flex;
      flex-direction: column;
      margin-top: 8px;
    }
    .learn-free-row {
      display: grid;
      grid-template-columns: 320px 1fr auto;
      gap: 56px;
      align-items: center;
      padding: 44px 0;
      position: relative;
      text-decoration: none;
      color: inherit;
      transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .learn-free-row + .learn-free-row::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(245, 242, 237, 0.1);
    }
    .learn-free-row:hover {
      padding-left: 12px;
      padding-right: 12px;
    }
    .learn-free-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 2px;
      background: var(--color-void);
    }
    .learn-free-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .learn-free-row:hover .learn-free-thumb img {
      transform: scale(1.04);
    }
    .learn-free-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.2);
      pointer-events: none;
    }
    .learn-free-body {
      min-width: 0;
    }
    .learn-free-title {
      font-family: var(--font-editorial);
      font-weight: 300;
      font-size: 44px;
      line-height: 1.02;
      letter-spacing: -0.028em;
      color: var(--color-cream);
      margin: 0 0 26px;
      max-width: 620px;
    }
    .learn-free-title em {
      font-style: italic;
      color: var(--color-yellow);
    }
    .learn-free-foot {
      position: relative;
      padding-top: 0;
      max-width: 560px;
    }
    .learn-free-foot::before {
      content: none;
    }
    .learn-free-byline {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 400;
      line-height: 1.6;
      color: var(--ctx-body, var(--color-fog));
      margin: 0;
      max-width: 520px;
    }
    .learn-free-action {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
      padding-left: 24px;
    }
    .learn-free-action-label {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--color-fog);
      transition: color 0.3s ease;
    }
    .learn-free-row:hover .learn-free-action-label {
      color: var(--color-yellow);
    }
    .learn-free-action-arrow {
      width: 56px;
      height: 56px;
      border: 1px solid rgba(251, 249, 237, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-cream);
      transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .learn-free-row:hover .learn-free-action-arrow {
      background: var(--color-yellow);
      border-color: var(--color-yellow);
      color: var(--color-void);
      transform: rotate(-45deg);
    }
    .learn-free-action-arrow svg {
      width: 16px;
      height: 16px;
    }

    .learn-free-section.surface-editorial {
      background: var(--surface-editorial);
    }
    .learn-free-section.surface-editorial .section-label {
      color: var(--ctx-label);
    }
    .learn-free-section.surface-editorial .heading-section,
    .learn-free-section.surface-editorial .learn-free-title {
      color: var(--ctx-heading);
    }
    .learn-free-section.surface-editorial .heading-section em,
    .learn-free-section.surface-editorial .learn-free-title em {
      color: var(--ctx-label);
    }
    .learn-free-section.surface-editorial .learn-free-row + .learn-free-row::before {
      background: var(--ctx-border);
    }
    .learn-free-section.surface-editorial .learn-free-byline,
    .learn-free-section.surface-editorial .learn-free-action-label {
      color: var(--ctx-body);
    }
    .learn-free-section.surface-editorial .learn-free-action-arrow {
      border-color: var(--ctx-btn-secondary-border);
      color: var(--ctx-heading);
    }
    .learn-free-section.surface-editorial .learn-free-row:hover .learn-free-action-label {
      color: var(--ctx-label);
    }
    .learn-free-section.surface-editorial .learn-free-row:hover .learn-free-action-arrow {
      background: var(--ctx-label);
      border-color: var(--ctx-label);
      color: var(--surface-editorial);
    }

    @media (max-width: 1280px) {
      .learn-free-row {
        grid-template-columns: 320px 1fr auto;
        gap: 44px;
        padding: 36px 0;
      }
      .learn-free-title { font-size: 36px; }
    }
    @media (max-width: 1024px) {
      .learn-free-row {
        grid-template-columns: 260px 1fr auto;
        gap: 32px;
      }
      .learn-free-title { font-size: 30px; margin-bottom: 20px; }
    }
    @media (max-width: 768px) {
      .learn-free-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 0;
        align-items: start;
      }
      .learn-free-row:hover {
        padding-left: 0;
        padding-right: 0;
      }
      .learn-free-thumb { width: 100%; }
      .learn-free-title { font-size: 28px; max-width: none; }
      .learn-free-byline { font-size: 13px; }
      .learn-free-action {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding-left: 0;
        justify-content: flex-start;
      }
      .learn-free-action-arrow { width: 48px; height: 48px; }
    }

    /* Scroll rows */
    .learn-row { margin-bottom: 48px; }
    .learn-programs-title {
      font-family: var(--font-body);
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 760;
      line-height: 1.02;
      letter-spacing: 0;
      color: var(--ctx-heading, var(--color-cream));
      text-wrap: balance;
    }
    .learn-programs-title em {
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 300;
      color: var(--ctx-label, var(--color-yellow));
    }
    .learn-row-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--color-yellow);
      transition: opacity 0.2s;
    }
    .learn-row-link:hover { opacity: 0.7; }

    /* Premium duo cards */
    .premium-duo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .premium-card {
      position: relative;
      border-radius: var(--radius-card-lg);
      overflow: hidden;
      padding: 48px 40px;
      min-height: 580px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      isolation: isolate;
      transition: transform 0.5s var(--transition), border-color 0.5s var(--transition), box-shadow 0.5s var(--transition);
      border: 1px solid var(--border-cream-faint);
    }
    .premium-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-yellow-soft);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    }

    .premium-card-content {
      position: relative;
      z-index: 2;
    }

    /* In-body video preview (Unreal card) — sits above the title */
    .premium-card-video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      margin: 0 0 18px;
      border-radius: var(--radius-card);
      overflow: hidden;
      border: 1px solid var(--border-cream-soft);
      background: var(--color-black);
    }
    .premium-card-video-frame .premium-card-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Both program cards — flat surface, video does the visual lifting */
    .premium-card-ai,
    .premium-card-ue {
      background: var(--color-soot);
    }
    .premium-card-ai:hover { border-color: rgba(255, 239, 123, 0.3); }
    .premium-card-ue:hover { border-color: rgba(193, 126, 89, 0.4); }
    /* Title — bold Inter with PP Editorial italic accent (per mock) */
    .premium-card h2,
    .premium-card h3 {
      font-family: var(--font-body);
      font-size: clamp(28px, 3.4vw, 36px);
      font-weight: 650;
      line-height: 0.98;
      letter-spacing: -0.025em;
      color: var(--color-cream);
      margin: 0 0 14px;
      text-wrap: balance;
      max-width: 16ch;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }
    .premium-card h2 em,
    .premium-card h3 em {
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 300;
      color: var(--color-yellow);
      letter-spacing: -0.01em;
      font-size: 0.96em;
    }

    /* Supporting copy — bone, 14px, tight (per mock .c-line) */
    .premium-card p {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.55;
      color: var(--color-bone);
      margin: 0 0 22px;
      max-width: 40ch;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    }

    .premium-card-cta {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 750;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-void);
      background: var(--color-yellow);
      padding: 0 24px;
      border-radius: var(--radius-button);
      transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
    }
    .premium-card-ai .premium-card-cta {
      background: var(--color-yellow);
    }
    .premium-card-ue .premium-card-cta {
      background: var(--color-peach);
      color: var(--color-cream);
    }
    .premium-card:hover .premium-card-cta {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(255, 239, 123, 0.3);
    }
    .premium-card-ai:hover .premium-card-cta {
      box-shadow: 0 4px 20px rgba(255, 239, 123, 0.3);
    }
    .premium-card-ue:hover .premium-card-cta {
      box-shadow: 0 4px 20px rgba(193, 126, 89, 0.32);
    }

    @media (max-width: 1024px) {
      .learn-premium-section,
      .learn-free-section {
        padding-top: 56px;
        padding-bottom: 64px;
      }
      .premium-duo { grid-template-columns: 1fr; }
      .premium-card { min-height: 420px; }
    }
    @media (max-width: 768px) {
      .learn-premium-section,
      .learn-free-section {
        padding-top: 40px;
        padding-bottom: 48px;
      }
      .learn-premium-info { padding: 28px; }
      .premium-card {
        min-height: 400px;
        padding: 32px 24px;
      }
      .premium-card p {
        font-size: 15px;
        margin-bottom: 20px;
      }
    }

    /* ─── WHO WE ARE / SHOWREEL ──────────────────────────────────── */
    .whoweare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      margin-bottom: 64px;
    }
    .whoweare-intro {
      font-family: var(--font-editorial);
      font-size: 20px;
      font-weight: 300;
      color: var(--color-fog);
      margin-bottom: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--color-stone);
    }
    .whoweare-block {
      margin-bottom: 20px;
    }
    .whoweare-block p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--color-fog);
    }
    .whoweare-block strong {
      color: var(--color-cream);
      font-weight: 600;
    }
    .whoweare-videos {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .whoweare-video-card {
      position: relative;
      border-radius: var(--radius-card);
      overflow: hidden;
      border: 1px solid var(--color-stone);
    }
    .whoweare-video-card video {
      width: 100%;
      display: block;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    .whoweare-video-label {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 5px 12px;
      background: rgba(8, 8, 8, 0.8);
      backdrop-filter: blur(8px);
      border: 1px solid var(--color-stone);
      border-radius: 6px;
      color: var(--color-fog);
    }
    .whoweare-video-label-gold {
      background: rgba(255, 239, 123, 0.12);
      border-color: rgba(193, 126, 89, 0.4);
      color: var(--color-yellow);
    }

    /* Stats */
    .whoweare-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 48px;
      padding: 40px 0;
      border-top: 1px solid var(--color-stone);
      border-bottom: 1px solid var(--color-stone);
    }
    .whoweare-stat { text-align: center; }
    .whoweare-stat-number {
      font-family: var(--font-editorial);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 300;
      color: var(--color-cream);
      line-height: 1;
    }
    .whoweare-stat-label {
      font-size: 12px;
      color: var(--color-ash);
      margin-top: 8px;
    }

    /* ─── STATS ────────────────────────────────────────────────────── */
    .stats-section {
      padding: 64px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }
    .stat-item { text-align: center; }
    .stat-number {
      font-family: var(--font-editorial);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 300;
      color: var(--color-yellow);
      line-height: 1;
    }
    .stat-label {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-bone);
      margin-top: 10px;
    }

    /* ─── PODCAST LANDING (phone mockup) ─────────────────────────── */
    .pod-landing {
      padding: var(--section-space-lg) 0 var(--section-space-md);
    }
    @media (max-width: 768px) {
      .pod-landing { padding: var(--section-space-md) 0; }
    }
    @media (max-width: 480px) {
      .pod-landing { padding: var(--section-space-sm) 0; }
    }
    .pod-landing-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 64px;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Phone image */
    .pod-phone-img {
      max-width: 320px;
      flex-shrink: 0;
    }
    .pod-phone-img img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.5));
    }

    /* Landing content */
    .pod-landing .section-label {
      color: var(--color-blue);
    }
    .pod-landing .heading-section {
      color: var(--color-cream);
      margin-bottom: 24px;
    }
    .pod-landing .heading-section em {
      color: var(--color-blue);
    }
    .pod-landing-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .pod-landing-desc {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.68;
      color: var(--ctx-body, var(--color-fog));
      max-width: 600px;
      margin-bottom: 16px;
    }
    @media (max-width: 1024px) {
	      .pod-landing-grid {
	        grid-template-columns: 1fr;
	        gap: 48px;
	        text-align: center;
	      }
	      .pod-phone-img { margin: 0 auto; max-width: 280px; }
	      .pod-landing-content { align-items: center; }
	      .pod-landing-desc { margin-left: auto; margin-right: auto; }
	      .pod-landing-grid .pod-platforms { align-items: center; }
	      .pod-landing-grid .pod-platforms-grid { justify-content: center; }
	    }
    @media (max-width: 480px) {
      .pod-phone-img { max-width: 240px; }
    }

    .mobile-swipe-dots {
      display: none;
    }

    /* Recent episodes label */
    .pod-section-label {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-cream);
      margin: 64px 0 24px;
    }
    .pod-section-label::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--color-yellow);
      flex-shrink: 0;
    }
    .pod-section-label-rule {
      flex: 1;
      height: 1px;
      background: var(--ctx-border, rgba(245, 242, 237, 0.12));
    }

    /* Recent episodes — featured-first layout */
    .re-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
      gap: 18px;
      align-items: stretch;
      min-width: 0;
    }
    .re-rows {
      display: flex;
      flex-direction: column;
      gap: 10px;
      height: 100%;
      min-width: 0;
    }
    .re-rows > .re-row {
      flex: 1 1 0;
      min-height: 0;
    }
    .re-hero {
      display: grid;
      grid-template-rows: 1fr auto;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-card);
      background: var(--ctx-card-bg, var(--color-soot));
      border: 1px solid var(--ctx-border, rgba(245,242,237,0.08));
      text-decoration: none;
      color: inherit;
      min-width: 0;
      transition: transform 0.55s var(--ease-out-expo), border-color 0.4s ease;
    }
    .re-hero:hover {
      transform: translateY(-4px);
      border-color: var(--ctx-border-hover, rgba(255,239,123,0.3));
    }
    .re-hero-thumb {
      position: relative;
      overflow: hidden;
      min-height: 0;
      background: var(--color-void);
    }
    .re-hero-thumb img,
    .re-row-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: var(--color-void);
    }
    .re-hero-thumb img {
      transition: transform 1.1s var(--ease-out-expo);
    }
    .re-hero:hover .re-hero-thumb img {
      transform: scale(1.02);
    }
    .re-hero-thumb::after,
    .re-row-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(0,0,0,0) 62%, rgba(0,0,0,0.64) 100%);
    }
    .re-hero-body {
      padding: 22px 26px 24px;
      border-top: 1px solid var(--ctx-border, rgba(245,242,237,0.08));
    }
    .re-hero-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .re-hero-text {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 0;
    }
    .re-hero-meta,
    .re-row-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      text-transform: uppercase;
    }
    .re-hero-meta {
      font-size: 10px;
      letter-spacing: 0.18em;
    }
    .re-row-meta {
      font-size: 9.5px;
      letter-spacing: 0.18em;
      color: var(--color-ash);
    }
    .re-hero-meta .ep,
    .re-row-meta .ep {
      color: var(--ctx-label, var(--color-yellow));
      font-weight: 650;
    }
    .re-hero-meta .sep,
    .re-row-meta .sep {
      color: var(--color-ash);
    }
    .re-hero-meta .date {
      color: var(--color-fog);
    }
    .re-hero-title {
      margin: 0;
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(28px, 3vw, 34px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--color-cream);
    }
    .re-hero-arrow {
      flex-shrink: 0;
      color: var(--color-fog);
      font-size: 24px;
      line-height: 1;
      transition: color 0.35s ease, transform 0.35s ease;
    }
    .re-hero:hover .re-hero-arrow {
      color: var(--ctx-label, var(--color-yellow));
      transform: translateX(4px);
    }
    .re-row {
      display: grid;
      grid-template-columns: clamp(160px, 32%, 280px) minmax(0, 1fr) 32px;
      gap: 16px;
      align-items: stretch;
      min-height: 0;
      overflow: hidden;
      background: var(--ctx-card-bg, var(--color-soot));
      border: 1px solid var(--ctx-border, rgba(245,242,237,0.08));
      border-radius: var(--radius-card);
      text-decoration: none;
      color: inherit;
      min-width: 0;
      transition: transform 0.35s var(--ease-out-expo), border-color 0.35s ease;
    }
    .re-row:hover {
      transform: translateY(-2px);
      border-color: var(--ctx-border-hover, rgba(255,239,123,0.25));
    }
    .re-row-thumb {
      position: relative;
      overflow: hidden;
      background: var(--color-void);
      width: 100%;
      height: 100%;
      align-self: stretch;
    }
    .re-row-dur {
      position: absolute;
      right: 8px;
      bottom: 8px;
      z-index: 2;
      padding: 3px 6px;
      border: 1px solid rgba(245,242,237,0.18);
      background: rgba(5,5,5,0.7);
      color: var(--color-cream);
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      backdrop-filter: blur(4px);
    }
    .re-row-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      min-width: 0;
      padding: 10px 6px 10px 0;
    }
    .re-row-title {
      margin: 0;
      color: var(--color-cream);
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.22;
      letter-spacing: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .re-row-arrow {
      align-self: center;
      padding-right: 14px;
      color: var(--color-fog);
      font-size: 18px;
      transition: color 0.35s ease, transform 0.35s ease;
    }
    .re-row:hover .re-row-arrow {
      color: var(--ctx-label, var(--color-yellow));
      transform: translateX(4px);
    }

    @media (max-width: 900px) {
      .re-grid {
        grid-template-columns: 1fr;
      }
      .re-rows {
        height: auto;
      }
      .re-rows > .re-row {
        flex: 0 0 auto;
      }
      .re-hero-thumb {
        aspect-ratio: 16 / 9;
      }
      .re-hero-title {
        font-size: 26px;
      }
      .re-hero-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .re-row {
        grid-template-columns: 120px minmax(0, 1fr) 28px;
      }
    }

    @media (max-width: 768px) {
      .pod-section-label { margin: 48px 0 20px; }
    }
    @media (max-width: 1024px) {
      .pod-guest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
      }
    }
    @media (max-width: 640px) {
      .pod-guests-section {
        padding: var(--section-space-md) 0;
      }
      .pod-guests-header {
        margin-bottom: 36px;
      }
      .pod-guest-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 2px 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .pod-guest-grid::-webkit-scrollbar {
        display: none;
      }
      .pod-guest-tile {
        flex: 0 0 min(78vw, 248px);
        max-width: min(78vw, 248px);
        scroll-snap-align: start;
      }
      .mobile-swipe-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 7px;
        margin-top: 16px;
        max-width: 100%;
        overflow: hidden;
      }
      .mobile-swipe-dot {
        width: 6px;
        height: 6px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(245, 242, 237, 0.32);
        transition: transform 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
        opacity: 1;
      }
      .mobile-swipe-dot.is-active {
        background: var(--color-yellow);
        transform: scale(1.35);
      }
      .surface-editorial .mobile-swipe-dot {
        background: rgba(58, 93, 91, 0.22);
      }
      .surface-editorial .mobile-swipe-dot.is-active {
        background: var(--ctx-label, var(--color-green));
      }
    }

    /* ─── FEATURED INTERVIEWS ────────────────────────────────────── */
    .interviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .interview-card {
      background: var(--color-soot);
      border: 1px solid var(--color-stone);
      border-radius: var(--radius-card);
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s;
    }
    .interview-card:hover {
      transform: translateY(-4px);
      border-color: rgba(193, 126, 89, 0.4);
    }
    .interview-thumb {
      position: relative;
      overflow: hidden;
    }
    .interview-thumb img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .interview-card:hover .interview-thumb img { transform: scale(1.05); }
    .interview-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.85);
      width: 52px;
      height: 52px;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--color-cream);
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
    }
    .interview-card:hover .interview-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .interview-info {
      padding: 20px 24px 24px;
    }
    .interview-info h3 {
      font-family: var(--font-editorial);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 4px;
    }
    .interview-info span {
      font-size: 12px;
      color: var(--color-yellow);
      font-weight: 600;
      letter-spacing: 0.05em;
      display: block;
      margin-bottom: 8px;
    }
    .interview-info p {
      font-size: 14px;
      color: var(--color-fog);
      line-height: 1.5;
    }

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

    /* ─── SERVICES & CAREERS ──────────────────────────────────────── */
    .services-section {
      padding: var(--section-space-lg) 0;
    }
    .services-section.surface-premium {
      background: var(--surface-premium);
    }
    .services-section.surface-premium .section-label,
    .services-section.surface-premium .heading-hero em {
      color: var(--ctx-label);
    }
    .services-section.surface-premium .body-text {
      color: var(--ctx-body);
    }

    /* ── Tech Stack (services) ── */
    .services-stack {
      padding: var(--section-space-lg) 0;
      border-top: 1px solid var(--border-cream-faint);
    }
    .services-stack.surface-premium {
      background: var(--surface-premium);
      border-color: var(--ctx-border);
    }
    .services-stack-header {
      max-width: 760px;
      margin: 0 auto 64px;
      text-align: center;
    }
    .services-stack-header .section-label {
      margin-bottom: 16px;
    }
    .services-stack-header .heading-section {
      margin: 0 0 18px;
    }
    .services-stack.surface-premium .section-label,
    .services-stack.surface-premium .heading-section em,
    .services-stack.surface-premium .services-stack-tile-mark {
      color: var(--ctx-label);
    }
    .services-stack.surface-premium .heading-section {
      color: var(--ctx-heading);
    }
    .services-stack-intro {
      margin: 0;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.68;
      color: var(--ctx-body, var(--color-fog));
    }
    .services-stack.surface-premium .services-stack-group-label {
      color: var(--ctx-body);
    }
    .services-stack-group {
      margin-top: 48px;
    }
    .services-stack-group-label {
      margin: 0 0 22px;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-fog);
    }
    .services-stack-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 16px;
    }
    .services-stack-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 26px 14px;
      border: 1px solid var(--border-cream-faint);
      border-radius: var(--radius-card);
      background: rgba(255,255,255,0.02);
      transition: transform var(--duration-base) var(--ease-out-expo),
                  border-color var(--duration-base) var(--ease-out-expo),
                  background var(--duration-base) var(--ease-out-expo);
    }
    .services-stack-tile:hover {
      transform: translateY(-2px);
      border-color: rgba(255,239,123,0.22);
      background: rgba(255,255,255,0.04);
    }
    .services-stack.surface-premium .services-stack-tile {
      background: var(--ctx-card-bg);
      border-color: var(--ctx-border);
      box-shadow: var(--shadow-card-quiet);
    }
    .services-stack.surface-premium .services-stack-tile:hover {
      border-color: var(--ctx-border-hover);
      background: var(--ctx-card-bg);
      box-shadow: var(--shadow-card-quiet);
    }
    .services-stack-tile-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: auto;
      padding: 0;
      background: transparent;
      border: 0;
      border-radius: 0;
    }
    .services-stack.surface-premium .services-stack-tile-mark {
      color: var(--ctx-label);
    }
    .services-stack-tile-logo {
      display: block;
      width: 42px;
      height: 42px;
      max-width: 42px;
      max-height: 42px;
      object-fit: contain;
      object-position: center;
      flex: 0 0 auto;
    }
    .services-stack-tile-logo[alt="Polycam logo"],
    .services-stack-tile-logo[alt="ManyChat logo"] {
      filter: brightness(0) invert(1);
    }
    .services-stack-tile-name {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      color: var(--color-cream);
      text-align: center;
    }
    .services-stack.surface-premium .services-stack-tile-name {
      color: var(--ctx-card-heading);
    }
    @media (max-width: 900px) {
      .services-stack-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 480px) {
      .services-stack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      body[data-page="services"] .services-stack-group .services-stack-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 2px 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      body[data-page="services"] .services-stack-group .services-stack-grid::-webkit-scrollbar {
        display: none;
      }
      body[data-page="services"] .services-stack-group .services-stack-tile {
        flex: 0 0 calc((100% - 24px) / 3);
        max-width: calc((100% - 24px) / 3);
        min-width: 0;
        scroll-snap-align: start;
        padding: 18px 10px;
      }
      body[data-page="services"] .services-stack-group .services-stack-tile-mark {
        width: auto;
        height: auto;
      }
      body[data-page="services"] .services-stack-group .services-stack-tile-logo {
        width: 34px;
        height: 34px;
        max-width: 34px;
        max-height: 34px;
      }
    }

    .services-cta {
      padding: var(--section-space-lg) 0;
    }
    .services-cta.surface-premium {
      background: var(--surface-premium);
    }
    .services-cta-heading {
      font-family: var(--font-editorial);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--color-cream);
      margin-bottom: 20px;
    }
    .services-cta.surface-premium .services-cta-heading {
      color: var(--ctx-heading);
    }
    .services-cta-heading em {
      font-style: italic;
      color: var(--color-yellow);
    }
    .services-cta.surface-premium .services-cta-heading em {
      color: var(--ctx-label);
    }
    .services-cta.surface-premium .body-text {
      color: var(--ctx-body);
    }
    @media (max-width: 640px) {
      .services-section { padding: var(--section-space-md) 0; }
      .services-cta { padding: var(--section-space-md) 0; }
    }
    /* ─── SERVICES BENTO ──────────────────────────────────────────
       6-col asymmetric grid. Hero card spans 4 cols × 2 rows on the
       left. Cards 02–03 stack on the right (2 cols × 1 row each).
       Cards 04–06 sit across the bottom (2 cols × 1 row each).
       Mobile collapses to a single column.
    ──────────────────────────────────────────────────────────── */
    .services-bento {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: minmax(220px, auto);
      gap: 12px;
      margin-top: 64px;
    }
    .services-bento .services-card {
      grid-column: span 2;
    }
    .services-bento .services-card-hero {
      grid-column: span 4;
      grid-row: span 2;
      min-height: 480px;
    }
    /* Bottom row: 2 cards spanning 3 cols each (5-card layout) */
    .services-bento .services-card:nth-of-type(4),
    .services-bento .services-card:nth-of-type(5) {
      grid-column: span 3;
    }

    .services-card {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: var(--color-soot);
      border: 1px solid var(--border-cream-faint);
      border-radius: var(--radius-card);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
    }
    .services-card:hover {
      border-color: rgba(255, 239, 123, 0.35);
      transform: translateY(-2px);
      box-shadow: 0 18px 48px rgba(0,0,0,0.35);
    }
    .services-section.surface-premium .services-card {
      background: var(--ctx-card-bg);
      border-color: var(--ctx-border);
      box-shadow: var(--shadow-card-quiet);
    }
    .services-section.surface-premium .services-card:hover {
      border-color: var(--ctx-border-hover);
      box-shadow: var(--shadow-card-quiet);
    }
    .services-section.surface-premium .services-card-hero {
      border-color: color-mix(in srgb, var(--ctx-border) 78%, var(--ctx-label) 22%);
      box-shadow: var(--shadow-card-feature);
    }
    .services-section.surface-premium .services-card-hero:hover {
      box-shadow: var(--shadow-card-feature-hover);
    }
    .services-section.surface-premium .services-card-num,
    .services-section.surface-premium .services-card-title-hero em {
      color: var(--ctx-label);
    }
    .services-section.surface-premium .services-card-eyebrow {
      color: var(--ctx-body);
      border-color: var(--ctx-border);
    }
    .services-section.surface-premium .services-card-title {
      color: var(--ctx-card-heading);
    }
    .services-section.surface-premium .services-card-title-hero {
      font-family: var(--font-body);
      font-weight: 650;
      letter-spacing: 0;
    }
    .services-section.surface-premium .services-card-title-hero em {
      font-family: var(--font-editorial);
      font-weight: 300;
    }
    .services-section.surface-premium .services-card-desc {
      color: var(--ctx-card-body);
    }

    /* Body — shared between hero and small cards */
    .services-card-body {
      position: relative;
      z-index: 2;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }
    .services-card-hero .services-card-body {
      padding: 40px 44px;
      justify-content: space-between;
      gap: 32px;
    }
    .services-card-hero-content {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    /* Meta row — number + eyebrow */
    .services-card-meta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .services-card-num {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      color: var(--color-yellow);
    }
    .services-card-eyebrow {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-fog);
      padding-left: 12px;
      border-left: 1px solid var(--color-stone);
    }

    /* Heading */
    .services-card-title {
      font-family: var(--font-body);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -0.005em;
      color: var(--color-cream);
      margin: 0;
    }
    .services-card-title-hero {
      font-family: var(--font-editorial);
      font-weight: 400;
      font-size: clamp(36px, 4vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.02em;
    }
    .services-card-title-hero em {
      font-style: italic;
      color: var(--color-yellow);
    }

    /* Body copy */
    .services-card-desc {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.62;
      color: var(--ctx-card-body, var(--ctx-body, var(--color-fog)));
      margin: 0;
      max-width: 56ch;
    }
    .services-card-hero .services-card-desc {
      font-size: 15px;
      max-width: 60ch;
    }

    /* CTA */
    .services-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      padding-top: 16px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--color-cream);
    }
    .services-card-cta-small {
      font-size: 12px;
      color: var(--color-fog);
    }
    .services-card-cta-arrow {
      display: inline-block;
      transition: transform 0.25s var(--ease-out-expo);
    }
    .services-card:hover .services-card-cta-arrow {
      transform: translateX(4px);
    }
    .services-card:hover .services-card-cta-small {
      color: var(--color-yellow);
    }

    /* Hero media (background video) */
    .services-card-media {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .services-card-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.65;
      transition: opacity 0.5s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
    }
    .services-card-hero:hover .services-card-media video {
      opacity: 0.78;
      transform: scale(1.03);
    }
    .services-card-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.92) 100%),
        radial-gradient(ellipse at 0% 100%, rgba(255,239,123,0.12), transparent 55%);
    }

    /* Hero meta sits in normal flow at top of body; content fills below */
    .services-card-hero .services-card-meta {
      position: relative;
      z-index: 2;
    }

    /* Typography-led hero (no video) — for advisory / strategic services */
    .services-card-hero-text .services-card-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse at 8% 100%, rgba(255,239,123,0.12), transparent 55%),
        radial-gradient(ellipse at 100% 0%, rgba(151,199,205,0.06), transparent 50%),
        linear-gradient(135deg, var(--color-soot) 0%, var(--color-charcoal) 100%);
    }
    .services-card-hero-text::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-size: 200px;
      opacity: 0.03;
      mix-blend-mode: overlay;
    }
    .services-card-hero-text:hover .services-card-bg {
      background:
        radial-gradient(ellipse at 8% 100%, rgba(255,239,123,0.18), transparent 55%),
        radial-gradient(ellipse at 100% 0%, rgba(151,199,205,0.08), transparent 50%),
        linear-gradient(135deg, var(--color-soot) 0%, var(--color-charcoal) 100%);
    }

    /* ─── BENTO RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 1024px) {
      .services-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
      }
      .services-bento .services-card {
        grid-column: span 1;
      }
      .services-bento .services-card-hero {
        grid-column: span 2;
        grid-row: auto;
        min-height: 380px;
      }
    }
    @media (max-width: 640px) {
      .services-bento {
        grid-template-columns: 1fr;
      }
      .services-bento .services-card,
      .services-bento .services-card-hero {
        grid-column: span 1;
        min-height: 240px;
      }
      .services-bento .services-card-hero { min-height: 360px; }
      .services-card-hero .services-card-body { padding: 28px; gap: 24px; }
    }

    .open-roles-header {
      padding: var(--section-space-md) 0 var(--section-space-xs);
    }
    .open-roles-header.surface-premium {
      background: var(--surface-premium);
    }
    .open-roles-header.surface-premium .section-label,
    .open-roles-header.surface-premium .heading-hero em {
      color: var(--ctx-label);
    }
    .open-roles-header.surface-premium .body-text {
      color: var(--ctx-body);
    }
    .open-roles-list-section {
      padding: var(--section-space-xs) 0 var(--section-space-md);
      background: var(--color-void);
    }
    .open-roles-list-section.surface-premium {
      background: var(--surface-premium);
    }
    @media (max-width: 640px) {
      .open-roles-header { padding: var(--section-space-sm) 0 var(--section-space-xs); }
      .open-roles-list-section { padding: var(--section-space-xs) 0 var(--section-space-md); }
    }

    .or-list {
      border-top: 1px solid var(--ctx-border, rgba(245,242,237,0.1));
    }
    .or-row {
      border-bottom: 1px solid var(--ctx-border, rgba(245,242,237,0.1));
      transition: background-color 0.3s ease;
    }
    .or-row summary::-webkit-details-marker {
      display: none;
    }
    .or-row-summary {
      list-style: none;
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr) auto 44px;
      gap: 32px;
      align-items: center;
      width: 100%;
      padding: 32px 0;
      color: inherit;
      cursor: pointer;
      user-select: none;
    }
    .or-row-num {
      font-family: var(--font-editorial);
      font-style: italic;
      font-weight: 300;
      font-size: 24px;
      line-height: 1;
      color: var(--ctx-label, var(--color-yellow));
    }
    .or-row-body {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }
    .or-row-title {
      margin: 0;
      color: var(--ctx-card-heading, var(--color-cream));
      font-family: var(--font-body);
      font-size: 24px;
      font-weight: 750;
      line-height: 1.15;
      letter-spacing: 0;
      transition: color 0.25s ease;
    }
    .or-row:hover .or-row-title,
    .or-row[open] .or-row-title {
      color: var(--ctx-label, var(--color-yellow));
    }
    .or-row-tagline {
      max-width: 64ch;
      margin: 0;
      color: var(--ctx-card-body, var(--ctx-body, var(--color-fog)));
      font-size: 14.5px;
      font-weight: 400;
      line-height: 1.55;
    }
    .or-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 650;
      letter-spacing: 0.16em;
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .or-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
    }
    .or-status--closed {
      color: var(--color-fog);
      background: rgba(168,162,158,0.06);
      border: 1px solid rgba(168,162,158,0.2);
    }
    .or-status--open {
      color: var(--color-green-light);
      background: rgba(74, 116, 114, 0.12);
      border: 1px solid rgba(74, 116, 114, 0.32);
    }
    .or-status--coming-soon {
      color: var(--ctx-label, var(--color-yellow));
      background: rgba(239, 225, 93, 0.09);
      border: 1px solid rgba(239, 225, 93, 0.3);
    }
    .or-row--static .or-row-summary {
      grid-template-columns: 48px minmax(0, 1fr) auto;
      cursor: default;
      user-select: text;
    }
    .or-row--static:hover .or-row-title,
    .or-row--static .or-row-title {
      color: var(--ctx-card-heading, var(--color-cream));
    }
    .or-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--ctx-border, rgba(245,242,237,0.16));
      border-radius: 50%;
      color: var(--ctx-card-body, var(--color-fog));
      background: rgba(255,255,255,0.02);
      transition: transform 0.35s var(--ease-out-expo), background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }
    .or-toggle svg {
      width: 14px;
      height: 14px;
    }
    .or-row:hover .or-toggle {
      border-color: var(--ctx-label, var(--color-yellow));
    }
    .or-row[open] .or-toggle {
      transform: rotate(180deg);
      border-color: var(--ctx-label, var(--color-yellow));
      background: var(--ctx-label, var(--color-yellow));
      color: var(--color-void);
    }
    .or-row-panel {
      overflow: hidden;
    }
    .or-row-panel-inner {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 0 32px;
      padding: 0 0 40px;
    }
    .or-row-overview,
    .or-row-section,
    .or-apply {
      grid-column: 2;
    }
    .or-row-overview {
      max-width: 60ch;
      margin: 0 0 24px;
      color: var(--ctx-card-body, var(--color-bone));
      font-size: 15.5px;
      line-height: 1.65;
    }
    .or-row-section {
      margin-bottom: 24px;
    }
    .or-row-section-label {
      margin: 0 0 12px;
      color: var(--ctx-label, var(--color-yellow));
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 650;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .or-row-section ul {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .or-row-section li {
      position: relative;
      padding-left: 22px;
      color: var(--ctx-card-body, var(--color-bone));
      font-size: 14.5px;
      line-height: 1.55;
    }
    .or-row-section li::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 0;
      width: 8px;
      height: 1px;
      background: var(--ctx-label, var(--color-yellow));
    }
    .or-apply {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 48px;
      margin-top: 8px;
      padding: 0 24px;
      border-radius: var(--radius-button);
      background: var(--ctx-btn-primary-bg, var(--color-yellow));
      color: var(--ctx-btn-primary-text, var(--color-void));
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 750;
      letter-spacing: 0.1em;
      line-height: 1;
      text-transform: uppercase;
      transition: transform 0.35s var(--ease-out-expo), filter 0.25s ease;
    }
    .or-apply:hover {
      transform: translateY(-1px);
      filter: brightness(1.04);
    }

    @media (max-width: 768px) {
      .or-row-summary {
        grid-template-columns: 38px minmax(0, 1fr) 40px;
        gap: 18px;
        padding: 26px 0;
      }
      .or-row--static .or-row-summary {
        grid-template-columns: 38px minmax(0, 1fr);
      }
      .or-status {
        grid-column: 2;
        width: fit-content;
      }
      .or-toggle {
        grid-column: 3;
        grid-row: 1 / span 2;
        width: 40px;
        height: 40px;
      }
      .or-row-panel-inner {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 0 18px;
        padding-bottom: 32px;
      }
    }
    @media (max-width: 480px) {
      .or-row-summary {
        grid-template-columns: 1fr 40px;
        gap: 14px;
      }
      .or-row--static .or-row-summary {
        grid-template-columns: 1fr;
      }
      .or-row-num {
        grid-column: 1 / -1;
      }
      .or-row-body,
      .or-status {
        grid-column: 1;
      }
      .or-row-title {
        font-size: 21px;
      }
      .or-row-panel-inner {
        display: block;
      }
    }

	    /* ─── WORK WITH US ────────────────────────────────────────────── */
    .workhub-page {
      position: relative;
      padding: var(--section-space-lg) 0 var(--section-space-xs);
      background:
        radial-gradient(circle at top left, var(--border-yellow-faint), transparent 32%),
        radial-gradient(circle at 85% 18%, rgba(58,93,91,0.15), transparent 28%),
        linear-gradient(180deg, var(--color-void) 0%, var(--color-ink) 100%);
    }
    .workhub-page::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(245,242,237,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,242,237,0.03) 1px, transparent 1px);
      background-size: 120px 120px;
      background-position: 0 60px;
      opacity: 0.16;
      pointer-events: none;
      mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.35) 70%, transparent 100%);
    }
    .workhub-page.surface-premium {
      background: var(--surface-premium);
    }
    .workhub-page.surface-premium::before {
      content: none;
    }
    .workhub-page .container {
      position: relative;
      z-index: 1;
    }
	    .workhub-hero {
	      display: grid;
	      justify-items: center;
      gap: 24px;
      text-align: center;
      padding: 0 0 var(--section-header-gap);
      max-width: 940px;
      margin: 0 auto;
    }
    .workhub-hero-title {
      max-width: 920px;
      margin: 0;
      text-wrap: balance;
    }
    .workhub-hero-copy {
	      max-width: 640px;
	      margin: 0;
	      font-size: 17px;
	      font-weight: 400;
	      line-height: 1.68;
	      color: var(--ctx-body, var(--color-fog));
	    }
	    @media (max-width: 1024px) {
	      .workhub-hero {
	        padding-top: 56px;
	      }
	    }

    @media (max-width: 768px) {
      .workhub-page {
        padding-top: var(--section-space-md);
      }
      .workhub-hero {
        gap: 20px;
        padding: 0 0 var(--section-header-gap);
      }
	      .workhub-hero-copy {
	        font-size: 16px;
	      }
	    }

    /* ─── RESPONSIVE ───────────────────────────────────────────────── */

    /* 4K+ screens */
    @media (min-width: 2000px) {
      .container { max-width: 1600px; }
      body { font-size: 18px; }
      section { padding: var(--section-space-xl) 0; }
      .pillar-body { font-size: 17px; }
      .hero-body { font-size: 20px; }
	      .ep-title { font-size: clamp(28px, 3vw, 40px); }
      .course-desc { font-size: 17px; }
      .featured-track img { height: 44px; }
    }

    /* Ultrawide */
    @media (min-width: 2560px) {
      .container { max-width: 1920px; }
      body { font-size: 20px; }
      .hero-body { font-size: 22px; }
      .featured-track img { height: 52px; }
    }

    /* Tablet landscape */
    @media (max-width: 1024px) {
      .hero-content { padding-top: 100px; }
      .pillars-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .course-hero { grid-template-columns: 1fr; }
      .course-visual { min-height: 300px; }
      .tutorials-strip { grid-template-columns: 1fr 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .clients-grid { grid-template-columns: repeat(3, 1fr); }
      .tools-grid { grid-template-columns: repeat(2, 1fr); }
	      .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 1024px) {
      .whoweare-grid { grid-template-columns: 1fr; }
      .whoweare-videos { flex-direction: row; }
      .whoweare-stats { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    }

    /* Tablet portrait / large mobile */
    @media (max-width: 768px) {
      .container { padding: 0 20px; }

      section { padding: var(--section-space-md) 0; }
      .section-header { flex-direction: column; align-items: flex-start; }
      .hero-content { padding-top: 80px; }
      .hero-body { font-size: 16px; }
      .hero-actions { flex-direction: column; width: 100%; }
      .hero-actions .btn-primary,
      .hero-actions .btn-outline { width: 100%; justify-content: center; text-align: center; }
      .hero-featured { padding: 20px 0 18px; }
      .hero-featured .featured-title { margin-bottom: 16px; }
      .featured-scroll-wrap::before,
      .featured-scroll-wrap::after { width: 56px; }
      .featured-logo-slot { height: 52px; margin: 0 18px; }
      .featured-logo-slot.is-horizontal { width: 112px; }
      .featured-logo-slot.is-vertical { width: 74px; margin: 0 12px; }
      .featured-logo-slot.move-slot { width: 92px; }
      .featured-logo-slot.is-horizontal img { height: 28px; }
      .featured-logo-slot.is-vertical img { height: 40px; }
      .featured-logo-slot img[alt="MetaHuman"] { height: 30px; }
      .featured-logo-slot img[alt="80 Level"] { height: 28px; }
      .featured-logo-slot img[alt="Snapchat"] { height: 38px; }
      .featured-logo-slot img[alt="Move AI"] { height: 30px; }
      .featured-logo-slot img[alt="Epic Games"] { height: 44px; }
      .featured-logo-slot img[alt="Unreal Engine"] { height: 44px; }
      .featured-logo-slot img[alt="Dell Technologies"] { height: 30px; }
      .featured-logo-slot img[alt="Autodesk"] { height: 30px; }
      .featured-logo-slot img[alt="Polycam"] { height: 34px; }

      .pod-landing-grid { grid-template-columns: 1fr; gap: 32px; max-width: 100%; }
      .pod-phone-img { max-width: 260px; margin: 0 auto; }
      .pod-landing-content { align-items: center; text-align: center; }
      .sponsor-strip { gap: 32px; }
      .sponsor-strip-item img { height: 32px; max-width: 100px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .pillars-grid { grid-template-columns: 1fr; }
      .pillar-panel { aspect-ratio: 4 / 5; }
      .pillar-panel-content { padding: 24px 24px 28px; }
      .pillar-panel-desc { font-size: 13px; }
      .premium-duo { grid-template-columns: 1fr; }
      .premium-card { min-height: 420px; }
      .about-feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .about-feature-copy {
        max-width: none;
      }
      .footer-top { grid-template-columns: 1fr; }
      .footer-social-row {
        flex-wrap: nowrap;
        gap: 14px;
        justify-content: space-between;
      }
      .footer-top {
        gap: 20px;
        margin-bottom: 40px;
        padding-bottom: 40px;
      }
      .footer-col-title {
        margin-bottom: 14px;
      }
      .footer-links {
        gap: 10px;
      }
      .not-found-page {
        min-height: auto;
        padding: 104px 0 var(--section-space-md);
      }
      .not-found-shell {
        grid-template-columns: 1fr;
        gap: 38px;
      }
      .not-found-logo {
        width: min(260px, 78vw);
        margin-bottom: 34px;
      }
      .not-found-title {
        font-size: clamp(42px, 13vw, 64px);
      }
      .not-found-body {
        font-size: 15px;
      }
      .not-found-actions {
        flex-direction: column;
      }
      .not-found-actions .btn-primary,
      .not-found-actions .btn-secondary {
        width: 100%;
        justify-content: center;
      }
      .not-found-art {
        min-height: 280px;
      }
      .not-found-card {
        font-size: 8px;
        max-width: 160px;
      }
      .ep-featured-card { padding: 32px; }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      section { padding: var(--section-space-sm) 0; }
      .clients-grid { grid-template-columns: 1fr 1fr; }
      .course-stats-row { flex-direction: column; gap: 20px; }
      .course-pricing { flex-direction: column; }
      .schedule-days { flex-wrap: wrap; }
      .hero-content {
        padding-top: 68px;
      }
      .hero-body {
        margin-bottom: 28px;
      }
      .featured-logo-slot {
        margin: 0 14px;
      }
      .podcast-page-header {
        margin-bottom: 34px;
      }
      .podcast-page-header .heading-section {
        margin-bottom: 16px;
      }
      .podcast-page-copy {
        font-size: 15px;
        line-height: 1.6;
      }
      .re-row {
        grid-template-columns: 104px minmax(0, 1fr) 24px;
        gap: 12px;
      }
      .re-row-title {
        font-size: 16px;
      }
      .re-row-meta {
        font-size: 8.5px;
        letter-spacing: 0.14em;
      }
      .pod-guests-section {
        padding: 64px 0;
      }
      .pod-guests-header {
        margin-bottom: 28px;
      }
      .learn-row-header {
        margin-bottom: 16px;
      }
      .premium-card {
        min-height: 360px;
        padding: 24px 18px;
      }
      .premium-card h2 {
        font-size: clamp(26px, 8vw, 34px);
      }
      .premium-card p {
        font-size: 14px;
        line-height: 1.6;
      }
	      .workhub-hero {
	        padding: 0 0 var(--section-header-gap);
	      }
	      .workhub-hero-copy {
	        font-size: 15px;
	      }
      .footer-top {
        gap: 16px;
      }
      .footer-social-btn {
        width: auto;
        height: auto;
      }
      .footer-social-icon {
        height: 16px;
      }
      .footer-social-icon--youtube { height: 20px; }
      .footer-social-icon--instagram { height: 18px; }
      .footer-social-icon--spotify { height: 17px; }
      .footer-social-icon--apple { height: 17px; }
      .footer-bottom {
        justify-content: flex-start;
      }
    }
	    body[data-page="work-with-us"] #work-with-us {
	      padding-bottom: 28px;
	    }
	    @media (max-width: 768px) {
	      body[data-page="work-with-us"] #work-with-us {
	        padding-bottom: 18px;
	      }
	    }


/* ═══════════════════════════════════════════════════════════════
   MEDIA PARTNERSHIPS — /work-with-us/media-partnerships
   Simplified sponsor-facing page
   ═══════════════════════════════════════════════════════════════ */
.mp-hero {
  position: relative;
  overflow: hidden;
  padding: var(--section-space-lg) 0;
}
@media (max-width: 768px) {
  .mp-hero { padding: var(--section-space-md) 0; }
}
@media (max-width: 480px) {
  .mp-hero { padding: var(--section-space-sm) 0; }
}
.mp-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 62%, rgba(255,239,123,0.10), transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(193,126,89,0.06), transparent 70%);
  z-index: 0;
}
.mp-hero.surface-premium {
  background: var(--surface-premium);
}
.mp-hero.surface-premium .mp-hero-glow {
  display: none;
}
.mp-hero > .container {
  position: relative;
  z-index: 1;
}
.mp-hero-copy {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}
.mp-hero-copy .section-label {
  margin-bottom: 20px;
}
.mp-h1 {
  margin: 0 0 24px;
  font-family: var(--font-editorial);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--color-cream);
}
.mp-h1 em {
  font-style: italic;
  color: var(--color-yellow);
}
.mp-hero.surface-premium .mp-h1 {
  font-family: var(--font-body);
  font-weight: 650;
  letter-spacing: 0;
  color: var(--ctx-heading);
}
.mp-hero.surface-premium .mp-h1 em {
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--ctx-label);
}
.mp-hero-sub {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  font-weight: 400;
  color: var(--ctx-body, var(--color-fog));
}

/* ── Device cluster (float layout) ── */
.mp-device-cluster {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  margin: 0 auto 56px;
  perspective: 1400px;
}
.mp-device {
  position: relative;
  flex-shrink: 0;
}
.mp-device img {
  display: block;
  width: 100%;
  height: auto;
}
.mp-device--iphone {
  width: clamp(180px, 20vw, 280px);
  transform: rotateY(16deg) rotateX(2deg) rotateZ(-2deg);
  transform-origin: right center;
  filter: drop-shadow(-18px 32px 48px rgba(0,0,0,0.55));
}
.mp-device--ipad {
  width: clamp(360px, 42vw, 620px);
  margin-bottom: 48px;
  transform: rotateY(-6deg) rotateX(2deg);
  transform-origin: left center;
  filter: drop-shadow(18px 36px 56px rgba(0,0,0,0.55));
}
.mp-device--ipad img {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.mp-device-screen {
  position: absolute;
  top: 6.8%;
  left: 4.8%;
  right: 4.8%;
  bottom: 6.8%;
  z-index: 1;
  overflow: hidden;
  background: var(--color-void);
}
.mp-device-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Stats + CTA row ── */
.mp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.mp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.mp-hero-stat {
  min-width: 132px;
  padding: 18px 20px;
  border: 1px solid var(--border-cream-soft);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.03);
  text-align: center;
}
.mp-hero.surface-premium .mp-hero-stat {
  border-color: var(--ctx-border);
  background: var(--ctx-card-bg);
  box-shadow: var(--shadow-card-quiet);
}
.mp-hero-stat-value {
  font-family: var(--font-editorial);
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  color: var(--color-yellow);
}
.mp-hero.surface-premium .mp-hero-stat-value {
  color: var(--ctx-label);
}
.mp-hero-stat-label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-fog);
}
.mp-hero.surface-premium .mp-hero-stat-label {
  color: var(--ctx-body);
}
/* ── Why Partner With Us — numbered media rows ── */
.mp-why {
  padding: var(--section-space-lg) 0;
}
.mp-why.surface-premium {
  background: var(--surface-premium);
}
.mp-why.surface-editorial {
  background: var(--surface-editorial);
}
.mp-why-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.mp-why-intro .section-label {
  margin-bottom: 20px;
}
.mp-why .heading-section {
  max-width: 640px;
  margin: 0;
}
.mp-why.surface-premium .section-label,
.mp-why.surface-premium .heading-section em,
.mp-why.surface-premium .mp-why-eyebrow,
.mp-why.surface-editorial .section-label,
.mp-why.surface-editorial .heading-section em,
.mp-why.surface-editorial .mp-why-eyebrow {
  color: var(--ctx-label);
}
.mp-why.surface-premium .heading-section,
.mp-why.surface-premium .mp-why-card-title,
.mp-why.surface-editorial .heading-section,
.mp-why.surface-editorial .mp-why-card-title {
  color: var(--ctx-heading);
}
.mp-why-lede {
  max-width: 420px;
  margin: 0 0 0 auto;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ctx-body, var(--color-bone));
}
.mp-why-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ctx-border, rgba(245, 242, 237, 0.10));
}
.mp-why-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--ctx-border, rgba(245, 242, 237, 0.10));
}
.mp-why-row--phone {
  grid-template-columns: 80px minmax(0, 1fr) minmax(220px, 360px);
}
.mp-why-row--no-media {
  grid-template-columns: 80px minmax(0, 760px);
}
.mp-why-num {
  font-family: var(--font-editorial);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  color: var(--ctx-label, var(--color-yellow));
  letter-spacing: -0.01em;
}
.mp-why.surface-editorial .mp-why-num {
  color: rgba(58, 93, 91, 0.22);
}
.mp-why-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-why-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ctx-label, var(--color-yellow));
}
.mp-why-card-title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ctx-heading, var(--color-cream));
}
.mp-why-card-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 46ch;
  color: var(--ctx-card-body, var(--ctx-body, var(--color-fog)));
}
.mp-why-thumb {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 10;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--ctx-border, rgba(245,242,237,0.08));
  border-radius: var(--radius-card);
  background: var(--ctx-card-bg, var(--color-ink));
}
.mp-why-thumb video,
.mp-why-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-why-phone {
  position: relative;
  justify-self: end;
  width: min(100%, 182px);
  aspect-ratio: 9 / 19.5;
  padding: 10px;
  border: 1px solid rgba(245, 242, 237, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(245, 242, 237, 0.18), rgba(245, 242, 237, 0.04) 18%, rgba(14, 13, 11, 0.96) 48%),
    var(--color-ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  transform: rotateY(-16deg) rotateX(2deg) rotateZ(2deg);
  transform-origin: left center;
}
.mp-why-phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 78px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-void);
  transform: translateX(-50%);
}
.mp-why-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  background: var(--color-void);
}
.mp-why-phone video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .mp-why-header {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .mp-why-lede {
    margin-left: 0;
  }
  .mp-why-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .mp-why-thumb {
    grid-column: 2;
    justify-self: stretch;
    max-width: none;
  }
  .mp-why-phone {
    grid-column: 2;
    justify-self: start;
  }
  .mp-why-row--no-media {
    grid-template-columns: 64px minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .mp-why-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }
  .mp-why-num,
  .mp-why-thumb {
    grid-column: auto;
  }
  .mp-why-phone {
    grid-column: auto;
    justify-self: start;
    width: min(58vw, 182px);
  }
}
body[data-page="media-partnerships"] .mp-cta {
  padding: var(--section-space-lg) 0;
}
.mp-cta.surface-premium {
  background: var(--surface-premium);
}
body[data-page="media-partnerships"] .mp-cta-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.mp-cta.surface-premium .section-label,
.mp-cta.surface-premium .services-cta-heading em {
  color: var(--ctx-label);
}
.mp-cta.surface-premium .services-cta-heading {
  color: var(--ctx-heading);
  margin-bottom: 24px;
}
body[data-page="media-partnerships"] .mp-cta .services-cta-heading em {
  color: var(--color-yellow);
}
body[data-page="media-partnerships"] .mp-cta .btn-primary {
  justify-content: center;
}
@media (max-width: 768px) {
  .mp-audience,
  body[data-page="media-partnerships"] .mp-cta {
    padding: var(--section-space-md) 0;
  }
  .mp-device-cluster {
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
  }
  .mp-device--iphone,
  .mp-device--ipad {
    transform: none;
    margin-bottom: 0;
  }
  .mp-device--iphone {
    width: min(60vw, 240px);
  }
  .mp-device--ipad {
    width: min(90vw, 560px);
  }
  .mp-hero-stat {
    min-width: 108px;
    padding: 14px 16px;
  }
}
