/* ================================================================
   TOKENS
================================================================ */
      :root {
        --navy: #0d1117;
        --navy-2: #161b22;
        --navy-3: #1c2230;
        --sand: #f2ede4;
        --sand-dk: #e8e0d5;
        --amber: #f5a623;
        --amber-dk: #cc8910;
        --amber-lt: rgba(245, 166, 35, 0.1);
        --off-white: #fafaf8;
        --white: #ffffff;
        --ink: #1c1a17;
        --muted: #6b6a67;
        --border-d: rgba(255, 255, 255, 0.08);
        --border-l: rgba(0, 0, 0, 0.09);
        --green: #22c55e;
        --green-lt: #f0fdf4;
        --code-bg: #0f172a;
        --c-green: #4ade80;
        --c-blue: #60a5fa;
        --c-yellow: #fcd34d;
        --c-red: #f87171;
        --c-muted: #64748b;
        --c-white: #e2e8f0;
        --r: 10px;
        --r-lg: 18px;
        --max-w: 1180px;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Inter", system-ui, sans-serif;
        background: var(--off-white);
        color: var(--ink);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      button {
        font-family: inherit;
      }
      img {
        height: auto;
        max-width: 100%;
      }
      :focus-visible {
        outline: 3px solid var(--amber);
        outline-offset: 3px;
      }
      .skip-link {
        background: var(--amber);
        color: var(--navy);
        font-size: 0.85rem;
        font-weight: 800;
        left: 1rem;
        padding: 0.75rem 1rem;
        position: fixed;
        top: -5rem;
        z-index: 2000;
      }
      .skip-link:focus {
        top: 0.75rem;
      }

      /* ================================================================
   LAYOUT
================================================================ */
      .w {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 2rem;
      }
      .ws {
        max-width: 780px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      /* ================================================================
   GRAIN LAYER
================================================================ */
      .grain-layer {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
      }
      .dark-sec {
        position: relative;
        overflow: hidden;
      }
      .dark-sec > .w,
      .dark-sec > .ws {
        position: relative;
        z-index: 1;
      }

      /* ================================================================
   SCROLL PROGRESS BAR
================================================================ */
      #pg {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--amber-dk), var(--amber));
        width: 0%;
        z-index: 999;
        transition: width 0.08s linear;
        pointer-events: none;
      }

      /* ================================================================
   NAV
================================================================ */
      .nav {
        position: fixed;
        top: 3px;
        left: 0;
        right: 0;
        z-index: 100;
        height: 56px;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(13, 17, 23, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(245, 166, 35, 0.15);
      }
      .nav-logo {
        font-size: 1rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.025em;
      }
      .nav-logo em {
        font-style: normal;
        color: var(--amber);
      }
      .nav-mid {
        font-size: 0.73rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
        letter-spacing: 0.02em;
      }
      .nav-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        background: var(--amber);
        color: #ffffff;
        font-size: 0.875rem;
        font-weight: 700;
        padding: 0.5rem 1.25rem;
        border-radius: 100px;
        transition:
          background 0.15s,
          transform 0.1s;
        border: none;
        cursor: pointer;
      }
      .nav-btn:hover {
        background: var(--amber-dk);
        transform: translateY(-1px);
      }

      /* ================================================================
   HERO
================================================================ */
      .hero {
        background: var(--navy);
        padding: 9rem 2rem 0;
        position: relative;
        overflow: hidden;
      }
      .hero > .grain-layer {
        background:
          radial-gradient(
            ellipse 80% 90% at -10% 60%,
            rgba(245, 166, 35, 0.2) 0%,
            transparent 58%
          ),
          radial-gradient(
            ellipse 50% 55% at 108% 10%,
            rgba(245, 166, 35, 0.1) 0%,
            transparent 55%
          ),
          radial-gradient(
            ellipse 40% 35% at 55% 110%,
            rgba(245, 166, 35, 0.07) 0%,
            transparent 50%
          );
      }
      .hero-dot {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image: radial-gradient(
          rgba(255, 255, 255, 0.03) 1px,
          transparent 1px
        );
        background-size: 28px 28px;
      }
      .hero-body {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 4rem;
        align-items: center;
        max-width: var(--max-w);
        margin: 0 auto;
        padding-bottom: 4.5rem;
      }
      .h-proof {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        margin-bottom: 1.75rem;
        flex-wrap: wrap;
      }
      .h-avs {
        display: flex;
      }
      .h-av {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--navy-3);
        border: 2px solid rgba(245, 166, 35, 0.55);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.57rem;
        font-weight: 800;
        color: var(--amber);
        margin-right: -8px;
        flex-shrink: 0;
      }
      .h-av:last-child {
        margin-right: 0;
      }
      .h-proof-copy {
        padding-left: 0.6rem;
      }
      .h-stars {
        display: block;
        color: var(--amber);
        font-size: 0.68rem;
        letter-spacing: 2px;
        margin-bottom: 0.1rem;
      }
      .h-proof-text {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.45;
      }
      .h-proof-text strong {
        color: var(--amber);
        font-weight: 700;
      }
      .h-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1.25rem;
      }
      .h-pill::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--amber);
        flex-shrink: 0;
        animation: blink 2.2s ease-in-out infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.2;
        }
      }
      .h-headline {
        font-size: clamp(2.75rem, 6vw, 5.25rem);
        font-weight: 900;
        line-height: 0.95;
        letter-spacing: -0.05em;
        color: white;
        margin-bottom: 2rem;
        font-optical-sizing: auto;
      }
      .h-headline em {
        font-style: normal;
        color: var(--amber);
      }
      .h-sub {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.75;
        max-width: 460px;
        margin-bottom: 2.5rem;
      }
      .h-ctas {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .btn-prim {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--amber);
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        padding: 0.9rem 1.75rem;
        border-radius: 100px;
        transition:
          background 0.15s,
          transform 0.1s;
        border: none;
        cursor: pointer;
      }
      .btn-prim:hover {
        background: var(--amber-dk);
        transform: translateY(-1px);
      }
      .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.95rem;
        font-weight: 500;
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.14);
        padding: 0.875rem 1.5rem;
        border-radius: 100px;
        cursor: pointer;
        transition:
          color 0.15s,
          border-color 0.15s;
      }
      .btn-ghost:hover {
        color: white;
        border-color: rgba(255, 255, 255, 0.35);
      }

      /* Commit card */
      .commit-card {
        background: var(--code-bg);
        border-radius: var(--r-lg);
        overflow: hidden;
        border: 1px solid rgba(245, 166, 35, 0.14);
        box-shadow:
          0 40px 80px rgba(0, 0, 0, 0.65),
          0 0 0 1px rgba(255, 255, 255, 0.03);
      }
      .cc-bar {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.1rem;
        background: rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .cc-dots {
        display: flex;
        gap: 5px;
      }
      .cc-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
      }
      .cc-r {
        background: #ff5f57;
      }
      .cc-y {
        background: #ffbd2e;
      }
      .cc-g {
        background: #28ca41;
      }
      .cc-title {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.6);
        margin-left: auto;
        font-family: ui-monospace, monospace;
      }
      .cc-body {
        padding: 1.1rem;
      }
      .cc-head {
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--c-green);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .cc-live {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.68rem;
        font-weight: 600;
        color: var(--c-green);
        background: rgba(74, 222, 128, 0.1);
        border: 1px solid rgba(74, 222, 128, 0.2);
        padding: 0.15rem 0.55rem;
        border-radius: 100px;
      }
      .cc-live::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--c-green);
        animation: blink 1.5s infinite;
      }
      .cc-row {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 0.6rem;
        align-items: center;
        padding: 0.55rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        font-family: ui-monospace, monospace;
      }
      .cc-row:last-child {
        border-bottom: none;
      }
      .cc-msg {
        font-size: 0.77rem;
        color: var(--c-white);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .cc-msg .cc-kw {
        color: var(--amber);
      }
      .cc-msg .cc-str {
        color: var(--c-green);
      }
      .cc-time {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.58);
        flex-shrink: 0;
      }
      .cc-badge {
        font-size: 0.64rem;
        font-weight: 700;
        background: rgba(74, 222, 128, 0.12);
        color: var(--c-green);
        padding: 0.1rem 0.35rem;
        border-radius: 3px;
        flex-shrink: 0;
      }
      .cc-footer {
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .cc-branch {
        font-size: 0.7rem;
        font-family: ui-monospace, monospace;
        color: rgba(255, 255, 255, 0.58);
      }
      .cc-branch span {
        color: var(--amber);
      }

      /* Hero stats */
      .hero-stats {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        max-width: var(--max-w);
        margin: 0 auto;
        width: 100%;
        border-top: 1px solid rgba(245, 166, 35, 0.14);
        background: var(--navy-2);
      }
      .hs-cell {
        padding: 1.5rem 2rem;
        border-right: 1px solid rgba(245, 166, 35, 0.1);
      }
      .hs-cell:last-child {
        border-right: none;
      }
      .hs-num {
        font-size: 2rem;
        font-weight: 800;
        color: white;
        letter-spacing: -0.05em;
        line-height: 1;
      }
      .hs-num em {
        font-style: normal;
        color: var(--amber);
      }
      .hs-label {
        font-size: 0.76rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.65);
        margin-top: 0.35rem;
      }

      /* ================================================================
   TICKER
================================================================ */
      .ticker {
        background: var(--amber);
        overflow: hidden;
        padding: 0.8rem 0;
        display: flex;
      }
      .ticker-track {
        display: flex;
        align-items: center;
        animation: tick 50s linear infinite;
        width: max-content;
        will-change: transform;
      }
      .ticker-item {
        display: flex;
        align-items: center;
        gap: 1.75rem;
        padding: 0 2rem;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: var(--navy);
        white-space: nowrap;
        text-transform: uppercase;
      }
      .ticker-item::after {
        content: "✦";
        color: rgba(13, 17, 23, 0.3);
        font-size: 0.55rem;
      }
      @keyframes tick {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      /* ================================================================
   SECTION COMMONS
================================================================ */
      .sec {
        padding: 7rem 0;
      }
      .sec-sand {
        background: var(--sand);
      }
      .sec-light {
        background: var(--off-white);
      }
      .sec-label {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.3rem 0.8rem;
        border-radius: 100px;
        margin-bottom: 1.25rem;
      }
      .lbl-amber {
        background: rgba(245, 166, 35, 0.12);
        color: var(--amber-dk);
      }
      .lbl-amber-d {
        background: rgba(245, 166, 35, 0.14);
        color: var(--amber);
      }
      .lbl-green {
        background: var(--green-lt);
        color: #16a34a;
      }
      .sec-title {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.05;
        margin: 0 auto 1rem;
        text-align: center;
        font-optical-sizing: auto;
      }
      .sec-sub {
        font-size: 1.05rem;
        line-height: 1.75;
        max-width: 540px;
      }
      .muted-d {
        color: rgba(255, 255, 255, 0.82);
      }
      .muted-l {
        color: var(--muted);
      }

      /* ================================================================
   TRACK TABS
================================================================ */
      .track-tabs {
        display: flex;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 100px;
        padding: 4px;
        width: fit-content;
        margin-bottom: 2.5rem;
        gap: 0;
      }
      .track-tab {
        padding: 0.55rem 1.4rem;
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 700;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.5);
        background: transparent;
        border: none;
        transition:
          background 0.2s,
          color 0.2s;
        white-space: nowrap;
      }
      .track-tab.active {
        background: var(--amber);
        color: var(--navy);
      }
      .track-tabs-light {
        background: rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.1);
      }
      .track-tabs-light .track-tab {
        color: var(--muted);
      }
      .track-tabs-light .track-tab.active {
        background: var(--amber);
        color: var(--navy);
      }
      .track-content {
        display: none;
      }
      .track-content.active {
        display: block;
      }

      /* ================================================================
   TRACK COMPARISON
================================================================ */
      .tc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        margin-top: 3.5rem;
      }
      .tc-card {
        border-radius: var(--r-lg);
        padding: 2.25rem;
        border: 1px solid var(--border-l);
        position: relative;
        overflow: hidden;
      }
      .tc-light {
        background: var(--white);
        border-color: rgba(0, 0, 0, 0.1);
      }
      .tc-dark {
        background: var(--navy);
        border-color: rgba(245, 166, 35, 0.25);
        color: white;
      }
      .tc-popular {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        font-size: 0.64rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        background: var(--amber);
        color: var(--navy);
        padding: 0.22rem 0.65rem;
        border-radius: 100px;
      }
      .tc-card-head {
        align-items: flex-start;
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem 0.75rem;
        justify-content: space-between;
        margin-bottom: 1rem;
      }
      .tc-card-head .tc-popular,
      .tc-card-head .tc-track-badge {
        margin-bottom: 0;
        position: static;
      }
      .tc-track-badge {
        display: block;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        padding: 0.22rem 0.65rem;
        border-radius: 100px;
        margin: 0 auto 1rem;
        text-align: center;
      }
      .tc-light .tc-track-badge {
        background: rgba(245, 166, 35, 0.12);
        color: var(--amber-dk);
      }
      .tc-dark .tc-track-badge {
        background: rgba(245, 166, 35, 0.14);
        color: var(--amber);
      }
      .tc-name {
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: -0.04em;
        line-height: 1.1;
        margin-bottom: 0.5rem;
      }
      .tc-light .tc-name {
        color: var(--ink);
      }
      .tc-dark .tc-name {
        color: white;
      }
      .tc-desc {
        font-size: 0.87rem;
        line-height: 1.65;
        margin: 0 auto 1.5rem;
        text-align: center;
      }
      .tc-light .tc-desc {
        color: var(--muted);
      }
      .tc-dark .tc-desc {
        color: rgba(255, 255, 255, 0.7);
      }
      .tc-struck {
        font-size: 0.82rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.25rem;
      }
      .tc-light .tc-struck {
        color: var(--muted);
      }
      .tc-dark .tc-struck {
        color: rgba(255, 255, 255, 0.5);
      }
      .tc-price {
        font-size: 2.6rem;
        font-weight: 900;
        letter-spacing: -0.05em;
        line-height: 1;
      }
      .tc-light .tc-price {
        color: var(--ink);
      }
      .tc-dark .tc-price {
        color: white;
      }
      .tc-price-sym {
        font-size: 1.2rem;
        font-weight: 800;
        vertical-align: super;
      }
      .tc-duration {
        font-size: 0.78rem;
        font-weight: 600;
        margin-top: 0.35rem;
        margin-bottom: 1.5rem;
      }
      .tc-light .tc-duration {
        color: var(--muted);
      }
      .tc-dark .tc-duration {
        color: rgba(255, 255, 255, 0.6);
      }
      .tc-feats {
        border-top: 1px solid;
        padding-top: 1.25rem;
        margin-bottom: 1.5rem;
      }
      .tc-light .tc-feats {
        border-color: rgba(0, 0, 0, 0.08);
      }
      .tc-dark .tc-feats {
        border-color: rgba(255, 255, 255, 0.07);
      }
      .tc-feat {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.87rem;
        padding: 0.28rem 0;
      }
      .tc-light .tc-feat {
        color: var(--ink);
      }
      .tc-dark .tc-feat {
        color: rgba(255, 255, 255, 0.88);
      }
      .tc-ck {
        font-weight: 700;
        flex-shrink: 0;
      }
      .tc-light .tc-ck {
        color: var(--amber-dk);
      }
      .tc-dark .tc-ck {
        color: var(--amber);
      }
      .tc-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        font-size: 0.92rem;
        font-weight: 700;
        padding: 0.85rem 1.5rem;
        border-radius: 100px;
        width: 100%;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition:
          background 0.15s,
          transform 0.1s;
      }
      .tc-btn-amber {
        background: var(--amber);
        color: var(--navy);
      }
      .tc-btn-amber:hover {
        background: var(--amber-dk);
        transform: translateY(-1px);
      }
      .tc-btn-border {
        background: transparent;
        color: white;
        border: 1px solid rgba(245, 166, 35, 0.4);
      }
      .tc-btn-border:hover {
        background: rgba(245, 166, 35, 0.08);
        transform: translateY(-1px);
      }
      .tc-spots {
        font-size: 0.72rem;
        font-weight: 600;
        text-align: center;
        margin-top: 0.6rem;
      }
      .tc-light .tc-spots {
        color: #dc2626;
      }
      .tc-dark .tc-spots {
        color: rgba(255, 255, 255, 0.6);
      }
      .tc-off-pill {
        display: inline-block;
        font-size: 0.64rem;
        font-weight: 700;
        padding: 0.12rem 0.45rem;
        border-radius: 100px;
      }
      .tc-light .tc-off-pill {
        background: rgba(245, 166, 35, 0.15);
        color: var(--amber-dk);
      }
      .tc-dark .tc-off-pill {
        background: rgba(245, 166, 35, 0.15);
        color: var(--amber);
      }

      /* Comparison table */
      .comp-table-title {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 1rem;
        margin-top: 2.75rem;
      }
      .comp-table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--border-l);
        border-radius: var(--r);
      }
      .comp-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border: none;
        border-radius: 0;
        overflow: hidden;
        min-width: 480px;
      }
      .comp-table th {
        padding: 0.85rem 1.25rem;
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }
      .comp-table th:first-child {
        background: var(--sand-dk);
        color: var(--muted);
        text-align: left;
        width: 42%;
      }
      .comp-table th:nth-child(2) {
        background: rgba(245, 166, 35, 0.1);
        color: var(--amber-dk);
        text-align: center;
      }
      .comp-table th:nth-child(3) {
        background: var(--navy);
        color: var(--amber);
        text-align: center;
      }
      .comp-table td {
        padding: 0.65rem 1.25rem;
        font-size: 0.87rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
      }
      .comp-table td:first-child {
        font-weight: 500;
        color: var(--ink);
        background: var(--white);
      }
      .comp-table td:nth-child(2) {
        text-align: center;
        background: rgba(245, 166, 35, 0.025);
        color: var(--muted);
        font-weight: 500;
      }
      .comp-table td:nth-child(3) {
        text-align: center;
        background: rgba(13, 17, 23, 0.03);
        color: var(--ink);
        font-weight: 600;
      }
      .comp-table tr:first-child td {
        border-top: none;
      }
      .comp-ck-ab {
        color: var(--amber-dk);
        font-weight: 700;
      }
      .comp-ck-ff {
        color: var(--navy);
        font-weight: 700;
      }
      .comp-dash {
        color: rgba(0, 0, 0, 0.18);
      }
      .comp-hi td:first-child {
        font-weight: 700;
        color: var(--ink);
      }
      .comp-hi td:nth-child(2) {
        font-weight: 700;
        color: var(--amber-dk);
      }
      .comp-hi td:nth-child(3) {
        font-weight: 700;
        color: var(--navy);
      }

      /* Tracks advice callout */
      .tracks-advice {
        margin-top: 2.5rem;
        padding: 1.75rem 2rem;
        text-align: center;
        border: 1px solid rgba(245, 166, 35, 0.2);
        border-radius: var(--r);
        background: rgba(245, 166, 35, 0.04);
      }
      .ta-q {
        font-weight: 700;
        font-size: 1rem;
        color: var(--ink);
        margin-bottom: 0.4rem;
      }
      .ta-body {
        font-size: 0.88rem;
        color: var(--muted);
        margin-bottom: 1.15rem;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.65;
      }
      .ta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.86rem;
        font-weight: 700;
        color: var(--amber-dk);
        background: rgba(245, 166, 35, 0.1);
        border: 1px solid rgba(245, 166, 35, 0.25);
        padding: 0.6rem 1.25rem;
        border-radius: 100px;
        transition:
          background 0.15s,
          border-color 0.15s;
      }
      .ta-btn:hover {
        background: rgba(245, 166, 35, 0.18);
        border-color: rgba(245, 166, 35, 0.45);
      }

      /* ================================================================
   TRANSFORMATION
================================================================ */
      .transform-head {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: var(--r) var(--r) 0 0;
        overflow: hidden;
        border: 1px solid var(--border-l);
        border-bottom: none;
        margin-top: 3.5rem;
      }
      .th-cell {
        padding: 0.75rem 1.75rem;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .th-before {
        background: rgba(245, 166, 35, 0.07);
        color: var(--muted);
        border-right: 1px solid rgba(0, 0, 0, 0.06);
      }
      .th-after {
        background: #fef2f2;
        color: #166534;
      }
      .transform-strips {
        border: 1px solid var(--border-l);
        border-radius: 0 0 var(--r) var(--r);
        overflow: hidden;
      }
      .t-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid var(--border-l);
      }
      .t-strip:last-child {
        border-bottom: none;
      }
      .t-cell {
        display: flex;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1.35rem 1.75rem;
        font-size: 0.92rem;
        line-height: 1.5;
      }
      .t-before {
        background: rgba(245, 166, 35, 0.025);
        border-right: 1px solid var(--border-l);
        color: var(--muted);
      }
      .t-after {
        background: #fffdfb;
      }
      .t-icon {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        font-weight: 800;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .t-x {
        background: #fee2e2;
        color: #dc2626;
      }
      .t-check {
        background: rgba(245, 166, 35, 0.15);
        color: var(--amber-dk);
      }

      /* ================================================================
   CURRICULUM PHASES
================================================================ */
      .phase {
        border: 1px solid var(--border-d);
        border-radius: var(--r);
        overflow: hidden;
        margin-bottom: 0.875rem;
        transition: border-color 0.2s;
      }
      .phase:hover {
        border-color: rgba(245, 166, 35, 0.3);
      }
      .phase-hd {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        padding: 1.35rem 1.75rem;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.03);
        transition: background 0.15s;
      }
      .phase-hd:hover {
        background: rgba(255, 255, 255, 0.055);
      }
      .ph-num {
        font-size: 1.25rem;
        font-weight: 900;
        color: var(--amber);
        min-width: 2.25rem;
        letter-spacing: -0.05em;
        font-optical-sizing: auto;
      }
      .ph-name {
        font-weight: 700;
        font-size: 1.05rem;
        color: white;
      }
      .ph-wks {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.75);
        margin-top: 0.2rem;
      }
      .ph-arr {
        margin-left: auto;
        color: rgba(255, 255, 255, 0.55);
        transition:
          transform 0.2s,
          color 0.2s;
      }
      .phase.open .ph-arr {
        transform: rotate(90deg);
        color: var(--amber);
      }
      .phase-bd {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(0, 0, 0, 0.18);
      }
      .phase.open .phase-bd {
        display: block;
      }
      .wk-row {
        display: grid;
        grid-template-columns: 52px 1fr auto;
        gap: 1rem;
        align-items: start;
        padding: 1.1rem 1.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      }
      .wk-row:last-child {
        border-bottom: none;
      }
      .wk-n {
        font-size: 0.73rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.72);
        padding-top: 2px;
      }
      .wk-t {
        font-weight: 600;
        font-size: 0.9rem;
        color: white;
        margin-bottom: 0.22rem;
      }
      .wk-d {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.5;
      }
      .wk-out {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--amber);
        background: rgba(245, 166, 35, 0.1);
        border: 1px solid rgba(245, 166, 35, 0.18);
        padding: 0.18rem 0.55rem;
        border-radius: 100px;
        white-space: nowrap;
        flex-shrink: 0;
        align-self: flex-start;
        margin-top: 2px;
      }

      /* Track badge pill inside curriculum */
      .curr-track-note {
        font-size: 0.84rem;
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.7;
        margin-bottom: 2.5rem;
        max-width: 540px;
      }

      /* ================================================================
   MILESTONE BENTO
================================================================ */
      .bento {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0.875rem;
        margin-top: 3.5rem;
      }
      .b-card {
        border-radius: var(--r-lg);
        padding: 1.75rem;
        position: relative;
        overflow: hidden;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .b-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
      }
      .b-w4 {
        grid-column: span 4;
      }
      .b-w2 {
        grid-column: span 2;
      }
      .b-w6 {
        grid-column: span 6;
      }
      .b-navy {
        background: var(--navy);
        color: white;
        border: 1px solid rgba(245, 166, 35, 0.12);
      }
      .b-amber {
        background: var(--amber);
        color: var(--navy);
      }
      .b-sand {
        background: var(--sand-dk);
        color: var(--ink);
      }
      .b-n2 {
        background: var(--navy-2);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.06);
      }
      .b-off {
        background: var(--off-white);
        color: var(--ink);
        border: 1px solid var(--border-l);
      }
      .b-bg-n {
        position: absolute;
        bottom: -0.25em;
        right: 0.1em;
        font-size: 9rem;
        font-weight: 900;
        letter-spacing: -0.06em;
        line-height: 1;
        pointer-events: none;
        user-select: none;
        font-optical-sizing: auto;
      }
      .b-navy .b-bg-n {
        color: rgba(245, 166, 35, 0.07);
      }
      .b-amber .b-bg-n {
        color: rgba(13, 17, 23, 0.12);
      }
      .b-sand .b-bg-n {
        color: rgba(0, 0, 0, 0.05);
      }
      .b-n2 .b-bg-n {
        color: rgba(255, 255, 255, 0.04);
      }
      .b-off .b-bg-n {
        color: rgba(0, 0, 0, 0.04);
      }
      .b-con {
        position: relative;
        z-index: 1;
      }
      .b-pill {
        display: inline-block;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.22rem 0.6rem;
        border-radius: 100px;
        margin-bottom: 0.75rem;
      }
      .b-navy .b-pill,
      .b-n2 .b-pill {
        background: rgba(245, 166, 35, 0.12);
        color: var(--amber);
      }
      .b-amber .b-pill {
        background: rgba(13, 17, 23, 0.12);
        color: var(--navy);
      }
      .b-sand .b-pill,
      .b-off .b-pill {
        background: rgba(0, 0, 0, 0.08);
        color: var(--muted);
      }
      .b-tit {
        font-size: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.025em;
        line-height: 1.2;
        margin-bottom: 0.4rem;
        font-optical-sizing: auto;
      }
      .b-w4 .b-tit,
      .b-w6 .b-tit {
        font-size: 1.45rem;
      }
      .b-sub {
        font-size: 0.78rem;
        margin-bottom: 0.85rem;
      }
      .b-navy .b-sub,
      .b-n2 .b-sub {
        color: rgba(255, 255, 255, 0.65);
      }
      .b-amber .b-sub {
        color: rgba(13, 17, 23, 0.6);
      }
      .b-sand .b-sub,
      .b-off .b-sub {
        color: var(--muted);
      }
      .b-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
      }
      .b-tag {
        font-size: 0.68rem;
        font-weight: 600;
        padding: 0.18rem 0.5rem;
        border-radius: 4px;
        font-family: ui-monospace, monospace;
      }
      .b-navy .b-tag,
      .b-n2 .b-tag {
        background: rgba(255, 255, 255, 0.07);
        color: rgba(255, 255, 255, 0.78);
      }
      .b-amber .b-tag {
        background: rgba(13, 17, 23, 0.12);
        color: var(--navy);
      }
      .b-sand .b-tag,
      .b-off .b-tag {
        background: rgba(0, 0, 0, 0.07);
        color: var(--muted);
      }

      /* ================================================================
   AI SECTION
================================================================ */
      .ai-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }
      .ai-sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .ai-sess {
        padding: 1.15rem 1.4rem;
        border: 1px solid var(--border-l);
        border-radius: var(--r);
        background: var(--white);
        transition: box-shadow 0.2s;
      }
      .ai-sess:hover {
        box-shadow: 0 4px 20px rgba(245, 166, 35, 0.1);
      }
      .ai-sess-wk {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--amber-dk);
        margin-bottom: 0.3rem;
      }
      .ai-sess-t {
        font-weight: 700;
        font-size: 0.93rem;
        margin-bottom: 0.25rem;
      }
      .ai-sess-d {
        font-size: 0.83rem;
        color: var(--muted);
        line-height: 1.55;
      }
      .ai-track-note {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--muted);
        background: rgba(245, 166, 35, 0.07);
        border: 1px solid rgba(245, 166, 35, 0.15);
        padding: 0.5rem 0.9rem;
        border-radius: var(--r);
        margin-bottom: 2.5rem;
      }
      .ai-track-note strong {
        color: var(--amber-dk);
      }

      .term {
        background: var(--code-bg);
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow:
          0 32px 64px rgba(0, 0, 0, 0.28),
          0 0 0 1px rgba(245, 166, 35, 0.1);
        font-family: ui-monospace, "Cascadia Code", "Courier New", monospace;
      }
      .term-bar {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
        background: rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .t-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
      }
      .t-r {
        background: #ff5f57;
      }
      .t-y {
        background: #ffbd2e;
      }
      .t-g {
        background: #28ca41;
      }
      .term-file {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.62);
        margin-left: 0.5rem;
      }
      .term-body {
        padding: 1.1rem 1.2rem;
      }
      .t-ln {
        display: flex;
        align-items: baseline;
        gap: 0.7rem;
        font-size: 0.78rem;
        line-height: 1.65;
        min-height: 1.65em;
      }
      .t-lnum {
        color: rgba(255, 255, 255, 0.4);
        min-width: 1.5rem;
        text-align: right;
        font-size: 0.7rem;
        user-select: none;
      }
      .t-code {
        color: var(--c-white);
      }
      .t-kw {
        color: var(--c-blue);
      }
      .t-fn {
        color: var(--c-yellow);
      }
      .t-cm {
        color: var(--c-muted);
        font-style: italic;
      }
      .t-err {
        color: var(--c-red);
      }
      .t-ok {
        color: var(--c-green);
      }
      .t-dim {
        color: rgba(255, 255, 255, 0.68);
      }
      .term-div {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin: 0.6rem 0;
      }
      .t-ai-blk {
        background: rgba(255, 255, 255, 0.04);
        border-radius: 6px;
        padding: 0.6rem 0.75rem;
        margin: 0.35rem 0;
      }
      .t-ai-lbl {
        color: var(--amber);
        font-weight: 700;
        font-size: 0.74rem;
      }
      .t-ai-txt {
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.76rem;
        line-height: 1.65;
      }
      .t-ai-code {
        color: var(--c-green);
      }

      /* ================================================================
   OUTCOMES
================================================================ */
      .outcomes-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: rgba(245, 166, 35, 0.12);
        border: 1px solid rgba(245, 166, 35, 0.12);
        border-radius: var(--r-lg);
        overflow: hidden;
        margin-top: 3.5rem;
      }
      .o-cell {
        padding: 2rem 1.75rem;
        background: var(--navy);
        transition: background 0.2s;
      }
      .o-cell:hover {
        background: var(--navy-2);
      }
      .o-num {
        font-size: 2.75rem;
        font-weight: 900;
        color: white;
        letter-spacing: -0.06em;
        line-height: 1;
        margin-bottom: 0.5rem;
        font-optical-sizing: auto;
      }
      .o-num em {
        font-style: normal;
        color: var(--amber);
      }
      .o-label {
        font-size: 0.84rem;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.5;
      }

      /* ================================================================
   INSTRUCTOR
================================================================ */
      .inst-grid {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 4.5rem;
        align-items: start;
        margin-top: 3.5rem;
      }
      .inst-photo-col {
        position: sticky;
        top: 5.5rem;
      }
      .inst-photo {
        width: 100%;
        aspect-ratio: 1;
        border-radius: var(--r-lg);
        overflow: hidden;
        border: 1px solid var(--border-l);
      }
      .inst-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
      }
      .inst-photo-cap {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 1rem;
      }
      .inst-tag {
        font-size: 0.72rem;
        font-weight: 600;
        background: rgba(245, 166, 35, 0.1);
        color: var(--amber-dk);
        padding: 0.25rem 0.65rem;
        border-radius: 100px;
      }
      .inst-name {
        font-size: clamp(2.5rem, 4vw, 3.75rem);
        font-weight: 900;
        letter-spacing: -0.055em;
        line-height: 0.95;
        margin-bottom: 0.5rem;
        font-optical-sizing: auto;
      }
      .inst-role {
        font-size: 0.88rem;
        color: var(--muted);
        margin-bottom: 1.5rem;
      }
      .inst-role a {
        color: var(--amber-dk);
        font-weight: 600;
      }
      .inst-bar {
        width: 40px;
        height: 3px;
        background: var(--amber);
        border-radius: 2px;
        margin-bottom: 1.5rem;
      }
      .inst-bio {
        font-size: 0.97rem;
        line-height: 1.8;
        color: var(--ink);
        margin-bottom: 1.25rem;
      }
      .inst-pull {
        padding: 1.25rem 1.4rem;
        border: 1px solid var(--border-l);
        background: rgba(245, 166, 35, 0.06);
        border-radius: var(--r);
        margin-top: 1.75rem;
        font-size: 0.95rem;
        line-height: 1.65;
      }

      /* ================================================================
   TESTIMONIALS
================================================================ */
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.1rem;
        margin-top: 3.5rem;
      }
      .testi-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-d);
        border-radius: var(--r-lg);
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
        transition:
          border-color 0.2s,
          background 0.2s;
      }
      .testi-card:hover {
        border-color: rgba(245, 166, 35, 0.25);
        background: rgba(255, 255, 255, 0.05);
      }
      .t-stars {
        color: var(--amber);
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
      }
      .t-quote {
        font-size: 0.92rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
        flex: 1;
        margin-bottom: 1.25rem;
      }
      .t-author {
        display: flex;
        align-items: center;
        gap: 0.7rem;
      }
      .t-av {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--navy-3);
        border: 1px solid rgba(245, 166, 35, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        font-weight: 800;
        color: var(--amber);
        flex-shrink: 0;
      }
      .t-name {
        font-weight: 600;
        font-size: 0.86rem;
        color: white;
      }
      .t-role {
        font-size: 0.76rem;
        color: rgba(255, 255, 255, 0.75);
      }

      /* ================================================================
   WHO THIS IS FOR
================================================================ */
      .for-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        margin-top: 3.5rem;
      }
      .for-card {
        border-radius: var(--r-lg);
        padding: 2rem;
        border: 1px solid var(--border-d);
      }
      .for-yes {
        background: var(--navy-2);
        border-color: rgba(245, 166, 35, 0.2);
      }
      .for-no {
        background: rgba(255, 255, 255, 0.025);
      }
      .for-hd {
        font-weight: 800;
        font-size: 1rem;
        margin-bottom: 1.4rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }
      .for-yes .for-hd {
        color: var(--amber);
      }
      .for-no .for-hd {
        color: rgba(255, 255, 255, 0.82);
      }
      .for-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.85rem;
        font-size: 0.91rem;
        line-height: 1.5;
      }
      .for-yes .for-item {
        color: rgba(255, 255, 255, 0.88);
      }
      .for-no .for-item {
        color: rgba(255, 255, 255, 0.8);
      }
      .for-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 0.55rem;
      }
      .for-yes .for-dot {
        background: var(--amber);
      }
      .for-no .for-dot {
        background: rgba(255, 255, 255, 0.4);
      }

      /* ================================================================
   FAQ
================================================================ */
      .faq {
        margin-top: 3rem;
      }
      .faq-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 3rem;
        align-items: start;
      }
      .faq-item {
        border-bottom: 1px solid var(--border-l);
      }
      .faq-q {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        padding: 1.4rem 0;
        cursor: pointer;
        font-weight: 700;
        font-size: 1.02rem;
        letter-spacing: -0.01em;
      }
      .faq-icon {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(245, 166, 35, 0.1);
        color: var(--amber-dk);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 300;
        flex-shrink: 0;
        transition:
          transform 0.2s,
          background 0.2s,
          color 0.2s;
      }
      .faq-item.open .faq-icon {
        transform: rotate(45deg);
        background: var(--navy);
        color: white;
      }
      .faq-a {
        display: none;
        font-size: 0.94rem;
        color: var(--muted);
        line-height: 1.8;
        padding-bottom: 1.4rem;
      }
      .faq-item.open .faq-a {
        display: block;
      }

      /* ================================================================
   INCLUSIONS
================================================================ */
      .incl-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        margin-top: 3.5rem;
      }
      .incl-col {
        background: var(--white);
        border: 1px solid var(--border-l);
        border-radius: var(--r-lg);
        padding: 2rem;
      }
      .incl-hd {
        font-weight: 800;
        font-size: 1rem;
        margin-bottom: 1.4rem;
      }
      .i-item {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        margin-bottom: 0.8rem;
        font-size: 0.91rem;
        line-height: 1.5;
      }
      .i-ico {
        flex-shrink: 0;
        margin-top: 1px;
        color: var(--amber-dk);
      }
      .i-no {
        color: var(--muted);
      }
      .cert-box {
        margin-top: 1.25rem;
        padding: 1.15rem 1.25rem;
        background: rgba(245, 166, 35, 0.06);
        border: 1px solid rgba(245, 166, 35, 0.15);
        border-radius: var(--r);
      }
      .cert-box-t {
        font-weight: 700;
        font-size: 0.88rem;
        color: var(--amber-dk);
        margin-bottom: 0.35rem;
      }
      .cert-box-b {
        font-size: 0.83rem;
        color: var(--muted);
        line-height: 1.6;
      }

      /* ================================================================
   COUNTDOWN BAR
================================================================ */
      .cd-bar {
        background: var(--navy-2);
        border-top: 1px solid rgba(245, 166, 35, 0.18);
        border-bottom: 1px solid rgba(245, 166, 35, 0.18);
        padding: 1.25rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        flex-wrap: wrap;
      }
      .cd-cohort {
        font-size: 0.86rem;
        font-weight: 600;
        color: white;
      }
      .cd-cohort em {
        font-style: normal;
        color: var(--amber);
      }
      .cd-lbl {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.82);
      }
      .cd-units {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .cd-unit {
        text-align: center;
      }
      .cd-num {
        display: block;
        font-size: 1.65rem;
        font-weight: 800;
        color: white;
        line-height: 1;
        letter-spacing: -0.04em;
      }
      .cd-sep {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.7);
        padding-bottom: 0.65rem;
      }
      .cd-ul {
        font-size: 0.6rem;
        color: rgba(255, 255, 255, 0.75);
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }

      /* ================================================================
   PRICING
================================================================ */
      .pricing-sec {
        padding: 7rem 0;
        background: var(--navy);
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .pricing-sec > .grain-layer {
        background:
          radial-gradient(
            ellipse 80% 55% at 50% -5%,
            rgba(245, 166, 35, 0.22) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse 45% 40% at 10% 90%,
            rgba(245, 166, 35, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse 40% 35% at 90% 85%,
            rgba(245, 166, 35, 0.07) 0%,
            transparent 50%
          );
      }
      .pricing-sec > .w {
        position: relative;
        z-index: 1;
      }
      .price-cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        max-width: 900px;
        margin: 0 auto;
      }
      .price-card {
        background: var(--off-white);
        border-radius: var(--r-lg);
        padding: 2.75rem;
        width: 100%;
        box-shadow:
          0 40px 80px rgba(0, 0, 0, 0.55),
          0 0 0 1px rgba(245, 166, 35, 0.22);
        text-align: left;
      }
      .price-card-featured {
        box-shadow:
          0 40px 80px rgba(0, 0, 0, 0.55),
          0 0 0 2px var(--amber);
      }
      .price-badge {
        display: block;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        background: var(--amber);
        color: var(--navy);
        padding: 0.28rem 0.75rem;
        border-radius: 100px;
        margin: 0 auto 1.5rem;
        max-width: 100%;
        text-align: center;
      }
      .price-struck {
        font-size: 0.86rem;
        color: var(--muted);
        margin-bottom: 0.35rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .price-struck s {
        font-weight: 600;
      }
      .price-off-pill {
        display: inline-block;
        font-size: 0.68rem;
        font-weight: 700;
        background: rgba(245, 166, 35, 0.15);
        color: var(--amber-dk);
        padding: 0.15rem 0.5rem;
        border-radius: 100px;
      }
      .price-row {
        display: flex;
        align-items: flex-start;
        gap: 0.2rem;
        margin-bottom: 0.75rem;
      }
      .price-sym {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--muted);
        margin-top: 0.55rem;
        flex-shrink: 0;
      }
      .price-amt {
        font-size: 3.5rem;
        font-weight: 900;
        letter-spacing: -0.06em;
        color: var(--ink);
        line-height: 1;
        font-optical-sizing: auto;
        flex-shrink: 0;
      }
      .price-per {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--muted);
        align-self: flex-end;
        padding-bottom: 0.45rem;
        padding-left: 0.25rem;
      }
      .spots-bar {
        background: rgba(0, 0, 0, 0.08);
        border-radius: 100px;
        height: 5px;
        overflow: hidden;
        margin-bottom: 0.35rem;
      }
      .spots-fill {
        height: 100%;
        background: var(--amber);
        border-radius: 100px;
      }
      .spots-lbl {
        font-size: 0.76rem;
        color: var(--muted);
      }
      .spots-lbl strong {
        color: #dc2626;
      }
      .price-meta {
        font-size: 0.78rem;
        color: var(--muted);
        margin-top: 0.4rem;
      }
      .price-div {
        border: none;
        border-top: 1px solid var(--border-l);
        margin: 1.4rem 0;
      }
      .p-feat {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        font-size: 0.88rem;
        margin-bottom: 0.65rem;
      }
      .p-ck {
        color: var(--amber-dk);
        flex-shrink: 0;
        font-weight: 700;
      }
      .btn-apply {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        background: var(--amber);
        color: #ffffff;
        font-size: 1.05rem;
        font-weight: 800;
        padding: 1.05rem 2rem;
        border-radius: 100px;
        width: 100%;
        margin-top: 1.5rem;
        transition:
          background 0.15s,
          transform 0.1s;
        border: none;
        cursor: pointer;
        letter-spacing: -0.01em;
        white-space: nowrap;
        text-decoration: none;
      }
      .btn-apply:hover {
        background: var(--amber-dk);
        transform: translateY(-1px);
      }
      .price-urg {
        font-size: 0.78rem;
        font-weight: 600;
        color: #dc2626;
        text-align: center;
        margin-top: 0.75rem;
      }
      .price-foot {
        font-size: 0.75rem;
        color: var(--muted);
        text-align: center;
        margin-top: 0.4rem;
      }

      /* Manual transfer and WhatsApp onboarding dialog */
      .manual-payment-dialog {
        background: transparent;
        border: 0;
        margin: auto;
        max-height: min(92dvh, 760px);
        max-width: 34rem;
        padding: 0;
        width: calc(100% - 2rem);
      }
      .manual-payment-dialog::backdrop {
        background: rgba(7, 10, 15, 0.84);
        backdrop-filter: blur(6px);
      }
      .manual-payment-shell {
        background: var(--off-white);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 1.15rem;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
        max-height: min(92dvh, 760px);
        overflow-y: auto;
        padding: clamp(1.35rem, 5vw, 2rem);
        position: relative;
      }
      .manual-payment-close {
        align-items: center;
        background: var(--sand);
        border: 1px solid var(--border-l);
        border-radius: 50%;
        color: var(--ink);
        cursor: pointer;
        display: flex;
        font-size: 1.25rem;
        height: 2.6rem;
        justify-content: center;
        position: absolute;
        right: 1rem;
        top: 1rem;
        width: 2.6rem;
      }
      .manual-payment-kicker {
        color: var(--amber-dk);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        margin-bottom: 0.45rem;
        text-transform: uppercase;
      }
      .manual-payment-title {
        color: var(--ink);
        font-size: clamp(1.45rem, 4vw, 2rem);
        line-height: 1.15;
        margin: 0 3rem 0.7rem 0;
      }
      .manual-payment-copy {
        color: var(--muted);
        font-size: 0.92rem;
        line-height: 1.55;
        margin: 0 0 1.1rem;
      }
      .manual-payment-amount {
        align-items: center;
        background: var(--navy);
        border-radius: 0.8rem;
        color: white;
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        margin-bottom: 1rem;
        padding: 1rem 1.1rem;
      }
      .manual-payment-amount span {
        color: rgba(255, 255, 255, 0.68);
        font-size: 0.76rem;
      }
      .manual-payment-amount strong {
        color: var(--amber);
        font-size: 1.35rem;
      }
      .manual-payment-account {
        background: #fff;
        border: 1px solid var(--border-l);
        border-radius: 0.8rem;
        margin-bottom: 1rem;
        padding: 1rem 1.1rem;
      }
      .manual-payment-account-missing strong {
        display: block;
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
      }
      .manual-payment-account-missing p {
        color: var(--muted);
        font-size: 0.82rem;
        line-height: 1.5;
        margin: 0;
      }
      .manual-payment-steps {
        color: var(--ink);
        font-size: 0.86rem;
        line-height: 1.5;
        margin: 1rem 0 0 1.15rem;
        padding: 0;
      }
      .manual-payment-steps li { margin-bottom: 0.5rem; padding-left: 0.2rem; }
      .manual-payment-whatsapp,
      .manual-payment-secondary {
        align-items: center;
        border-radius: 0.6rem;
        cursor: pointer;
        display: flex;
        font: inherit;
        font-size: 0.9rem;
        font-weight: 800;
        justify-content: center;
        min-height: 2.8rem;
        text-align: center;
        text-decoration: none;
        width: 100%;
      }
      .manual-payment-whatsapp {
        background: #138a4b;
        color: white;
        margin-top: 1.2rem;
      }
      .manual-payment-secondary {
        background: transparent;
        border: 0;
        color: var(--muted);
        margin-top: 0.35rem;
      }

      /* ================================================================
   FOOTER
================================================================ */
      .footer {
        padding: 2.5rem 2rem;
        background: var(--navy);
        border-top: 1px solid rgba(245, 166, 35, 0.12);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .footer-logo {
        font-size: 1rem;
        font-weight: 800;
        color: white;
        letter-spacing: -0.025em;
      }
      .footer-logo em {
        font-style: normal;
        color: var(--amber);
      }
      .footer-copy {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.65);
      }
      .footer-copy a {
        align-items: center;
        color: rgba(255, 255, 255, 0.8);
        display: inline-flex;
        min-height: 44px;
      }

      /* ================================================================
   RESPONSIVE
================================================================ */
      @media (max-width: 1024px) {
        .inst-grid {
          grid-template-columns: 1fr;
        }
        .inst-photo-col {
          position: static;
          max-width: 260px;
        }
      }
      @media (max-width: 900px) {
        .hero-body {
          grid-template-columns: 1fr;
        }
        .commit-card {
          display: none;
        }
        .ai-split {
          grid-template-columns: 1fr;
        }
        .hero-stats {
          grid-template-columns: repeat(2, 1fr);
        }
        .hs-cell:nth-child(2) {
          border-right: none;
        }
        .bento {
          grid-template-columns: 1fr 1fr;
        }
        .b-w4,
        .b-w2,
        .b-w6 {
          grid-column: span 1;
        }
        .testi-grid {
          grid-template-columns: 1fr 1fr;
        }
        .tc-grid {
          grid-template-columns: 1fr;
        }
        .price-cards-grid {
          grid-template-columns: 1fr;
          max-width: 480px;
        }
      }
      @media (max-width: 768px) {
        .sec {
          padding: 4rem 0;
        }
        .w,
        .ws {
          padding: 0 1.5rem;
        }
        .hero {
          padding: 7rem 1.5rem 0;
        }
        .hero-body {
          padding-bottom: 3rem;
        }
        .h-headline {
          font-size: clamp(2.2rem, 9vw, 3rem);
          line-height: 1;
        }
        .h-sub {
          font-size: 0.95rem;
        }
        .h-ctas {
          flex-direction: column;
          align-items: flex-start;
        }
        .btn-prim,
        .btn-ghost {
          width: 100%;
          justify-content: center;
        }
        .transform-head {
          grid-template-columns: 1fr;
        }
        .th-before {
          border-right: none;
          border-bottom: 1px solid var(--border-l);
        }
        .t-strip {
          grid-template-columns: 1fr;
        }
        .t-before {
          border-right: none;
          border-bottom: 1px solid var(--border-l);
        }
        .hero-stats {
          grid-template-columns: repeat(2, 1fr);
        }
        .hs-cell {
          padding: 1.25rem 1.5rem;
        }
        .hs-cell:nth-child(2) {
          border-right: none;
        }
        .hs-cell:nth-child(3),
        .hs-cell:nth-child(4) {
          border-top: 1px solid rgba(245, 166, 35, 0.1);
        }
        .outcomes-grid {
          grid-template-columns: 1fr 1fr;
        }
        .testi-grid {
          grid-template-columns: 1fr;
        }
        .incl-grid {
          grid-template-columns: 1fr;
        }
        .for-grid {
          grid-template-columns: 1fr;
        }
        .faq-cols {
          grid-template-columns: 1fr;
          gap: 0;
        }
        .nav-mid {
          display: none;
        }
        .nav {
          padding: 0 1.25rem;
        }
        .pricing-sec {
          padding: 4rem 0;
        }
        .price-card {
          padding: 2rem 1.5rem;
        }
        .cd-bar {
          gap: 1rem;
          padding: 1rem 1.5rem;
          flex-wrap: wrap;
          justify-content: center;
        }
        .inst-grid {
          gap: 2.5rem;
        }
        .inst-name {
          font-size: clamp(2rem, 7vw, 3rem);
        }
        .bento {
          grid-template-columns: 1fr;
        }
        .b-w4,
        .b-w2,
        .b-w6 {
          grid-column: span 1;
        }
        .faq-q {
          font-size: 0.92rem;
          padding: 1.2rem 0;
          gap: 1rem;
        }
        .comp-table th,
        .comp-table td {
          padding: 0.6rem 0.75rem;
          font-size: 0.82rem;
        }
        .tc-card {
          padding: 1.75rem;
        }
      }
      @media (max-width: 560px) {
        .sec {
          padding: 3.5rem 0;
        }
        .w,
        .ws {
          padding: 0 1.25rem;
        }
        .hero {
          padding: 6.5rem 1.25rem 0;
        }
        .h-headline {
          font-size: clamp(1.9rem, 10vw, 2.4rem);
          line-height: 1.02;
        }
        .h-sub {
          font-size: 0.9rem;
          margin-bottom: 2rem;
        }
        .h-proof {
          gap: 0.6rem;
        }
        .h-proof-text {
          font-size: 0.73rem;
        }
        .h-pill {
          font-size: 0.65rem;
        }
        .hero-stats {
          grid-template-columns: 1fr 1fr;
        }
        .hs-num {
          font-size: 1.6rem;
        }
        .hs-label {
          font-size: 0.7rem;
        }
        .hs-cell {
          padding: 1rem 1.1rem;
        }
        .outcomes-grid {
          grid-template-columns: 1fr;
        }
        .o-num {
          font-size: 2.25rem;
        }
        .bento {
          grid-template-columns: 1fr;
          gap: 0.65rem;
        }
        .b-card {
          min-height: 160px;
        }
        .b-bg-n {
          font-size: 7rem;
        }
        .pricing-sec {
          padding: 3rem 0;
        }
        .price-card {
          max-width: 100%;
          border-radius: 0;
          padding: 2rem 1.25rem;
          box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.18);
        }
        .price-amt {
          font-size: 2.75rem;
        }
        .price-struck {
          flex-wrap: wrap;
          gap: 0.4rem;
        }
        .btn-apply {
          font-size: 0.95rem;
          padding: 0.95rem 1.5rem;
        }
        .cd-num {
          font-size: 1.35rem;
        }
        .cd-cohort {
          font-size: 0.78rem;
          text-align: center;
          width: 100%;
        }
        .cd-lbl {
          width: 100%;
          text-align: center;
        }
        .sec-title {
          font-size: clamp(1.7rem, 7vw, 2.25rem);
        }
        .sec-sub {
          font-size: 0.9rem;
        }
        .testi-grid {
          grid-template-columns: 1fr;
        }
        .t-quote {
          font-size: 0.87rem;
        }
        .incl-col {
          padding: 1.5rem;
        }
        .inst-photo-col {
          max-width: 100%;
        }
        .inst-photo {
          max-width: 200px;
        }
        .inst-name {
          font-size: clamp(1.8rem, 9vw, 2.75rem);
        }
        .inst-bio {
          font-size: 0.92rem;
        }
        .inst-pull {
          font-size: 0.88rem;
        }
        .faq-q {
          font-size: 0.87rem;
          gap: 0.75rem;
        }
        .faq-a {
          font-size: 0.87rem;
        }
        .faq-icon {
          width: 22px;
          height: 22px;
          font-size: 0.9rem;
        }
        .for-card {
          padding: 1.5rem;
        }
        .for-item {
          font-size: 0.85rem;
        }
        .ai-sess {
          padding: 1rem 1.1rem;
        }
        .ai-sess-t {
          font-size: 0.88rem;
        }
        .ai-sess-d {
          font-size: 0.78rem;
        }
        .wk-row {
          grid-template-columns: 42px 1fr;
          gap: 0.6rem;
          padding: 1rem 1.25rem;
        }
        .wk-out {
          display: none;
        }
        .wk-t {
          font-size: 0.85rem;
        }
        .wk-d {
          font-size: 0.78rem;
        }
        .phase-hd {
          padding: 1.1rem 1.25rem;
          gap: 0.9rem;
        }
        .ph-name {
          font-size: 0.95rem;
        }
        .ph-num {
          font-size: 1.1rem;
        }
        .nav-btn {
          font-size: 0.8rem;
          padding: 0.45rem 1rem;
        }
        .footer {
          padding: 2rem 1.25rem;
          flex-direction: column;
          align-items: flex-start;
          gap: 0.5rem;
        }
        .comp-table th,
        .comp-table td {
          padding: 0.5rem 0.6rem;
          font-size: 0.76rem;
        }
        .track-tab {
          padding: 0.45rem 0.9rem;
          font-size: 0.76rem;
        }
        .tc-price {
          font-size: 2.1rem;
        }
        .tc-name {
          font-size: 1.25rem;
        }
      }
      @media (max-width: 390px) {
        .h-headline {
          font-size: clamp(1.75rem, 9.5vw, 2.1rem);
        }
        .nav-logo {
          font-size: 0.9rem;
        }
        .nav-btn {
          font-size: 0.75rem;
          padding: 0.4rem 0.85rem;
        }
        .price-amt {
          font-size: 2.5rem;
        }
        .btn-apply {
          font-size: 0.9rem;
        }
        .cd-units {
          gap: 0.35rem;
        }
        .cd-num {
          font-size: 1.2rem;
        }
      }
      @media (max-width: 340px) {
        .h-headline {
          font-size: 1.65rem;
        }
        .nav-btn {
          padding: 0.35rem 0.7rem;
          font-size: 0.7rem;
        }
        .h-ctas .btn-prim,
        .h-ctas .btn-ghost {
          font-size: 0.87rem;
          padding: 0.8rem 1.2rem;
        }
        .price-amt {
          font-size: 2.2rem;
        }
        .hs-num {
          font-size: 1.4rem;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .ticker-track {
          animation: none;
        }
        .h-pill::before,
        .cc-live::before {
          animation: none;
        }
        * {
          transition-duration: 0.01ms !important;
        }
      }

      /* ================================================================
   MOBILE POLISH — track tabs, new components, all viewports
================================================================ */

      /* Track tabs: become full-width equal buttons on small screens.
         white-space: normal lets text wrap so nothing overflows.       */
      @media (max-width: 600px) {
        .track-tabs,
        .track-tabs-light {
          width: 100%;
          border-radius: var(--r);
          padding: 3px;
          margin-bottom: 1.75rem;
        }
        .track-tab {
          flex: 1;
          text-align: center;
          border-radius: 7px;
          white-space: normal;
          line-height: 1.3;
          padding: 0.55rem 0.25rem;
          font-size: 0.72rem;
        }
        .track-tab.active {
          border-radius: 7px;
        }
      }

      /* Track comparison cards: single column from 768px */
      @media (max-width: 768px) {
        .tc-grid {
          grid-template-columns: 1fr;
        }
      }

      /* TC card sizing on mid/small screens */
      @media (max-width: 560px) {
        .tc-card {
          padding: 1.4rem;
        }
        .tc-name {
          font-size: 1.1rem;
        }
        .tc-price {
          font-size: 1.9rem;
        }
        .tc-btn {
          font-size: 0.83rem;
          padding: 0.78rem 1rem;
        }
        .tc-popular {
          font-size: 0.56rem;
        }
        .tc-card-head {
          align-items: flex-start;
          flex-direction: column;
          margin-bottom: 0.9rem;
        }
        .tc-feat {
          font-size: 0.84rem;
        }
        .tc-desc {
          font-size: 0.84rem;
        }
        .tracks-advice {
          padding: 1.25rem 1rem;
        }
        .ta-q {
          font-size: 0.92rem;
        }
        .ta-btn {
          font-size: 0.8rem;
          padding: 0.55rem 1rem;
        }
        .comp-table-title {
          font-size: 0.69rem;
          margin-top: 2rem;
        }
        .curr-track-note {
          font-size: 0.82rem;
        }
      }

      /* TC card extreme narrow */
      @media (max-width: 390px) {
        .tc-card {
          padding: 1.15rem;
        }
        .tc-name {
          font-size: 1rem;
        }
        .tc-feat {
          font-size: 0.79rem;
          gap: 0.45rem;
        }
        .tc-btn {
          font-size: 0.77rem;
        }
        .tc-desc {
          font-size: 0.8rem;
        }
        .tc-price {
          font-size: 1.75rem;
        }
      }

      /* Price cards: full-width at 560px; override 900px max-width cap */
      @media (max-width: 560px) {
        .price-cards-grid {
          max-width: 100%;
        }
      }

      /* AI track note: stack vertically on narrow screens */
      @media (max-width: 640px) {
        .ai-track-note {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.1rem;
          font-size: 0.78rem;
        }
      }

      /* Outcomes grid: 2-up at 640px (already 1-col at 560px) */
      @media (max-width: 640px) {
        .outcomes-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

      /* Countdown: very small screens — drop separators, wrap units */
      @media (max-width: 340px) {
        .cd-sep {
          display: none;
        }
        .cd-units {
          flex-wrap: wrap;
          justify-content: center;
          gap: 0.5rem;
        }
        .cd-unit {
          min-width: 44px;
        }
      }

      /* iPhone SE and below (320px) */
      @media (max-width: 320px) {
        .h-ctas .btn-prim,
        .h-ctas .btn-ghost {
          font-size: 0.82rem;
          padding: 0.72rem 0.9rem;
        }
        .nav-btn {
          font-size: 0.63rem;
          padding: 0.3rem 0.6rem;
        }
        .track-tab {
          font-size: 0.67rem;
        }
        .phase-hd {
          gap: 0.7rem;
        }
        .ph-name {
          font-size: 0.88rem;
        }
        .tc-card {
          padding: 1rem;
        }
      }
      /* Secure payment and onboarding dialog */
      .payment-trigger { border: 0; cursor: pointer; width: 100%; }
      .payment-trigger:disabled { cursor: wait; opacity: 0.64; }
      .payment-dialog {
        background: transparent; border: 0; color: var(--ink); margin: auto;
        max-height: min(92vh, 820px); max-width: 610px; padding: 0;
        width: calc(100% - 2rem);
      }
      .payment-dialog::backdrop { background: rgba(7, 10, 15, 0.82); backdrop-filter: blur(5px); }
      .payment-dialog [hidden] { display: none !important; }
      .payment-shell {
        background: var(--off-white); border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 18px; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
        max-height: min(92vh, 820px); overflow-y: auto;
        padding: clamp(1.25rem, 4vw, 2rem); position: relative;
      }
      .payment-close {
        align-items: center; background: var(--sand); border: 1px solid var(--border-l);
        border-radius: 999px; color: var(--ink); cursor: pointer; display: flex;
        font-size: 1.25rem; height: 2.75rem; justify-content: center;
        position: absolute; right: 1rem; top: 1rem; width: 2.75rem;
      }
      .payment-kicker {
        color: var(--amber-dk); font-size: 0.72rem; font-weight: 800;
        letter-spacing: 0.12em; margin-bottom: 0.45rem; text-transform: uppercase;
      }
      .payment-title { font-size: clamp(1.45rem, 4vw, 2rem); line-height: 1.15; margin: 0 3rem 0.7rem 0; }
      .payment-copy { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.25rem; }
      .payment-fields { display: grid; gap: 0.9rem; }
      .payment-fields-two { display: grid; gap: 0.9rem; }
      .payment-field label { display: block; font-size: 0.78rem; font-weight: 750; margin-bottom: 0.3rem; }
      .payment-field input {
        background: white; border: 1px solid #cfc7b9; border-radius: 9px;
        color: var(--ink); font: inherit; padding: 0.78rem 0.85rem; width: 100%;
      }
      .payment-field input:focus { border-color: var(--amber-dk); box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18); outline: 0; }
      .payment-field input[readonly] { background: var(--sand); }
      .payment-hint { color: var(--muted); font-size: 0.72rem; margin-top: 0.25rem; }
      .payment-turnstile { min-height: 66px; overflow: hidden; }
      .payment-error {
        background: #fff1f2; border: 1px solid #fecdd3; border-radius: 8px;
        color: #9f1239; font-size: 0.82rem; margin: 0.9rem 0; padding: 0.75rem;
      }
      .payment-submit, .payment-action {
        background: var(--navy); border: 0; border-radius: 9px; color: white;
        cursor: pointer; display: inline-flex; font: inherit; font-size: 0.9rem;
        font-weight: 800; justify-content: center; margin-top: 0.9rem;
        min-height: 44px; padding: 0.85rem 1rem; text-align: center; width: 100%;
      }
      .payment-submit:disabled, .payment-action:disabled { cursor: wait; opacity: 0.62; }
      .payment-action-secondary { background: white; border: 1px solid #bdb5a8; color: var(--ink); }
      .payment-state { padding-top: 0.25rem; }
      .payment-status-card { background: white; border: 1px solid var(--border-l); border-radius: 12px; margin: 1rem 0; padding: 1rem; }
      .payment-status-row { display: flex; font-size: 0.82rem; gap: 1rem; justify-content: space-between; padding: 0.28rem 0; }
      .payment-status-row span:first-child { color: var(--muted); }
      .payment-status-row strong { overflow-wrap: anywhere; text-align: right; }
      .payment-spinner {
        animation: payment-spin 0.9s linear infinite; border: 3px solid #ddd5c8;
        border-radius: 50%; border-top-color: var(--amber-dk); height: 2.4rem;
        margin: 1rem 0; width: 2.4rem;
      }
      .payment-success-mark {
        align-items: center; background: var(--green-lt); border-radius: 50%; color: #15803d;
        display: flex; font-size: 1.5rem; font-weight: 900; height: 3rem;
        justify-content: center; margin-bottom: 1rem; width: 3rem;
      }
      .payment-steps { font-size: 0.86rem; margin: 1rem 0 0 1.2rem; }
      .payment-steps li { margin-bottom: 0.42rem; padding-left: 0.2rem; }
      @keyframes payment-spin { to { transform: rotate(360deg); } }
      @media (min-width: 620px) {
        .payment-fields-two { grid-template-columns: 1fr 1fr; }
      }
      @media (max-width: 600px) {
        .nav-logo,
        .nav-btn,
        .btn-prim,
        .btn-ghost,
        .tc-btn,
        .ta-btn,
        .track-tab,
        .btn-apply {
          min-height: 44px;
        }
        .nav-logo {
          align-items: center;
          display: inline-flex;
        }
        .track-tabs,
        .track-tabs-light,
        .tc-card,
        .price-card,
        .phase,
        .faq-item,
        .for-card,
        .incl-col,
        .b-card {
          min-width: 0;
        }
        .sec-title,
        .tc-name,
        .tc-desc,
        .price-badge,
        .price-meta,
        .faq-q,
        .faq-a,
        .footer-copy {
          overflow-wrap: anywhere;
        }
        .payment-dialog {
          width: calc(100% - 1rem);
        }
        .payment-shell {
          padding: 1rem;
        }
        .payment-title {
          margin-right: 3.25rem;
        }
        .payment-turnstile {
          max-width: 100%;
          overflow: visible;
        }
      }
      @media (max-width: 560px) {
        .outcomes-grid {
          grid-template-columns: 1fr;
        }
      }

/* Classes generated from the original landing-page inline presentation. */
.legacy-style-1 { background: var(--navy) }
.legacy-style-2 { background: radial-gradient( ellipse 60% 70% at 90% 10%, rgba(245, 166, 35, 0.13) 0%, transparent 60% ), radial-gradient( ellipse 50% 55% at 5% 75%, rgba(245, 166, 35, 0.1) 0%, transparent 55% ), radial-gradient( ellipse 40% 30% at 50% 105%, rgba(245, 166, 35, 0.06) 0%, transparent 50% ); }
.legacy-style-3 { color: white; margin-bottom: 1rem }
.legacy-style-4 { margin-bottom: 3rem }
.legacy-style-5 { margin-top: 3rem }
.legacy-style-6 { margin-bottom: 1.5rem }
.legacy-style-7 { font-size: 0.75rem; font-weight: 500; color: var(--muted); }
.legacy-style-8 { display: flex; gap: 5px }
.legacy-style-9 { color: var(--c-red) }
.legacy-style-10 { background: var(--navy) }
.legacy-style-11 { background: radial-gradient( ellipse 65% 55% at 50% 0%, rgba(245, 166, 35, 0.16) 0%, transparent 60% ), radial-gradient( ellipse 40% 40% at 5% 80%, rgba(245, 166, 35, 0.09) 0%, transparent 50% ), radial-gradient( ellipse 35% 35% at 95% 70%, rgba(245, 166, 35, 0.07) 0%, transparent 50% ); }
.legacy-style-12 { color: white }
.legacy-style-13 { margin-top: 2.5rem }
.legacy-style-14 { background: var(--navy) }
.legacy-style-15 { background: radial-gradient( ellipse 55% 60% at 90% 15%, rgba(245, 166, 35, 0.13) 0%, transparent 58% ), radial-gradient( ellipse 45% 45% at 10% 85%, rgba(245, 166, 35, 0.09) 0%, transparent 55% ), radial-gradient( ellipse 35% 30% at 50% 50%, rgba(245, 166, 35, 0.04) 0%, transparent 50% ); }
.legacy-style-16 { color: white }
.legacy-style-17 { background: var(--navy-2); border-top: 1px solid rgba(245, 166, 35, 0.1); border-bottom: 1px solid rgba(245, 166, 35, 0.1); }
.legacy-style-18 { background: radial-gradient( ellipse 70% 50% at 50% 100%, rgba(245, 166, 35, 0.1) 0%, transparent 55% ), radial-gradient( ellipse 40% 40% at 0% 30%, rgba(245, 166, 35, 0.08) 0%, transparent 50% ); }
.legacy-style-19 { color: white }
.legacy-style-20 { margin-top: 3rem }
.legacy-style-21 { color: var(--muted) }
.legacy-style-22 { color: var(--muted) }
.legacy-style-23 { color: var(--muted) }
.legacy-style-24 { background: radial-gradient( ellipse 80% 55% at 50% -5%, rgba(245, 166, 35, 0.22) 0%, transparent 60% ), radial-gradient( ellipse 45% 40% at 10% 90%, rgba(245, 166, 35, 0.1) 0%, transparent 50% ), radial-gradient( ellipse 40% 35% at 90% 85%, rgba(245, 166, 35, 0.07) 0%, transparent 50% ); }
.legacy-style-25 { display: inline-block; margin-bottom: 1.25rem }
.legacy-style-26 { color: white; margin-bottom: 0.75rem }
.legacy-style-27 { color: rgba(255, 255, 255, 0.68); font-size: 1.05rem; margin-bottom: 0.6rem; max-width: 440px; margin-left: auto; margin-right: auto; }
.legacy-style-28 { color: rgba(255, 255, 255, 0.58); font-size: 0.82rem; margin-bottom: 3rem; max-width: 440px; margin-left: auto; margin-right: auto; }
.legacy-style-29 { width: 40% }
.legacy-style-30 { width: 60% }


/*
  SquadCo secure cross-origin checkout styles intentionally disabled.
  The original styles remain commented for local rollback history.
.secure-checkout-dialog {
  background: transparent;
  border: 0;
  height: min(860px, calc(100dvh - 1rem));
  max-height: none;
  max-width: none;
  overflow: visible;
  padding: 0;
  width: 40vw;
}
.secure-checkout-dialog::backdrop { background: rgba(7, 10, 15, .86); backdrop-filter: blur(6px); }
.secure-checkout-shell { background: #fafaf8; border-radius: 18px; height: 100%; overflow: hidden; position: relative; }
.secure-checkout-close {
  align-items: center; background: #0d1117; border: 2px solid #fafaf8; border-radius: 999px;
  color: #fff; cursor: pointer; display: flex; font-size: 1.4rem; height: 40px; justify-content: center;
  position: absolute; right: .7rem; top: .7rem; width: 40px; z-index: 10;
}
#secure-checkout-frame { border: 0; height: 100%; width: 100%; }
*/

      @media (max-width: 720px) {
        .secure-checkout-dialog { height: calc(100dvh - .5rem); width: 90vw; }
        .manual-payment-dialog { width: calc(100% - 1rem); }
        .manual-payment-shell { padding: 1.1rem; }
      }
