:root {
        --bg: #060607;
        --bg-soft: #0e0f12;
        --line: rgba(255, 255, 255, 0.12);
        --text: #f7f4ee;
        --muted: rgba(247, 244, 238, 0.68);
        --gold: #d0b07a;
        --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
        --nav-offset: 84px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: auto;
        scrollbar-width: none;
      }

      html::-webkit-scrollbar,
      body::-webkit-scrollbar {
        width: 0;
        height: 0;
      }

      body {
        margin: 0;
        font-family: "Manrope", sans-serif;
        color: var(--text);
        background: linear-gradient(180deg, rgba(5, 5, 6, 0.72), rgba(6, 6, 7, 0.86));
      }

      body:not(.private-access-page) {
        -webkit-user-select: none;
        user-select: none;
      }

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

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

      .page-shell {
        overflow-x: clip;
        overflow-y: visible;
      }

      .loading-overlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: grid;
        place-items: center;
        background:
          radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.08), transparent 24%),
          linear-gradient(180deg, rgba(4, 4, 5, 0.96), rgba(6, 6, 7, 0.98));
        opacity: 1;
        visibility: visible;
        transition:
          opacity 700ms ease,
          visibility 700ms ease;
      }

      .loading-overlay.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }

      .loading-overlay-inner {
        display: grid;
        justify-items: center;
        gap: 22px;
      }

      .loading-mark {
        width: 76px;
        height: 76px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: linear-gradient(180deg, #f6f4ef 0%, #d9d6d0 100%);
        box-shadow:
          0 18px 40px rgba(0, 0, 0, 0.26),
          0 1px 0 rgba(255, 255, 255, 0.92) inset;
      }

      .loading-mark::before {
        content: "✦";
        color: #0d0d0f;
        font-size: 22px;
        line-height: 1;
      }

      .loading-line {
        position: relative;
        width: min(180px, 42vw);
        height: 2px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.14);
      }

      .loading-line::after {
        content: "";
        position: absolute;
        inset: 0 auto 0 -42%;
        width: 42%;
        background: linear-gradient(90deg, rgba(255, 106, 0, 0), #ff6a00, rgba(255, 106, 0, 0));
        animation: loading-sweep 1.15s ease-in-out infinite;
      }

      @keyframes loading-sweep {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(340%);
        }
      }

      .page-background {
        position: fixed;
        inset: 0;
        z-index: 0;
        overflow: hidden;
        pointer-events: none;
      }

      .section {
        width: min(100%, 1240px);
        margin: 0 auto;
        min-height: 100vh;
        padding: 96px 24px;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
      }

      .section:not(.hero-shell),
      .footer {
        content-visibility: auto;
        contain-intrinsic-size: 960px;
      }

      .section-block {
        width: min(100%, 720px);
        padding: 34px 36px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 30px;
        background: linear-gradient(180deg, rgba(8, 8, 9, 0.16), rgba(8, 8, 9, 0.1));
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
        contain: layout paint;
      }

      .section-label {
        margin: 0 0 20px;
        color: var(--gold);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.42em;
        text-transform: uppercase;
      }

      .section-title {
        margin: 0;
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.7rem, 6vw, 5rem);
        line-height: 0.94;
        letter-spacing: -0.04em;
      }

      .section-copy {
        max-width: 700px;
        margin: 22px 0 0;
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.85;
      }

      .navbar {
        position: fixed;
        top: 14px;
        right: 18px;
        z-index: 100;
        padding: 0;
        background: transparent;
        border-bottom: 0;
        display: flex;
        justify-content: flex-end;
      }

      .navbar-inner {
        width: 58px;
        min-height: 58px;
        margin: 0;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        border-radius: 999px;
        background: rgba(18, 18, 19, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow:
          0 10px 24px rgba(0, 0, 0, 0.28),
          0 2px 0 rgba(255, 255, 255, 0.04) inset;
        position: relative;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        position: relative;
        z-index: 2;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
        box-shadow:
          0 4px 10px rgba(0, 0, 0, 0.28),
          0 1px 0 rgba(255, 255, 255, 0.9) inset;
      }

      .brand-mark::before {
        content: "✦";
        color: #0e0e10;
        font-size: 18px;
        line-height: 1;
      }

      .brand-wordmark {
        display: none;
      }


      .nav-links {
        display: none;
        align-items: center;
        gap: 34px;
        margin-right: auto;
      }

      .nav-links a {
        color: rgba(255, 255, 255, 0.86);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: none;
        transition: color 180ms ease;
      }

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

      .nav-action {
        display: none;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 22px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 999px;
        background: linear-gradient(180deg, #ffffff 0%, #ececec 100%);
        color: #0f0f10;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
        box-shadow:
          0 2px 8px rgba(0, 0, 0, 0.18),
          0 1px 0 rgba(255, 255, 255, 0.9) inset;
      }

      .nav-rail {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        right: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        border-radius: 24px;
        background: rgba(18, 18, 19, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow:
          0 18px 34px rgba(0, 0, 0, 0.26),
          0 2px 0 rgba(255, 255, 255, 0.04) inset;
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(-10px) scale(0.94);
        transform-origin: top center;
        transition:
          opacity 220ms ease,
          transform 240ms ease;
        will-change: transform, opacity;
      }

      .nav-rail-item {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.92);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 16px;
        line-height: 1;
        transition:
          background-color 180ms ease,
          transform 180ms ease;
      }

      .nav-rail-item:hover,
      .nav-rail-item:focus-visible {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-1px);
      }

      .nav-rail-item-accent {
        color: #ffffff;
        background: linear-gradient(180deg, #ff8c2a 0%, #ff5a00 100%);
        border-color: rgba(255, 139, 42, 0.46);
        box-shadow:
          0 10px 22px rgba(255, 90, 0, 0.24),
          0 1px 0 rgba(255, 255, 255, 0.18) inset;
      }

      .nav-rail-item-accent:hover,
      .nav-rail-item-accent:focus-visible {
        background: linear-gradient(180deg, #ff9a43 0%, #ff690f 100%);
        box-shadow:
          0 14px 26px rgba(255, 90, 0, 0.3),
          0 1px 0 rgba(255, 255, 255, 0.22) inset;
      }

      .scroll-controls {
        position: fixed;
        right: 28px;
        bottom: 28px;
        z-index: 90;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .scroll-indicator {
        width: 62px;
        height: 62px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(8, 8, 9, 0.16);
        color: rgba(255, 255, 255, 0.92);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
        cursor: pointer;
        transition:
          transform 180ms ease,
          border-color 180ms ease,
          background-color 180ms ease,
          opacity 180ms ease,
          box-shadow 180ms ease,
          filter 180ms ease;
        will-change: transform, opacity;
      }

      .scroll-indicator::before {
        content: "";
        width: 12px;
        height: 12px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
      }

      .scroll-indicator.is-down::before {
        transform: rotate(45deg);
        margin-top: -5px;
      }

      .scroll-indicator.is-up::before {
        transform: rotate(-135deg);
        margin-top: 5px;
      }

      .scroll-indicator:hover,
      .scroll-indicator:focus-visible {
        transform: translateY(-2px);
        color: #ffffff;
        border-color: rgba(255, 106, 0, 0.72);
        background: rgba(255, 106, 0, 0.16);
        box-shadow:
          0 0 0 1px rgba(255, 106, 0, 0.18) inset,
          0 16px 34px rgba(255, 106, 0, 0.22);
        filter: saturate(1.08);
      }

      .scroll-indicator:active,
      .scroll-indicator.is-active {
        color: #ffffff;
        border-color: rgba(255, 106, 0, 0.76);
        background: #ff6a00;
        box-shadow: 0 16px 34px rgba(255, 106, 0, 0.28);
      }

      .scroll-indicator.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
      }

      .navbar.is-menu-open .nav-rail {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0) scale(1);
      }

      .hero-shell {
        position: relative;
        height: 190vh;
      }

      .hero-shell::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(circle at 70% 40%, rgba(208, 176, 122, 0.08), transparent 22%),
          radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.02), transparent 24%);
        pointer-events: none;
      }

      .hero-sticky {
        position: sticky;
        top: var(--nav-offset);
        height: calc(100vh - var(--nav-offset));
        overflow: hidden;
      }

      .hero-grid {
        position: relative;
        width: min(100%, 1320px);
        height: 100%;
        margin: 0 auto;
        padding: 56px 24px 72px;
        display: flex;
        align-items: center;
      }

      .hero-copy {
        position: relative;
        z-index: 5;
        max-width: 640px;
        padding: 40px 0;
        transform: translate(-16px, 22px);
        will-change: transform, opacity;
      }

      .hero-kicker {
        margin: 0 0 18px;
        color: rgba(255, 255, 255, 0.92);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.38em;
        text-transform: uppercase;
      }

      .hero-title {
        margin: 0;
        display: grid;
        justify-items: start;
        gap: 0;
        max-width: 7.2ch;
      }

      .hero-title-outline,
      .hero-title-solid {
        display: block;
        font-family: "Anton", sans-serif;
        font-size: clamp(4.35rem, 10vw, 8.35rem);
        line-height: 0.84;
        text-transform: uppercase;
        letter-spacing: 0.01em;
      }

      .hero-title-outline {
        color: transparent;
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
        text-stroke: 1.5px rgba(255, 255, 255, 0.72);
      }

      .hero-title-solid {
        color: #f7f4ee;
        text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
      }

      .hero-subtext {
        max-width: 430px;
        margin: 22px 0 0;
        color: rgba(255, 255, 255, 0.88);
        font-size: clamp(1rem, 1.6vw, 1.08rem);
        line-height: 1.6;
      }

      .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 28px;
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 232px;
        min-height: 54px;
        padding: 0 24px;
        border-radius: 12px;
        border: 1px solid transparent;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        transition:
          transform 240ms ease,
          background-color 240ms ease,
          border-color 240ms ease,
          box-shadow 240ms ease;
      }

      .button:hover,
      .button:focus-visible {
        transform: translateY(-2px);
      }

      .button-primary {
        color: #ffffff;
        background: linear-gradient(180deg, #ff8c2a 0%, #ff5a00 100%);
        border-color: rgba(255, 139, 42, 0.34);
        box-shadow:
          0 16px 30px rgba(255, 90, 0, 0.22),
          0 1px 0 rgba(255, 255, 255, 0.22) inset;
      }

      .button-secondary {
        color: var(--text);
        border-color: rgba(255, 255, 255, 0.44);
        background: rgba(10, 10, 11, 0.16);
      }

      .button-primary:hover,
      .button-primary:focus-visible {
        box-shadow:
          0 20px 36px rgba(255, 90, 0, 0.28),
          0 1px 0 rgba(255, 255, 255, 0.24) inset;
      }

      .button-secondary:hover,
      .button-secondary:focus-visible {
        border-color: rgba(255, 255, 255, 0.26);
      }

      .hero-fallback,
      .hero-canvas-wrap {
        position: absolute;
        inset: 0;
      }

      .hero-fallback {
        display: grid;
        place-items: center;
        z-index: 1;
        transition: opacity 300ms ease;
        background: linear-gradient(180deg, rgba(5, 5, 6, 0.72), rgba(6, 6, 7, 0.86));
      }

      .hero-canvas-wrap {
        z-index: 2;
      }

      .hero-fallback img,
      #heroCanvas {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      #heroCanvas {
        display: block;
        filter: brightness(0.92) contrast(1.02);
        transform: translateZ(0);
      }

      .page-background::after {
        content: "";
        position: absolute;
        inset: 0;
        background: none;
        pointer-events: none;
      }

      .brand-section {
        padding-top: 0;
      }

      .brand-text {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
      }

      .pillars-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        margin-top: 34px;
      }

      .pillar-card,
      .model-card {
        position: relative;
        overflow: hidden;
        min-height: 200px;
        padding: 24px;
        border: 1px solid var(--line);
        border-radius: 30px;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
          var(--bg-soft);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
        contain: layout paint;
      }

      .pillar-card::before,
      .model-card::before {
        content: "";
        position: absolute;
        inset: auto -10% -30% auto;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(208, 176, 122, 0.16), transparent 72%);
        filter: blur(10px);
      }

      .pillar-number {
        margin: 0 0 22px;
        color: var(--gold);
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.16em;
      }

      .pillar-title,
      .model-title {
        margin: 0;
        font-family: "Cormorant Garamond", serif;
        font-size: 2rem;
        line-height: 1;
      }

      .pillar-copy,
      .model-copy {
        margin: 18px 0 0;
        color: var(--muted);
        line-height: 1.85;
      }

      .models-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        margin-top: 34px;
      }

      .model-card {
        transition:
          transform 0.28s ease,
          border-color 0.4s ease,
          background-color 0.4s ease;
        will-change: transform;
      }

      .model-card:hover {
        transform: translateY(-6px);
        border-color: rgba(208, 176, 122, 0.4);
      }

      .model-meta {
        margin: 0 0 24px;
        color: var(--gold);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.28em;
        text-transform: uppercase;
      }

      .experience-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr);
        align-items: center;
        gap: 30px;
        padding: 30px;
        border: 1px solid var(--line);
        border-radius: 36px;
        background:
          radial-gradient(circle at top left, rgba(208, 176, 122, 0.06), transparent 26%),
          rgba(255, 255, 255, 0.02);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
      }

      .experience-image {
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        contain: paint;
      }

      .experience-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .cta {
        padding: 42px;
        text-align: center;
        border: 1px solid rgba(208, 176, 122, 0.2);
        border-radius: 36px;
        background:
          radial-gradient(circle at top, rgba(208, 176, 122, 0.1), transparent 38%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
      }

      .cta .section-copy {
        margin-left: auto;
        margin-right: auto;
      }

      .cta .button {
        margin-top: 30px;
      }

      .footer {
        padding: 30px 24px 52px;
        color: rgba(247, 244, 238, 0.52);
        font-size: 13px;
        position: relative;
        z-index: 2;
      }

      .footer-panel {
        width: min(100%, 1240px);
        margin: 0 auto;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(6, 6, 7, 0.92);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
        contain: layout paint;
      }

      .footer-hero {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        min-height: 188px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .footer-hero-media {
        position: relative;
        overflow: hidden;
        min-height: 100%;
      }

      .footer-hero-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(3, 3, 4, 0.18), rgba(3, 3, 4, 0.54)),
          linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36));
      }

      .footer-hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.42) contrast(1.04);
      }

      .footer-hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 26px 34px;
        background:
          linear-gradient(180deg, rgba(6, 6, 7, 0.96), rgba(5, 5, 6, 0.9));
      }

      .footer-kicker {
        margin: 0;
        color: rgba(247, 244, 238, 0.88);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.28em;
        text-transform: uppercase;
      }

      .footer-kicker::before {
        content: "/";
        margin-right: 8px;
        color: #ff6a00;
      }

      .footer-title {
        margin: 0;
        max-width: 13ch;
        color: #f7f4ee;
        font-family: "Anton", sans-serif;
        font-size: clamp(1.7rem, 2vw, 2.2rem);
        line-height: 0.98;
        text-transform: uppercase;
      }

      .footer-copy {
        margin: 0;
        max-width: 42ch;
        color: rgba(247, 244, 238, 0.74);
        font-size: 0.8rem;
        line-height: 1.45;
      }

      .footer-cta-bar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 22px;
        padding: 16px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(9, 9, 10, 0.94);
      }

      .footer-cta-heading {
        color: #f7f4ee;
        font-family: "Anton", sans-serif;
        font-size: clamp(1.6rem, 2vw, 2rem);
        line-height: 1;
        text-transform: uppercase;
      }

      .footer-cta-heading::after {
        content: "|";
        margin-left: 18px;
        color: rgba(247, 244, 238, 0.38);
      }

      .footer-cta-copy {
        margin: 0;
        color: rgba(247, 244, 238, 0.72);
        font-size: 0.78rem;
      }

      .footer-cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 18px;
        border-radius: 6px;
        background: linear-gradient(180deg, #ff8c2a 0%, #ff5a00 100%);
        color: #ffffff;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        box-shadow:
          0 8px 20px rgba(255, 90, 0, 0.2),
          0 1px 0 rgba(255, 255, 255, 0.22) inset;
      }

      .footer-cta-button::after {
        content: "→";
        margin-left: 8px;
        font-size: 12px;
        line-height: 1;
      }

      .footer-meta {
        display: grid;
        grid-template-columns: auto auto 1fr auto;
        align-items: center;
        gap: 18px;
        padding: 14px 28px;
        background: rgba(4, 4, 5, 0.96);
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 2px;
        line-height: 1;
      }

      .footer-brand-main {
        color: #f7f4ee;
        font-family: "Anton", sans-serif;
        font-size: 1.25rem;
        letter-spacing: 0.18em;
      }

      .footer-brand-sub {
        color: rgba(247, 244, 238, 0.66);
        font-size: 0.55rem;
        font-weight: 700;
        letter-spacing: 0.4em;
        text-transform: uppercase;
      }

      .footer-divider {
        width: 1px;
        height: 22px;
        background: rgba(255, 255, 255, 0.16);
      }

      .footer-copyright {
        color: rgba(247, 244, 238, 0.52);
        font-size: 0.68rem;
      }

      .footer-links {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 18px;
      }

      .footer-links a {
        color: rgba(247, 244, 238, 0.82);
        font-size: 0.66rem;
        font-weight: 700;
        transition: color 180ms ease;
      }

      .footer-links a:hover,
      .footer-links a:focus-visible {
        color: #ffffff;
      }

      .footer-inner {
        width: min(100%, 1240px);
        margin: 0 auto;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      }

      @media (max-width: 1024px) {
        .experience-grid,
        .pillars-grid,
        .models-grid,
        .footer-hero {
          grid-template-columns: 1fr;
        }

        .footer-cta-bar,
        .footer-meta {
          grid-template-columns: 1fr;
          justify-items: start;
        }

        .footer-links {
          justify-content: flex-start;
          flex-wrap: wrap;
        }

        .footer-cta-heading::after,
        .footer-divider {
          display: none;
        }

        .hero-grid {
          padding-top: 70px;
        }

        .hero-copy {
          max-width: none;
          transform: translate(0, 16px);
        }

        .hero-shell {
          height: 170vh;
        }
      }

      @media (max-width: 720px) {
        .navbar-inner,
        .footer-inner {
          flex-direction: column;
          align-items: flex-start;
        }

        .nav-links {
          flex-wrap: wrap;
          gap: 12px 18px;
          margin-right: 0;
        }

        .section {
          min-height: 82vh;
          padding: 72px 20px;
        }

        .section-block,
        .brand-text,
        .experience-grid,
        .cta,
        .pillar-card,
        .model-card {
          padding: 26px;
        }

        .footer-hero-copy,
        .footer-cta-bar,
        .footer-meta {
          padding-left: 20px;
          padding-right: 20px;
        }

        .hero-grid {
          padding-left: 20px;
          padding-right: 20px;
          align-content: start;
        }

        .hero-copy {
          transform: none;
        }

        .hero-title {
          max-width: 100%;
        }

        .hero-title-outline,
        .hero-title-solid {
          font-size: clamp(3.6rem, 17vw, 5.4rem);
        }

        .button {
          width: 100%;
          min-width: 0;
        }

        .hero-shell {
          height: 145vh;
        }

        .navbar {
          top: 12px;
          right: 12px;
        }

        .section-block,
        .pillar-card,
        .model-card,
        .footer-panel {
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation: none !important;
          transition: none !important;
          scroll-behavior: auto !important;
        }

        .loading-overlay {
          transition: none !important;
        }
      }

      .private-access-page {
        min-height: 100vh;
        background:
          radial-gradient(circle at top left, rgba(255, 106, 0, 0.08), transparent 22%),
          linear-gradient(180deg, #050506 0%, #09090b 100%);
      }

      .private-access-shell {
        min-height: 100vh;
        padding: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .private-access-card {
        width: min(100%, 1520px);
        min-height: calc(100vh - 56px);
        display: grid;
        grid-template-rows: 1fr auto auto;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
          radial-gradient(circle at right center, rgba(255, 255, 255, 0.03), transparent 30%),
          rgba(5, 5, 6, 0.96);
        box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
        overflow: hidden;
      }

      .private-access-main {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
        min-height: 0;
      }

      .private-access-media {
        position: relative;
        overflow: hidden;
        background: #0d0d10;
      }

      .private-access-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(5, 5, 6, 0.1), rgba(5, 5, 6, 0.56)),
          linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.4));
      }

      .private-access-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.62) contrast(1.04);
        transform: scale(1.03);
      }

      .private-access-content {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: clamp(32px, 5vw, 72px);
        background:
          radial-gradient(circle at top, rgba(255, 106, 0, 0.07), transparent 24%),
          linear-gradient(180deg, rgba(4, 4, 5, 0.96), rgba(3, 3, 4, 0.98));
      }

      .private-access-back {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(247, 244, 238, 0.74);
        font-size: 0.74rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .private-access-back::before {
        content: "";
        width: 10px;
        height: 10px;
        border-left: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
      }

      .private-access-intro {
        display: grid;
        gap: 18px;
      }

      .private-access-kicker {
        margin: 0;
        color: rgba(247, 244, 238, 0.88);
        font-size: 0.88rem;
        font-weight: 800;
        letter-spacing: 0.28em;
        text-transform: uppercase;
      }

      .private-access-kicker::before {
        content: "/";
        margin-right: 10px;
        color: #ff6a00;
      }

      .private-access-title {
        margin: 0;
        max-width: 7ch;
        color: #f7f4ee;
        font-family: "Anton", sans-serif;
        font-size: clamp(3.4rem, 7vw, 5.8rem);
        line-height: 0.9;
        text-transform: uppercase;
      }

      .private-access-copy {
        max-width: 30ch;
        margin: 0;
        color: rgba(247, 244, 238, 0.72);
        font-size: 1.1rem;
        line-height: 1.6;
      }

      .private-access-form {
        display: grid;
        gap: 18px;
        margin-top: 8px;
      }

      .private-access-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
      }

      .private-field {
        display: grid;
        gap: 10px;
      }

      .private-field-full {
        grid-column: 1 / -1;
      }

      .private-field label {
        color: rgba(247, 244, 238, 0.86);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .private-field input,
      .private-field textarea {
        width: 100%;
        padding: 16px 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.03);
        color: #f7f4ee;
        font: inherit;
        outline: 0;
        transition:
          border-color 180ms ease,
          background-color 180ms ease,
          box-shadow 180ms ease;
      }

      .private-field input::placeholder,
      .private-field textarea::placeholder {
        color: rgba(247, 244, 238, 0.36);
      }

      .private-field input:focus,
      .private-field textarea:focus {
        border-color: rgba(255, 106, 0, 0.72);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.2);
      }

      .private-field textarea {
        min-height: 170px;
        resize: vertical;
      }

      .private-form-note {
        margin: 0;
        color: rgba(247, 244, 238, 0.52);
        font-size: 0.84rem;
        line-height: 1.6;
      }

      .private-form-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        flex-wrap: wrap;
      }

      .private-submit {
        min-width: 252px;
      }

      .private-access-bar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 24px;
        padding: 20px 34px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(9, 9, 10, 0.96);
      }

      .private-access-bar-title {
        color: #f7f4ee;
        font-family: "Anton", sans-serif;
        font-size: clamp(2rem, 3.2vw, 3rem);
        line-height: 0.95;
        text-transform: uppercase;
      }

      .private-access-bar-copy {
        margin: 0;
        color: rgba(247, 244, 238, 0.7);
        font-size: 0.95rem;
      }

      .private-access-footnote {
        display: grid;
        grid-template-columns: auto auto 1fr auto;
        align-items: center;
        gap: 18px;
        padding: 18px 34px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(5, 5, 6, 0.98);
      }

      .private-access-brand {
        color: #f7f4ee;
        font-family: "Anton", sans-serif;
        font-size: 1.9rem;
        line-height: 0.82;
        text-transform: uppercase;
      }

      .private-access-brand small {
        display: block;
        color: rgba(247, 244, 238, 0.62);
        font-size: 0.56rem;
        font-weight: 700;
        letter-spacing: 0.42em;
      }

      .private-access-separator {
        width: 1px;
        height: 28px;
        background: rgba(255, 255, 255, 0.16);
      }

      .private-access-copyright {
        color: rgba(247, 244, 238, 0.5);
        font-size: 0.78rem;
      }

      .private-access-links {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
      }

      .private-access-links a {
        color: rgba(247, 244, 238, 0.82);
        font-size: 0.8rem;
        font-weight: 700;
      }

      @media (max-width: 1120px) {
        .private-access-main {
          grid-template-columns: 1fr;
        }

        .private-access-media {
          min-height: 320px;
        }

        .private-access-bar,
        .private-access-footnote {
          grid-template-columns: 1fr;
          justify-items: start;
        }

        .private-access-separator {
          display: none;
        }
      }

      @media (max-width: 720px) {
        .private-access-shell {
          padding: 0;
        }

        .private-access-card {
          min-height: 100vh;
        }

        .private-access-content,
        .private-access-bar,
        .private-access-footnote {
          padding-left: 20px;
          padding-right: 20px;
        }

        .private-access-form-grid {
          grid-template-columns: 1fr;
        }

        .private-form-actions {
          align-items: flex-start;
        }

        .private-submit {
          width: 100%;
          min-width: 0;
        }

        .private-access-media {
          min-height: 260px;
        }
      }

