:root {
      --board: #1A2320;
      --board-2: #212C27;
      --paper: #F2ECDD;
      --paper-2: #EAE2CC;
      --ink: #181510;
      --ink-soft: #4B473E;
      --chalk: #F2EFE6;
      --chalk-soft: #C9CBBF;
      --red: #E4231C;
      --red-deep: #A8140F;
      --marker: #EBA23A;
      --white: #FFFFFF;
      --line-light: rgba(242, 239, 230, 0.18);
      --line-dark: rgba(24, 21, 16, 0.14);
      --line-white: rgba(24, 21, 16, 0.10);
      --radius-s: 6px;
      --radius-m: 14px;
      --radius-l: 20px;
      --shadow-card: 0 1px 2px rgba(20, 16, 10, 0.04), 0 10px 28px rgba(20, 16, 10, 0.06);
      --shadow-lift: 0 6px 16px rgba(20, 16, 10, 0.08), 0 18px 40px rgba(20, 16, 10, 0.09);
      --maxw: 1180px;
    }

    /* This page uses its own fixed, authored alternating dark/light section design —
     it intentionally does not remap to the viewer's OS light/dark preference,
     since that previously caused white-section text to flip to a near-white color. */

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "IBM Plex Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: "Space Grotesk", "Segoe UI", sans-serif;
      margin: 0;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    p {
      margin: 0;
    }

    a {
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button {
      font-family: inherit;
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 28px;
    }

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

    /* ---------- chalk underline motif ---------- */
    .chalk-underline {
      position: relative;
      display: inline-block;
    }

    .chalk-underline svg {
      position: absolute;
      left: -2%;
      bottom: -0.14em;
      width: 104%;
      height: 0.5em;
      overflow: visible;
    }

    /* ---------- scroll reveal ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

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

    a:focus-visible,
    button:focus-visible,
    [tabindex]:focus-visible {
      outline: 3px solid var(--marker);
      outline-offset: 2px;
      border-radius: 3px;
    }

    /* ---------- scroll-spy dot rail ---------- */
    .dotrail {
      position: fixed;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 50;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .dotrail button {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: 1.5px solid var(--dot-border, rgba(23, 20, 16, 0.35));
      background: transparent;
      cursor: pointer;
      padding: 0;
      position: relative;
    }

    .dotrail button::after {
      content: attr(data-label);
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 12px;
      font-weight: 500;
      white-space: nowrap;
      background: var(--ink);
      color: var(--paper);
      padding: 4px 9px;
      border-radius: 5px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .12s ease;
    }

    .dotrail button:hover::after,
    .dotrail button:focus-visible::after {
      opacity: 1;
    }

    .dotrail button.active {
      background: var(--red);
      border-color: var(--red);
    }

    @media (max-width:900px) {
      .dotrail {
        display: none;
      }
    }

    @media (max-height:640px) {
      .dotrail {
        display: none;
      }
    }

    section {
      padding: 104px 0;
      position: relative;
    }

    @media (max-width:640px) {
      section {
        padding: 68px 0;
      }
    }

    .section--dark {
      background:
        radial-gradient(rgba(242, 239, 230, 0.05) 1px, transparent 1.4px) 0 0/26px 26px,
        var(--board);
      color: var(--chalk);
    }

    .section--light {
      background: var(--paper);
      color: var(--ink);
    }

    .section--light-2 {
      background: var(--paper-2);
      color: var(--ink);
    }

    .section--white {
      background:
        radial-gradient(rgba(24, 21, 16, 0.05) 1px, transparent 1.4px) 0 0/24px 24px,
        var(--white);
      color: #181510;
    }

    .section--white.no-texture {
      background: var(--white);
    }

    .section-divider {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line-dark) 18%, var(--line-dark) 82%, transparent);
    }

    .eyebrow-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      font-weight: 500;
      padding: 6px 14px 6px 10px;
      border-radius: 999px;
      border: 1px solid currentColor;
      opacity: .92;
    }

    .eyebrow-tag .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
    }

    .kicker {
      font-size: 15px;
      color: var(--marker);
      font-weight: 500;
      margin-bottom: 14px;
    }

    h2.section-title {
      font-size: clamp(28px, 4vw, 42px);
      max-width: 640px;
      line-height: 1.12;
    }

    .section-sub {
      font-size: 17px;
      max-width: 520px;
      margin-top: 16px;
      opacity: .85;
    }

    /* ---------- HERO ---------- */
    .hero {
      padding-top: 76px;
      padding-bottom: 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
    }

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

    .hero-badge {
      margin-bottom: 26px;
    }

    .hero h1 {
      font-size: clamp(34px, 5.4vw, 58px);
      line-height: 1.05;
      color: var(--chalk);
      max-width: 15ch;
    }

    .hero-lede {
      font-size: 18px;
      max-width: 46ch;
      margin-top: 22px;
      color: var(--chalk-soft);
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    @keyframes riseIn {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-badge,
    .hero h1,
    .hero-lede,
    .hero-ctas,
    .hero-stats {
      animation: riseIn .7s cubic-bezier(.2, .7, .3, 1) both;
    }

    .hero h1 {
      animation-delay: .06s;
    }

    .hero-lede {
      animation-delay: .14s;
    }

    .hero-ctas {
      animation-delay: .22s;
    }

    .hero-stats {
      animation-delay: .3s;
    }

    .hero-art {
      animation: riseIn .9s cubic-bezier(.2, .7, .3, 1) .18s both;
    }

    @media (prefers-reduced-motion: reduce) {

      .hero-badge,
      .hero h1,
      .hero-lede,
      .hero-ctas,
      .hero-stats,
      .hero-art {
        animation: none;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 600;
      font-size: 15px;
      padding: 13px 24px;
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: transform .12s ease, background .15s ease, border-color .15s ease;
    }

    .btn:active {
      transform: scale(0.97);
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--red-deep);
    }

    .btn-ghost {
      background: transparent;
      color: var(--chalk);
      border-color: rgba(242, 239, 230, 0.4);
    }

    .btn-ghost:hover {
      border-color: var(--chalk);
    }

    .btn-ghost.on-light {
      color: var(--ink);
      border-color: rgba(23, 20, 16, 0.3);
    }

    .btn-ghost.on-light:hover {
      border-color: var(--ink);
    }

    .hero-stats {
      display: flex;
      gap: 28px;
      margin-top: 48px;
      flex-wrap: wrap;
    }

    .hero-stats div {
      min-width: 90px;
    }

    .hero-stats .num {
      font-family: "Space Grotesk";
      font-size: 26px;
      font-weight: 600;
      color: var(--chalk);
    }

    .hero-stats .lab {
      font-size: 12.5px;
      color: var(--chalk-soft);
      margin-top: 2px;
    }

    .hero-art {
      position: relative;
    }

    .hero-art svg {
      width: 100%;
      height: auto;
    }

    /* ---------- WHY ---------- */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 52px;
    }

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

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

    .why-card {
      background: var(--board-2);
      border: 1px solid var(--line-light);
      border-radius: var(--radius-m);
      padding: 28px 24px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .why-card:hover {
      border-color: var(--red);
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    }

    .why-card .ic {
      width: 38px;
      height: 38px;
    }

    .why-card h3 {
      font-size: 18px;
      color: var(--chalk);
    }

    .why-card p {
      font-size: 14.5px;
      color: var(--chalk-soft);
    }

    /* ---------- NUMBERS ---------- */
    .numbers-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 48px;
      border-top: 1px solid var(--line-dark);
      border-left: 1px solid var(--line-dark);
    }

    @media (max-width:760px) {
      .numbers-strip {
        grid-template-columns: 1fr 1fr;
      }
    }

    .numbers-strip .cell {
      border-right: 1px solid var(--line-dark);
      border-bottom: 1px solid var(--line-dark);
      padding: 30px 20px;
      text-align: left;
    }

    .numbers-strip .num {
      font-family: "Space Grotesk";
      font-size: clamp(28px, 3.4vw, 40px);
      font-weight: 600;
    }

    .numbers-strip .lab {
      font-size: 13.5px;
      color: var(--ink-soft);
      margin-top: 6px;
    }

    /* ---------- ROLES ---------- */
    .role-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .role-tab {
      background: transparent;
      border: 1.5px solid rgba(242, 239, 230, 0.3);
      color: var(--chalk);
      padding: 9px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background .15s ease, color .15s ease, border-color .15s ease;
    }

    .role-tab:hover {
      border-color: var(--chalk);
    }

    .role-tab.active {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }

    .role-list {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .role-card {
      border: 1px solid var(--line-dark);
      border-radius: var(--radius-m);
      background: var(--paper-2);
      overflow: hidden;
      transition: box-shadow .2s ease, border-color .2s ease;
      color: #181510;
    }

    .role-card:hover {
      box-shadow: var(--shadow-card);
      border-color: rgba(228, 35, 28, 0.35);
    }

    .role-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      cursor: pointer;
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      color: inherit;
    }

    .role-head-left {
      display: flex;
      align-items: baseline;
      gap: 14px;
      flex-wrap: wrap;
    }

    .role-title {
      font-family: "Space Grotesk";
      font-size: 18px;
      font-weight: 600;
      color: #181510;
    }

    .role-meta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .role-chip {
      font-size: 12px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid var(--line-dark);
      color: #4B473E;
    }

    .role-plus {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid var(--line-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex: none;
      position: relative;
      transition: transform .2s ease, border-color .2s ease;
    }

    .role-plus::before,
    .role-plus::after {
      content: "";
      position: absolute;
      background: #181510;
    }

    .role-plus::before {
      width: 11px;
      height: 1.5px;
    }

    .role-plus::after {
      width: 1.5px;
      height: 11px;
      transition: opacity .2s ease;
    }

    .role-card.open .role-plus {
      transform: rotate(45deg);
      border-color: var(--red);
    }

    .role-card.open .role-plus::before,
    .role-card.open .role-plus::after {
      background: var(--red);
    }

    .role-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
    }

    .role-card.open .role-body {
      max-height: 220px;
    }

    .role-body-in {
      padding: 0 22px 22px;
    }

    .role-body p {
      font-size: 14.5px;
      color: #4B473E;
      max-width: 60ch;
    }

    .role-apply {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--red-deep);
      text-decoration: none;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }

    .role-apply:hover {
      text-decoration: underline;
    }

    /* ---------- DAY ---------- */
    .day-wrap {
      display: grid;
      grid-template-columns: 0.42fr 0.58fr;
      gap: 48px;
      margin-top: 48px;
      align-items: start;
    }

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

    .day-tabs {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .day-tab {
      text-align: left;
      background: none;
      border: none;
      color: var(--chalk-soft);
      cursor: pointer;
      padding: 14px 0;
      border-bottom: 1px solid var(--line-light);
      font-family: "Space Grotesk";
      font-size: 20px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .day-tab .t {
      font-size: 12.5px;
      font-family: "IBM Plex Sans";
      font-weight: 500;
      opacity: .7;
    }

    .day-tab.active {
      color: var(--chalk);
    }

    .day-tab.active .t {
      color: var(--marker);
      opacity: 1;
    }

    .day-panel {
      display: none;
    }

    .day-panel.active {
      display: block;
      animation: fadein .3s ease;
    }

    @keyframes fadein {
      from {
        opacity: 0;
        transform: translateY(6px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .day-panel h4 {
      color: var(--chalk);
      font-size: 22px;
      margin-bottom: 12px;
    }

    .day-panel p {
      color: var(--chalk-soft);
      font-size: 15.5px;
      max-width: 52ch;
    }

    /* ---------- VOICES ---------- */
    .voices-wrap {
      margin-top: 48px;
      position: relative;
    }

    .voice-track {
      display: flex;
      transition: transform .4s cubic-bezier(.65, 0, .35, 1);
    }

    .voice-slide {
      min-width: 100%;
      padding: 2px;
    }

    .voice-card {
      background: var(--paper-2);
      border: 1px solid var(--line-dark);
      border-radius: var(--radius-m);
      padding: 38px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 24px;
      align-items: flex-start;
      box-shadow: var(--shadow-card);
    }

    @media (max-width:640px) {
      .voice-card {
        grid-template-columns: 1fr;
        text-align: left;
      }
    }

    .voice-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Space Grotesk";
      font-weight: 600;
      font-size: 18px;
      color: #fff;
      flex: none;
    }

    .voice-quote {
      font-size: 18px;
      line-height: 1.5;
    }

    .voice-name {
      margin-top: 16px;
      font-weight: 600;
      font-size: 14.5px;
    }

    .voice-role {
      font-size: 13.5px;
      color: var(--ink-soft);
      margin-top: 2px;
    }

    .voice-controls {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 26px;
    }

    .voice-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1.5px solid var(--line-dark);
      background: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      transition: border-color .15s ease;
    }

    .voice-arrow:hover {
      border-color: var(--ink);
    }

    .voice-dots {
      display: flex;
      gap: 8px;
    }

    .voice-dots button {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      border: none;
      background: var(--line-dark);
      cursor: pointer;
      padding: 0;
    }

    .voice-dots button.active {
      background: var(--red);
    }

    /* ---------- PERKS ---------- */
    .perks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

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

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

    .perk-card {
      border: 1px solid var(--line-dark);
      border-radius: var(--radius-m);
      padding: 24px;
      cursor: pointer;
      background: var(--paper);
      transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .perk-card:hover,
    .perk-card.open {
      border-color: var(--red);
      box-shadow: var(--shadow-card);
      transform: translateY(-2px);
    }

    .perk-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .perk-top h3 {
      font-size: 16.5px;
    }

    .perk-ic {
      width: 30px;
      height: 30px;
      flex: none;
    }

    .perk-detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
    }

    .perk-card.open .perk-detail {
      max-height: 120px;
    }

    .perk-detail p {
      font-size: 14px;
      color: var(--ink-soft);
      padding-top: 12px;
    }

    /* ---------- FOOTPRINT ---------- */
    .city-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 44px;
    }

    .city-chip {
      border: 1px solid var(--line-light);
      border-radius: 999px;
      padding: 9px 18px;
      font-size: 14px;
      color: var(--chalk);
      transition: background .15s ease, border-color .15s ease, transform .12s ease;
      cursor: default;
    }

    .city-chip.hot {
      border-color: var(--red);
    }

    .city-chip:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translateY(-2px);
    }

    .city-chip.more {
      color: var(--chalk-soft);
      border-style: dashed;
    }

    /* ---------- PROCESS ---------- */
    .process-list {
      margin-top: 56px;
      display: flex;
      flex-direction: column;
    }

    .process-row {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 24px;
      padding: 26px 0;
      border-top: 1px solid var(--line-dark);
    }

    .process-row:last-child {
      border-bottom: 1px solid var(--line-dark);
    }

    .process-num {
      font-family: "Space Grotesk";
      font-size: 15px;
      color: var(--marker);
      font-weight: 600;
    }

    .process-body h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .process-body p {
      font-size: 15px;
      color: var(--ink-soft);
      max-width: 56ch;
    }

    /* ---------- FAQ ---------- */
    .faq-list {
      margin-top: 44px;
      max-width: 760px;
    }

    .faq-item {
      border-bottom: 1px solid var(--line-light);
    }

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

    .faq-q .plus {
      position: relative;
      width: 20px;
      height: 20px;
      flex: none;
    }

    .faq-q .plus::before,
    .faq-q .plus::after {
      content: "";
      position: absolute;
      background: var(--chalk);
      top: 50%;
      left: 50%;
    }

    .faq-q .plus::before {
      width: 14px;
      height: 1.5px;
      transform: translate(-50%, -50%);
    }

    .faq-q .plus::after {
      width: 1.5px;
      height: 14px;
      transform: translate(-50%, -50%);
      transition: transform .2s ease;
    }

    .faq-item.open .plus::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

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

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

    .faq-a p {
      padding-bottom: 22px;
      font-size: 15px;
      color: var(--chalk-soft);
      max-width: 58ch;
    }

    /* ---------- APPLY ---------- */
    .apply-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
      margin-top: 48px;
      align-items: flex-start;
    }

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

    .field {
      margin-bottom: 18px;
    }

    .field label {
      display: block;
      font-size: 13.5px;
      font-weight: 600;
      margin-bottom: 7px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1.5px solid var(--line-dark);
      border-radius: var(--radius-s);
      padding: 12px 14px;
      font-family: inherit;
      font-size: 14.5px;
      background: var(--paper);
      color: var(--ink);
      transition: border-color .15s ease;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--red);
    }

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

    @media (max-width:520px) {
      .field-row {
        grid-template-columns: 1fr;
      }
    }

    .file-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1.5px dashed var(--line-dark);
      border-radius: var(--radius-s);
      padding: 14px;
      font-size: 14px;
      color: var(--ink-soft);
      cursor: pointer;
    }

    .file-btn:hover {
      border-color: var(--red);
    }

    #applyForm.hidden-form {
      display: none;
    }

    .apply-success {
      display: none;
      text-align: center;
      padding: 50px 20px;
    }

    .apply-success.show {
      display: block;
    }

    .apply-success .mark {
      width: 52px;
      height: 52px;
      margin: 0 auto 20px;
    }

    .apply-side h3 {
      font-size: 22px;
      margin-bottom: 14px;
    }

    .apply-side p {
      font-size: 15px;
      color: var(--ink-soft);
      max-width: 42ch;
    }

    .apply-side ul {
      list-style: none;
      margin: 26px 0 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .apply-side li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 14.5px;
    }

    .apply-side li .b {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
      margin-top: 8px;
      flex: none;
    }

    /* ---------- PHILOSOPHY (white) ---------- */
    .phil-grid {
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      gap: 60px;
      align-items: start;
      margin-top: 8px;
    }

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

    .phil-statement {
      font-family: "Space Grotesk";
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.3;
      max-width: 16ch;
    }

    .phil-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .phil-row {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 18px;
      padding: 24px 0;
      border-top: 1px solid var(--line-white);
    }

    .phil-row:last-child {
      border-bottom: 1px solid var(--line-white);
    }

    .phil-mark {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--red);
      margin-top: 8px;
    }

    .phil-row h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .phil-row p {
      font-size: 15px;
      color: var(--ink-soft);
      max-width: 56ch;
    }

    /* ---------- LABS GALLERY (white) ---------- */
    .labs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 48px;
    }

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

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

    .lab-tile {
      background: var(--paper);
      border: 1px solid var(--line-white);
      border-radius: var(--radius-m);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .lab-tile:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lift);
    }

    .lab-tile-art {
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lab-tile-cap {
      padding: 16px 18px 20px;
    }

    .lab-tile-cap h4 {
      font-size: 15px;
      margin-bottom: 4px;
    }

    .lab-tile-cap p {
      font-size: 13px;
      color: var(--ink-soft);
    }

    /* ---------- COMMUNITY MOSAIC (white) ---------- */
    .community-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      margin-top: 48px;
    }

    @media (max-width:900px) {
      .community-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

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

    .comm-tile {
      aspect-ratio: 1;
      border-radius: var(--radius-m);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: default;
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
      border: 1px solid var(--line-white);
    }

    .comm-tile:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: var(--shadow-lift);
      z-index: 2;
    }

    .comm-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Space Grotesk";
      font-weight: 600;
      font-size: 14px;
      color: #fff;
    }

    .comm-tile .cname {
      font-size: 12.5px;
      font-weight: 600;
    }

    .comm-tile .csub {
      font-size: 11px;
      color: var(--ink-soft);
      text-align: center;
      padding: 0 8px;
      opacity: 0;
      max-height: 0;
      transition: opacity .18s ease, max-height .18s ease;
    }

    .comm-tile:hover .csub {
      opacity: 1;
      max-height: 30px;
    }
