  :root {
      --ink: #0B0A08;
      --ink-soft: #1A1815;
      --ink-2: #131110;
      --bone: #FAF8F3;
      --bone-dim: #F1EEE6;
      --bone-2: #F2EEE4;
      --gold: #C29B3C;
      --gold-soft: #D9BC72;
      --gold-deep: #9C7A26;
      --grey: #8B8578;
      --muted: #5A554B;
      --muted-ink: #B9B2A4;
      --hairline: rgba(11, 10, 8, .12);
      --hairline-inv: rgba(250, 248, 243, .16);
      --max: 1180px;
      --danger: #B3402E;
      --danger-soft: #E8705A;
      --go: #3E7A4E;
      /* ELITE TIER — deliberately NOT gold. Petrol blue is the optical complement
       of gold, so the top tier reads as a different class of thing, not a
       bigger version of the same one. Do not swap this back to gold. */
      --elite-bg: #101C24;
      --elite: #8FB6C9;
      --elite-soft: #BFDCE8;
      --elite-deep: #0A141A;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
  }

  html {
      scroll-behavior: smooth
  }

  body {
      background: var(--bone);
      color: var(--ink);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 18px;
      line-height: 1.68;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
  }

  .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px
  }

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

  .eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      display: block;
      margin-bottom: 26px
  }

  a {
      color: inherit
  }

  button {
      font-family: inherit;
      cursor: pointer
  }

  :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px
  }

  h2 {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-size: clamp(30px, 3.5vw, 46px);
      line-height: 1.13;
      letter-spacing: -.01em;
      max-width: 760px
  }

  h2 em {
      font-style: italic;
      color: var(--gold)
  }

  strong,
  b {
      font-weight: 600
  }

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

  .skip {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 400;
      background: var(--gold);
      color: var(--ink);
      padding: 12px 18px;
      font-weight: 600
  }

  .skip:focus {
      left: 0
  }

  /* Screen-reader summary. Standard sr-only clipping — this is an
     accessibility affordance, NOT hidden keyword text. Every fact in it is
     stated visibly elsewhere on the page. Do not add anything here that is
     not on the page, or it becomes cloaking. */
  .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      white-space: nowrap;
      border: 0
  }

  /* ---------- SPINE ---------- */
  .spine {
      position: fixed;
      top: 0;
      left: 0;
      width: 2px;
      height: 100vh;
      z-index: 90;
      background: var(--hairline);
      pointer-events: none
  }

  .spine__fill {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: linear-gradient(180deg, var(--gold-soft), var(--gold));
      box-shadow: 0 0 10px rgba(194, 155, 60, .5)
  }

  
  /* ---------- BUTTONS ---------- */
  .btn-gold {
      background: var(--gold);
      color: var(--ink);
      border: none;
      padding: 18px 32px;
      font-size: 15.5px;
      font-weight: 600;
      border-radius: 2px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform .25s, box-shadow .25s, background .2s;
      position: relative;
      overflow: hidden
  }

  .btn-gold::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
      transform: skewX(-20deg)
  }

  .btn-gold:hover::before {
      animation: sheen .85s ease
  }

  @keyframes sheen {
      to {
          left: 140%
      }
  }

  .btn-gold:hover {
      background: var(--gold-soft);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px -12px rgba(194, 155, 60, .75)
  }

  .btn-gold .arw {
      transition: transform .28s
  }

  .btn-gold:hover .arw {
      transform: translateX(5px)
  }

  .btn-ghost {
      background: transparent;
      color: var(--bone);
      border: 1px solid var(--hairline-inv);
      padding: 18px 32px;
      font-size: 15px;
      font-weight: 500;
      border-radius: 2px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: border-color .25s, transform .25s, background .25s
  }

  .btn-ghost:hover {
      border-color: var(--gold);
      background: rgba(194, 155, 60, .08);
      transform: translateY(-2px)
  }

  /* ---------- REVEALS ---------- */
  .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s cubic-bezier(.2, .7, .3, 1), transform .65s cubic-bezier(.2, .7, .3, 1)
  }

  .reveal.in {
      opacity: 1;
      transform: none
  }

  .reveal-l {
      opacity: 0;
      transform: translateX(-26px);
      transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1)
  }

  .reveal-l.in {
      opacity: 1;
      transform: none
  }

  .reveal-r {
      opacity: 0;
      transform: translateX(26px);
      transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1)
  }

  .reveal-r.in {
      opacity: 1;
      transform: none
  }

  /* ================= URGENCY BAR ================= */
  .urgbar {
      position: fixed;
      top: 40px;
      left: 0;
      right: 0;
      z-index: 101;
      background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
      background-size: 200% 100%;
      animation: slide 9s linear infinite;
      color: var(--ink);
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      padding: 9px 16px;
      transform: translateY(-100%);
      transition: transform .5s cubic-bezier(.2, .7, .3, 1)
  }

  .urgbar.show {
      transform: none
  }

  .urgbar .cd {
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 500;
      background: rgba(11, 10, 8, .16);
      padding: 2px 8px;
      border-radius: 2px;
      white-space: nowrap
  }

  @keyframes slide {
      to {
          background-position: 200% 0
      }
  }

  body.hasbar nav {
      top: 38px
  }

  @media(max-width:640px) {
      .urgbar {
          font-size: 10px;
          padding: 7px 10px;
          top:30px;
      }
      header{
        top: 30px!important;
      }
  }

  /* ================= HERO ================= */
  .hero {
      background: var(--ink);
      color: var(--bone);
      padding: 150px 0 0;
      position: relative;
      overflow: hidden
  }

  .hero__halo {
      position: absolute;
      top: -14%;
      right: -8%;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(194, 155, 60, .20), transparent 62%);
      filter: blur(38px);
      pointer-events: none;
      animation: breathe 11s ease-in-out infinite
  }

  @keyframes breathe {

      0%,
      100% {
          transform: scale(1);
          opacity: .85
      }

      50% {
          transform: scale(1.14);
          opacity: 1
      }
  }

  .hero__grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(250, 248, 243, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(250, 248, 243, .028) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse at 50% 30%, #000, transparent 72%);
      pointer-events: none
  }

  .hero-split {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 2
  }

  .eyebrow-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11.5px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold-soft);
      border: 1px solid rgba(194, 155, 60, .34);
      background: rgba(194, 155, 60, .07);
      padding: 8px 15px;
      border-radius: 100px;
      margin-bottom: 26px
  }

  .eyebrow-pill i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: blip 2.1s ease-in-out infinite
  }

  @keyframes blip {

      0%,
      100% {
          opacity: 1;
          box-shadow: 0 0 0 0 rgba(194, 155, 60, .6)
      }

      50% {
          opacity: .55;
          box-shadow: 0 0 0 7px rgba(194, 155, 60, 0)
      }
  }

  .hero h1 {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-size: clamp(40px, 5vw, 68px);
      line-height: 1.04;
      letter-spacing: -.022em
  }

  .hero h1 em {
      font-style: italic;
      color: var(--gold)
  }

  .hero-tag {
      margin-top: 24px;
      font-family: 'Fraunces', serif;
      font-size: clamp(19px, 2vw, 25px);
      line-height: 1.34;
      color: var(--bone);
      font-style: italic
  }

  .hero-tag b {
      font-style: normal;
      color: var(--gold-soft);
      font-weight: 400
  }

  .hero-line {
      margin-top: 20px;
      font-size: 17px;
      color: rgba(250, 248, 243, .72);
      max-width: 520px
  }

  .hero-ticks {
      margin-top: 26px;
      display: flex;
      flex-direction: column;
      gap: 11px
  }

  .hero-ticks div {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      font-size: 16px;
      color: rgba(250, 248, 243, .9)
  }

  .hero-ticks svg {
      flex: 0 0 18px;
      margin-top: 4px
  }

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

  .hero-micro {
      margin-top: 18px;
      font-size: 14.5px;
      color: rgba(250, 248, 243, .55)
  }

  /* hero video — BESIDE the headline (this is what differs from Part 1) */
  .hv {
      position: relative
  }

  .hv__frame {
      position: relative;
      aspect-ratio: 16/10;
      border: 1px solid var(--hairline-inv);
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      background: linear-gradient(140deg, #1b1710 0%, #0c0b09 62%);
      transition: border-color .4s, transform .45s cubic-bezier(.2, .7, .3, 1), box-shadow .45s
  }

  .hv__frame iframe{
    width: 100%;
    height: 100%;
  }

  .hv__frame:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 40px 80px -38px rgba(0, 0, 0, .9)
  }

  .hv__poster {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 44%, rgba(194, 155, 60, .19), transparent 64%)
  }

  .hv__rings {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 200px;
      height: 200px;
      transform: translate(-50%, -50%);
      pointer-events: none
  }

  .hv__rings i {
      position: absolute;
      inset: 0;
      border: 1px solid rgba(194, 155, 60, .3);
      border-radius: 50%;
      animation: ring 3.6s ease-out infinite
  }

  .hv__rings i:nth-child(2) {
      animation-delay: 1.2s
  }

  .hv__rings i:nth-child(3) {
      animation-delay: 2.4s
  }

  @keyframes ring {
      0% {
          transform: scale(.42);
          opacity: .9
      }

      100% {
          transform: scale(1.15);
          opacity: 0
      }
  }

  .hv__badge {
      position: absolute;
      top: 15px;
      left: 15px;
      z-index: 3;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--gold-soft);
      background: rgba(11, 10, 8, .7);
      padding: 7px 11px;
      border-radius: 2px
  }

  .hv__play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 78px;
      height: 78px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      transition: transform .3s cubic-bezier(.2, .7, .3, 1), background .25s
  }

  .hv__frame:hover .hv__play {
      transform: translate(-50%, -50%) scale(1.09);
      background: var(--gold-soft)
  }

  .hv__play::after {
      content: "";
      border-style: solid;
      border-width: 11px 0 11px 19px;
      border-color: transparent transparent transparent var(--ink);
      margin-left: 5px
  }

  .hv__cap {
      margin-top: 15px;
      font-size: 15px;
      color: rgba(250, 248, 243, .66);
      text-align: center
  }

  .hv__cap b {
      color: var(--bone);
      font-weight: 500
  }

  /* seat + countdown card under the video */
  .hv__urg {
      margin-top: 22px;
      border: 1px solid rgba(194, 155, 60, .3);
      background: rgba(194, 155, 60, .06);
      border-radius: 4px;
      padding: 20px 22px
  }

  .hv__urg-hd {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold-soft);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px
  }

  .hv__urg-hd i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--danger-soft);
      animation: blip 1.6s ease-in-out infinite
  }

  .cdgrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      text-align: center
  }

  .cdgrid>div {
      background: rgba(11, 10, 8, .42);
      border: 1px solid var(--hairline-inv);
      border-radius: 3px;
      padding: 12px 4px
  }

  .cdgrid b {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 27px;
      font-weight: 500;
      color: var(--bone);
      line-height: 1.1
  }

  .cdgrid span {
      display: block;
      font-size: 10.5px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(250, 248, 243, .5);
      margin-top: 5px
  }

  .seatbar {
      margin-top: 16px
  }

  .seatbar__track {
      height: 6px;
      background: rgba(250, 248, 243, .13);
      border-radius: 100px;
      overflow: hidden
  }

  .seatbar__fill {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--gold), var(--danger-soft));
      border-radius: 100px;
      transition: width 1.5s cubic-bezier(.2, .7, .3, 1)
  }

  .seatbar__cap {
      margin-top: 10px;
      font-size: 13.5px;
      color: rgba(250, 248, 243, .74)
  }

  .seatbar__cap b {
      color: var(--danger-soft);
      font-weight: 600
  }

  /* hero stat strip */
  .hero-strip {
      margin-top: 86px;
      border-top: 1px solid var(--hairline-inv);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
      z-index: 2
  }

  .hero-strip>div {
      padding: 32px 24px 40px;
      border-right: 1px solid var(--hairline-inv);
      transition: transform .35s cubic-bezier(.2, .7, .3, 1), background .35s
  }

  .hero-strip>div:last-child {
      border-right: none
  }

  .hero-strip>div:hover {
      background: rgba(194, 155, 60, .05)
  }

  .hero-strip .stat {
      font-family: 'Fraunces', serif;
      font-size: clamp(28px, 3vw, 40px);
      color: var(--gold);
      line-height: 1
  }

  .hero-strip .label {
      font-size: 14px;
      color: rgba(250, 248, 243, .62);
      margin-top: 9px;
      line-height: 1.4
  }

  .stat-kicker {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10.5px;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: rgba(250, 248, 243, .38);
      margin-top: 7px;
      display: block
  }

  @media(max-width:960px) {
      .hero {
          padding-top: 120px
      }

      .hero-split {
          grid-template-columns: 1fr;
          gap: 44px
      }

      .hero-strip {
          grid-template-columns: repeat(2, 1fr);
          margin-top: 60px
      }

      .hero-strip>div:nth-child(2) {
          border-right: none
      }

      .hero-strip>div:nth-child(1),
      .hero-strip>div:nth-child(2) {
          border-bottom: 1px solid var(--hairline-inv)
      }
  }

  @media(max-width:640px) {
      .wrap {
          padding: 0 15px
      }

      section {
          padding: 78px 0
      }

      body {
          font-size: 17px
      }

      .hero-strip .stat {
          font-size: 26px
      }

      .cdgrid b {
          font-size: 23px
      }

      .hero-strip>div{
        padding: 26px 14px 30px;
      }

      .pil{
            padding: 34px 20px 36px;
      }
  }

  /* ================= 01 · PROBLEM (tick boxes) ================= */
  .prob {
      background: var(--ink);
      color: var(--bone)
  }

  .prob h2 {
      color: var(--bone)
  }

  .prob__sub {
      margin-top: 20px;
      font-size: 17.5px;
      color: rgba(250, 248, 243, .68);
      max-width: 640px
  }

  .prob__hint {
      margin-top: 12px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11.5px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold-soft)
  }

  .tickgrid {
      margin-top: 46px;
      display: grid;
      gap: 14px;
      max-width: 860px
  }

  .tick {
      display: flex;
      align-items: center;
      gap: 18px;
      border: 1px solid var(--hairline-inv);
      background: rgba(250, 248, 243, .028);
      border-radius: 4px;
      padding: 20px 24px;
      cursor: pointer;
      text-align: left;
      width: 100%;
      color: var(--bone);
      font-size: 17.5px;
      line-height: 1.4;
      transition: border-color .3s, background .3s, transform .3s cubic-bezier(.2, .7, .3, 1)
  }

  .tick:hover {
      border-color: rgba(194, 155, 60, .55);
      background: rgba(194, 155, 60, .06);
      transform: translateX(5px)
  }

  .tick__box {
      flex: 0 0 26px;
      width: 26px;
      height: 26px;
      border: 1.5px solid rgba(250, 248, 243, .36);
      border-radius: 3px;
      position: relative;
      transition: border-color .3s, background .3s
  }

  .tick__box svg {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 15px;
      height: 15px;
      stroke: var(--ink);
      stroke-width: 3.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 24;
      stroke-dashoffset: 24;
      transition: stroke-dashoffset .34s cubic-bezier(.2, .7, .3, 1)
  }

  .tick.on {
      border-color: var(--gold);
      background: rgba(194, 155, 60, .11)
  }

  .tick.on .tick__box {
      background: var(--gold);
      border-color: var(--gold)
  }

  .tick.on .tick__box svg {
      stroke-dashoffset: 0
  }

  .tick.on .tick__t {
      color: var(--bone)
  }

  .tick__t {
      color: rgba(250, 248, 243, .86);
      transition: color .3s
  }

  .tick.pop {
      animation: tickpop .34s cubic-bezier(.2, .7, .3, 1)
  }

  @keyframes tickpop {
      0% {
          transform: scale(1)
      }

      42% {
          transform: scale(1.022)
      }

      100% {
          transform: scale(1)
      }
  }

  .verdict {
      margin-top: 34px;
      max-width: 860px;
      border: 1px solid var(--hairline-inv);
      border-radius: 4px;
      padding: 26px 28px;
      display: flex;
      align-items: center;
      gap: 22px;
      transition: border-color .45s, background .45s, box-shadow .45s
  }

  .verdict__count {
      flex: 0 0 auto;
      font-family: 'Fraunces', serif;
      font-size: 38px;
      color: var(--gold);
      line-height: 1;
      min-width: 64px
  }

  .verdict__count small {
      font-size: 19px;
      color: rgba(250, 248, 243, .4)
  }

  .verdict__t {
      font-size: 17.5px;
      color: rgba(250, 248, 243, .72);
      line-height: 1.5
  }

  .verdict__t b {
      color: var(--bone);
      font-weight: 600
  }

  .verdict.hot {
      border-color: var(--gold);
      background: rgba(194, 155, 60, .1);
      box-shadow: 0 0 46px -18px rgba(194, 155, 60, .55)
  }

  .verdict.hot .verdict__t {
      color: var(--bone)
  }

  .verdict.hot .verdict__t b {
      color: var(--gold-soft)
  }

  @media(max-width:640px) {
      .tick {
          font-size: 16px;
          padding: 17px 18px;
          gap: 14px
      }

      .verdict {
          flex-direction: column;
          align-items: flex-start;
          gap: 14px
      }
  }

  /* ================= 02 · SOLUTION ================= */
  .sol {
      background: var(--bone-2)
  }

  .sol__lead {
      margin-top: 22px;
      font-size: 18.5px;
      color: var(--muted);
      max-width: 660px
  }

  .sol__name {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
      font-family: 'Fraunces', serif;
      font-size: clamp(22px, 2.4vw, 30px);
      color: var(--ink)
  }

  .sol__name i {
      display: block;
      width: 44px;
      height: 1px;
      background: var(--gold)
  }

  .pillars {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--hairline);
      border: 1px solid var(--hairline)
  }

  .pil {
      background: var(--bone);
      padding: 34px 28px 36px;
      position: relative;
      transition: background .35s, transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s;
      overflow: hidden
  }

  .pil::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: var(--gold);
      transition: width .5s cubic-bezier(.2, .7, .3, 1)
  }

  .pil:hover {
      background: #fff;
      transform: translateY(-4px);
      box-shadow: 0 26px 50px -30px rgba(11, 10, 8, .34);
      z-index: 2
  }

  .pil:hover::after {
      width: 100%
  }

  .pil__n {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11.5px;
      letter-spacing: .16em;
      color: var(--gold);
      display: block;
      margin-bottom: 16px
  }

  .pil h3 {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-size: 22px;
      line-height: 1.22;
      margin-bottom: 14px
  }

  .pil ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px
  }

  .pil li {
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.45;
      padding-left: 17px;
      position: relative
  }

  .pil li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold-soft)
  }

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

  /* ---- FORMAT SHIFT block ---- */
  .fmt {
      margin-top: 44px;
      border: 1px solid var(--hairline);
      background: var(--bone);
      border-radius: 5px;
      padding: 34px 34px 30px;
      max-width: 860px
  }

  .fmt__tag {
      display: inline-block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--gold);
      padding: 5px 11px;
      border-radius: 2px;
      margin-bottom: 16px
  }

  .fmt h3 {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-size: clamp(21px, 2.3vw, 27px);
      line-height: 1.2;
      margin-bottom: 24px
  }

  .fmt__two {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
  }

  .fmt__col {
      border: 1px solid var(--hairline);
      border-radius: 4px;
      padding: 20px 22px;
      background: var(--bone-dim);
      transition: transform .35s cubic-bezier(.2, .7, .3, 1), border-color .35s, box-shadow .35s
  }

  .fmt__col:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 44px -30px rgba(11, 10, 8, .4)
  }

  .fmt__col--now {
      border-color: rgba(194, 155, 60, .55);
      background: rgba(194, 155, 60, .1)
  }

  .fmt__k {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 9px
  }

  .fmt__col--now .fmt__k {
      color: var(--gold-deep)
  }

  .fmt__col p {
      font-size: 16px;
      line-height: 1.45;
      color: var(--muted)
  }

  .fmt__col--now p {
      color: var(--ink);
      font-weight: 500
  }

  .fmt__punch {
      margin-top: 22px;
      padding-top: 20px;
      border-top: 1px solid var(--hairline);
      font-size: 16.5px;
      color: var(--muted);
      line-height: 1.55
  }

  .fmt__punch b {
      color: var(--ink)
  }

  @media(max-width:640px) {
      .fmt {
          padding: 26px 20px
      }

      .fmt__two {
          grid-template-columns: 1fr
      }
  }

  .solnote {
      margin-top: 44px;
      border-left: 2px solid var(--gold);
      padding: 6px 0 6px 26px;
      max-width: 700px
  }

  .solnote p {
      font-family: 'Fraunces', serif;
      font-size: clamp(19px, 2.1vw, 25px);
      line-height: 1.36;
      color: var(--ink)
  }

  .solnote span {
      display: block;
      margin-top: 12px;
      font-size: 15px;
      color: var(--muted);
      font-family: 'Inter', sans-serif
  }

  /* ================= 03 · PROOF ================= */
  .proof {
      background: var(--bone)
  }

  .bigstat {
      margin-top: 44px;
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 0;
      border: 1px solid var(--hairline);
      background: var(--bone-dim)
  }

  .bigstat__l {
      padding: 52px 44px;
      background: var(--ink);
      color: var(--bone);
      position: relative;
      overflow: hidden
  }

  .bigstat__l::before {
      content: "";
      position: absolute;
      top: -40%;
      left: -20%;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(194, 155, 60, .22), transparent 62%);
      filter: blur(30px)
  }

  .bigstat__n {
      position: relative;
      font-family: 'Fraunces', serif;
      font-size: clamp(58px, 8vw, 96px);
      line-height: .94;
      color: var(--gold);
      letter-spacing: -.02em
  }

  .bigstat__k {
      position: relative;
      margin-top: 16px;
      font-size: 19px;
      color: var(--bone);
      font-weight: 500
  }

  .bigstat__s {
      position: relative;
      margin-top: 10px;
      font-size: 15px;
      color: rgba(250, 248, 243, .6);
      line-height: 1.5
  }

  .bigstat__r {
      display: grid;
      grid-template-rows: repeat(3, 1fr)
  }

  .bscell {
      padding: 26px 34px;
      border-bottom: 1px solid var(--hairline);
      display: flex;
      align-items: center;
      gap: 20px;
      transition: background .3s
  }

  .bscell:last-child {
      border-bottom: none
  }

  .bscell:hover {
      background: #fff
  }

  .bscell .n {
      font-family: 'Fraunces', serif;
      font-size: 34px;
      color: var(--ink);
      line-height: 1;
      min-width: 118px
  }

  .bscell .n span {
      color: var(--gold)
  }

  .bscell .l {
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.4
  }

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

      .bigstat__l {
          padding: 40px 26px
      }

      .bscell {
          padding: 22px 18px
      }

      .bscell .n {
          font-size: 28px;
          min-width: 96px
      }

      .plan{
        padding: 34px 20px 34px!important;
      }

      .cva{
        padding: 34px 20px !important;
      }

      .tut__body{
            padding: 26px 20px 28px !important;
      }
  }


  .quotes {
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
  }

  .q {
      border: 1px solid var(--hairline);
      background: var(--bone-dim);
      border-radius: 4px;
      padding: 28px 26px 24px;
      transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s, background .35s
  }

  .q:hover {
      transform: translateY(-5px);
      background: #fff;
      box-shadow: 0 28px 54px -32px rgba(11, 10, 8, .4)
  }

  .proof__lead {
      margin-top: 56px;
      font-family: 'Fraunces', serif;
      font-size: clamp(20px, 2.2vw, 26px);
      color: var(--ink)
  }

  .q__mark {
      font-family: 'Fraunces', serif;
      font-size: 44px;
      color: var(--gold);
      line-height: .6;
      display: block;
      margin-bottom: 14px
  }

  .q__t {
      font-size: 16.5px;
      line-height: 1.56;
      color: var(--ink)
  }

  .q__by {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--hairline);
      font-size: 14px;
      color: var(--muted)
  }

  .q__by b {
      display: block;
      color: var(--ink);
      font-weight: 600;
      font-size: 15px
  }

  /* ---- MARQUEE: row 1 drifts left, row 2 drifts right ----
     Each track holds its cards TWICE. translateX(-50%) then lands exactly on
     the duplicate, so the loop is seamless. Cards use margin-right, not gap,
     or the seam drifts by one gap width. Pauses on hover so quotes stay readable. */
  .mq {
      overflow: hidden;
      position: relative;
      margin-top: 26px;
      --mqfade: var(--bone)
  }

  .mq::before,
  .mq::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 3;
      pointer-events: none
  }

  .mq::before {
      left: 0;
      background: linear-gradient(90deg, var(--mqfade), transparent)
  }

  .mq::after {
      right: 0;
      background: linear-gradient(270deg, var(--mqfade), transparent)
  }

  .mq__track {
      display: flex;
      width: max-content;
      animation: mqL 58s linear infinite
  }

  .mq--rev .mq__track {
      animation-name: mqR
  }

  .mq:hover .mq__track,
  .mq:focus-within .mq__track {
      animation-play-state: paused
  }

  @keyframes mqL {
      from {
          transform: translateX(0)
      }

      to {
          transform: translateX(-50%)
      }
  }

  @keyframes mqR {
      from {
          transform: translateX(-50%)
      }

      to {
          transform: translateX(0)
      }
  }

  .mq .q {
      width: 352px;
      flex: 0 0 352px;
      margin-right: 20px
  }

  @media(max-width:640px) {
      .mq .q {
          width: 270px;
          flex: 0 0 270px
      }

      .mq::before,
      .mq::after {
          width: 52px
      }
  }

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

  .fill {
      background: rgba(179, 64, 46, .09);
      border: 1px dashed rgba(179, 64, 46, .5);
      color: #8A2E20;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 3px 7px;
      border-radius: 2px;
      display: inline-block;
      margin-bottom: 10px
  }

  /* ================= 04 · STACKED OFFER ================= */
  .stack {
      background: var(--ink);
      color: var(--bone)
  }

  .stack h2 {
      color: var(--bone)
  }

  .stack__sub {
      margin-top: 20px;
      font-size: 17.5px;
      color: rgba(250, 248, 243, .66);
      max-width: 640px
  }

  /* ONE BOX PER LINE. Do not put these side by side — in a two-column grid
     the eye zig-zags and readers skip half the list. Single column means
     every item gets read. */
  .stk {
      margin-top: 46px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      max-width: 900px
  }

  .stk__row {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 18px;
      align-items: flex-start;
      padding: 24px 26px;
      border: 1px solid var(--hairline-inv);
      border-radius: 4px;
      background: rgba(250, 248, 243, .022);
      position: relative;
      overflow: hidden;
      transition: transform .4s cubic-bezier(.2, .7, .3, 1), border-color .4s, background .4s, box-shadow .4s
  }

  .stk__row::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .45s cubic-bezier(.2, .7, .3, 1)
  }

  .stk__row:hover {
      transform: translateY(-4px);
      border-color: rgba(194, 155, 60, .5);
      background: rgba(194, 155, 60, .06);
      box-shadow: 0 30px 56px -34px rgba(0, 0, 0, .9)
  }

  .stk__row:hover::after {
      transform: scaleY(1)
  }

  /* the glow behind each number — always on, brighter on hover */
  .stk__i {
      position: relative;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(194, 155, 60, .45);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
      font-weight: 500;
      color: var(--gold-soft);
      background: rgba(194, 155, 60, .08);
      transition: background .4s, color .4s, border-color .4s, transform .45s cubic-bezier(.2, .7, .3, 1)
  }

  .stk__i::before {
      content: "";
      position: absolute;
      inset: -18px;
      border-radius: 50%;
      z-index: -1;
      background: radial-gradient(circle, rgba(194, 155, 60, .85), rgba(194, 155, 60, .28) 45%, transparent 70%);
      filter: blur(11px);
      opacity: .9;
      transition: opacity .45s, transform .45s;
      animation: glowpulse 4.6s ease-in-out infinite
  }

  .stk__row:nth-child(even) .stk__i::before {
      animation-delay: 2.3s
  }

  @keyframes glowpulse {

      0%,
      100% {
          opacity: .62;
          transform: scale(1)
      }

      50% {
          opacity: 1;
          transform: scale(1.1)
      }
  }

  .stk__row:hover .stk__i {
      background: var(--gold);
      color: var(--ink);
      border-color: var(--gold);
      transform: scale(1.06)
  }

  .stk__row:hover .stk__i::before {
      opacity: 1;
      transform: scale(1.22)
  }

  .stk__t b {
      display: block;
      font-size: 17px;
      font-weight: 600;
      color: var(--bone);
      line-height: 1.3;
      transition: color .3s
  }

  .stk__t span {
      display: block;
      font-size: 15px;
      color: rgba(250, 248, 243, .6);
      margin-top: 5px;
      line-height: 1.45;
      transition: color .3s
  }

  .stk__row:hover .stk__t span {
      color: rgba(250, 248, 243, .82)
  }

  @media(max-width:640px) {
      .stk__row {
          grid-template-columns: 42px 1fr;
          gap: 14px;
          padding: 19px 18px
      }

      .stk__i {
          width: 38px;
          height: 38px;
          font-size: 12px
      }

      .stk__t b {
          font-size: 16px
      }

      .stk__t span {
          font-size: 14.5px
      }
  }

  /* ================= 05 · PRICING ================= */
  .plans {
      background: var(--bone-2)
  }

  .plans__sub {
      margin-top: 20px;
      font-size: 18px;
      color: var(--muted);
      max-width: 620px
  }

  /* headline left, the same enrolment card as the hero on the right —
     the countdown is in view at the exact moment the reader sees the prices */
  .plans__top {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
      align-items: start
  }

  .urgcard {
      background: var(--ink);
      border: 1px solid rgba(194, 155, 60, .4);
      border-radius: 5px;
      padding: 24px 24px 26px;
      box-shadow: 0 34px 64px -40px rgba(11, 10, 8, .6)
  }

  @media(max-width:1000px) {
      .plans__top {
          grid-template-columns: 1fr;
          gap: 34px
      }

      .urgcard {
          max-width: 420px
      }
  }

  .plan-grid {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: stretch
  }

  .plan {
      border: 1px solid var(--hairline);
      border-radius: 5px;
      padding: 34px 30px 34px;
      background: var(--bone);
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform .4s cubic-bezier(.2, .7, .3, 1), box-shadow .4s, border-color .4s
  }

  .plan:hover {
      transform: translateY(-7px);
      box-shadow: 0 40px 76px -42px rgba(11, 10, 8, .45);
      border-color: rgba(194, 155, 60, .55)
  }

  .plan--dark {
      background: var(--ink);
      color: var(--bone);
      border-color: var(--gold)
  }

  .plan--dark::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 5px;
      background: radial-gradient(circle at 78% 0%, rgba(194, 155, 60, .17), transparent 58%);
      pointer-events: none
  }

  .plan__flag {
      position: absolute;
      top: -11px;
      left: 30px;
      background: var(--gold);
      color: var(--ink);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10.5px;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 2px;
      font-weight: 500
  }

  /* TIER NAME — this is the label doctors say out loud on a sales call.
     It is the loudest thing on the card after the price. Do not shrink it. */
  .plan__tier {
      position: relative;
      display: inline-block;
      font-family: 'Fraunces', serif;
      font-size: 27px;
      line-height: 1;
      letter-spacing: -.01em;
      color: var(--ink);
      background: var(--gold);
      padding: 9px 16px 11px;
      border-radius: 3px;
      margin-bottom: 16px
  }

  .plan--dark .plan__tier {
      background: var(--gold);
      color: var(--ink)
  }

  .plan--elite .plan__tier {
      background: var(--elite);
      color: var(--elite-deep)
  }

  .plan__name {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-size: 21px;
      line-height: 1.25;
      margin-bottom: 14px;
      position: relative;
      color: var(--muted)
  }

  .plan--dark .plan__name {
      color: rgba(250, 248, 243, .8)
  }

  .plan--elite .plan__name {
      color: rgba(191, 220, 232, .82)
  }

  /* HOURS — the line the whole choice turns on. Given its own chip. */
  .plan__who {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15.5px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.35;
      margin-bottom: 20px;
      border: 1px solid rgba(194, 155, 60, .42);
      background: rgba(194, 155, 60, .13);
      border-radius: 3px;
      padding: 12px 15px
  }

  .plan__who svg {
      flex: 0 0 18px;
      width: 18px;
      height: 18px;
      stroke: var(--gold-deep)
  }

  .plan--dark .plan__who {
      color: var(--bone);
      border-color: rgba(194, 155, 60, .5);
      background: rgba(194, 155, 60, .16)
  }

  .plan--dark .plan__who svg {
      stroke: var(--gold-soft)
  }

  .plan--elite .plan__who {
      color: var(--bone);
      border-color: rgba(143, 182, 201, .45);
      background: rgba(143, 182, 201, .14)
  }

  .plan--elite .plan__who svg {
      stroke: var(--elite-soft)
  }

  /* ELITE — its own colour world */
  .plan--elite {
      background: var(--elite-bg);
      color: var(--bone);
      border-color: rgba(143, 182, 201, .5)
  }

  .plan--elite::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 5px;
      pointer-events: none;
      background: radial-gradient(circle at 78% 0%, rgba(143, 182, 201, .16), transparent 58%)
  }

  .plan--elite:hover {
      border-color: var(--elite);
      box-shadow: 0 40px 76px -40px rgba(16, 28, 36, .75)
  }

  .plan--elite .plan__price .now {
      color: var(--elite-soft)
  }

  .plan--elite .plan__price {
      border-bottom-color: rgba(143, 182, 201, .24)
  }

  .plan--elite .plan__price .per,
  .plan--elite .plan__access {
      color: rgba(250, 248, 243, .7)
  }

  .plan--elite .plan__access b {
      color: var(--elite-soft)
  }

  .plan--elite .plan__feats li {
      color: rgba(250, 248, 243, .78)
  }

  .plan--elite .plan__feats .d {
      color: var(--elite)
  }

  .plan--elite .plan__feats b {
      color: var(--bone)
  }

  .plan--elite .plan__gate {
      border-top-color: rgba(143, 182, 201, .24);
      color: rgba(250, 248, 243, .66)
  }

  .plan--elite .plan__gate b {
      color: var(--elite-soft)
  }

  .plan__btn--elite {
      background: var(--elite);
      color: var(--elite-deep)
  }

  .plan__btn--elite:hover {
      background: var(--elite-soft);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px -12px rgba(143, 182, 201, .65)
  }

  .plan__price {
      display: flex;
      align-items: baseline;
      gap: 10px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--hairline);
      margin-bottom: 18px;
      position: relative
  }

  .plan--dark .plan__price {
      border-bottom-color: var(--hairline-inv)
  }

  .plan__price .now {
      font-family: 'Fraunces', serif;
      font-size: 44px;
      line-height: 1;
      letter-spacing: -.02em
  }

  .plan--dark .plan__price .now {
      color: var(--gold)
  }

  .plan__price .per {
      font-size: 14px;
      color: var(--muted)
  }

  .plan--dark .plan__price .per {
      color: rgba(250, 248, 243, .5)
  }

  .plan__access {
      font-size: 14.5px;
      line-height: 1.5;
      color: var(--muted);
      margin-bottom: 20px;
      position: relative
  }

  .plan--dark .plan__access {
      color: rgba(250, 248, 243, .72)
  }

  .plan__access b {
      color: var(--ink)
  }

  .plan--dark .plan__access b {
      color: var(--gold-soft)
  }

  .plan__feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 26px;
      position: relative
  }

  .plan__feats li {
      display: flex;
      gap: 11px;
      font-size: 15px;
      line-height: 1.45;
      color: var(--muted)
  }

  .plan--dark .plan__feats li {
      color: rgba(250, 248, 243, .78)
  }

  .plan__feats .d {
      color: var(--gold);
      flex: 0 0 auto
  }

  .plan__feats b {
      color: var(--ink);
      font-weight: 600
  }

  .plan--dark .plan__feats b {
      color: var(--bone)
  }

  .plan__cta {
      margin-top: auto;
      position: relative
  }

  .plan__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 16px 20px;
      border-radius: 2px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15.5px;
      transition: transform .25s, box-shadow .25s, background .2s
  }

  .plan__btn--gold {
      background: var(--gold);
      color: var(--ink)
  }

  .plan__btn--gold:hover {
      background: var(--gold-soft);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px -12px rgba(194, 155, 60, .8)
  }

  .plan__btn--ink {
      background: var(--ink);
      color: var(--bone)
  }

  .plan__btn--ink:hover {
      background: var(--ink-soft);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px -14px rgba(11, 10, 8, .7)
  }

  .plan__btn--line {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--ink)
  }

  .plan__btn--line:hover {
      background: var(--ink);
      color: var(--bone);
      transform: translateY(-2px)
  }

  .plan__btn .arw {
      transition: transform .28s
  }

  .plan__btn:hover .arw {
      transform: translateX(4px)
  }

  .plan__call {
      display: block;
      text-align: center;
      margin-top: 13px;
      font-size: 14px;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s
  }

  .plan__call:hover {
      color: var(--gold)
  }

  .plan--dark .plan__call {
      color: rgba(250, 248, 243, .55)
  }

  .plan__gate {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--hairline);
      font-size: 13.5px;
      color: var(--muted);
      position: relative;
      line-height: 1.5
  }

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

  .cva {
      margin-top: 52px;
      border: 1px solid var(--hairline);
      background: var(--bone);
      border-radius: 5px;
      padding: 34px 32px
  }

  .cva h3 {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-size: 23px;
      margin-bottom: 14px
  }

  .cva__lead {
      font-size: 16px;
      color: var(--muted);
      max-width: 720px;
      margin-bottom: 26px
  }

  .cva__row {
      margin-bottom: 22px
  }

  .cva__row:last-child {
      margin-bottom: 0
  }

  .cva__hd {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11.5px;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 10px
  }

  .cva__bar {
      display: flex;
      height: 42px;
      border-radius: 3px;
      overflow: hidden;
      border: 1px solid var(--hairline)
  }

  .cva__seg {
      display: flex;
      align-items: center;
      padding: 0 16px;
      font-size: 13.5px;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis
  }

  .cva__seg.live {
      background: var(--ink);
      color: var(--bone);
      flex: 0 0 46%
  }

  .cva__seg.rec {
      background: rgba(194, 155, 60, .2);
      color: var(--ink);
      flex: 1
  }

  .cva__bar.s .cva__seg.live {
      flex: 0 0 66%
  }

  .cva__bar.e .cva__seg.live {
      flex: 0 0 56%
  }

  @media(max-width:640px) {
      .cva__seg {
          font-size: 11.5px;
          padding: 0 10px
      }
  }

  /* ================= 06 · TUTORS ================= */
  .tutors {
      background: var(--bone)
  }

  .tutors__sub {
      margin-top: 20px;
      font-size: 18px;
      color: var(--muted);
      max-width: 640px
  }

  .tutgrid {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
  }

  .tut {
      border: 1px solid var(--hairline);
      border-radius: 5px;
      overflow: hidden;
      background: var(--bone-dim);
      display: flex;
      flex-direction: column;
      transition: transform .4s cubic-bezier(.2, .7, .3, 1), box-shadow .4s, border-color .4s
  }

  .tut:hover {
      transform: translateY(-6px);
      box-shadow: 0 38px 70px -40px rgba(11, 10, 8, .45);
      border-color: rgba(194, 155, 60, .5)
  }

  .tut__photo {
      aspect-ratio: 1/1;
      background: linear-gradient(150deg, var(--ink-soft), var(--ink));
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center
  }

  .tut__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      transition: transform .7s cubic-bezier(.2, .7, .3, 1)
  }

  .tut:hover .tut__photo img {
      transform: scale(1.05)
  }

  .tut__photo::after {
      content: attr(data-init);
      font-family: 'Fraunces', serif;
      font-size: 56px;
      color: rgba(194, 155, 60, .4)
  }

  .tut__photo:has(img)::after {
      display: none
  }

  .tut__flag {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: linear-gradient(0deg, rgba(11, 10, 8, .9), transparent);
      color: var(--bone);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: .13em;
      text-transform: uppercase;
      padding: 26px 18px 13px
  }

  .tut__body {
      padding: 26px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1
  }

  .tut__role {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 9px
  }

  .tut__name {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-size: 25px;
      line-height: 1.15;
      margin-bottom: 12px
  }

  .tut__line {
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 16px
  }

  .tut__creds {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: auto
  }

  .tut__creds li {
      font-size: 14.5px;
      color: var(--muted);
      line-height: 1.42;
      padding-left: 16px;
      position: relative
  }

  .tut__creds li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold)
  }

  .tut__creds li strong {
      color: var(--ink)
  }

  .tut__social {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--hairline);
      display: flex;
      gap: 22px;
      flex-wrap: wrap
  }

  .tut__social .n {
      display: block;
      font-family: 'Fraunces', serif;
      font-size: 20px;
      color: var(--gold)
  }

  .tut__social .l {
      display: block;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.3
  }

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

  /* ================= 07 · FAQ =================
     Two jobs: kill the last objections, and feed the FAQPage schema.
     ⚠ IF YOU EDIT A QUESTION OR ANSWER HERE, EDIT THE FAQPage JSON-LD TO MATCH.
     Google treats schema that does not match visible text as a manual-action risk. */
  .faq {
      background: var(--bone-2)
  }

  .acc {
      margin-top: 44px;
      max-width: 880px;
      border-top: 1px solid var(--hairline)
  }

  .acc-item {
      border-bottom: 1px solid var(--hairline)
  }

  .acc-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 24px 44px 24px 0;
      font-size: 17.5px;
      font-weight: 600;
      color: var(--ink);
      position: relative;
      line-height: 1.4;
      transition: color .25s
  }

  .acc-q:hover {
      color: var(--gold-deep)
  }

  .acc-q::after,
  .acc-q::before {
      content: "";
      position: absolute;
      right: 6px;
      top: 50%;
      background: var(--gold);
      transition: transform .38s cubic-bezier(.2, .7, .3, 1), opacity .3s
  }

  .acc-q::before {
      width: 15px;
      height: 2px;
      transform: translateY(-50%)
  }

  .acc-q::after {
      width: 2px;
      height: 15px;
      transform: translate(6.5px, -50%)
  }

  .acc-item.open .acc-q::after {
      transform: translate(6.5px, -50%) rotate(90deg);
      opacity: 0
  }

  .acc-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s cubic-bezier(.2, .7, .3, 1)
  }

  .acc-a>div {
      padding: 0 60px 26px 0
  }

  .acc-a p {
      font-size: 16.5px;
      color: var(--muted);
      line-height: 1.6
  }

  .acc-a p+p {
      margin-top: 12px
  }

  .acc-a b {
      color: var(--ink)
  }

  @media(max-width:640px) {
      .acc-q {
          font-size: 16.5px;
          padding-right: 36px
      }

      .acc-a>div {
          padding-right: 20px
      }
  }

  /* ================= 08 · FINAL ================= */
  .final {
      background: var(--ink);
      color: var(--bone);
      text-align: center;
      overflow: hidden;
      position: relative
  }

  .final__halo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 900px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(194, 155, 60, .15), transparent 62%);
      filter: blur(44px);
      pointer-events: none;
      animation: breathe 12s ease-in-out infinite
  }

  .final h2 {
      color: var(--bone);
      margin: 0 auto;
      max-width: 820px;
      position: relative
  }

  .final>.wrap>p {
      margin: 24px auto 0;
      max-width: 620px;
      font-size: 18px;
      color: rgba(250, 248, 243, .68);
      position: relative
  }

  .final-actions {
      margin-top: 38px;
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative
  }

  .final-micro {
      margin-top: 26px;
      font-size: 14.5px;
      color: rgba(250, 248, 243, .46);
      position: relative
  }

  footer {
      background: var(--ink);
      color: rgba(250, 248, 243, .5);
      border-top: 1px solid var(--hairline-inv);
      padding: 38px 0;
      font-size: 14px
  }

  footer .wrap {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      flex-wrap: wrap;
      align-items: center
  }

  /* ---------- STICKY MOBILE CTA ---------- */
  .mcta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 99;
      background: rgba(11, 10, 8, .96);
      backdrop-filter: blur(14px);
      border-top: 1px solid var(--hairline-inv);
      padding: 11px 16px;
      display: none;
      align-items: center;
      gap: 12px;
      transform: translateY(110%);
      transition: transform .45s cubic-bezier(.2, .7, .3, 1)
  }

  .mcta.show {
      transform: none
  }

  .mcta__l {
      flex: 1;
      min-width: 0
  }

  .mcta__l b {
      display: block;
      color: var(--bone);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.2
  }

  .mcta__l span {
      display: block;
      color: var(--danger-soft);
      font-size: 12px;
      margin-top: 2px
  }

  .mcta a {
      background: var(--gold);
      color: var(--ink);
      text-decoration: none;
      font-weight: 700;
      font-size: 14.5px;
      padding: 13px 20px;
      border-radius: 2px;
      white-space: nowrap
  }

  @media(max-width:760px) {
      .mcta {
          display: flex
      }

    
  }

  @media(prefers-reduced-motion:reduce) {
      * {
          animation: none !important;
          transition-duration: .01ms !important
      }

      html {
          scroll-behavior: auto
      }
  }

  
 /* ============================ HEADER ============================ */
header {
    position: fixed;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
    padding: 15px 0;
    background: var(--ink);
    
}

header.scrolled {
    background: var(--ink);
    box-shadow: 0 1px 0 var(--line-ink);
    padding: 15px 0
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bone);
    
}

.brand .mark {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--bone);
    object-fit: cover;
    padding: 2px
}

.brand .word {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .01em;
    color: var(--bone)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    color: var(--bone);
    font-size: 15px;
    font-weight: 500;
    opacity: .85;
    transition: opacity .2s, color .2s;
    position: relative
}

.nav-links a:not(.nav-box)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .25s var(--ease)
}

.nav-links a:not(.nav-box):hover {
    opacity: 1;
    color: var(--gold-soft)
}

.nav-links a:not(.nav-box):hover::after {
    width: 100%
}

.nav-box {
    border: 1px solid var(--gold);
    border-radius: 2px;
    padding: 9px 18px;
    opacity: 1 !important;
    transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease)
}

.nav-box:hover {
    background: var(--gold);
    color: var(--ink) !important;
    transform: translateY(-2px)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--bone);
    transition: .3s
}

.mobile-menu {
    display: none
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center
}

.nav-item>button {
    font-size: 15px;
    font-weight: 500;
    color: var(--bone);
    opacity: .85;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: opacity .2s, color .2s;
    background:none;
    border: none;
}

.nav-item.has-drop>button::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .25s
}

.nav-item.has-drop:hover>button {
    opacity: 1;
    color: var(--gold-soft)
}

.nav-item.has-drop:hover>button::after {
    transform: rotate(-135deg);
    margin-top: 2px
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: var(--ink);
    border: 1px solid var(--line-ink);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 22px 44px -22px rgba(0, 0, 0, .75);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    z-index: 120
}

.nav-item.has-drop:hover .dropdown,
.nav-item.has-drop:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: 5px;
    font-size: 14.5px;
    white-space: nowrap
}

.dropdown a::after {
    display: none !important
}

.dropdown a:hover {
    background: rgba(194, 155, 60, .12)
}

.mobile-menu .m-group {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--gold-soft);
    padding: 18px 0 4px
}

.mobile-menu .m-sub {
    display: block;
    color: var(--bone);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    padding: 11px 0 11px 20px;
    border-bottom: 1px solid var(--line-ink);
    opacity: .9
}

@media(max-width:759px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex;
        border:none;
        background: none;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--ink);
        z-index: 99;
        transform: translateY(-100%);
        transition: transform .4s var(--ease);
        padding: 90px 32px 32px;
        overflow: auto;
    }

    .mobile-menu.open {
        transform: translateY(0)
    }

    .mobile-menu a {
        display: block;
        color: var(--bone);
        font-family: 'Fraunces', serif;
        font-size: 1.6rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--line-ink)
    }

}

 a{
    text-decoration: none;
 }
