
    /* ═══════════════════════════════
       TOKENS
    ═══════════════════════════════ */
    :root {
      --teal:       #0D4F4F;
      --teal-mid:   #0a3d3d;
      --teal-soft:  rgba(13,79,79,.07);
      --gold:       #C89632;
      --gold-lt:    #d9aa48;
      --gold-soft:  rgba(200,150,50,.12);
      --cream:      #FAF7F0;
      --cream-2:    #F2EDE3;
      --white:      #FFFFFF;
      --dark:       #111111;
      --dark-2:     #1C1F26;
      --text:       #1E1E1E;
      --text-2:     #4A4A4A;
      --text-3:     #8A8A8A;
      --line:       #E5DFD3;
      --line-dark:  rgba(255,255,255,.1);
      --f-serif:    'Cormorant Garamond', Georgia, serif;
      --f-sans:     'Inter', sans-serif;
      --r:          8px;
      --r-lg:       14px;
      --sh:         0 1px 3px rgba(0,0,0,.04), 0 4px 20px rgba(0,0,0,.06);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: var(--f-sans); color: var(--text); background: var(--white); line-height: 1.65; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ═══════════════════════════════
       ACCESSIBILITY
    ═══════════════════════════════ */
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    /* ═══════════════════════════════
       TICKER
    ═══════════════════════════════ */
    .ticker-wrap {
      width: 100%;
      background: #111111;
      overflow: hidden;
      height: 34px;
      display: flex;
      align-items: center;
    }
    .ticker-track {
      display: flex;
      align-items: center;
      gap: 14px;
      white-space: nowrap;
      animation: ticker-scroll 46.5s linear infinite;
    }
    .ticker-track span {
      font-family: var(--f-sans);
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .ticker-track .ticker-sep {
      font-size: 9px;
      opacity: .55;
    }
    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ═══════════════════════════════
       NAV
    ═══════════════════════════════ */
    nav {
      position: sticky; top: 0; z-index: 200;
      height: 62px;
      background: var(--white);
      border-bottom: 1px solid var(--line);
      display: flex; align-items: center;
      padding: 0 48px; gap: 36px;
    }
    .nav-brand {
      display: flex; align-items: center; gap: 10px;
      cursor: pointer; margin-right: auto; flex-shrink: 0;
    }
    .nav-brand img { height: 44px; width: auto; }
    .nav-brand-name {
      font-family: var(--f-serif);
      font-size: 17px; font-weight: 600;
      color: var(--teal); letter-spacing: .02em;
    }
    .nav-links { display: flex; gap: 2px; align-items: center; }
    .nav-links a {
      padding: 6px 13px; border-radius: 6px;
      font-size: 13.5px; font-weight: 400;
      color: var(--text-3);
      transition: all .15s;
    }
    .nav-links a:hover  { color: var(--teal); background: var(--teal-soft); }
    .nav-links a.active { color: var(--teal); font-weight: 500; }

    /* ═══════════════════════════════
       BUTTONS
    ═══════════════════════════════ */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 28px; border-radius: var(--r);
      font-size: 14px; font-weight: 500;
      cursor: pointer; border: none; font-family: var(--f-sans);
      transition: all .18s; letter-spacing: .01em;
    }
    .btn-gold     { background: var(--gold); color: var(--white); }
    .btn-gold:hover     { background: var(--gold-lt); transform: translateY(-1px); }
    .btn-outline-inv { background: transparent; border: 1.5px solid var(--line-dark); color: rgba(255,255,255,.75); }
    .btn-outline-inv:hover { border-color: rgba(255,255,255,.4); color: var(--white); }

    /* ═══════════════════════════════
       SHARED LAYOUT
    ═══════════════════════════════ */
    .wrap    { max-width: 1080px; margin: 0 auto; padding: 0 48px; }
    .section    { padding: 96px 48px; }
    .section-sm { padding: 64px 48px; }

    .eyebrow {
      font-size: 11px; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .eyebrow::before {
      content: ''; width: 20px; height: 1.5px;
      background: var(--gold); flex-shrink: 0;
    }

    h2.section-title-inv {
      font-family: var(--f-serif);
      font-size: clamp(38px, 5.5vw, 70px);
      font-weight: 300; line-height: 1.08;
      letter-spacing: -.02em; color: var(--white);
    }
    h2.section-title-inv em { font-style: italic; color: rgba(200,150,50,.9); }

    /* ═══════════════════════════════
       HOME — OBJECTIONS
    ═══════════════════════════════ */
    .pain-section {
      background: var(--cream-2);
      padding: 72px 48px;
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .pain-card {
      background: #fff;
      border-radius: 12px;
      padding: 32px 28px;
      border-left: 4px solid var(--gold);
    }
    .pain-q {
      font-family: var(--f-serif);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--teal);
      margin-bottom: 16px;
      line-height: 1.4;
    }
    .pain-a {
      font-family: var(--f-sans);
      font-size: 0.95rem;
      color: #4a4a4a;
      line-height: 1.7;
    }
    @media(max-width:768px){
      .pain-grid { grid-template-columns: 1fr; }
      .pain-section { padding: 48px 24px; }
    }

    /* ═══════════════════════════════
       HOME — PHILOSOPHY BRIDGE
    ═══════════════════════════════ */
    .philosophy-bridge {
      background: var(--white);
      padding: 72px 48px;
      text-align: center;
    }
    .philosophy-bridge-inner { max-width: 760px; margin: 0 auto; }
    .philosophy-bridge-quote {
      font-family: var(--f-serif);
      font-weight: 600;
      font-size: 42px;
      line-height: 1.45;
      letter-spacing: normal;
      color: var(--text);
      margin: 0 0 40px;
    }
    .philosophy-bridge-quote .accent { color: var(--gold); }
    .philosophy-bridge-tagline {
      font-family: var(--f-serif);
      font-weight: 500;
      font-size: 30px;
      line-height: 1.3;
      color: var(--text);
      margin: 0 0 8px;
    }
    .philosophy-bridge-subtitle {
      font-family: var(--f-sans);
      font-weight: 400;
      font-size: 15px;
      color: var(--text-2);
      margin: 0;
    }
    @media (max-width: 900px) {
      .philosophy-bridge { padding: 56px 32px; }
      .philosophy-bridge-quote { font-size: 30px; }
      .philosophy-bridge-tagline { font-size: 26px; }
    }
    @media (max-width: 640px) {
      .philosophy-bridge { padding: 44px 24px; }
      .philosophy-bridge-quote { font-size: 26px; }
      .philosophy-bridge-tagline { font-size: 24px; }
    }

    /* ═══════════════════════════════
       HOME — HERO (v4, approved)
    ═══════════════════════════════ */
    .hero-new {
      background: var(--white);
      padding: 40px 0;
      text-align: center;
      border-bottom: 1px solid var(--line);
    }
    .hero-new-inner { max-width: none; margin: 0; }
    .hero-logo { width: 56%; height: auto; display: inline-block; margin: 0 auto; }

    /* ═══════════════════════════════
       HOME — METHOD
    ═══════════════════════════════ */
    .method-section {
      background: var(--dark);
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .method-inner {
      max-width: 1080px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center;
    }
    .method-eyebrow {
      font-size: 11px; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: rgba(200,150,50,.8); margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .method-eyebrow::before {
      content: ''; width: 20px; height: 1.5px;
      background: rgba(200,150,50,.8); flex-shrink: 0;
    }
    .method-left p {
      font-size: 16px; font-weight: 300;
      color: rgba(255,255,255,.7); line-height: 1.85;
      margin: 20px 0 36px;
    }
    .method-split {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
      border-radius: var(--r-lg); overflow: hidden;
    }
    .method-col {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      padding: 28px 24px;
    }
    .method-col-label {
      font-size: 10px; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .method-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .method-col ul li {
      font-size: 14px; color: rgba(255,255,255,.7); font-weight: 300;
      padding-left: 16px; position: relative;
    }
    .method-col ul li::before {
      content: '—'; position: absolute; left: 0;
      color: var(--gold); font-size: 11px; top: 2px;
    }
    .method-col.human { background: rgba(200,150,50,.06); border-color: rgba(200,150,50,.18); }
    .method-col.human .method-col-label { color: var(--gold); }

    /* ═══════════════════════════════
       HOME — AUDIENCE
    ═══════════════════════════════ */
    .audience-section {
      background: var(--teal);
      border-bottom: 1px solid rgba(255,255,255,.08);
      position: relative; overflow: hidden;
    }
    .audience-section::before {
      content: ''; position: absolute; right: -80px; top: -80px;
      width: 380px; height: 380px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,150,50,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .audience-head {
      text-align: center; margin-bottom: 52px; position: relative;
    }
    .audience-head .eyebrow-inv {
      font-size: 11px; font-weight: 600; letter-spacing: .16em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-bottom: 18px;
    }
    .audience-head .eyebrow-inv::before,
    .audience-head .eyebrow-inv::after {
      content: ''; width: 28px; height: 1.5px; background: var(--gold); flex-shrink: 0;
    }
    .audience-head h2 {
      font-family: var(--f-serif);
      font-size: clamp(36px, 5vw, 58px); font-weight: 300;
      color: var(--white); line-height: 1.1; letter-spacing: -.02em;
    }
    .audience-head h2 em { color: rgba(200,150,50,.9); font-style: italic; }
    .audience-inner {
      max-width: 1080px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    }
    .audience-col {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--r-lg); padding: 44px 40px;
      transition: background .2s;
    }
    .audience-col:hover { background: rgba(255,255,255,.08); }
    .audience-col.gold-col {
      border-color: rgba(200,150,50,.35);
      background: rgba(200,150,50,.07);
    }
    .audience-col.gold-col:hover { background: rgba(200,150,50,.12); }
    .audience-col h3 {
      font-family: var(--f-serif);
      font-size: 28px; font-weight: 400; color: var(--white);
      margin-bottom: 14px; line-height: 1.2;
    }
    .audience-col p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 22px; }

    /* ═══════════════════════════════
       PAGE HERO (inner pages)
    ═══════════════════════════════ */
    .page-hero {
      background: var(--cream);
      border-bottom: 1px solid var(--line);
      padding: 80px 48px;
    }
    .page-hero-inner { max-width: 640px; }
    .page-hero h1 {
      font-family: var(--f-serif);
      font-size: clamp(36px, 5.5vw, 60px);
      font-weight: 300; line-height: 1.08;
      letter-spacing: -.02em; color: var(--text);
      margin-bottom: 18px;
    }
    .page-hero h1 em { font-style: italic; color: var(--text-2); }
    .page-hero p { font-size: 16px; font-weight: 300; color: var(--text-2); line-height: 1.75; }

    /* ═══════════════════════════════
       ABOUT PAGE
    ═══════════════════════════════ */
    .prose-wrap { max-width: 680px; margin: 0 auto; }
    .prose-wrap h2 {
      font-family: var(--f-serif);
      font-size: 30px; font-weight: 300; color: var(--text);
      margin: 56px 0 18px;
      padding-top: 56px; border-top: 1px solid var(--line);
    }
    .prose-wrap h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
    .prose-wrap p {
      font-size: 15px; color: var(--text-2); line-height: 1.85; margin-bottom: 18px;
    }
    .prose-wrap p:last-child { margin-bottom: 0; }

    .philosophy-strip {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,.07);
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .philosophy-inner { max-width: 680px; margin: 0 auto; }
    .philosophy-inner p {
      font-size: 16px; font-weight: 300;
      color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 8px;
    }
    .philosophy-inner .p-final {
      font-family: var(--f-serif);
      font-size: 22px; font-style: italic; font-weight: 300;
      color: var(--gold); margin-top: 28px !important; line-height: 1.5;
    }

    /* ═══════════════════════════════
       COURSES PAGE
    ═══════════════════════════════ */
    .ws-layout {
      display: grid; grid-template-columns: 1.8fr 1fr;
      gap: 64px; align-items: start;
      max-width: 1080px; margin: 0 auto;
    }
    .ws-layout h2 {
      font-family: var(--f-serif);
      font-size: 28px; font-weight: 300; color: var(--text); margin-bottom: 18px;
    }
    .ws-layout p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
    .ws-spec-card {
      background: var(--white); border: 1px solid var(--line);
      border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh);
      position: sticky; top: 76px;
    }
    .ws-spec-header {
      background: var(--dark); padding: 28px 28px 24px;
      text-align: center; border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .ws-spec-header .spec-price {
      font-family: var(--f-serif);
      font-size: 52px; font-weight: 300; color: var(--white); line-height: 1;
    }
    .ws-spec-cta { padding: 20px 24px; }
    .ws-spec-cta .btn { width: 100%; justify-content: center; }

    .module-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
    .module-row { display: flex; gap: 14px; align-items: flex-start; }
    .module-n {
      font-size: 13px; font-weight: 600; color: var(--gold);
      min-width: 28px; font-family: var(--f-sans);
    }
    .module-body h3 {
      font-family: var(--f-sans);
      font-size: 14px; font-weight: 600; color: var(--text); margin: 0 0 2px;
    }
    .module-body p { font-size: 13px; color: var(--text-2); margin: 0; line-height: 1.5; }

    .course-tag {
      display: inline-block; padding: 4px 12px; border-radius: 20px;
      font-size: 10.5px; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
    }
    .tag-beginner { background: var(--gold-soft); color: var(--gold); }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      background: var(--dark); padding: 64px 48px 36px;
      border-top: 1px solid rgba(255,255,255,.05);
    }
    .footer-inner {
      max-width: 1080px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 56px; margin-bottom: 44px;
    }
    .footer-brand img { height: 26px; filter: brightness(0) invert(1); opacity: .7; margin-bottom: 12px; }
    .footer-brand .f-powered {
      font-size: 10px; font-weight: 500; letter-spacing: .1em;
      text-transform: uppercase; color: var(--gold); opacity: .7; margin-bottom: 14px;
    }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; }
    footer h4 {
      font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px;
    }
    footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    footer ul li a {
      font-size: 13.5px; color: rgba(255,255,255,.4);
      transition: color .15s; cursor: pointer;
    }
    footer ul li a:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1080px; margin: 0 auto;
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
      font-size: 11.5px; color: rgba(255,255,255,.2);
    }

    /* ═══════════════════════════════
       HAMBURGER MENU
    ═══════════════════════════════ */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px; margin-left: auto;
      background: none; border: none;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--teal); border-radius: 2px;
      transition: all .2s;
    }
    .mobile-menu {
      display: none; position: fixed; top: 62px; left: 0; right: 0;
      background: var(--white); border-bottom: 1px solid var(--line);
      padding: 16px 20px; z-index: 199; flex-direction: column; gap: 4px;
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      padding: 10px 14px; border-radius: 6px;
      font-size: 15px; color: var(--text-3);
      font-weight: 400; transition: all .15s;
    }
    .mobile-menu a:hover, .mobile-menu a.active { color: var(--teal); background: var(--teal-soft); }

    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .method-inner { grid-template-columns: 1fr; gap: 44px; }
      .method-split { grid-template-columns: 1fr; }
      .audience-inner { grid-template-columns: 1fr; }
      .audience-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
      .ws-layout { grid-template-columns: 1fr; }
      .ws-spec-card { position: static; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .section { padding: 64px 24px; }
      .section-sm { padding: 48px 24px; }
      .page-hero { padding: 56px 24px; }
      .wrap { padding: 0 24px; }
    }
