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

  :root {
    --green: #02290D;
    --cream: #F2F2DE;
    --charcoal: #1C1C1C;
    --sand: #D8CFC0;
    --orange: #C4622D;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 120px);
    max-width: 1100px;
    z-index: 100;
    background: var(--cream);
    border: 1px solid rgba(28,28,28,0.08);
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(28,28,28,0.06);
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 0;
    transition: opacity 0.25s ease;
  }

  .nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
  }

  .nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-links a, .nav-right a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.2s;
    cursor: pointer;
    white-space: nowrap;
  }

  .nav-links a:hover, .nav-right a:hover { color: var(--orange); }

  .nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: -8px;
  }
  .nav-logo img { height: 30px; }

  .nav-accent {
    width: 24px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
  }

  .nav-cta {
    background: none;
    color: var(--charcoal);
    border: none;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { color: var(--orange); }

  /* hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(28,28,28,0.07);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 9px 11px;
    margin-left: 4px;
  }
  .nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.2s;
  }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 108px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 120px);
    max-width: 1100px;
    border-radius: 0 0 8px 8px;
    background: var(--cream);
    border-bottom: 1px solid rgba(28,28,28,0.1);
    padding: 20px 24px 28px;
    z-index: 99;
    flex-direction: column;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid rgba(28,28,28,0.07);
    cursor: pointer;
  }

  /* ── HERO ── */
  .hero {
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 80px 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(28,28,28,0.1);
    background-image: url('main2.jpg');
    background-size: cover;
    background-position: center 62%;
  }

  .hero-text {
    max-width: 680px;
    position: relative;
    z-index: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 0.9s ease forwards 0.2s;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 1px 8px rgba(2,41,13,0.7), 0 0 20px rgba(2,41,13,0.5);
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--orange);
    box-shadow: 0 0 6px rgba(196,98,45,0.8);
  }
  .hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--orange);
    box-shadow: 0 0 6px rgba(196,98,45,0.8);
  }

  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 6.5vw, 88px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: rgba(255,255,255,0.96);
    margin-bottom: 28px;
    text-shadow: 0 2px 28px rgba(2,41,13,0.4);
  }
  .hero-headline em {
    font-style: italic;
    color: rgba(255,255,255,0.96);
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto 44px;
    text-shadow: 0 1px 12px rgba(2,41,13,0.5);
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }
  .hero-stars {
    color: var(--orange);
    font-size: 13px;
    letter-spacing: 3px;
    line-height: 1;
  }
  .hero-social-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(242,242,222,0.75);
    letter-spacing: 0.3px;
  }

  .btn-primary {
    background: var(--green);
    color: var(--cream);
    border: none;
    padding: 16px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: #0a4a1a; transform: translateY(-2px); }

  .btn-ghost {
    background: none;
    color: var(--charcoal);
    border: 1px solid rgba(28,28,28,0.25);
    padding: 15px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--charcoal); }

  .btn-orange {
    background: var(--orange);
    color: #fff;
    border: 1px solid var(--orange);
    padding: 15px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-orange:hover { background: #b3561f; border-color: #b3561f; }

  /* hero background watermark */
  .hero-watermark {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(180px, 22vw, 320px);
    font-weight: 400;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(2,41,13,0.07);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
    line-height: 1;
    z-index: 1;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--green);
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--cream);
    line-height: 1;
  }
  .trust-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.55);
  }
  .trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(242,242,222,0.15);
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 100px 80px;
    border-bottom: 1px solid rgba(28,28,28,0.08);
  }

  .section-eyebrow {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 25px;
    background-image: url('Logo Zip/Orange_P_Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 64px;
    max-width: 100%;
    text-align: center;
  }
  .section-title em { font-style: italic; color: var(--green); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(242,242,222,0.15);
  }

  .step {
    padding: 48px 44px;
    border-right: 1px solid rgba(242,242,222,0.15);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: filter 0.3s;
  }
  .step:last-child { border-right: none; }
  .step:hover { filter: brightness(1.06); }

  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 24px;
    display: block;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .step-icon svg { filter: brightness(0) saturate(100%) invert(42%) sepia(60%) saturate(600%) hue-rotate(340deg); opacity: 1; }

  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--orange);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .step-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
  }

  .step-cta {
    margin-top: 28px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    cursor: pointer;
    border: none;
    background: none;
    font-family: 'DM Sans', sans-serif;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .step-cta:hover { gap: 14px; }

  /* ── CONCIERGE SECTION ── */
  .concierge-section {
    padding: 70px 80px;
    background: var(--green);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    border-bottom: 1px solid rgba(28,28,28,0.1);
  }

  .concierge-hero-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
  }

  .concierge-fox {
    height: 180px;
    width: auto;
    flex-shrink: 0;
  }

  .concierge-footer {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(242,242,222,0.1);
  }

  .concierge-label {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.7);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .concierge-label::before { content: ''; display: inline-block; width: 22px; height: 25px; background-image: url('Logo Zip/Orange_P_Logo.png'); background-size: contain; background-repeat: no-repeat; background-position: center; flex-shrink: 0; }

  .concierge-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 0;
  }
  .concierge-title em { font-style: italic; }

  .concierge-body {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(242,242,222,0.85);
    font-weight: 300;
    margin-bottom: 0;
  }

  .concierge-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 36px;
  }
  .price-num {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--cream);
    line-height: 1;
  }
  .price-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(242,242,222,0.4);
    text-transform: uppercase;
  }

  .btn-cream {
    background: var(--cream);
    color: var(--green);
    border: none;
    padding: 16px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-cream:hover { background: #e8e8cc; transform: translateY(-2px); }

  .concierge-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .concierge-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .concierge-list-icon {
    width: 32px;
    height: 32px;
    background: rgba(242,242,222,0.08);
    border: 1px solid rgba(242,242,222,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .concierge-list-text strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 5px;
  }
  .concierge-list-text span {
    font-size: 14px;
    color: rgba(242,242,222,0.6);
    font-weight: 300;
    line-height: 1.6;
  }

  /* ── MERCH SECTION ── */
  .merch-section {
    padding: 100px 80px;
    border-bottom: 1px solid rgba(28,28,28,0.08);
  }

  .merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(28,28,28,0.1);
    margin-top: 56px;
  }

  .merch-card {
    background: var(--cream);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
  }
  .merch-card:hover { background: #eaeacf; }

  .merch-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .merch-img-placeholder {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-style: italic;
    color: rgba(28,28,28,0.50);
    text-align: center;
    padding: 20px;
    line-height: 1.6;
  }

  .merch-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: var(--cream);
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
  }

  .merch-info {
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(28,28,28,0.08);
  }

  .merch-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 4px;
  }

  .merch-sub {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.58);
    margin-bottom: 12px;
  }

  .merch-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
  }

  .merch-footer {
    margin-top: 40px;
    text-align: center;
  }

  /* ── EMAIL WAITLIST ── */
  .waitlist-section {
    padding: 100px 80px;
    background: var(--sand);
    border-bottom: 1px solid rgba(28,28,28,0.1);
    text-align: center;
  }

  .waitlist-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .waitlist-sub {
    font-size: 15px;
    color: rgba(28,28,28,0.6);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
  }

  .waitlist-input {
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid rgba(28,28,28,0.25);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    box-sizing: border-box;
  }
  .waitlist-input:focus { border-color: var(--green); }
  .waitlist-input::placeholder { color: rgba(28,28,28,0.35); }

  .waitlist-btn {
    width: 100%;
    padding: 16px;
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .waitlist-note {
    font-size: 11px;
    color: rgba(28,28,28,0.58);
    letter-spacing: 0.5px;
  }

  /* ── ABOUT STRIP ── */
  .about-strip {
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    border-bottom: 1px solid rgba(28,28,28,0.08);
  }

  .about-body {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(28,28,28,0.6);
    font-weight: 300;
    margin-bottom: 32px;
  }

  .about-body p + p { margin-top: 20px; }

  .about-quote {
    padding: 28px 32px;
    border-left: 3px solid var(--orange);
    background: rgba(196,98,45,0.04);
    margin-top: 32px;
  }

  .about-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--green);
    padding: 64px 80px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(242,242,222,0.1);
    margin-bottom: 28px;
  }

  .footer-tagline {
    font-size: 12px;
    color: rgba(242,242,222,0.35);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-heading {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.3);
    margin-bottom: 20px;
  }

  footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  footer ul li a, footer ul li span {
    font-size: 12px;
    color: rgba(242,242,222,0.55);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: 300;
  }
  footer ul li a:hover, footer ul li span:hover { color: var(--cream); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(242,242,222,0.25);
    font-weight: 300;
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .quiz-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--green);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .quiz-modal.active { display: block; }

  .quiz-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 60px 24px 100px;
  }

  .quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }

  .quiz-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
  }

  .quiz-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
  }

  .quiz-progress-track {
    height: 1px;
    background: rgba(28,28,28,0.1);
    margin-bottom: 60px;
    position: relative;
  }

  .quiz-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--green);
    transition: width 0.4s ease;
  }

  .quiz-progress-label {
    position: absolute;
    top: 8px;
    right: 0;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.58);
  }

  .quiz-question {
    display: none;
    animation: fadeUp 0.35s ease forwards;
  }

  .quiz-question.active { display: block; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
  }
  .q-options.shake { animation: shake 0.35s ease; }

  /* Fox mascot — speech bubble + avatar */
  .fox-bar {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 32px;
  }
  .fox-bar.fox-bar--right {
    flex-direction: row-reverse;
  }
  .fox-avatar {
    width: 76px;
    height: auto;
    flex-shrink: 0;
  }
  .fox-bubble {
    background: #fff;
    border: 1px solid rgba(28,28,28,0.1);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--charcoal);
    position: relative;
    flex: 1;
  }
  /* Tail pointing right — fox is on the right */
  .fox-bar--right .fox-bubble::after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: 22px;
    width: 0; height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #fff;
  }
  .fox-bar--right .fox-bubble::before {
    content: '';
    position: absolute;
    right: -12px;
    bottom: 21px;
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 11px solid rgba(28,28,28,0.1);
  }
  /* Tail pointing left — fox is on the left */
  .fox-bar--left .fox-bubble::after {
    content: '';
    position: absolute;
    left: -10px;
    bottom: 22px;
    width: 0; height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid #fff;
  }
  .fox-bar--left .fox-bubble::before {
    content: '';
    position: absolute;
    left: -12px;
    bottom: 21px;
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 11px solid rgba(28,28,28,0.1);
  }

  .q-input-fallback {
    display: none;
    font-size: 11px;
    color: var(--orange);
    margin-top: 8px;
    letter-spacing: 0.2px;
  }

  .q-number {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.55);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .q-number::before { content: ''; display: inline-block; width: 12px; height: 14px; background-image: url('Logo Zip/Orange_P_Logo.png'); background-size: contain; background-repeat: no-repeat; background-position: center; flex-shrink: 0; }

  .q-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 36px;
  }

  .q-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .q-options.single { grid-template-columns: 1fr; }
  .q-options.brand-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .q-options.brand-grid .q-opt { padding: 12px 10px; text-align: center; justify-content: center; }
  .brand-opt { display: flex !important; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
  .brand-opt-logo { width: 100px; height: 44px; object-fit: contain; object-position: center; display: block; filter: brightness(0) invert(1) sepia(0.12); opacity: 0.68; transition: opacity 0.2s; }
  .q-opt.selected .brand-opt-logo { opacity: 1; }

  /* Per-brand scale corrections — compensates for source canvas whitespace */
  .brand-opt-logo[data-brand="ben hogan"] { transform: scale(1.0);  }
  .brand-opt-logo[data-brand="callaway"]  { transform: scale(0.82); }
  .brand-opt-logo[data-brand="cleveland"] { transform: scale(0.78); }
  .brand-opt-logo[data-brand="cobra"]     { transform: scale(1.68); }
  .brand-opt-logo[data-brand="honma"]     { transform: scale(1.32); }
  .brand-opt-logo[data-brand="mizuno"]    { transform: scale(0.82); }
  .brand-opt-logo[data-brand="nike"]      { transform: scale(1.65); }
  .brand-opt-logo[data-brand="ping"]      { transform: scale(1.25); }
  .brand-opt-logo[data-brand="pxg"]       { transform: scale(0.62); }
  .brand-opt-logo[data-brand="srixon"]    { transform: scale(1.28); }
  .brand-opt-logo[data-brand="stix"]      { transform: scale(0.65); }
  .brand-opt-logo[data-brand="takomo"]    { transform: scale(0.9);  }
  .brand-opt-logo[data-brand="taylormade"]{ transform: scale(1.15); }
  .brand-opt-logo[data-brand="titleist"]  { transform: scale(1.62); }

  /* Wilson: white-bg PNG — greyscale+invert makes white bg black, screen blend
     dissolves the black bg into dark green, leaving the shield as light grey */
  .brand-opt-logo[data-brand="wilson"] {
    filter: grayscale(1) invert(1);
    mix-blend-mode: screen;
    opacity: 0.7;
  }
  .report-card-brand-logo { height: 26px; width: auto; max-width: 100px; object-fit: contain; object-position: left center; display: block; opacity: 0.85; flex-shrink: 0; }

  .q-opt {
    border: 1px solid rgba(28,28,28,0.15);
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--cream);
    text-align: left;
    position: relative;
    overflow: hidden;
  }

  .q-opt:hover {
    border-color: var(--green);
    background: rgba(2,41,13,0.04);
  }

  .q-opt.selected {
    border-color: var(--green);
    background: var(--green);
    color: var(--cream);
  }

  .q-opt-label {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
  }

  .q-opt-sub {
    font-size: 12px;
    color: rgba(28,28,28,0.62);
    letter-spacing: 0.2px;
    display: block;
  }

  .q-opt.selected .q-opt-sub {
    color: rgba(242,242,222,0.6);
  }

  /* ── QUIZ ICON ENHANCEMENTS ── */
  .q-opt.has-icon {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .q-opt-copy {
    flex: 1;
    min-width: 0;
  }
  .q-opt-icon {
    flex-shrink: 0;
    display: block;
    line-height: 0;
  }
  .q-info-btn {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(28,28,28,0.22);
    background: none;
    font-size: 10px;
    font-weight: 500;
    color: rgba(28,28,28,0.60);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s;
    letter-spacing: 0;
  }
  .q-info-btn:hover { border-color: var(--green); color: var(--green); }
  .q-opt.selected .q-info-btn {
    border-color: rgba(242,242,222,0.3);
    color: rgba(242,242,222,0.5);
  }
  .q-opt.selected .q-info-btn:hover {
    border-color: rgba(242,242,222,0.75);
    color: rgba(242,242,222,0.9);
  }
  .q-opt.selected .q-opt-icon [data-s] { stroke: rgba(242,242,222,0.8) !important; }
  .q-opt.selected .q-opt-icon [data-f] { fill: rgba(242,242,222,0.8) !important; stroke: rgba(242,242,222,0.8) !important; }
  .q-opt.selected .q-opt-icon [data-guide] { stroke: rgba(242,242,222,0.15) !important; fill: rgba(242,242,222,0.15) !important; }
  /* Tip panel */
  .q-tip-panel {
    display: none;
    margin-top: 8px;
    padding: 11px 36px 11px 14px;
    background: var(--charcoal);
    color: rgba(242,242,222,0.8);
    font-size: 12px;
    line-height: 1.65;
    font-weight: 300;
    position: relative;
    letter-spacing: 0.1px;
  }
  .q-tip-panel.open { display: block; }
  .q-tip-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(242,242,222,0.3);
    font-size: 18px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    padding: 2px 4px;
    transition: color 0.15s;
  }
  .q-tip-close:hover { color: rgba(242,242,222,0.75); }

  .q-hint {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 28px;
  }

  .q-hint-fox {
    width: 48px;
    height: auto;
    flex-shrink: 0;
  }

  .q-hint-bubble {
    background: rgba(242,242,222,0.1);
    border: 1px solid rgba(242,242,222,0.18);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: 11px 16px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(242,242,222,0.7);
    font-style: italic;
    font-weight: 400;
    position: relative;
    flex: 1;
  }

  /* Speech bubble tail pointing left toward fox */
  .q-hint-bubble::before {
    content: '';
    position: absolute;
    left: -9px;
    bottom: 10px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 9px solid rgba(242,242,222,0.18);
  }
  .q-hint-bubble::after {
    content: '';
    position: absolute;
    left: -7px;
    bottom: 11px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid rgba(242,242,222,0.1);
  }

  .q-textarea {
    width: 100%;
    background: var(--sand);
    border: 1px solid rgba(28,28,28,0.15);
    padding: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.7;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 16px;
  }
  .q-textarea:focus { border-color: var(--green); }
  .q-textarea::placeholder { color: rgba(28,28,28,0.3); }

  .q-input {
    width: 100%;
    background: var(--sand);
    border: 1px solid rgba(28,28,28,0.15);
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
  }
  .q-input:focus { border-color: var(--green); }
  .q-input.error { border-color: var(--orange); }
  .q-input, .q-textarea { -webkit-appearance: none; border-radius: 0; }
  .q-input::placeholder { color: rgba(28,28,28,0.3); }
  .q-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(28,28,28,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  .intro-error {
    font-size: 11px;
    color: var(--orange);
    margin-top: 6px;
    letter-spacing: 0.2px;
    display: none;
  }
  .intro-note {
    font-size: 11px;
    color: rgba(28,28,28,0.58);
    letter-spacing: 0.3px;
    margin-top: 20px;
  }

  .input-label {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.65);
    margin-bottom: 6px;
  }

  .q-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
  }

  .btn-back {
    background: none;
    border: none;
    color: rgba(28,28,28,0.65);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* RESULTS PAGE */
  .results-section {
    display: none;
  }

  .results-section.active { display: block; }

  .results-header {
    margin-bottom: 48px;
  }

  .results-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .results-eyebrow::before { content: ''; display: inline-block; width: 13px; height: 15px; background-image: url('Logo Zip/Orange_P_Logo.png'); background-size: contain; background-repeat: no-repeat; background-position: center; flex-shrink: 0; }

  .results-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .results-sub {
    font-size: 13px;
    color: rgba(28,28,28,0.5);
    font-weight: 300;
  }

  .result-card {
    background: var(--cream);
    border: 1px solid rgba(28,28,28,0.12);
    margin-bottom: 16px;
    overflow: hidden;
  }

  .result-card-header {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 24px;
    padding: 24px;
    align-items: center;
    background: var(--cream);
    cursor: pointer;
  }

  .result-img {
    width: 100px;
    height: 80px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .result-img svg { width: 60px; height: 80px; opacity: 0.3; }

  .result-club-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 6px;
    box-sizing: border-box;
  }
  .result-img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .result-img-fallback::after {
    content: '';
    display: block;
    width: 3px;
    height: 50px;
    background: var(--green);
    opacity: 0.3;
    border-radius: 2px;
  }

  .result-rank {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
  }

  .result-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
  }

  .result-fit-score {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: rgba(28,28,28,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .fit-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }

  .result-price-block { text-align: right; }

  .result-used-price {
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    display: block;
  }

  .result-msrp {
    font-size: 11px;
    color: rgba(28,28,28,0.58);
    text-decoration: line-through;
  }

  /* ── Caddie section (bottom of quiz results) ─────────────────────── */
  .rc-caddie-section {
    margin-top: 28px;
    padding-top: 24px;
    padding-bottom: 48px;
    border-top: 1px solid rgba(242,242,222,0.1);
  }
  .rc-caddie-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
  }
  .rc-caddie-inner {
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }
  .rc-caddie-fox {
    width: 120px;
    height: auto;
    flex-shrink: 0;
    display: block;
  }
  .rc-caddie-copy {
    flex: 1;
    padding-bottom: 4px;
  }
  .rc-caddie-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .rc-caddie-desc {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(242,242,222,0.48);
    margin-bottom: 10px;
  }
  .rc-caddie-note {
    font-size: 10px;
    line-height: 1.6;
    color: rgba(242,242,222,0.28);
    font-style: italic;
    margin-bottom: 16px;
  }
  @media (max-width: 600px) {
    .rc-caddie-fox { width: 90px; }
    .rc-caddie-title { font-size: 17px; }
  }

  /* ── Result Card v2 ─────────────────────────────────────────────── */

  /* Profile strip — sits above cards in quiz modal (dark green bg) */
  .rc-profile-strip {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid rgba(242,242,222,0.12);
    overflow: hidden;
  }
  .rc-profile-item {
    flex: 1;
    padding: 11px 8px;
    border-right: 1px solid rgba(242,242,222,0.12);
    text-align: center;
    min-width: 0;
  }
  .rc-profile-item:last-child { border-right: none; }
  .rc-profile-label {
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.35);
    margin-bottom: 5px;
  }
  .rc-profile-val {
    font-size: 11px;
    font-weight: 500;
    color: rgba(242,242,222,0.82);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Card top row: rank + fit pct */
  .rc-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 20px 0;
  }
  .rc-rank {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    padding-top: 4px;
  }
  .rc-fit-badge { text-align: right; }
  .rc-fit-pct {
    font-size: 26px;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
    letter-spacing: -0.5px;
  }
  .rc-fit-sub {
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(2,41,13,0.32);
    margin-top: 2px;
  }

  /* Club identity */
  .rc-identity {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 14px;
  }
  .rc-img-wrap {
    width: 100px;
    height: 80px;
    background: #fff;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .rc-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rc-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 4px;
  }
  .rc-brand-logo { height: 28px; width: auto; max-width: 110px; object-fit: contain; object-position: left center; display: block; opacity: 0.85; flex-shrink: 0; }
  .rc-meta {
    font-size: 10px;
    color: rgba(28,28,28,0.4);
    letter-spacing: 0.3px;
  }

  /* Fit bar */
  .rc-fit-bar-wrap { padding: 0 20px 14px; }
  .rc-fit-bar-track {
    height: 3px;
    background: rgba(28,28,28,0.1);
    border-radius: 2px;
    overflow: hidden;
  }
  .rc-fit-bar-fill {
    height: 100%;
    width: 0;
    background: var(--green);
    border-radius: 2px;
    transition: width 1.1s cubic-bezier(0.4,0,0.2,1);
  }

  /* Spec chips */
  .rc-chips {
    display: flex;
    gap: 6px;
    padding: 12px 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(28,28,28,0.07);
  }
  .rc-chip {
    font-size: 9px;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    background: rgba(2,41,13,0.07);
    color: var(--green);
    border-radius: 2px;
    white-space: nowrap;
    text-transform: uppercase;
  }
  .rc-chip--accent {
    background: var(--orange);
    color: var(--cream);
  }

  /* Notes tagline */
  .rc-notes-text {
    font-size: 12px;
    line-height: 1.75;
    color: rgba(28,28,28,0.58);
    padding: 0 20px 16px;
  }

  /* Price row */
  .rc-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 20px;
    border-top: 1px solid rgba(28,28,28,0.07);
    background: rgba(28,28,28,0.025);
  }
  .rc-used-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
  }
  .rc-msrp-v2 {
    font-size: 10px;
    color: rgba(28,28,28,0.38);
    text-decoration: line-through;
  }

  /* Unlock CTA (at bottom of quiz results) */
  /* Two-column layout for both driver + irons results */
  .results-both-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
  }
  .results-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .results-both-grid .result-card {
    flex: 1 0 auto;
    min-height: 260px;
    box-sizing: border-box;
  }
  .results-col-header {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.45);
    margin-bottom: 2px;
  }

  /* Per-report purchase buttons */
  .rc-report-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0;
  }
  .rc-report-btn {
    background: rgba(242,242,222,0.08);
    border: 1px solid rgba(242,242,222,0.2);
    color: var(--cream);
    padding: 12px 10px;
    font-size: 12px;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    transition: background 0.18s;
  }
  .rc-report-btn:hover { background: rgba(242,242,222,0.14); }
  .rc-report-price {
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
    color: var(--cream);
  }

  @media (max-width: 680px) {
    .results-both-grid { grid-template-columns: 1fr; }
    .rc-report-btns    { grid-template-columns: 1fr; }
  }

  .rc-unlock-cta {
    margin-top: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(242,242,222,0.12);
    background: rgba(242,242,222,0.04);
    text-align: center;
  }
  .rc-unlock-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }
  .rc-unlock-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .rc-unlock-desc {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(242,242,222,0.5);
    margin-bottom: 20px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .result-body {
    display: none;
    padding: 0 24px 24px;
    background: var(--cream);
    border-top: 1px solid rgba(28,28,28,0.08);
  }

  .result-body.open { display: block; }

  .data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(28,28,28,0.08);
    margin: 20px 0;
    border: 1px solid rgba(28,28,28,0.08);
  }

  .data-cell {
    background: var(--sand);
    padding: 16px;
  }

  .data-cell-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.62);
    margin-bottom: 6px;
  }

  .data-cell-val {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--charcoal);
  }

  .result-explanation {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(28,28,28,0.65);
    font-weight: 300;
  }

  /* TRENDING SECTION */
  .trending-row {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(28,28,28,0.1);
    margin-top: 32px;
  }

  .trending-item {
    flex-shrink: 0;
    width: calc(100% / 5);
    padding: 20px;
    border-right: 1px solid rgba(28,28,28,0.08);
    cursor: pointer;
    transition: background 0.2s;
  }
  .trending-item:hover { background: var(--sand); }

  .trending-rank {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-style: italic;
    color: rgba(28,28,28,0.08);
    margin-bottom: 8px;
    line-height: 1;
  }

  .trending-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .trending-img svg { width: 70px; height: 70px; opacity: 0.25; }

  .trending-name {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 3px;
  }

  .trending-brand {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.58);
    margin-bottom: 6px;
  }

  .trending-change {
    font-size: 11px;
    font-weight: 500;
  }
  .trending-change.up { color: #2a7a4a; }
  .trending-change.down { color: #b03030; }

  /* IRON SVG placeholder */
  .svg-iron, .svg-driver, .svg-shoe, .svg-hat, .svg-polo {
    display: inline-block;
  }

  /* Horizontal line decorators */
  .line-accent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
    opacity: 0.15;
  }
  .line-accent::before, .line-accent::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--charcoal);
  }
  .line-accent-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  /* Buy the dip section */
  .dip-section {
    background: #0a1f0f;
    padding: 60px 48px;
    border-bottom: 1px solid rgba(28,28,28,0.1);
  }

  .dip-section .section-label { color: #6fcf97; }
  .dip-section h2 { color: var(--cream); }
  .dip-section .view-all { color: var(--cream); border-bottom-color: var(--cream); }

  .dip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(242,242,222,0.08);
    border: 1px solid rgba(242,242,222,0.08);
    margin-top: 32px;
  }

  .dip-card {
    background: #0d2612;
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .dip-card:hover { background: #122d17; }

  .dip-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .dip-img svg { width: 70px; height: 70px; opacity: 0.2; }

  .dip-brand {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.3);
    margin-bottom: 4px;
  }

  .dip-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
  }

  .dip-change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #6fcf97;
    margin-bottom: 4px;
  }

  .dip-low {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(242,242,222,0.3);
    text-transform: uppercase;
  }

  .dip-price {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 500;
    color: var(--cream);
  }







  /* Responsive helper */
  /* ── TABLET (≤900px) ── */
  @media (max-width: 900px) {
    /* Nav: keep centered logo layout but tighten spacing */
    nav {
      top: 20px;
      width: calc(100% - 48px);
      padding: 0 24px;
      height: 60px;
    }
    .nav-links { gap: 32px; } .nav-right { gap: 14px; }
    .nav-links a, .nav-right a { font-size: 9px; letter-spacing: 2.5px; }
    .nav-logo img { height: 30px; }

    /* Hero */
    .hero { grid-template-columns: 1fr; padding: 60px 24px 40px; min-height: auto; }
    .hero-graphic { display: none; }
    h1.hero-headline { font-size: clamp(40px, 8vw, 60px); }

    /* Category grid: 2 columns on tablet */
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-card { aspect-ratio: 4/5; }

    /* Grids */
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .dip-grid { grid-template-columns: repeat(2, 1fr); }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .data-grid { grid-template-columns: repeat(2, 1fr); }

    /* Sections */
    .section { padding: 60px 24px; }
    .quiz-banner { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }
    .about-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .profile-card { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* Quiz */
    .q-options { grid-template-columns: 1fr; }
    .q-options.brand-grid { grid-template-columns: 1fr 1fr; }
    .quiz-inner { padding: 40px 20px 80px; }
  }


  /* ── NAV TABLET COLLAPSE (≤720px) ── */
  @media (max-width: 720px) {
    .nav-links a:nth-child(3),
    .nav-right a:nth-child(1) { display: none; }
  }

  /* ── MOBILE (≤600px) ── */
  @media (max-width: 600px) {
    body { padding-top: 56px; }
    /* Nav: flush full-width bar — logo left, fox + hamburger right */
    nav {
      top: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
      border: none;
      border-bottom: 1px solid rgba(28,28,28,0.08);
      padding: 0 20px;
      height: 56px;
    }
    .nav-links { display: none; }
    .nav-right { gap: 14px; align-items: center; margin-left: auto; }
    .nav-right a { display: none; }
    .nav-accent { display: none; }
    .nav-cta { display: none; }
    .nav-logo img { height: 26px; }
    .nav-fox { display: block !important; height: 34px; width: auto; }

    /* Ticker */
    .ticker-item { padding: 0 20px; font-size: 10px; }

    /* Hero */
    .hero { padding: 60px 16px 36px; background-position: 65% center; }
    .hero::before {
      background: linear-gradient(
        to bottom,
        rgba(242,242,222,0.92) 0%,
        rgba(242,242,222,0.82) 55%,
        rgba(242,242,222,0.68) 100%
      );
    }
    h1.hero-headline { font-size: clamp(34px, 9vw, 48px); }
    .hero-sub { font-size: 13px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; }

    /* Hero logo above headline */
    .hero-text > div:first-child img { height: 52px; }

    /* Category grid: single column on small phones */
    .category-grid { grid-template-columns: 1fr 1fr; }
    .cat-card { aspect-ratio: 1/1; }
    .cat-label { font-size: 15px; }

    /* Sections */
    .section { padding: 44px 16px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Products */
    .product-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
    .product-card { padding: 14px; }
    .product-name { font-size: 13px; }

    /* Trending: show 2 at a time on mobile */
    .trending-item { width: 50%; }

    /* Dip grid */
    .dip-grid { grid-template-columns: 1fr 1fr; }
    .dip-section { padding: 44px 16px; }

    /* Quiz banner */
    .quiz-banner { padding: 44px 16px; }
    .quiz-banner h2 { font-size: 28px; }

    /* Merch: 2 col on mobile */
    .merch-grid { grid-template-columns: 1fr 1fr; }

    /* About */
    .about-section { padding: 44px 16px; gap: 32px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-stat { padding: 20px; }
    .about-stat-num { font-size: 32px; }

    /* Profile */
    .profile-section { padding: 44px 16px; }
    .profile-card { padding: 24px 16px; gap: 24px; }
    .rec-item { flex-wrap: wrap; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    footer { padding: 44px 16px 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Quiz modal */
    .quiz-modal { overflow-y: scroll; -webkit-overflow-scrolling: touch; }
    .quiz-inner { padding: 32px 16px 80px; }
    .quiz-nav { margin-bottom: 36px; }
    .q-text { font-size: 22px; margin-bottom: 24px; }
    .q-opt { padding: 14px 16px; }
    .q-nav { margin-top: 24px; }
    .data-grid { grid-template-columns: repeat(2, 1fr); }
    .result-card-header { grid-template-columns: 70px 1fr; gap: 12px; }
    .result-img { width: 70px; height: 60px; }
    .result-price-block { display: none; }
    .results-title { font-size: 26px; }
    /* v2 card mobile */
    .rc-profile-strip { flex-wrap: wrap; }
    .rc-profile-item { flex: 1 1 50%; }
    .rc-profile-item:nth-child(2) { border-right: none; }
    .rc-profile-item:nth-child(1),
    .rc-profile-item:nth-child(2) { border-bottom: 1px solid rgba(242,242,222,0.1); }
    .rc-fit-pct { font-size: 21px; }
    .rc-name { font-size: 17px; }
    .rc-top-row { padding: 14px 16px 0; }
    .rc-identity { padding: 10px 16px 12px; }
    .rc-fit-bar-wrap { padding: 0 16px 12px; }
    .rc-chips { padding: 10px 16px; }
    .rc-notes-text { padding: 0 16px 14px; }
    .rc-price-row { padding: 10px 16px; }
    .rc-unlock-cta { padding: 24px 16px; }

    /* Marketplace filters */
    #section-marketplace > div:first-child { padding: 32px 16px; }
    #section-marketplace > div:last-child { padding: 0 0 60px; }
  }

  /* ── SMALL PHONES (≤380px) ── */
  @media (max-width: 380px) {
    .category-grid { grid-template-columns: 1fr; }
    .cat-card { aspect-ratio: 5/3; }
    .product-grid { grid-template-columns: 1fr; }
    .merch-grid { grid-template-columns: 1fr; }
    .dip-grid { grid-template-columns: 1fr; }
    h1.hero-headline { font-size: 30px; }
  }

  /* ── HAMBURGER + MOBILE MENU ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.2s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 108px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 120px);
    max-width: 1100px;
    border-radius: 0 0 8px 8px;
    background: var(--cream);
    border-bottom: 1px solid rgba(28,28,28,0.1);
    padding: 20px 24px 28px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu.open { display: flex; }
  @media (max-width: 600px) {
    .mobile-menu {
      top: 56px;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
      box-shadow: 0 4px 16px rgba(28,28,28,0.08);
    }
  }
  .mobile-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid rgba(28,28,28,0.07);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--green); }

  @media (max-width: 600px) {
    .nav-hamburger { display: flex; }
  }


  /* ── RESPONSIVE ── */
  /* ── TABLET (≤900px) ── */
  @media (max-width: 900px) {
    /* Nav: keep centered logo layout but tighten spacing */
    nav {
      top: 20px;
      width: calc(100% - 48px);
      padding: 0 24px;
      height: 60px;
    }
    .nav-links { gap: 32px; } .nav-right { gap: 14px; }
    .nav-links a, .nav-right a { font-size: 9px; letter-spacing: 2.5px; }
    .nav-logo img { height: 30px; }

    /* Hero */
    .hero { grid-template-columns: 1fr; padding: 60px 24px 40px; min-height: auto; }
    .hero-graphic { display: none; }
    h1.hero-headline { font-size: clamp(40px, 8vw, 60px); }

    /* Category grid: 2 columns on tablet */
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-card { aspect-ratio: 4/5; }

    /* Grids */
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .dip-grid { grid-template-columns: repeat(2, 1fr); }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .data-grid { grid-template-columns: repeat(2, 1fr); }

    /* Sections */
    .section { padding: 60px 24px; }
    .quiz-banner { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }
    .about-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .profile-card { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* Quiz */
    .q-options { grid-template-columns: 1fr; }
    .q-options.brand-grid { grid-template-columns: 1fr 1fr; }
    .quiz-inner { padding: 40px 20px 80px; }
  }


  /* ── NAV TABLET COLLAPSE (≤720px) ── */
  @media (max-width: 720px) {
    .nav-links a:nth-child(3),
    .nav-right a:nth-child(1) { display: none; }
  }

  /* ── MOBILE (≤600px) ── */
  @media (max-width: 600px) {
    body { padding-top: 56px; }
    /* Nav: flush full-width bar — logo left, fox + hamburger right */
    nav {
      top: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
      border: none;
      border-bottom: 1px solid rgba(28,28,28,0.08);
      padding: 0 20px;
      height: 56px;
    }
    .nav-links { display: none; }
    .nav-right { gap: 14px; align-items: center; margin-left: auto; }
    .nav-right a { display: none; }
    .nav-accent { display: none; }
    .nav-cta { display: none; }
    .nav-logo img { height: 26px; }
    .nav-fox { display: block !important; height: 34px; width: auto; }

    /* Ticker */
    .ticker-item { padding: 0 20px; font-size: 10px; }

    /* Hero */
    .hero { padding: 60px 16px 36px; background-position: 65% center; }
    .hero::before {
      background: linear-gradient(
        to bottom,
        rgba(242,242,222,0.92) 0%,
        rgba(242,242,222,0.82) 55%,
        rgba(242,242,222,0.68) 100%
      );
    }
    h1.hero-headline { font-size: clamp(34px, 9vw, 48px); }
    .hero-sub { font-size: 13px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; }

    /* Hero logo above headline */
    .hero-text > div:first-child img { height: 52px; }

    /* Category grid: single column on small phones */
    .category-grid { grid-template-columns: 1fr 1fr; }
    .cat-card { aspect-ratio: 1/1; }
    .cat-label { font-size: 15px; }

    /* Sections */
    .section { padding: 44px 16px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Products */
    .product-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
    .product-card { padding: 14px; }
    .product-name { font-size: 13px; }

    /* Trending: show 2 at a time on mobile */
    .trending-item { width: 50%; }

    /* Dip grid */
    .dip-grid { grid-template-columns: 1fr 1fr; }
    .dip-section { padding: 44px 16px; }

    /* Quiz banner */
    .quiz-banner { padding: 44px 16px; }
    .quiz-banner h2 { font-size: 28px; }

    /* Merch: 2 col on mobile */
    .merch-grid { grid-template-columns: 1fr 1fr; }

    /* About */
    .about-section { padding: 44px 16px; gap: 32px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-stat { padding: 20px; }
    .about-stat-num { font-size: 32px; }

    /* Profile */
    .profile-section { padding: 44px 16px; }
    .profile-card { padding: 24px 16px; gap: 24px; }
    .rec-item { flex-wrap: wrap; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    footer { padding: 44px 16px 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Quiz modal */
    .quiz-modal { overflow-y: scroll; -webkit-overflow-scrolling: touch; }
    .quiz-inner { padding: 32px 16px 80px; }
    .quiz-nav { margin-bottom: 36px; }
    .q-text { font-size: 22px; margin-bottom: 24px; }
    .q-opt { padding: 14px 16px; }
    .q-nav { margin-top: 24px; }
    .data-grid { grid-template-columns: repeat(2, 1fr); }
    .result-card-header { grid-template-columns: 70px 1fr; gap: 12px; }
    .result-img { width: 70px; height: 60px; }
    .result-price-block { display: none; }
    .results-title { font-size: 26px; }
    /* v2 card mobile */
    .rc-profile-strip { flex-wrap: wrap; }
    .rc-profile-item { flex: 1 1 50%; }
    .rc-profile-item:nth-child(2) { border-right: none; }
    .rc-profile-item:nth-child(1),
    .rc-profile-item:nth-child(2) { border-bottom: 1px solid rgba(242,242,222,0.1); }
    .rc-fit-pct { font-size: 21px; }
    .rc-name { font-size: 17px; }
    .rc-top-row { padding: 14px 16px 0; }
    .rc-identity { padding: 10px 16px 12px; }
    .rc-fit-bar-wrap { padding: 0 16px 12px; }
    .rc-chips { padding: 10px 16px; }
    .rc-notes-text { padding: 0 16px 14px; }
    .rc-price-row { padding: 10px 16px; }
    .rc-unlock-cta { padding: 24px 16px; }

    /* Marketplace filters */
    #section-marketplace > div:first-child { padding: 32px 16px; }
    #section-marketplace > div:last-child { padding: 0 0 60px; }
  }

  /* ── SMALL PHONES (≤380px) ── */
  @media (max-width: 380px) {
    .category-grid { grid-template-columns: 1fr; }
    .cat-card { aspect-ratio: 5/3; }
    .product-grid { grid-template-columns: 1fr; }
    .merch-grid { grid-template-columns: 1fr; }
    .dip-grid { grid-template-columns: 1fr; }
    h1.hero-headline { font-size: 30px; }
  }

  /* ── HAMBURGER + MOBILE MENU ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.2s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 108px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 120px);
    max-width: 1100px;
    border-radius: 0 0 8px 8px;
    background: var(--cream);
    border-bottom: 1px solid rgba(28,28,28,0.1);
    padding: 20px 24px 28px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu.open { display: flex; }
  @media (max-width: 600px) {
    .mobile-menu {
      top: 56px;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
      box-shadow: 0 4px 16px rgba(28,28,28,0.08);
    }
  }
  .mobile-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid rgba(28,28,28,0.07);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--green); }

  @media (max-width: 600px) {
    .nav-hamburger { display: flex; }
  }


  /* Launch site specific responsive overrides */
  @media (max-width: 900px) {
    .hero { padding: 60px 40px; }
    .how-section { padding: 70px 40px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid rgba(242,242,222,0.15); }
    .step:last-child { border-bottom: none; }
    .concierge-section { grid-template-columns: 1fr; padding: 70px 40px; gap: 48px; }
    .merch-section { padding: 70px 40px; }
    .waitlist-section { padding: 70px 40px; }
    .about-strip { grid-template-columns: 1fr; padding: 70px 40px; gap: 48px; }
    footer { padding: 48px 40px 28px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .trust-bar { padding: 20px 40px; justify-content: center; }
  }

  @media (max-width: 600px) {
    nav { padding: 0 16px; height: 64px; grid-template-columns: auto 1fr auto; }
    .nav-links { display: none; }
    .nav-right a { display: none; }
    .nav-right { gap: 0; }
    .nav-hamburger { display: flex; }
    .nav-logo img { height: 26px; }

    .hero { padding: 44px 20px; min-height: auto; background-position: center 58%; }
    .hero-headline { font-size: clamp(36px, 10vw, 52px); }
    .hero-watermark { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost,
    .hero-actions .btn-orange { width: 100%; text-align: center; padding: 16px; }

    .how-section { padding: 56px 20px; }
    .section-eyebrow { font-size: 11px; letter-spacing: 3px; }

    /* Concierge: stack fox + title vertically, shrink fox */
    .concierge-section { padding: 56px 20px; }
    .concierge-hero-row { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .concierge-fox { height: 140px; }

    .merch-section { padding: 56px 20px; }
    .merch-grid { grid-template-columns: 1fr 1fr; }

    /* Waitlist: allow title to wrap on small screens */
    .waitlist-section { padding: 56px 20px; }
    .waitlist-title { white-space: normal; }
    .waitlist-form { flex-direction: column; }
    .waitlist-input { border-right: 1px solid rgba(28,28,28,0.2); border-bottom: none; }

    .about-strip { padding: 56px 20px; }
    footer { padding: 44px 20px 24px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .trust-bar { padding: 20px; gap: 24px; }
    .trust-divider { display: none; }
    .q-options { grid-template-columns: 1fr; }
  }

  /* ── PRIVACY MODAL ── */
  .privacy-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2,41,13,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .privacy-inner {
    background: var(--cream);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .privacy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(28,28,28,0.12);
    flex-shrink: 0;
  }
  .privacy-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--green);
    margin: 0;
  }
  .privacy-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: rgba(28,28,28,0.4);
    line-height: 1;
    padding: 4px 8px;
  }
  .privacy-close:hover { color: var(--charcoal); }
  .privacy-body {
    overflow-y: auto;
    padding: 32px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(28,28,28,0.75);
  }
  .privacy-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--green);
    margin: 24px 0 8px;
  }
  .privacy-body h3:first-child { margin-top: 0; }
  .privacy-body p { margin: 0 0 12px; }
  .privacy-body a { color: var(--green); }

  /* ── PROFILE MODAL ── */
  .profile-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--cream);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .profile-modal.active { display: block; }

  .profile-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 112px 40px 100px;
  }

  /* Two-column split */
  .profile-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 8px;
    align-items: start;
  }
  @media (max-width: 640px) {
    .profile-split { grid-template-columns: 1fr; }
  }

  /* Right panel */
  .report-right-panel {
    background: var(--green);
    color: var(--cream);
    border-radius: 4px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 300px;
    justify-content: center;
    position: sticky;
    top: 24px;
  }
  .report-right-panel .rp-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.5);
  }
  .report-right-panel .rp-title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    color: var(--cream);
    line-height: 1.3;
    margin: 0;
  }
  .report-right-panel .rp-desc {
    font-size: 13px;
    color: rgba(242,242,222,0.65);
    line-height: 1.7;
    margin: 0;
  }
  .rp-btn {
    display: inline-block;
    background: var(--cream);
    color: var(--green);
    border: none;
    padding: 14px 22px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 8px;
    transition: opacity 0.2s;
    text-align: center;
  }
  .rp-btn:hover { opacity: 0.85; }
  .rp-btn-view {
    background: var(--orange);
    color: #fff;
  }

  /* Report loading spinner */
  .rp-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(28,28,28,0.12);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: rpSpin 0.75s linear infinite;
  }
  @keyframes rpSpin { to { transform: rotate(360deg); } }

  /* Report pending dots animation */
  .rp-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 4px;
  }
  .rp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(242,242,222,0.7);
    animation: rp-pulse 1.4s ease-in-out infinite;
  }
  .rp-dot:nth-child(2) { animation-delay: 0.2s; }
  .rp-dot:nth-child(3) { animation-delay: 0.4s; }
  @keyframes rp-pulse {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
    40% { opacity: 1; transform: scale(1); }
  }

  /* Full report page overlay */
  .report-page {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--cream);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .report-page.active { display: block; }
  .report-page-topbar {
    position: sticky;
    top: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(28,28,28,0.08);
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
  }
  .report-page-logo {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: var(--green);
    font-style: italic;
  }
  .report-page-back {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s;
  }
  .report-page-back:hover { opacity: 1; }
  .report-page-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 40px 100px;
  }
  @media (max-width: 720px) {
    .report-page-inner { padding: 32px 16px 80px; }
  }
  .report-clubs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 800px) {
    .report-clubs-grid { grid-template-columns: 1fr; }
  }

  .profile-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 56px;
  }

  .profile-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
  }

  .profile-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    padding: 0;
  }

  /* State A — email lookup */
  .profile-lookup-wrap {
    max-width: 440px;
  }
  .profile-lookup-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--green);
    margin: 0 0 10px;
  }
  .profile-lookup-wrap p {
    font-size: 14px;
    color: rgba(28,28,28,0.6);
    margin: 0 0 28px;
    line-height: 1.7;
  }
  .profile-input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }
  .profile-input-row input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(28,28,28,0.2);
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    border-radius: 2px;
    outline: none;
  }
  .profile-input-row input:focus { border-color: var(--green); }
  .profile-lookup-msg {
    font-size: 13px;
    line-height: 1.6;
    min-height: 20px;
  }

  /* State B — dashboard */
  .profile-greeting-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .profile-greeting {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 14px;
  }
  .profile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }
  .profile-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(2,41,13,0.07);
    border-radius: 2px;
    padding: 5px 10px;
  }
  .profile-chip-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.5);
  }
  .profile-chip-val {
    font-size: 13px;
    font-weight: 500;
    color: var(--green);
  }
  .profile-prefs {
    font-size: 12px;
    color: rgba(28,28,28,0.5);
    letter-spacing: 0.3px;
  }
  .profile-retake {
    flex-shrink: 0;
    font-size: 11px;
    padding: 10px 18px;
  }

  /* Section labels */
  .profile-section-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(28,28,28,0.1);
  }

  /* Unlock section */
  .profile-unlock-section { margin-top: 8px; }
  .profile-unlock-desc {
    font-size: 14px;
    color: rgba(28,28,28,0.6);
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 520px;
  }
  .profile-unlock-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
  }
  .profile-unlock-btn {
    background: var(--green);
    color: var(--cream);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
  }
  .profile-unlock-btn:hover { opacity: 0.85; }
  .profile-unlock-btn.profile-unlock-bundle {
    background: var(--orange);
  }
  .profile-unlock-price {
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0;
  }
  .profile-unlock-note {
    font-size: 12px;
    color: rgba(28,28,28,0.45);
    margin: 0;
  }
  .profile-unlock-note a { color: var(--green); }

  /* Report pending */
  .profile-report-pending {
    background: rgba(2,41,13,0.04);
    border: 1px solid rgba(2,41,13,0.12);
    padding: 28px 28px 24px;
    margin-top: 8px;
  }
  .profile-report-pending p {
    font-size: 14px;
    color: rgba(28,28,28,0.65);
    line-height: 1.7;
    margin: 0;
  }
  .profile-report-pending .profile-section-label {
    margin-top: 0;
    margin-bottom: 12px;
  }

  /* Report tabs */
  .profile-report-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(28,28,28,0.12);
    margin-bottom: 28px;
  }
  .profile-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.45);
    padding: 10px 20px 10px 0;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
  }
  .profile-tab.active {
    color: var(--green);
    border-bottom-color: var(--green);
  }

  /* Full report — player profile block */
  .report-player-profile {
    background: var(--green);
    color: var(--cream);
    padding: 28px 28px 24px;
    margin-bottom: 32px;
  }
  .report-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }
  .report-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(242,242,222,0.12);
    border-radius: 2px;
    padding: 5px 10px;
  }
  .report-chip-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.5);
  }
  .report-chip-val {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
  }
  .report-profile-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(242,242,222,0.85);
    margin: 0;
  }

  /* Fit score chart */
  .report-section-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(28,28,28,0.1);
  }
  .fit-chart {
    margin-bottom: 40px;
  }
  .fit-bar-row {
    display: grid;
    grid-template-columns: 220px 1fr 44px;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  .fit-bar-label {
    font-size: 12px;
    color: var(--charcoal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fit-bar-track {
    height: 5px;
    background: rgba(28,28,28,0.1);
    border-radius: 3px;
    overflow: hidden;
  }
  .fit-bar-fill {
    height: 100%;
    width: 0;
    background: var(--green);
    border-radius: 3px;
    transition: width 0.9s cubic-bezier(0.4,0,0.2,1);
  }
  .fit-bar-pct {
    font-size: 11px;
    color: rgba(28,28,28,0.5);
    text-align: right;
  }

  /* Report club cards */
  .report-clubs { margin-bottom: 32px; }
  .report-club-card {
    border: 1px solid rgba(28,28,28,0.12);
    margin-bottom: 8px;
    overflow: hidden;
  }
  .report-club-header {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 16px;
    padding: 18px 20px;
    align-items: center;
    background: var(--cream);
    cursor: pointer;
    user-select: none;
  }
  .report-club-header:hover { background: rgba(28,28,28,0.02); }
  .report-club-img-wrap {
    width: 90px;
    height: 64px;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .report-club-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .report-club-img-fallback {
    width: 3px;
    height: 40px;
    background: var(--green);
    opacity: 0.25;
    border-radius: 2px;
  }
  .report-club-rank {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 3px;
  }
  .report-club-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 4px;
  }
  .report-club-fit {
    font-size: 10px;
    color: rgba(28,28,28,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .report-club-chevron {
    font-size: 14px;
    color: rgba(28,28,28,0.35);
    transition: transform 0.2s;
  }
  .report-club-body {
    display: none;
    padding: 0 20px 24px;
    border-top: 1px solid rgba(28,28,28,0.08);
    background: var(--cream);
  }
  .report-club-body.open { display: block; }
  .report-club-section { margin-top: 20px; }
  .report-club-section-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
    margin-bottom: 8px;
  }
  .report-club-section p {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(28,28,28,0.75);
    margin: 0;
  }
  .report-club-quote {
    margin-top: 20px;
    padding: 14px 18px;
    border-left: 3px solid var(--sand);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.6;
  }
  .report-club-market {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .report-club-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
  }
  .report-club-shops {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .report-shop-link {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    text-decoration: none;
    border: 1px solid rgba(2,41,13,0.25);
    padding: 4px 10px;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
  }
  .report-shop-link:hover { background: var(--green); color: var(--cream); }
  .report-caddie-note { background: rgba(196,98,45,0.05); padding: 14px 14px 12px; }
  .report-caddie-note .report-club-section-label { color: var(--orange); }
  .report-club-select { margin-top: 16px; }
  .caddie-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(28,28,28,0.65);
    cursor: pointer;
    user-select: none;
  }
  .caddie-checkbox { cursor: pointer; accent-color: var(--green); }
  .caddie-checkbox:disabled { opacity: 0.35; cursor: not-allowed; }

  /* Caddie submit row */
  .caddie-submit-row {
    padding: 20px 0 4px;
    border-top: 1px solid rgba(28,28,28,0.1);
    margin-top: 16px;
  }
  #caddieSubmitMsg {
    font-size: 13px;
    margin-top: 10px;
    color: var(--green);
  }
  .caddie-pricing-descriptor {
    font-size: 13px;
    color: rgba(28,28,28,0.6);
    margin: 0 0 12px;
    line-height: 1.6;
  }
  .caddie-pricing-caveat {
    font-size: 11px;
    color: rgba(28,28,28,0.35);
    margin: 10px 0 0;
    line-height: 1.6;
  }

  @media (max-width: 600px) {
    .profile-inner { padding: 40px 16px 80px; }
    .fit-bar-row { grid-template-columns: 130px 1fr 36px; }
    .fit-bar-label { font-size: 11px; }
    .profile-input-row { flex-direction: column; }
    .profile-greeting-row { flex-direction: column; align-items: flex-start; }
    .report-club-header { grid-template-columns: 64px 1fr auto; }
    .report-club-img-wrap { width: 64px; height: 52px; }
  }

  /* ── QUIZ DARK THEME (all slides) ── */

  /* Nav */
  .quiz-logo img {
    filter: brightness(0) saturate(0) invert(1) opacity(0.8);
  }
  .quiz-close {
    color: rgba(242,242,222,0.5);
  }
  .quiz-close:hover { color: var(--cream); }

  /* Progress */
  .quiz-progress-track {
    background: rgba(242,242,222,0.1);
  }
  .quiz-progress-fill {
    background: var(--orange);
  }
  .quiz-progress-label {
    color: rgba(242,242,222,0.4);
  }

  /* Question text */
  .q-number { color: rgba(242,242,222,0.4); }
  .q-text { color: var(--cream); }
  /* Answer options */
  .q-opt {
    background: rgba(242,242,222,0.06);
    border-color: rgba(242,242,222,0.15);
    color: var(--cream);
  }
  .q-opt:hover {
    background: rgba(242,242,222,0.12);
    border-color: rgba(242,242,222,0.45);
  }
  .q-opt.selected {
    background: rgba(242,242,222,0.18);
    border-color: var(--cream);
    color: var(--cream);
  }
  .q-opt-sub { color: rgba(242,242,222,0.5); }
  .q-info-btn {
    border-color: rgba(242,242,222,0.2);
    color: rgba(242,242,222,0.45);
  }
  .q-info-btn:hover { border-color: rgba(242,242,222,0.6); color: rgba(242,242,222,0.8); }

  /* Inputs & labels */
  .input-label { color: rgba(242,242,222,0.55); }
  .q-input, .q-textarea {
    background: rgba(242,242,222,0.07);
    border-color: rgba(242,242,222,0.18);
    color: var(--cream);
  }
  .q-input::placeholder, .q-textarea::placeholder { color: rgba(242,242,222,0.3); }
  .q-input:focus, .q-textarea:focus {
    border-color: rgba(242,242,222,0.45);
    background: rgba(242,242,222,0.1);
  }
  .q-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(242,242,222,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
  }
  .q-select option { background: var(--green); color: var(--cream); }
  .intro-note { color: rgba(242,242,222,0.35); }
  .intro-error { color: #ff8c69; }

  /* Override browser autofill styling inside quiz */
  .quiz-modal input:-webkit-autofill,
  .quiz-modal input:-webkit-autofill:hover,
  .quiz-modal input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #0d3318 inset;
    -webkit-text-fill-color: var(--cream);
    transition: background-color 5000s ease-in-out 0s;
  }

  /* Back/Continue/No preference buttons */
  .btn-back { color: rgba(242,242,222,0.45); }
  .btn-back:hover { color: var(--cream); }
  .quiz-modal .btn-ghost {
    color: var(--cream);
    border-color: rgba(242,242,222,0.35);
  }
  .quiz-modal .btn-ghost:hover {
    border-color: var(--cream);
    background: rgba(242,242,222,0.08);
  }
  .quiz-modal .btn-primary {
    background: var(--cream);
    color: var(--green);
    border: none;
  }
  .quiz-modal .btn-primary:hover { background: #e8e8cc; transform: translateY(-2px); }

  /* Results section — cream cards on dark bg */
  .results-title { color: var(--cream); }
  .results-sub { color: rgba(242,242,222,0.55); }
  .result-name { color: var(--charcoal); }
  /* fit-dot: green on green → orange */
  .fit-dot { background: var(--orange); }
  /* results fox bubble: keep white card look, update tail border to match */
  .fox-bar--left .fox-bubble::before { border-right-color: rgba(28,28,28,0.1); }
  .fox-bar--left .fox-bubble::after { border-right-color: #fff; }
  /* tip panel already dark — fine on dark bg */
  .q-tip-panel { border: 1px solid rgba(242,242,222,0.08); }

  /* Intro slide layout */
  .quiz-intro {
    text-align: center;
    padding-top: 8px;
  }
  .intro-fox-wrap { margin-bottom: 28px; }
  .intro-fox { width: 120px; height: auto; }
  .intro-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .intro-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .intro-sub {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(242,242,222,0.65);
    margin-bottom: 36px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro-form { text-align: left; }

  /* ═══════════════════════════════════════════════════════════════
     PREMIUM FULL REPORT — new layout components
  ═══════════════════════════════════════════════════════════════ */

  /* ── Report Hero (dark green header) ── */
  .report-hero {
    background: var(--green);
    padding: 28px 48px 24px;
    margin-bottom: 2px;
  }
  .report-hero-toprow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .report-hero-wordmark {
    height: 28px;
    width: auto;
    opacity: 0.9;
  }
  .report-hero-fox {
    height: 120px;
    width: auto;
    flex-shrink: 0;
    margin-top: -12px;
  }
  .report-hero-overline {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  .report-hero-p-logo {
    width: 10px;
    height: auto;
    object-fit: contain;
    margin-right: 7px;
    opacity: 0.9;
    flex-shrink: 0;
  }
  .report-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 6px;
    line-height: 1.2;
  }
  .report-hero-date {
    font-size: 11px;
    color: rgba(242,242,222,0.4);
    margin-bottom: 16px;
  }
  .report-hero-body {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 40px;
    align-items: start;
  }
  .report-hero-summary {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(242,242,222,0.85);
    margin: 0;
  }
  .report-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .report-hero-stat {
    background: rgba(242,242,222,0.08);
    border: 1px solid rgba(242,242,222,0.12);
    padding: 12px 16px;
  }
  .report-hero-stat-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(242,242,222,0.45);
    margin-bottom: 4px;
  }
  .report-hero-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--cream);
    line-height: 1.1;
  }
  @media (max-width: 720px) {
    .report-hero { padding: 28px 20px 24px; }
    .report-hero-body { grid-template-columns: 1fr; gap: 20px; }
    .report-hero-title { font-size: 22px; }
    .report-hero-fox { height: 80px; }
  }

  /* ── Report Tabs ── */
  .report-tabs {
    position: sticky;
    top: 56px;
    background: #fff;
    border-bottom: 1px solid rgba(28,28,28,0.1);
    z-index: 5;
    display: flex;
    align-items: stretch;
  }
  .report-tab {
    font-size: 13px;
    color: var(--green);
    padding: 14px 20px;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
  }
  .report-tab.active {
    border-bottom: 2px solid var(--orange);
    font-weight: 500;
  }
  .report-tab:hover:not(.active) { border-bottom-color: rgba(196,98,45,0.35); }
  .report-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    line-height: 1;
  }
  .report-tab-panel { padding: 24px 0; }
  .report-tab-panel.hidden { display: none; }

  /* ── SVG Fit Gauge ── */
  .fit-gauge-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }
  .fit-gauge-wrap.fit-gauge-lg { width: 88px; height: 88px; }
  .fit-gauge-wrap.fit-gauge-sm { width: 64px; height: 64px; }
  .fit-gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  .fit-gauge-track {
    fill: none;
    stroke: rgba(28,28,28,0.1);
    stroke-width: 5;
  }
  .fit-gauge-fill {
    fill: none;
    stroke: var(--orange);
    stroke-width: 5;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1);
  }
  .fit-gauge-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .fit-gauge-pct-lg {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--green);
    line-height: 1;
  }
  .fit-gauge-pct-sm {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--green);
    line-height: 1;
  }
  .fit-gauge-sub {
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.35);
    margin-top: 2px;
  }

  /* ── Attribute Dots ── */
  .attr-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .attr-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.45);
    width: 80px;
    flex-shrink: 0;
  }
  .attr-dots { display: flex; gap: 4px; align-items: center; }
  .attr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(28,28,28,0.12);
  }
  .attr-dot.filled { background: var(--green); }

  /* ── Club Type Tag ── */
  .club-type-tag {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    margin-right: 6px;
  }
  .ctt-gi { background: rgba(2,41,13,0.1); color: var(--green); }
  .ctt-pd { background: rgba(196,98,45,0.1); color: var(--orange); }
  .ctt-players { background: rgba(28,28,28,0.1); color: var(--charcoal); }

  /* ── Hero Card (#1) ── */
  .report-hero-card {
    border: 2px solid var(--orange);
    background: var(--cream);
    padding: 36px;
    margin-bottom: 2px;
  }
  .report-hero-card-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
  }
  .report-hero-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .report-hero-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #fff;
  }
  .report-hero-card-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0efe5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: rgba(28,28,28,0.25);
    letter-spacing: 2px;
  }
  .report-hero-card-price-block { text-align: center; }
  .report-hero-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--green);
    line-height: 1.1;
  }
  .report-hero-card-price-label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
    margin-top: 3px;
  }
  .report-hero-card-right { min-width: 0; }
  .report-hero-card-badge {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  .report-hero-card-badge::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
  }
  .report-hero-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 0;
    line-height: 1.2;
  }
  .report-hero-card-meta { margin-bottom: 16px; }
  .report-hero-card-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--green);
    border-left: 2px solid var(--orange);
    padding-left: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
  }
  .report-hero-card-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .report-hero-card-section-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
    margin-bottom: 8px;
  }
  .report-hero-card-section-p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--charcoal);
    margin: 0;
  }
  .report-hero-card-tradeoff-p {
    font-size: 13px;
    font-style: italic;
    color: rgba(28,28,28,0.72);
    line-height: 1.65;
    margin: 0;
  }
  .report-hero-card-about {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(28,28,28,0.08);
  }
  .report-hero-card-attrs { margin-bottom: 16px; }
  .report-caddie-note-block {
    background: rgba(196,98,45,0.05);
    border-left: 2px solid var(--orange);
    padding: 14px;
    margin-top: 20px;
  }
  .report-caddie-note-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
  }
  .report-caddie-note-p {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(28,28,28,0.7);
    margin: 0;
  }
  @media (max-width: 800px) {
    .report-hero-card { padding: 20px; }
    .report-hero-card-inner { grid-template-columns: 1fr; gap: 20px; }
    .report-hero-card-left { flex-direction: row; align-items: flex-start; }
    .report-hero-card-img, .report-hero-card-img-placeholder { width: 100px; aspect-ratio: auto; height: 80px; }
    .report-hero-card-sections { grid-template-columns: 1fr; gap: 12px; }
  }

  /* ── Report Section Dividers ── */
  .report-tier-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.5);
    padding: 20px 0 10px;
    border-top: 1px solid rgba(28,28,28,0.08);
    margin-top: 4px;
  }

  /* ── Medium Cards (#2–5) ── */
  .report-medium-card {
    border: 1px solid rgba(28,28,28,0.12);
    background: var(--cream);
    margin-bottom: 2px;
  }
  .report-medium-header {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }
  .report-medium-img {
    width: 80px;
    height: 64px;
    background: #fff;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .report-medium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .report-medium-meta { flex: 1; min-width: 0; }
  .report-medium-rank {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
    margin-bottom: 4px;
  }
  .report-medium-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .report-medium-gauge { flex-shrink: 0; }
  .report-medium-price {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--green);
    flex-shrink: 0;
    text-align: right;
    min-width: 70px;
  }
  .report-medium-price-label {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.35);
    margin-top: 2px;
  }
  .report-medium-body { padding: 0 20px 24px; }
  .report-medium-attrs {
    display: flex;
    flex-wrap: wrap;
    gap: 0 32px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(28,28,28,0.07);
  }
  .report-medium-about {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(28,28,28,0.6);
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(28,28,28,0.07);
  }
  .report-medium-why {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(28,28,28,0.75);
    margin: 0 0 10px;
  }
  .report-medium-tradeoff {
    font-size: 12px;
    color: rgba(28,28,28,0.72);
    line-height: 1.7;
    margin: 0 0 12px;
  }

  /* ── Compact Cards (#6–10) ── */
  .report-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .report-compact-card {
    border: 1px solid rgba(28,28,28,0.12);
    background: var(--cream);
  }
  .report-compact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    cursor: pointer;
  }
  .report-compact-header:hover { background: rgba(28,28,28,0.02); }
  .report-compact-img {
    width: 60px;
    height: 48px;
    background: #fff;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .report-compact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .report-compact-meta { flex: 1; min-width: 0; }
  .report-compact-rank {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
  }
  .report-compact-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--green);
    line-height: 1.3;
  }
  .report-compact-fit-dots { display: flex; gap: 3px; margin-top: 4px; }
  .report-compact-fit-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(28,28,28,0.12);
  }
  .report-compact-fit-dot.filled { background: var(--orange); }
  .report-compact-price {
    font-size: 12px;
    color: var(--green);
    flex-shrink: 0;
    text-align: right;
  }
  .report-compact-chevron {
    font-size: 14px;
    color: rgba(28,28,28,0.35);
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .report-compact-chevron.open { transform: rotate(180deg); }
  .report-compact-body {
    display: none;
    padding: 0 16px 20px;
    border-top: 1px solid rgba(28,28,28,0.07);
  }
  .report-compact-body.open { display: block; }
  .report-compact-about {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(28,28,28,0.65);
    margin: 12px 0 10px;
  }
  .report-compact-why {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(28,28,28,0.65);
    margin: 0 0 8px;
  }
  @media (max-width: 720px) {
    .report-compact-grid { grid-template-columns: 1fr; }
  }

  /* ── Compare checkbox ── */
  .compare-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(28,28,28,0.6);
    cursor: pointer;
    margin-top: 16px;
    user-select: none;
  }
  .compare-check-label input { accent-color: var(--orange); cursor: pointer; }
  .compare-check-label input:disabled { opacity: 0.35; cursor: not-allowed; }
  .compact-header-compare { margin-top: 0; font-size: 11px; flex-shrink: 0; }
  .img-initials {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: rgba(28,28,28,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
  }

  /* ── Compare Tab ── */
  .compare-empty {
    font-size: 14px;
    color: rgba(28,28,28,0.45);
    padding: 48px 0;
    text-align: center;
    font-style: italic;
  }
  .compare-table-wrap { overflow-x: auto; }
  .compare-grid {
    display: grid;
    min-width: 360px;
  }
  .compare-grid-header-cell {
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(28,28,28,0.1);
    padding-right: 12px;
  }
  .compare-club-col-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--green);
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .compare-club-col-rank {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
  }
  .compare-row-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(28,28,28,0.4);
    padding: 12px 0;
    border-bottom: 1px solid rgba(28,28,28,0.06);
    display: flex;
    align-items: center;
  }
  .compare-val {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(28,28,28,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .compare-val-price {
    font-size: 14px;
    color: var(--green);
    font-weight: 500;
  }
  .compare-val-year {
    font-size: 13px;
    color: rgba(28,28,28,0.6);
  }
  .compare-submit-row {
    padding: 24px 0 4px;
    border-top: 1px solid rgba(28,28,28,0.1);
    margin-top: 16px;
  }

