*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow-x: hidden;
      overscroll-behavior: none;
      position: relative;
      padding: 40px 24px;
    }

    /* ── GRAIN ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.5;
    }

    body::after {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(212,175,55,0.06) 0%, transparent 70%);
    }

    /* ── CORNERS ── */
    .corner { position: fixed; width: 40px; height: 40px; z-index: 1; pointer-events: none; -webkit-transform: translateZ(0); transform: translateZ(0); }
    .corner::before, .corner::after { content: ''; position: absolute; background: rgba(212,175,55,0.35); }
    .corner::before { width: 100%; height: 1px; top: 0; left: 0; }
    .corner::after  { width: 1px; height: 100%; top: 0; left: 0; }
    .corner.tl { top: 20px; left: 20px; }
    .corner.tr { top: 20px; right: 20px; transform: scaleX(-1) translateZ(0); }
    .corner.bl { bottom: 20px; left: 20px; transform: scaleY(-1) translateZ(0); }
    .corner.br { bottom: 20px; right: 20px; transform: scale(-1) translateZ(0); }

    /* ── NAV ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 64px; height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      -webkit-transform: translateZ(0); transform: translateZ(0);
    }
    .nav-brand {
      font-family: var(--sc); font-size: clamp(13px,1.1vw,17px);
      letter-spacing: 5px; color: rgba(212,175,55,0.5);
      text-decoration: none; text-transform: uppercase;
    }
    .nav-back {
      font-family: var(--sc); font-size: clamp(12px,0.85vw,13px);
      letter-spacing: 3px; color: rgba(212,175,55,0.4);
      text-decoration: none; text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-back:hover { color: var(--gold); }

    /* ── SCREENS ── */
    .screen {
      position: relative; z-index: 2;
      width: 100%; max-width: 620px;
      text-align: center;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      display: none;
    }
    .screen.active { display: block; opacity: 1; transform: translateY(0); }
    .screen.fade-out { opacity: 0; transform: translateY(-20px); }

    /* ── INTRO ── */
    .intro-label {
      font-size: clamp(12px,0.85vw,13px); letter-spacing: 7px;
      color: rgba(212,175,55,0.6); text-transform: uppercase;
      font-family: var(--sc); margin-bottom: 32px;
    }
    .intro-title {
      font-family: var(--sc);
      font-size: clamp(48px,8vw,86px);
      font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--gold);
      line-height: 0.9; margin-bottom: 48px;
      animation: glow 5s ease infinite;
    }
    .intro-sub {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(16px,1.3vw,22px);
      color: var(--text-dim); line-height: 1.8;
      margin-bottom: 56px; letter-spacing: 1px;
    }
    .intro-sub strong { color: var(--text); font-weight: 400; }

    /* ── PROGRESS ── */
    .progress-wrap {
      display: flex; gap: 6px; margin-bottom: 48px; justify-content: center;
    }
    .progress-dot {
      width: 28px; height: 2px; border-radius: 1px;
      background: rgba(212,175,55,0.15);
      transition: background 0.6s ease, width 0.3s ease;
    }
    .progress-dot.done { background: var(--gold); }
    .progress-dot.active { background: rgba(212,175,55,0.5); width: 40px; }

    /* ── QUESTION ── */
    .q-category {
      font-size: clamp(11px,0.75vw,12px); letter-spacing: 5px;
      color: rgba(212,175,55,0.5); text-transform: uppercase;
      font-family: var(--sc); margin-bottom: 24px;
    }
    .q-text {
      font-family: var(--serif);
      font-size: clamp(18px,1.8vw,26px);
      line-height: 1.75; color: var(--text);
      margin-bottom: 12px; font-weight: 400;
    }
    .q-sub {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(14px,1.1vw,18px);
      color: var(--gold); margin-bottom: 40px;
      letter-spacing: 1px;
    }

    /* ── OPTIONS ── */
    .options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
    .option-btn {
      width: 100%; text-align: left;
      padding: 18px 24px;
      background: transparent;
      border: 1px solid rgba(212,175,55,0.12);
      color: var(--text-dim);
      font-family: var(--serif); font-size: clamp(14px,1.1vw,17px);
      cursor: pointer; transition: all 0.25s ease;
      display: flex; gap: 16px; align-items: flex-start;
      line-height: 1.6;
    }
    .option-btn:hover {
      border-color: rgba(212,175,55,0.4);
      background: rgba(212,175,55,0.04);
      color: var(--text);
    }
    .option-btn.selected {
      border-color: rgba(212,175,55,0.7);
      background: rgba(212,175,55,0.07);
      color: var(--text);
    }
    .option-letter {
      font-family: var(--sc); font-size: 13px;
      color: rgba(212,175,55,0.4); letter-spacing: 2px;
      flex-shrink: 0; margin-top: 2px;
      transition: color 0.25s;
    }
    .option-btn.selected .option-letter { color: var(--gold); }
    .option-main { flex: 1; }
    .option-emphasis {
      display: block; font-style: italic;
      color: rgba(212,175,55,0.6); font-size: 0.9em;
      margin-top: 3px;
    }
    .option-btn.selected .option-emphasis { color: var(--gold); }

    /* ── COMPACT OPTIONS ON SHORT SCREENS ── */
    @media (max-height: 700px) {
      .options { gap: 7px; margin-bottom: 18px; }
      .option-btn { padding: 10px 16px; line-height: 1.4; }
      .progress-wrap { margin-bottom: 24px; }
      .q-text { font-size: clamp(15px,1.6vw,22px); margin-bottom: 8px; }
    }

    /* ── NEXT BTN ── */
    .next-btn { display: none; }

    /* ── PRIMARY BTN ── */
    .primary-btn {
      display: inline-block; padding: 16px 48px;
      background: transparent;
      border: 1px solid rgba(212,175,55,0.45);
      color: var(--gold);
      font-family: var(--sc); font-size: clamp(13px,0.9vw,14px);
      letter-spacing: 5px; text-transform: uppercase;
      cursor: pointer; transition: all 0.3s; text-decoration: none;
    }
    .primary-btn:hover { background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.8); }

    /* ── ANALYZING ── */
    .analyzing-wrap { padding: 60px 0; }
    .spin-ring {
      width: 72px; height: 72px; border-radius: 50%;
      border: 1px solid rgba(212,175,55,0.15);
      border-top: 1px solid var(--gold);
      margin: 0 auto 44px;
      animation: spin 1.8s linear infinite;
    }
    .analyzing-label {
      font-family: var(--sc); font-size: clamp(12px,0.85vw,13px);
      letter-spacing: 6px; color: rgba(212,175,55,0.5);
      text-transform: uppercase; margin-bottom: 12px;
    }
    .analyzing-sub {
      font-size: clamp(13px,0.9vw,14px);
      color: rgba(212,175,55,0.25); letter-spacing: 2px;
    }

    /* ── RESULT ── */
    .result-label {
      font-size: clamp(11px,0.75vw,12px); letter-spacing: 7px;
      color: rgba(212,175,55,0.55); text-transform: uppercase;
      font-family: var(--sc); margin-bottom: 28px;
    }
    .archetype-name {
      font-family: var(--sc);
      font-size: clamp(36px,5vw,68px);
      font-weight: 600; color: var(--gold);
      letter-spacing: 4px; line-height: 1;
      margin-bottom: 8px;
      animation: glow 4s ease infinite;
    }
    .archetype-sub {
      font-family: var(--sc); font-size: clamp(13px,0.9vw,15px);
      letter-spacing: 5px; color: rgba(212,175,55,0.45);
      text-transform: uppercase; margin-bottom: 36px;
    }
    .divider-line {
      display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
    }
    .divider-line::before, .divider-line::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2));
    }
    .divider-line::after { background: linear-gradient(90deg, rgba(212,175,55,0.2), transparent); }
    .divider-line span { color: rgba(212,175,55,0.35); font-size: 12px; }

    .result-desc {
      font-family: var(--serif); font-size: clamp(15px,1.2vw,19px);
      font-style: italic; color: var(--text-dim);
      line-height: 1.9; margin-bottom: 36px;
      padding: 28px 32px;
      border: 1px solid rgba(212,175,55,0.1);
      background: rgba(212,175,55,0.02);
    }

    /* ── DIMENSION BADGES ── */
    .dimensions {
      display: grid; grid-template-columns: repeat(2,1fr);
      gap: 10px; margin-bottom: 36px;
    }
    .dim-badge {
      padding: 14px 16px; text-align: left;
      border: 1px solid rgba(212,175,55,0.08);
      background: rgba(212,175,55,0.01);
    }
    .dim-label {
      font-size: clamp(11px,0.65vw,10px); letter-spacing: 3px;
      color: rgba(212,175,55,0.4); text-transform: uppercase;
      font-family: var(--sc); margin-bottom: 4px;
    }
    .dim-value {
      font-family: var(--sc); font-size: clamp(13px,1.1vw,16px);
      color: var(--gold); letter-spacing: 1px;
    }

    /* ── HIDDEN ASSET ── */
    .hidden-asset {
      padding: 20px 28px; margin-bottom: 32px;
      border: 1px solid rgba(212,175,55,0.2);
      background: rgba(212,175,55,0.03);
      animation: borderPulse 3s ease infinite;
    }
    .hidden-asset p {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(13px,1.05vw,17px);
      color: rgba(240,232,216,0.8); line-height: 1.7;
    }
    .hidden-asset strong { color: var(--gold); font-weight: 400; }

    /* ── EMAIL CAPTURE ── */
    .email-section { margin-bottom: 20px; }
    .email-label {
      font-family: var(--serif); font-size: clamp(15px,1.2vw,19px);
      font-style: italic; color: var(--text-dim);
      margin-bottom: 24px; line-height: 1.6;
    }

    /* ── SUCCESS ── */
    .success-seal {
      padding: 24px 36px;
      border: 1px solid rgba(212,175,55,0.22);
      background: rgba(212,175,55,0.03);
      display: inline-block;
    }
    .success-seal p { font-size: clamp(12px,0.85vw,13px); letter-spacing: 5px; color: rgba(212,175,55,0.6); text-transform: uppercase; margin-bottom: 8px; }
    .success-seal .rank { font-size: clamp(18px,1.5vw,24px); color: var(--gold); font-style: italic; font-family: var(--serif); margin-bottom: 4px; }
    .success-seal .sub { font-size: clamp(11px,0.75vw,12px); letter-spacing: 3px; color: rgba(212,175,55,0.4); text-transform: uppercase; }

    /* ── GATE POST CTA ── */
    .gate-post-cta {
      text-align: center;
      margin-bottom: 36px;
      padding: 28px 24px 32px;
      border: 1px solid rgba(212,175,55,0.2);
      background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(8,6,4,0.6) 100%);
      position: relative;
    }
    .gate-post-cta::before, .gate-post-cta::after {
      content: '◆';
      position: absolute;
      font-size: 12px;
      color: rgba(212,175,55,0.3);
    }
    .gate-post-cta::before { top: 10px; left: 50%; transform: translateX(-50%); }
    .gate-post-cta::after  { bottom: 10px; left: 50%; transform: translateX(-50%); }
    .gate-post-cta-text {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(14px,1.1vw,17px);
      color: rgba(240,232,216,0.4);
      line-height: 1.8;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }
    .gate-post-cta-btn {
      display: inline-block;
      padding: 14px 40px;
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.45);
      color: var(--gold);
      font-family: var(--sc);
      font-size: clamp(13px,0.9vw,13px);
      letter-spacing: 5px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
    }
    .gate-post-cta-btn:hover { background: rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.8); }

    /* ── ANIMATIONS ── */
    @keyframes glow { 0%,100%{text-shadow:0 0 20px rgba(212,175,55,0.15)} 50%{text-shadow:0 0 50px rgba(212,175,55,0.5),0 0 90px rgba(212,175,55,0.15)} }
    @keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
    @keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
    @keyframes borderPulse { 0%,100%{border-color:rgba(212,175,55,0.2)} 50%{border-color:rgba(212,175,55,0.5)} }
    @keyframes scanline { 0%{transform:translateY(-100%)} 100%{transform:translateY(100vh)} }

    .scanline { position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden }
    .scanline::after { content:'';position:absolute;width:100%;height:2px;background:linear-gradient(180deg,transparent,rgba(212,175,55,0.015),transparent);animation:scanline 12s linear infinite }

    /* ── MUTE BUTTON ── */
    .mute-btn {
      background: none; border: none; cursor: pointer;
      color: rgba(212,175,55,0.3); padding: 6px;
      transition: color 0.25s; display: flex; align-items: center;
      visibility: hidden;
    }
    .mute-btn.visible { visibility: visible; }
    .mute-btn:hover { color: rgba(212,175,55,0.75); }
    .mute-btn svg { display: block; }

    @media (max-width: 480px) {
      body { padding: 80px 16px 40px; }
      .dimensions { grid-template-columns: 1fr; }
      .result-desc { padding: 20px; }
    }

    /* ── RESULT GATE ── */
    #result-gate {
      background: rgba(0,0,0,0.55);
      border: 1px solid rgba(212,175,55,0.22);
      padding: 36px 24px;
      margin-bottom: 32px;
      text-align: center;
    }
    .gate-teaser {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(14px,1.1vw,17px);
      color: var(--text-dim);
      line-height: 1.9;
      margin-bottom: 24px;
      letter-spacing: 0.5px;
    }
    #gate-email {
      width: 100%;
      background: transparent;
      border: 1px solid rgba(212,175,55,0.2);
      color: var(--text);
      font-family: var(--sans);
      padding: 12px 16px;
      font-size: 14px;
      outline: none;
      margin-bottom: 12px;
      transition: border-color 0.2s;
      box-sizing: border-box;
    }
    #gate-email:focus { border-color: rgba(212,175,55,0.5); }
    #gate-email::placeholder { color: rgba(212,175,55,0.25); }
    #gate-submit {
      display: block; width: 100%; padding: 14px 36px;
      background: transparent;
      border: 1px solid rgba(212,175,55,0.45);
      color: var(--gold);
      font-family: var(--sc);
      font-size: clamp(13px,0.9vw,13px);
      letter-spacing: 4px; text-transform: uppercase;
      cursor: pointer; transition: all 0.3s;
    }
    #gate-submit:hover { background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.8); }
    #gate-error {
      font-size: 13px; letter-spacing: 2px; margin-top: 12px;
      color: rgba(212,175,55,0.55); font-family: var(--serif); font-style: italic;
    }
    #gate-error a { color: var(--gold); }
