/* OmniForge HQ — Main Stylesheet */

/* ============================================================
       CSS CUSTOM PROPERTIES
    ============================================================ */
    :root {
      --color-bg:          #0D0F14;
      --color-surface:     #161A22;
      --color-surface-2:   #1C2030;
      --color-border:      #2E3240;
      --color-amber:       #F57C00;
      --color-amber-light: #FF9A2E;
      --color-amber-glow:  rgba(245, 124, 0, 0.18);
      --color-blue:        #3B82F6;
      --color-blue-dim:    rgba(59, 130, 246, 0.15);
      --color-text:        #F0F0EE;
      --color-text-2:      #9CA3AF;
      --color-text-3:      #5A6278;
      --font-display:      'Barlow Condensed', sans-serif;
      --font-label:        'Barlow', sans-serif;
      --font-body:         'DM Sans', sans-serif;
      --ease-out:          cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--color-bg);
      color: var(--color-text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Grain texture overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 128px 128px;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ============================================================
       TYPOGRAPHY UTILITIES
    ============================================================ */
    .eyebrow {
      font-family: var(--font-label);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-amber);
    }

    .section-headline {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.05;
      text-transform: uppercase;
      letter-spacing: 0.01em;
    }

    /* ============================================================
       SCROLL ANIMATION BASE
    ============================================================ */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }
    .fade-up.delay-3 { transition-delay: 0.3s; }
    .fade-up.delay-4 { transition-delay: 0.4s; }
    .fade-up.delay-5 { transition-delay: 0.5s; }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
    }
    #nav.scrolled {
      background: rgba(13, 15, 20, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 14px 0;
      border-bottom: 1px solid var(--color-border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .nav-logo span {
      color: var(--color-amber);
      font-size: 0.72em;
      letter-spacing: 0.06em;
      margin-left: 2px;
      vertical-align: super;
    }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-label);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-text-2);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--color-text); }
    .btn-nav {
      font-family: var(--font-label);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: var(--color-amber);
      color: #0D0F14;
      padding: 10px 20px;
      border-radius: 3px;
      white-space: nowrap;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .btn-nav:hover {
      background: var(--color-amber-light);
      box-shadow: 0 0 20px var(--color-amber-glow);
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-text);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--color-bg);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 2rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--color-text);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--color-amber); }
    .mobile-menu .btn-nav { font-size: 1rem; padding: 14px 32px; }
    .mobile-close {
      position: absolute;
      top: 24px; right: 24px;
      background: none;
      border: none;
      color: var(--color-text);
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
    }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 0 0 80px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 70% at 80% 50%, rgba(245, 124, 0, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    }
    /* Geometric grid lines */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(46, 50, 64, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 50, 64, 0.4) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: center;
      /* padding-top set by JS based on actual logo render height */
      padding-top: 52vw; /* fallback: 1024x1024 image at 100vw = 100vw tall, logo content ~52% down */
    }
    .hero-left .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      animation: fadeUp 0.8s var(--ease-out) 0.1s both;
    }
    .hero-left .eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: var(--color-amber);
    }
    .hero-headline {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      margin-bottom: 28px;
    }
    .hero-headline .line1 {
      display: block;
      animation: fadeUp 0.9s var(--ease-out) 0.2s both;
    }
    .hero-headline .line2 {
      display: block;
      color: var(--color-amber);
      animation: fadeUp 0.9s var(--ease-out) 0.35s both;
    }
    .hero-headline .line3 {
      display: block;
      animation: fadeUp 0.9s var(--ease-out) 0.45s both;
    }
    .hero-sub {
      font-size: 1.1rem;
      color: var(--color-text-2);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 40px;
      animation: fadeUp 0.9s var(--ease-out) 0.55s both;
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 28px;
      animation: fadeUp 0.9s var(--ease-out) 0.65s both;
    }
    .btn-primary {
      font-family: var(--font-label);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: var(--color-amber);
      color: #0D0F14;
      padding: 16px 28px;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover {
      background: var(--color-amber-light);
      box-shadow: 0 0 30px rgba(245, 124, 0, 0.45), 0 4px 16px rgba(245, 124, 0, 0.2);
      transform: translateY(-2px);
    }
    .btn-secondary {
      font-family: var(--font-label);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: transparent;
      color: var(--color-text);
      padding: 16px 28px;
      border-radius: 3px;
      border: 1px solid var(--color-border);
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, transform 0.2s;
      display: inline-block;
    }
    .btn-secondary:hover {
      border-color: var(--color-text-2);
      color: var(--color-text);
      transform: translateY(-2px);
    }
    .hero-social-proof {
      font-size: 13px;
      color: var(--color-text-2);
      display: flex;
      align-items: center;
      gap: 8px;
      animation: fadeUp 0.9s var(--ease-out) 0.75s both;
    }
    .stars { color: var(--color-amber); letter-spacing: 2px; }

    /* Hero right visual */
    .hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 480px;
      animation: fadeIn 1.2s var(--ease-out) 0.4s both;
    }
    .hero-bg-word {
      position: absolute;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(80px, 14vw, 160px);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(245, 124, 0, 0.06);
      line-height: 1;
      user-select: none;
      text-align: center;
    }
    /* SVG Roof geometric illustration */
    .hero-graphic {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 440px;
    }
    /* Floating stat badges */
    .stat-badges {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .stat-badge {
      position: absolute;
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-left: 3px solid var(--color-amber);
      padding: 12px 18px;
      border-radius: 4px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      pointer-events: none;
    }
    .stat-badge-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--color-amber);
      line-height: 1;
    }
    .stat-badge-label {
      font-size: 11px;
      color: var(--color-text-2);
      font-family: var(--font-label);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 2px;
    }
    .badge-1 { top: 10%; right: 0; animation: floatIn 0.9s var(--ease-out) 0.8s both; }
    .badge-2 { top: 44%; right: -20px; animation: floatIn 0.9s var(--ease-out) 1.0s both; }
    .badge-3 { bottom: 12%; right: 8%; animation: floatIn 0.9s var(--ease-out) 1.2s both; }

    .hero-content-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes floatIn {
      from { opacity: 0; transform: translateX(20px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ============================================================
       DIAGONAL DIVIDER
    ============================================================ */
    .clip-top {
      clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
      margin-top: -2%;
    }
    .clip-both {
      clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    }

    /* ============================================================
       PROBLEM / STAKES SECTION
    ============================================================ */
    #problem {
      background: var(--color-surface);
      padding: 100px 0 90px;
      position: relative;
    }
    #problem::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    }
    .problem-inner {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
    .problem-inner .eyebrow { margin-bottom: 20px; }
    .problem-inner .section-headline { margin-bottom: 28px; }
    .problem-body {
      font-size: 1.05rem;
      color: var(--color-text-2);
      line-height: 1.8;
      margin-bottom: 56px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .pain-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      text-align: left;
    }
    .pain-card {
      background: var(--color-surface-2);
      border: 1px solid var(--color-border);
      border-top: 3px solid var(--color-amber);
      padding: 28px 24px;
      border-radius: 4px;
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
    }
    .pain-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 24px var(--color-amber-glow);
    }
    .pain-icon {
      font-size: 2rem;
      margin-bottom: 16px;
      display: block;
    }
    .pain-card p {
      font-size: 1rem;
      color: var(--color-text-2);
      line-height: 1.6;
    }
    .pain-card strong {
      display: block;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--color-text);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 8px;
    }

    /* ============================================================
       HOW IT WORKS
    ============================================================ */
    #how-it-works {
      padding: 100px 0;
      background: var(--color-bg);
      position: relative;
      overflow: hidden;
    }
    .hiw-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .hiw-header .eyebrow { margin-bottom: 16px; }
    .hiw-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }
    .hiw-steps::before {
      content: '';
      position: absolute;
      left: 40px;
      top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--color-border) 15%, var(--color-border) 85%, transparent);
    }
    .hiw-step {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 32px;
      align-items: flex-start;
      padding: 32px 0;
    }
    .hiw-step + .hiw-step {
      border-top: 1px solid var(--color-border);
    }
    .step-num-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step-bg-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 7rem;
      color: rgba(245, 124, 0, 0.06);
      line-height: 1;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      user-select: none;
    }
    .step-circle {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--color-surface);
      border: 2px solid var(--color-amber);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--color-amber);
      position: relative;
      z-index: 1;
      box-shadow: 0 0 20px var(--color-amber-glow);
    }
    .hiw-step-content { padding-top: 8px; }
    .hiw-step-content h3 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.6rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 12px;
    }
    .hiw-step-content p {
      color: var(--color-text-2);
      line-height: 1.75;
      max-width: 620px;
    }

    /* ============================================================
       PROGRAMS SECTION
    ============================================================ */
    #programs {
      padding: 100px 0;
      background: var(--color-surface);
      position: relative;
    }
    .programs-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .programs-header .eyebrow { margin-bottom: 16px; }
    .programs-header .section-headline { margin-bottom: 0; }
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }
    .program-card {
      background: var(--color-surface-2);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
      position: relative;
      overflow: hidden;
    }
    .program-card:hover {
      transform: translateY(-6px);
    }
    .program-card.featured {
      border-color: var(--color-amber);
      box-shadow: 0 0 40px var(--color-amber-glow), 0 16px 48px rgba(0,0,0,0.4);
    }
    .program-card.featured:hover {
      box-shadow: 0 0 60px rgba(245, 124, 0, 0.28), 0 20px 60px rgba(0,0,0,0.5);
    }
    .program-card.featured::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--color-amber), var(--color-amber-light));
    }
    .program-card.muted { opacity: 0.75; }
    .program-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-label);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
      margin-bottom: 28px;
      width: fit-content;
    }
    .badge-live {
      background: var(--color-amber);
      color: #0D0F14;
    }
    .badge-soon {
      border: 1px solid var(--color-blue);
      color: var(--color-blue);
    }
    .badge-live::before { content: '●'; font-size: 8px; }
    .program-icon {
      width: 56px;
      height: 56px;
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .program-icon svg { width: 28px; height: 28px; }
    .program-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 14px;
    }
    .program-desc {
      font-size: 0.95rem;
      color: var(--color-text-2);
      line-height: 1.7;
      margin-bottom: 24px;
      flex-grow: 1;
    }
    .program-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }
    .program-tag {
      font-family: var(--font-label);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border: 1px solid var(--color-border);
      border-radius: 2px;
      color: var(--color-text-2);
    }
    .program-cta {
      margin-top: auto;
    }
    .program-cta .btn-primary { width: 100%; text-align: center; display: block; }
    .btn-outline {
      font-family: var(--font-label);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: transparent;
      color: var(--color-blue);
      padding: 13px 24px;
      border-radius: 3px;
      border: 1px solid var(--color-blue);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      width: 100%;
      text-align: center;
      display: block;
    }
    .btn-outline:hover {
      background: var(--color-blue-dim);
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    #stats {
      padding: 72px 0;
      background: var(--color-bg);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      position: relative;
      overflow: hidden;
    }
    #stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(245, 124, 0, 0.04) 0%, transparent 70%);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
      z-index: 1;
    }
    .stat-item {
      text-align: center;
      padding: 24px 20px;
    }
    .stat-item + .stat-item {
      border-left: 1px solid var(--color-border);
    }
    .stat-number {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.8rem, 5vw, 4rem);
      color: var(--color-amber);
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .stat-label {
      font-size: 0.88rem;
      color: var(--color-text-2);
      line-height: 1.4;
      max-width: 160px;
      margin: 0 auto;
    }

    /* ============================================================
       FOUNDER BIO
    ============================================================ */
    #about {
      padding: 110px 0;
      background: var(--color-surface);
    }
    .about-inner {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 72px;
      align-items: center;
    }
    .about-photo-frame {
      position: relative;
    }
    .about-photo-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--color-surface-2);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
      overflow: hidden;
    }
    .about-photo-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(245, 124, 0, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(
          45deg,
          transparent,
          transparent 20px,
          rgba(46, 50, 64, 0.3) 20px,
          rgba(46, 50, 64, 0.3) 21px
        );
    }
    .about-photo-placeholder svg {
      width: 72px;
      height: 72px;
      color: var(--color-border);
      position: relative;
      z-index: 1;
    }
    .about-photo-placeholder span {
      font-family: var(--font-label);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-3);
      position: relative;
      z-index: 1;
    }
    .about-photo-accent {
      position: absolute;
      bottom: -12px;
      right: -12px;
      width: 80px;
      height: 80px;
      border: 2px solid var(--color-amber);
      border-radius: 4px;
      z-index: 0;
    }
    .about-right .eyebrow { margin-bottom: 16px; }
    .about-name {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .about-title {
      font-size: 1rem;
      color: var(--color-amber);
      font-family: var(--font-label);
      font-weight: 600;
      letter-spacing: 0.04em;
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .about-bio {
      font-size: 1.05rem;
      color: var(--color-text-2);
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .credential-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .credential-tag {
      font-family: var(--font-label);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 7px 14px;
      border: 1px solid var(--color-amber);
      color: var(--color-amber);
      border-radius: 2px;
      transition: background 0.2s;
    }
    .credential-tag:hover {
      background: var(--color-amber-glow);
    }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    #testimonials {
      padding: 100px 0;
      background: var(--color-bg);
      overflow: hidden;
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .testimonials-header .eyebrow { margin-bottom: 16px; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    /* PLACEHOLDER — replace with real testimonials */
    .testimonial-card {
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-left: 3px solid var(--color-amber);
      padding: 36px 28px;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }
    .quote-bg {
      position: absolute;
      top: -10px;
      right: 12px;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 9rem;
      color: rgba(245, 124, 0, 0.04);
      line-height: 1;
      user-select: none;
    }
    .testimonial-stars {
      color: var(--color-amber);
      font-size: 14px;
      letter-spacing: 3px;
      margin-bottom: 16px;
    }
    .testimonial-quote {
      font-size: 0.97rem;
      color: var(--color-text);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .testimonial-author {
      font-family: var(--font-label);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-text-2);
    }
    .testimonial-author strong {
      display: block;
      color: var(--color-amber);
      font-size: 13px;
      margin-bottom: 2px;
    }

    /* ============================================================
       FINAL CTA
    ============================================================ */
    #cta {
      padding: 120px 0;
      background: var(--color-surface);
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(245, 124, 0, 0.10) 0%, transparent 65%);
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
    }
    .cta-inner .eyebrow { margin-bottom: 20px; }
    .cta-headline {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      text-transform: uppercase;
      line-height: 0.98;
      letter-spacing: 0.01em;
      margin-bottom: 24px;
    }
    .cta-headline em {
      font-style: normal;
      color: var(--color-amber);
    }
    .cta-sub {
      font-size: 1.05rem;
      color: var(--color-text-2);
      line-height: 1.75;
      margin-bottom: 48px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-includes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 40px;
      max-width: 520px;
      margin: 0 auto 48px;
      text-align: left;
    }
    .cta-include-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.92rem;
      color: var(--color-text-2);
    }
    .cta-include-item::before {
      content: '✓';
      color: var(--color-amber);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .cta-btn-wrap { margin-bottom: 28px; }
    .cta-btn-wrap .btn-primary {
      font-size: 15px;
      padding: 18px 44px;
      letter-spacing: 0.08em;
    }
    .cta-contact {
      font-size: 13px;
      color: var(--color-text-3);
    }
    .cta-contact a {
      color: var(--color-text-2);
      transition: color 0.2s;
    }
    .cta-contact a:hover { color: var(--color-amber); }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--color-bg);
      border-top: 1px solid var(--color-border);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.4rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .footer-logo span { color: var(--color-amber); font-size: 0.72em; vertical-align: super; margin-left: 2px; }
    .footer-tagline {
      font-size: 0.9rem;
      color: var(--color-text-2);
      margin-bottom: 24px;
      line-height: 1.5;
    }
    .footer-social {
      display: flex;
      gap: 14px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, background 0.2s;
    }
    .footer-social a:hover {
      border-color: var(--color-amber);
      background: var(--color-amber-glow);
    }
    .footer-social svg { width: 16px; height: 16px; color: var(--color-text-2); }
    .footer-col h4 {
      font-family: var(--font-label);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-3);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a {
      font-size: 0.9rem;
      color: var(--color-text-2);
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--color-amber); }
    .footer-col .soon {
      font-size: 10px;
      font-family: var(--font-label);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-blue);
      border: 1px solid var(--color-blue);
      padding: 1px 6px;
      border-radius: 2px;
      margin-left: 8px;
      vertical-align: middle;
    }
    .footer-col address {
      font-size: 0.9rem;
      color: var(--color-text-2);
      font-style: normal;
      line-height: 1.9;
    }
    .footer-col address a {
      color: var(--color-text-2);
      transition: color 0.2s;
    }
    .footer-col address a:hover { color: var(--color-amber); }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--color-border);
      text-align: center;
      font-size: 12px;
      color: var(--color-text-3);
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-content-row { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .about-inner { grid-template-columns: 280px 1fr; gap: 48px; }
      .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(3) { border-left: none; border-top: 1px solid var(--color-border); }
      .stat-item:nth-child(4) { border-top: 1px solid var(--color-border); }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-col:first-child { grid-column: span 2; }
      .cta-includes { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links, .btn-nav { display: none; }
      .hamburger { display: flex; }
      .hero-headline { font-size: clamp(2.8rem, 10vw, 4rem); }
      .pain-cards { grid-template-columns: 1fr; }
      .about-inner { grid-template-columns: 1fr; }
      .about-photo-frame { max-width: 280px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-col:first-child { grid-column: span 1; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .hiw-steps::before { display: none; }
    }

    /* ============================================================
       LOGO IMAGE
       3D render on dark background — mix-blend-mode: screen
       makes the near-black bg transparent on dark surfaces.
    ============================================================ */
    .logo-img {
      display: block;
      object-fit: contain;
      mix-blend-mode: screen;
    }
    .logo-img--nav {
      height: 44px;
      width: auto;
    }
    .nav-logo {
      display: flex;
      align-items: center;
    }
    .logo-img--hero {
      width: 100%;
      height: auto;
      display: block;
    }
    .logo-img--footer {
      height: 64px;
      width: auto;
      margin-bottom: 14px;
    }
    /* Full-bleed logo: positioned absolutely to touch top, left, right edges */
    .hero-logo-fullbleed {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 2;
      line-height: 0;
    }
    /* Push hero content down so it doesn't overlap the logo */
    .hero-content-container {
      position: relative;
      z-index: 3;
    }
    /* Override old footer-logo text styles that no longer apply */
    .footer-logo {
      font-family: unset;
      font-weight: unset;
      font-size: unset;
      letter-spacing: unset;
      text-transform: unset;
      mix-blend-mode: screen;
    }