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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: #f8fafc;
      color: #1e293b;
      line-height: 1.6;
    }

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

    /* ── Header — Glass Morphism ── */
    .header {
      background: rgba(248, 250, 252, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(107, 70, 193, 0.15);
      box-shadow: 0 2px 8px rgba(107, 70, 193, 0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }

    .logo-section {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      cursor: pointer;
    }

    .logo-img { height: 30px; width: auto; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #64748b;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links a:hover { color: #7e54f9; }

    .nav-buttons { display: flex; gap: 1rem; }

    .btn {
      height: 50px;
      padding: 0 1.5rem;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      text-decoration: none;
    }

    .nav-signin-link {
      background: none; border: none; color: #64748b; font-size: 0.9rem;
      font-weight: 500; cursor: pointer; padding: 0 4px; transition: color 0.2s;
    }
    .nav-signin-link:hover { color: #7e54f9; }

    .btn-primary { background: #1e293b; color: white; }
    .btn-primary:hover { background: #7e54f9; color: white; transform: translateY(-1px); }
    .btn-secondary { background: rgba(255,255,255,0.2); color: #475569; border: 1px solid rgba(255,255,255,0.3); }
    .btn-secondary:hover { background: #e2e8f0; }

    /* ── Return-customer banner ── */
    #return-customer-banner {
      display: none;
      background: linear-gradient(90deg, #1e1b4b 0%, #312e81 100%);
      color: white;
      padding: 10px 24px;
      text-align: center;
      font-size: 0.9rem;
      gap: 14px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
    #return-customer-banner.visible { display: flex; }
    #return-customer-banner.session-hide { display: none !important; }
    #return-customer-banner .rcb-label { opacity: 0.9; }
    #return-customer-banner .rcb-balance { font-weight: 700; color: #a5b4fc; }
    #return-customer-banner .rcb-btn {
      background: #7e54f9; color: white; border: none; border-radius: 6px;
      padding: 6px 16px; font-size: 0.82rem; font-weight: 600; cursor: pointer;
      transition: background 0.15s;
    }
    #return-customer-banner .rcb-btn:hover { background: #6d28d9; }
    #return-customer-banner .rcb-signout {
      font-size: 0.78rem; color: rgba(255,255,255,0.5); cursor: pointer;
      background: none; border: none; padding: 4px 2px; text-decoration: underline;
      min-height: 36px; display: inline-flex; align-items: center;
    }
    #return-customer-banner .rcb-signout:hover { color: rgba(255,255,255,0.85); }
    #return-customer-banner .rcb-cancel { color: rgba(255,160,160,0.6); }
    #return-customer-banner .rcb-cancel:hover { color: rgba(255,160,160,0.95); }
    /* ── Discovery return banner (desktop only, returning free visitors) ── */
    #discovery-return-banner {
      display: none; align-items: center; gap: 0.75rem; flex-wrap: wrap;
      background: linear-gradient(90deg, rgba(124,58,237,0.09), rgba(168,85,247,0.06));
      border-bottom: 1px solid rgba(124,58,237,0.18); color: #4c1d95;
      padding: 0.45rem 1.5rem; font-size: 0.84rem;
      position: sticky; top: 68px; z-index: 99; width: 100%; box-sizing: border-box;
    }
    #discovery-return-banner.visible { display: flex; }
    #discovery-return-banner.session-hide { display: none !important; }
    #discovery-return-banner .drb-label { opacity: 0.85; }
    #discovery-return-banner .drb-btn {
      background: #7c3aed; color: #fff; border: none; border-radius: 6px;
      padding: 0.3rem 0.9rem; font-size: 0.8rem; font-weight: 600; cursor: pointer;
    }
    #discovery-return-banner .drb-btn:hover { background: #6d28d9; }
    #discovery-return-banner .drb-dismiss {
      margin-left: auto; background: none; border: none; color: rgba(76,29,149,0.45);
      font-size: 0.78rem; cursor: pointer; padding: 0;
    }
    #discovery-return-banner .drb-dismiss:hover { color: rgba(76,29,149,0.8); }
    /* ── Hamburger button (mobile only) ── */
    .hamburger-btn {
      display: none; flex-direction: column; justify-content: center; align-items: center;
      gap: 6px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger-btn span { display: block; width: 27px; height: 2.5px; background: #1e293b; border-radius: 2px; transition: background 0.2s; }
    .hamburger-btn:hover span { background: #7e54f9; }

    /* ── Mobile slide-in panel ── */
    .mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1100; }
    .mobile-menu-overlay.open { display: block; }
    .mobile-menu-panel {
      position: fixed; top: 0; right: 0; width: min(320px, 85vw); height: 100%;
      background: #fff; z-index: 1200; display: flex; flex-direction: column; padding: 0 0 32px;
      transform: translateX(100%); transition: transform 0.28s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
    }
    .mobile-menu-panel.open { transform: translateX(0); }
    .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 20px 16px; border-bottom: 1px solid #f1f5f9; }
    .mobile-menu-header .logo-img { height: 21px; }
    .mobile-menu-close { background: #e2e8f0; border: none; color: #1e293b; cursor: pointer; border-radius: 10px; width: 42px; height: 42px; font-size: 1.35rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, color 0.2s; line-height: 1; }
    .mobile-menu-close:hover { background: #cbd5e1; color: #0f172a; }
    .mobile-nav-links { display: flex; flex-direction: column; padding: 8px 20px; border-bottom: 1px solid #f1f5f9; }
    .mobile-nav-links a { display: block; padding: 12px 0; color: #1e293b; text-decoration: none; font-weight: 500; font-size: 1rem; border-bottom: 1px solid #f8fafc; transition: color 0.2s; }
    .mobile-nav-links a:last-child { border-bottom: none; }
    .mobile-nav-links a:hover { color: #7e54f9; }
    .mobile-menu-cta { padding: 20px 20px 4px; }
    .mobile-signin-row { padding: 12px 20px 4px; display: flex; justify-content: center; }
    .mobile-account-section { display: flex; flex-direction: column; padding: 0 20px; gap: 2px; }
    .mobile-account-divider { height: 1px; background: #f1f5f9; margin: 16px 0 12px; }
    .mobile-balance-text { font-size: 0.9rem; font-weight: 700; color: #7e54f9; margin: 0 0 8px; padding: 0; }
    .mobile-topup-btn { width: 100%; padding: 11px; background: #7e54f9; color: #fff; border: none; border-radius: 8px; font-weight: 700; font-size: 0.9rem; cursor: pointer; margin-bottom: 8px; transition: background 0.2s; }
    .mobile-topup-btn:hover { background: #6d3fee; }
    .mobile-text-btn { background: none; border: none; padding: 10px 0; text-align: left; font-size: 0.9rem; font-weight: 500; color: #64748b; cursor: pointer; transition: color 0.2s; }
    .mobile-text-btn:hover { color: #1e293b; }
    .mobile-close-btn { color: #94a3b8; }
    .mobile-close-btn:hover { color: #1e293b; }
    .mobile-delete-btn { color: rgba(220,38,38,0.55); font-size: 0.82rem; }
    .mobile-delete-btn:hover { color: #dc2626; }

    /* ── Shared modals (close-account + delete-data + sign-in) ── */
    .hdr-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9000; align-items: center; justify-content: center; }
    .hdr-modal-overlay.open { display: flex; }
    .hdr-modal { background: #fff; border-radius: 14px; padding: 36px 32px 28px; max-width: 420px; width: 90%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
    .hdr-modal h2 { font-size: 1.2rem; font-weight: 800; color: #1e293b; margin: 0 0 10px; }
    .hdr-modal p  { font-size: 0.9rem; color: #64748b; line-height: 1.6; margin: 0; }
    .hdr-modal-btns { display: flex; gap: 10px; justify-content: center; }
    .hdr-btn-keep { padding: 11px 24px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; border: 1px solid #e2e8f0; background: #f8fafc; color: #374151; cursor: pointer; }
    .hdr-btn-keep:hover { background: #e2e8f0; }
    .hdr-btn-close { padding: 11px 24px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; border: none; background: #1e293b; color: #fff; cursor: pointer; }
    .hdr-btn-close:hover { background: #7e54f9; }
    .hdr-btn-delete { padding: 11px 24px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; border: none; background: #dc2626; color: #fff; cursor: pointer; }
    .hdr-btn-delete:hover { background: #b91c1c; }
    .hdr-btn-delete:disabled { opacity: 0.45; cursor: not-allowed; }
    .hdr-delete-input { width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 0.95rem; margin-top: 8px; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
    .hdr-delete-input:focus { border-color: #7e54f9; }

    /* ── Hero Section ── */
    /* --above-hero is set by JS (recalcHeroOffset) to the exact pixel height of everything
       above the hero (sticky header + any visible banner). Fallback 63px is the measured
       header height for a first paint before JS runs. Result: hero bottom is ALWAYS flush
       with viewport bottom regardless of banner state, font load shifts, or breakpoint. */
    :root { --above-hero: 63px; }
    .hero-section {
      text-align: center;
      padding: 1.25rem 0 1.25rem;
      min-height: calc(100vh - var(--above-hero));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      line-height: 1.1;
    }

    .hero-description {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.9);
      max-width: 800px;
      margin: 0 auto 1rem;
      line-height: 1.6;
    }

    /* ── Purple Orb ── */
    /* ── Session dim overlay — covers page behind orb during live session ── */
    #session-dim {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.48);
      z-index: 500;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.45s ease;
    }
    #session-dim.active { opacity: 1; }

    /* ── Orb focus zone — floats above dim during session ── */
    #orb-focus-zone { position: relative; z-index: 0; }
    #orb-focus-zone.elevated { z-index: 501; }

    /* ── Timer label row — centered text, right-pinned live dot ── */
    /* Spacer (10px) mirrors dot(5px)+margin(5px) so text stays optically centered */
    .orb-timer-label-row {
      display: flex;
      align-items: center;
      width: 100%;
      margin-top: 0.18rem;
      min-height: 1em;
    }
    .timer-col-left  { flex: 1; }
    .timer-col-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
    #timer-live-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-left: 5px;
      background: #86efac;
      opacity: 0;
      transition: opacity 0.4s ease, background-color 0.3s ease;
    }
    #timer-live-dot.visible { opacity: 1; }
    #timer-live-dot.paused  { background: #f87171; }

    .orb-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 1.1rem 0 0.75rem;
    }

    .purple-king-orb {
      width: 250px;
      height: 250px;
      cursor: default;
      transition: filter 0.3s ease, transform 0.2s ease;
      animation: breathe 4.62s ease-in-out infinite;
      filter: drop-shadow(0 10px 20px rgba(147, 51, 234, 0.3));
      transform-origin: center center;
      outline: none;
    }

    .purple-king-orb:focus, .purple-king-orb:focus-visible { outline: none; }

    .purple-king-orb:hover {
      animation-duration: 2s;
      filter: drop-shadow(0 15px 30px rgba(147, 51, 234, 0.5));
    }

    .purple-king-orb.talking { cursor: pointer; }

    .purple-king-orb.idle     { animation: breathe 4.62s ease-in-out infinite; }
    .purple-king-orb.talking  { animation: talkingPulse 0.8s ease-in-out infinite alternate; }
    .purple-king-orb.listening{ animation: listeningBreathe 2s ease-in-out infinite; }
    .purple-king-orb.processing{ animation: processingPulse 1.5s ease-in-out infinite; }
    .purple-king-orb.error    { animation: errorFlash 1s ease-in-out infinite; }

    @keyframes breathe {
      0%, 100% { transform: scale(1); }
      50%       { transform: scale(1.15); }
    }

    @keyframes talkingPulse {
      0%   { transform: scale(1);    filter: brightness(1.0); }
      100% { transform: scale(1.10); filter: brightness(1.25); }
    }

    @keyframes listeningBreathe {
      0%, 100% { transform: scale(1);    filter: drop-shadow(0 8px 18px rgba(232,121,249,0.35)); }
      50%       { transform: scale(1.05); filter: drop-shadow(0 14px 28px rgba(232,121,249,0.6)); }
    }

    @keyframes processingPulse {
      0%, 100% { transform: scale(1);    filter: brightness(1.0); }
      50%       { transform: scale(1.08); filter: brightness(1.2); }
    }

    @keyframes errorFlash {
      0%, 100% { filter: brightness(1) drop-shadow(0 10px 20px rgba(239,68,68,0.4)); }
      50%       { filter: brightness(1.3) drop-shadow(0 10px 30px rgba(239,68,68,0.7)); }
    }

    .purple-king-orb.paused { animation: pausedPulse 3s ease-in-out infinite; cursor: pointer; }

    @keyframes pausedPulse {
      0%, 100% { transform: scale(1);    filter: brightness(0.8); }
      50%       { transform: scale(1.04); filter: brightness(1.0); }
    }

    #orbClickText { animation: clickMeBreathe 4.62s ease-in-out infinite; }

    @keyframes clickMeBreathe {
      0%, 100% { opacity: 0.3; }
      50%       { opacity: 1.0; }
    }

    /* Orb text animations — each matches its orb state period + easing exactly */

    /* talking: 0.8s alternate — dim at orb-smallest, bright at orb-largest */
    .purple-king-orb.talking #orbClickText {
      animation: interruptPulse 0.8s ease-in-out infinite alternate;
    }
    @keyframes interruptPulse {
      0%   { opacity: 0.25; }
      100% { opacity: 1.0;  }
    }

    /* listening: 2s — matches listeningBreathe, peaks at orb max-scale (50%) */
    .purple-king-orb.listening #orbClickText {
      animation: listeningTextPulse 2s ease-in-out infinite;
    }
    @keyframes listeningTextPulse {
      0%, 100% { opacity: 0.35; }
      50%       { opacity: 0.9;  }
    }

    /* processing: 1.5s — matches processingPulse */
    .purple-king-orb.processing #orbClickText {
      animation: processingTextPulse 1.5s ease-in-out infinite;
    }
    @keyframes processingTextPulse {
      0%, 100% { opacity: 0.3;  }
      50%       { opacity: 0.85; }
    }

    /* paused: 3s — matches pausedPulse; orb dims to brightness(0.8) so text stays subtle */
    .purple-king-orb.paused #orbClickText {
      animation: pausedTextPulse 3s ease-in-out infinite;
    }
    @keyframes pausedTextPulse {
      0%, 100% { opacity: 0.2; }
      50%       { opacity: 0.6; }
    }

    /* error: 1s — matches errorFlash */
    .purple-king-orb.error #orbClickText {
      animation: errorTextPulse 1s ease-in-out infinite;
    }
    @keyframes errorTextPulse {
      0%, 100% { opacity: 0.2; }
      50%       { opacity: 0.75; }
    }

    /* State indicator — own centered row directly below orb */
    .orb-status-label {
      text-align: center;
      margin-top: 0 !important;
      margin-bottom: 0;
      color: rgba(255,255,255,0.5);
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      min-height: 0;
      line-height: 1.4;
      user-select: none;
    }

    .orb-status-label:not(:empty) {
      min-height: 1.4em;
    }

    /* Venue link card — shown when Alex sends a clickable website link */
    #venue-link-card {
      display: none;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: 0.4rem 0 0.2rem;
    }
    #venue-link-card a {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.42rem 1.1rem;
      background: rgba(139,92,246,0.18);
      border: 1px solid rgba(139,92,246,0.45);
      border-radius: 999px;
      color: rgba(220,200,255,0.95);
      font-size: 0.85rem;
      font-family: inherit;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      white-space: nowrap;
      max-width: 90vw;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    #venue-link-card a:hover { background: rgba(139,92,246,0.32); border-color: rgba(167,139,250,0.7); }
    #venue-link-card a svg { flex-shrink: 0; opacity: 0.8; }

    /* Transcript — full height, never clips spoken text */
    .orb-status-text {
      text-align: center;
      margin: 0 auto 0.4rem;
      color: rgba(255,255,255,0.95);
      font-size: 1.15rem;
      height: auto;
      min-height: 0;
      overflow: visible;
      line-height: 1.6;
      white-space: normal;
      overflow-wrap: break-word;
      max-width: min(820px, 96%);
      user-select: none;
    }

    #email-overlay {
      position: relative;
      width: 380px;
      max-width: 94vw;
      box-sizing: border-box;
      margin-left: auto;
      margin-right: auto;
    }

    #email-overlay-close {
      position: absolute;
      top: 8px;
      right: 10px;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50%;
      color: rgba(255,255,255,0.55);
      font-size: 12px;
      line-height: 1;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }

    #email-overlay-close:hover {
      background: rgba(255,255,255,0.22);
      color: #fff;
    }

    #email-overlay-input::placeholder {
      color: rgba(190, 150, 255, 0.6);
    }

    /* Guest panel — multi-row + file upload */
    #guest-panel {
      position: relative;
      width: 400px;
      max-width: 94vw;
      box-sizing: border-box;
      margin: 10px auto 0;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 12px;
      padding: 14px 16px 12px;
      backdrop-filter: blur(10px);
      display: none;
    }

    #guest-panel-close {
      position: absolute;
      top: 8px;
      right: 10px;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50%;
      color: rgba(255,255,255,0.55);
      font-size: 12px;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    #guest-panel-close:hover { background: rgba(255,255,255,0.22); color: #fff; }

    .guest-panel-title {
      color: rgba(255,255,255,0.88);
      font-size: 13px;
      font-weight: 600;
      margin: 0 0 10px;
      padding-right: 24px;
    }

    .guest-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }

    .guest-row {
      display: flex;
      gap: 5px;
      align-items: center;
    }

    .guest-row input {
      flex: 1;
      padding: 7px 10px;
      border-radius: 7px;
      border: 1px solid rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-size: 12px;
      outline: none;
      box-sizing: border-box;
      min-width: 0;
    }
    .guest-row input::placeholder { color: rgba(190,150,255,0.55); }
    .guest-row input:focus { border-color: rgba(124,58,237,0.7); }

    .guest-row-remove {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      color: rgba(255,255,255,0.45);
      font-size: 14px;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      line-height: 1;
    }
    .guest-row-remove:hover { background: rgba(239,68,68,0.25); color: #fca5a5; border-color: rgba(239,68,68,0.4); }

    .guest-panel-actions {
      display: flex;
      gap: 6px;
      align-items: center;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .guest-add-btn {
      font-size: 12px;
      color: rgba(167,139,250,0.9);
      background: none;
      border: 1px dashed rgba(124,58,237,0.45);
      border-radius: 6px;
      padding: 5px 10px;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
    }
    .guest-add-btn:hover { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.7); }

    .guest-upload-btn {
      font-size: 12px;
      color: rgba(167,139,250,0.9);
      background: none;
      border: 1px dashed rgba(124,58,237,0.45);
      border-radius: 6px;
      padding: 5px 10px;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
      position: relative;
      overflow: hidden;
    }
    .guest-upload-btn:hover { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.7); }
    .guest-upload-btn input[type=file] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      font-size: 0;
    }

    .guest-file-hint {
      font-size: 11px;
      color: rgba(255,255,255,0.38);
      margin: -4px 0 8px;
    }

    .guest-invite-btn {
      width: 100%;
      padding: 9px 14px;
      border-radius: 8px;
      background: #7c3aed;
      color: #fff;
      border: none;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s;
    }
    .guest-invite-btn:hover { background: #6d28d9; }
    .guest-invite-btn:disabled { opacity: 0.55; cursor: default; }

    #guest-panel-status {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      margin: 7px 0 0;
      display: none;
      text-align: center;
    }


    .orb-timer {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0;
      padding: 0.3rem 1.1rem 0.28rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 12px;
      backdrop-filter: blur(8px);
      min-width: 130px;
      width: fit-content;
      user-select: none;
      animation: timerFadeIn 0.4s ease;
    }
    @keyframes timerFadeIn {
      from { opacity: 0; transform: translateY(-5px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    #orb-timer-value {
      display: block;
      font-size: 1.0rem;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.09em;
      color: rgba(255,255,255,0.22);
      transition: color 0.5s ease, text-shadow 0.5s ease;
      line-height: 1;
    }
    #orb-timer-value.active {
      color: rgba(255,255,255,0.95);
      text-shadow: 0 0 18px rgba(167,139,250,0.55);
    }
    #orb-timer-value.warning {
      color: #fb923c;
      text-shadow: 0 0 18px rgba(251,146,60,0.55);
    }
    #orb-timer-value.critical {
      color: #f87171;
      text-shadow: 0 0 20px rgba(248,113,113,0.65);
      animation: timerPulse 1.4s ease-in-out infinite;
    }
    @keyframes timerPulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.6; }
    }
    #orb-timer-refill {
      display: none;
      font-size: 0.6rem;
      color: rgba(251,146,60,0.85);
      margin-top: 0.3rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 2px;
      transition: color 0.2s ease;
    }
    #orb-timer-refill:hover { color: #fb923c; }
    #orb-timer-balance {
      text-align: center;
      font-size: 0.58rem;
      color: rgba(167,139,250,0.75);
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 500;
      white-space: nowrap;
    }

    .session-btn-row {
      display: flex;
      gap: 0.55rem;
      justify-content: center;
      align-items: center;
    }
    .session-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin: 0;
      padding: 0.35rem 1.0rem;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 999px;
      color: rgba(255,255,255,0.7);
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease, border-color 0.2s, color 0.2s;
    }
    #pause-btn:hover  { border-color: rgba(255,220,100,0.7); color: rgba(255,240,150,0.95); }
    #stop-btn:hover   { border-color: rgba(255,100,100,0.7); color: rgba(255,150,150,0.95); }
    #pause-btn:disabled { opacity: 0.35 !important; cursor: not-allowed; pointer-events: none; }

    .microphone-help { text-align: center; }
    .microphone-help a { color: #a78bfa; text-decoration: underline; font-size: 0.82rem; }

    /* ── Below-orb row layout — every row independently centered ── */
    .orb-label-row {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0.25rem 0 0.1rem;
      min-height: 1.4em;
    }

    .orb-timer-row {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0.25rem 0 0.2rem;
      min-height: 0;
    }

    /* Each of the four bottom elements gets its own perfectly centered line */
    .orb-solo-row {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: 0.15rem 0;
    }

    /* ── Speaker Control (fixed, visible during voice session) ── */
    #speakerControl {
      position: fixed;
      top: 50%;
      right: 30px;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(54, 157, 241, 0.9);
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }

    #speakerControl:hover { background: rgba(54, 157, 241, 1); border-color: rgba(255,255,255,0.5); }
    #speakerControl.muted { background: rgba(220, 38, 38, 0.9); }
    #speakerControl.muted:hover { background: rgba(220, 38, 38, 1); }
    .speaker-icon { width: 24px; height: 24px; fill: white; }

    /* ── Scroll to Top ── */
    #scrollTopButton {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: rgba(147, 51, 234, 0.3);
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 999;
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateY(20px);
    }

    #scrollTopButton.visible { opacity: 1; transform: translateY(0); }
    #scrollTopButton:hover { background: rgba(147, 51, 234, 0.5); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
    .up-arrow-icon { width: 24px; height: 24px; fill: white; }

    /* ── Shared Section Styles ── */
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      color: #1e293b;
      margin-bottom: 1rem;
    }

    .section-description {
      font-size: 1.1rem;
      text-align: center;
      color: #64748b;
      max-width: 800px;
      margin: 0 auto 3rem;
      line-height: 1.6;
    }

    /* ── Voice-First Section ── */
    .voice-first-section { padding: 5rem 0; background: white; }

    /* ── Feature Cards ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-card {
      background: white;
      border-radius: 16px;
      padding: 3rem;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
    }

    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }

    .feature-icon {
      width: 80px;
      height: 80px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      box-shadow: 0 4px 12px rgba(124,58,237,0.3);
    }

    .feature-title { font-size: 1.5rem; font-weight: 600; color: #1e293b; margin-bottom: 1rem; }
    .feature-description { color: #64748b; line-height: 1.6; }

    /* ── Voice Demos ── */
    .voice-demos-section { padding: 5rem 0; background: #f8fafc; }

    .voice-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .voice-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
      text-align: center;
    }

    .voice-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }

    .voice-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .voice-name { font-size: 1.5rem; font-weight: 600; color: #1e293b; }

    .gender-badge {
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
    }

    .female-badge { background: #7c3aed; color: white; }
    .male-badge   { background: #1e293b; color: white; }

    .voice-description { color: #64748b; margin-bottom: 1.5rem; line-height: 1.5; font-size: 0.95rem; }

    .listen-btn {
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .listen-btn.female { background: #7c3aed; }
    .listen-btn.female:hover { background: #1e293b; transform: translateY(-1px); }
    .listen-btn.male   { background: #1e293b; }
    .listen-btn.male:hover   { background: #7c3aed; transform: translateY(-1px); }
    .listen-btn.playing { background: #dc2626 !important; }
    .listen-btn.playing:hover { background: #b91c1c !important; }

    /* ── Big Three Section ── */
    .big-three-section { padding: 5rem 0; background: white; }

    /* ── How It Works ── */
    .how-it-works-section { padding: 5rem 0; background: #f8fafc; }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .step-card { text-align: center; padding: 2rem; }

    .step-number {
      width: 60px;
      height: 60px;
      background: #7c3aed;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
    }

    .step-title { font-size: 1.25rem; font-weight: 600; color: #1e293b; margin-bottom: 1rem; white-space: nowrap; }
    .step-description { color: #64748b; line-height: 1.5; }

    /* ── Pricing ── */
    .pricing-section { padding: 5rem 0; background: white; }

    .pricing-card {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 16px;
      padding: 3rem;
      max-width: 800px;
      margin: 0 auto;
      box-shadow: 0 8px 24px rgba(102,126,234,0.3);
      text-align: center;
      border: 2px solid #7c3aed;
    }

    .price { font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 0.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
    .price-period { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 1.1rem; }

    .cta-button {
      width: 100%;
      height: 50px;
      padding: 0 1rem;
      font-size: 1.1rem;
      background: white;
      border: none;
      border-radius: 10px;
      color: #7c3aed;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 3px rgba(30,41,59,0.1);
    }

    .cta-button:hover { background: #1e293b; color: white; box-shadow: 0 2px 8px rgba(30,41,59,0.2); }

    /* ── Contact ── */
    .contact-section { padding: 5rem 0; background: #f8fafc; }

    .contact-tabs {
      display: flex;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      background: white;
      border-radius: 12px;
      padding: 0.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    .contact-tab {
      flex: 1;
      height: 50px;
      padding: 0 1.5rem;
      background: transparent;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
      font-size: 1rem;
      color: #64748b;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-tab.active { background: #7c3aed; color: white; box-shadow: 0 2px 4px rgba(124,58,237,0.2); }
    .contact-tab:hover:not(.active) { background: #f1f5f9; color: #475569; }

    .contact-form-container { max-width: 800px; margin: 0 auto; }

    .contact-form {
      background: white;
      padding: 3rem;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      border: 1px solid rgba(226,232,240,0.6);
      display: none;
    }

    .contact-form.active { display: block; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .form-group { margin-bottom: 1.5rem; }

    .form-label {
      display: block;
      margin-bottom: 0.75rem;
      font-weight: 600;
      color: #1e293b;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .form-input, .form-textarea, .form-select {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
      font-family: inherit;
      color: #1e293b;
    }

    .form-input:focus, .form-textarea:focus, .form-select:focus {
      outline: none;
      border-color: #7c3aed;
      box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
    }

    .form-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

    .form-select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
      background-position: right 0.5rem center;
      background-repeat: no-repeat;
      background-size: 1.5em 1.5em;
      padding-right: 2.5rem;
    }

    .form-submit {
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(124,58,237,0.3); }
    .form-submit:active { transform: translateY(0); }
    .form-submit.loading { pointer-events: none; opacity: 0.8; }
    .form-submit.loading .submit-text { display: none; }
    .form-submit.loading .submit-loading { display: inline; }
    .submit-loading { display: none; }

    /* ── Footer ── */
    .footer { background: #1e293b; color: white; padding: 3rem 0 2rem; }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: white; }
    .footer-section ul { list-style: none; }
    .footer-section ul li { margin-bottom: 0.5rem; }

    .footer-section ul li a {
      color: #94a3b8;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover { color: white; }

    .footer-logo { display: inline-block; margin-bottom: 1rem; text-decoration: none; transition: opacity 0.3s ease; }
    .footer-logo:hover { opacity: 0.8; }
    .footer-logo img { height: 25px; }

    .footer-bottom { border-top: 1px solid #334155; padding-top: 2rem; text-align: center; color: #94a3b8; }

    /* ── Microphone Help Modal ── */
    .microphone-modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(2,6,23,0.82);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .microphone-modal.active { opacity: 1; visibility: visible; }

    .microphone-modal-content {
      background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
      border: 1px solid rgba(139,92,246,0.3);
      border-radius: 20px;
      max-width: 620px;
      width: 100%;
      box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(139,92,246,0.12);
      transform: scale(0.96) translateY(16px);
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
      overflow: hidden;
    }

    .microphone-modal.active .microphone-modal-content { transform: scale(1) translateY(0); }

    .microphone-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.125rem 1.5rem;
      background: linear-gradient(135deg, #6d28d9 0%, #4f46e5 100%);
      position: relative;
      overflow: hidden;
    }

    .microphone-modal-header::before {
      content: '';
      position: absolute;
      top: -50%; right: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
      animation: shimmer 8s linear infinite;
    }

    @keyframes shimmer {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .microphone-modal-header h3 {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 0.625rem;
      position: relative;
      z-index: 1;
    }

    .microphone-close-btn {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.7);
      font-size: 1.1rem;
      cursor: pointer;
      width: 32px; height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      position: relative;
      z-index: 1;
      line-height: 1;
      flex-shrink: 0;
    }

    .microphone-close-btn:hover {
      background: rgba(239,68,68,0.25);
      border-color: rgba(239,68,68,0.5);
      color: #fca5a5;
    }

    .microphone-modal-body { padding: 1.125rem 1.5rem 1.375rem; }

    .browser-tabs {
      display: flex;
      gap: 0.3rem;
      margin-bottom: 0.875rem;
      background: rgba(255,255,255,0.06);
      padding: 0.3rem;
      border-radius: 11px;
    }

    .browser-tab {
      flex: 1;
      padding: 0.45rem 0.5rem;
      background: transparent;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.45);
      transition: all 0.2s ease;
    }

    .browser-tab.active {
      background: rgba(109,40,217,0.4);
      color: white;
      box-shadow: 0 2px 8px rgba(109,40,217,0.35);
    }

    .browser-section { display: none; animation: fadeIn 0.2s ease; }
    .browser-section.active { display: block; }

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

    .instruction-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(139,92,246,0.2);
      border-radius: 12px;
      padding: 0.875rem 1.125rem;
      margin-bottom: 0.75rem;
    }

    .instruction-card h4 {
      margin: 0 0 0.625rem;
      color: #c4b5fd;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .step-list { list-style: none; counter-reset: step-counter; margin: 0; padding: 0; }

    .step-list li {
      margin-bottom: 0.4rem;
      padding-left: 1.875rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.45;
      position: relative;
      counter-increment: step-counter;
      font-size: 0.875rem;
    }

    .step-list li:last-child { margin-bottom: 0; }

    .step-list li::before {
      content: counter(step-counter);
      position: absolute;
      left: 0; top: 1px;
      width: 20px; height: 20px;
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.7rem;
    }

    .step-list li code {
      background: rgba(139,92,246,0.18);
      border: 1px solid rgba(139,92,246,0.28);
      padding: 0.1rem 0.3rem;
      border-radius: 4px;
      font-family: 'SF Mono', Monaco, Inconsolata, monospace;
      font-size: 0.8rem;
      color: #c4b5fd;
    }

    .troubleshooting-section {
      background: rgba(251,191,36,0.07);
      border: 1px solid rgba(251,191,36,0.22);
      padding: 0.75rem 1.125rem;
      border-radius: 12px;
      margin-bottom: 0.75rem;
    }

    .troubleshooting-section h4 {
      margin: 0 0 0.5rem;
      color: #fbbf24;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .troubleshooting-section ul {
      list-style: none;
      margin: 0; padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.3rem 1rem;
    }

    .troubleshooting-section li {
      padding-left: 1.1rem;
      color: rgba(255,255,255,0.6);
      font-size: 0.8125rem;
      line-height: 1.4;
      position: relative;
    }

    .troubleshooting-section li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: #fbbf24;
      font-weight: 700;
      font-size: 0.75rem;
    }

    .quick-test-btn {
      width: 100%;
      padding: 0.7rem 1rem;
      background: linear-gradient(135deg, #059669, #10b981);
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
    }

    .quick-test-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(16,185,129,0.35); }

    /* ── Accessibility ── */
    /* ── Hero: progressive dvh enhancement (mobile address bar fix) ── */
    @supports (min-height: 100dvh) {
      .hero-section { min-height: calc(100dvh - var(--above-hero)); }
    }

    /* ── Hero stays flush with viewport bottom REGARDLESS of banner state ──
       Pure CSS state-detection via :has() — no JS, no observers. When a banner
       is on-screen above the hero, --above-hero grows to include banner height
       so the hero shrinks to compensate. Banners are mobile-hidden via media
       query, so we scope :has() rules to >=769px to avoid double-subtraction.
       Estimated banner heights (50px / 40px) — tune if visual drift appears. */
    @media (min-width: 769px) {
      body:has(#return-customer-banner.visible:not(.session-hide))  { --above-hero: 113px; }
      body:has(#discovery-return-banner.visible:not(.session-hide)) { --above-hero: 103px; }
    }

    /* ── Tablet (768px – 1024px) ── */
    /* ── Trust strip ── */
    .trust-strip { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; gap: 0 1.6rem; margin-top: 0.5rem; margin-bottom: 0.35rem; overflow: hidden; }
    .trust-strip--desktop { padding-bottom: 10px; }
    .trust-item  { color: rgba(255,255,255,0.55); font-size: 0.75rem; display: flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
    .trust-strip--mobile { display: none; }

    @media (min-width: 768px) and (max-width: 1024px) {
      .voice-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .hero-title { font-size: 3rem; }
      .section-title { font-size: 2.25rem; }
    }

    /* ── Mobile (≤ 768px) ── */
    @media (max-width: 768px) {

      /* Header */
      .nav-links { display: none; }
      .nav-buttons { display: none; }
      .hamburger-btn { display: flex; }
      #return-customer-banner { display: none !important; }
      #discovery-return-banner { display: none !important; }

      /* Anchor scroll offset — keeps section tops flush with sticky header bottom */
      #voice-first-planning, #voice-demos, #features, #pricing, #contact {
        scroll-margin-top: 68px;
      }

      /* Hero — tight vertical rhythm so orb + text fit in one viewport */
      .hero-section {
        padding: 1.5rem 0 1.5rem;
        min-height: calc(100svh - var(--above-hero));
      }
      .hero-title { font-size: 2rem; line-height: 1.15; margin-bottom: 0.6rem; }
      .hero-description { font-size: 0.88rem; line-height: 1.55; margin-bottom: 0.6rem; }

      /* Trust strip — swap to mobile variant, stack as vertical bullet list */
      .trust-strip--desktop { display: none; }
      .trust-strip--mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin: 0.5rem auto 0.1rem;
        gap: 0.5rem;
      }
      .trust-strip--mobile .trust-item { font-size: 0.75rem; }

      /* Orb — slightly smaller + tighter container margins + static-state breathing room */
      .orb-container { margin: 0.4rem 0 0.4rem; padding-top: 20px; }
      .purple-king-orb { width: 175px; height: 175px; }
      #orbClickText { font-size: 18px; }
      .orb-status-label { font-size: 0.75rem; }
      .orb-status-text { white-space: normal; font-size: 0.92rem; height: auto; }
      .orb-label-row { margin: 0.2rem 0 0.05rem; }
      .orb-timer-row { margin: 0.2rem 0 0.15rem; }
      .orb-solo-row { margin: 0.1rem 0; }

      #email-overlay { margin-left: 0.5rem; margin-right: 0.5rem; }
      #email-overlay-input { font-size: 16px; }
      #email-overlay button { font-size: 15px; padding: 10px 14px; }
      #guest-panel { margin-left: 0.5rem; margin-right: 0.5rem; }
      .guest-row input { font-size: 16px; }
      .guest-invite-btn { font-size: 15px; padding: 10px 14px; }

      /* All content sections — cut excessive vertical padding */
      .voice-first-section,
      .voice-demos-section,
      .big-three-section,
      .how-it-works-section,
      .pricing-section,
      .contact-section { padding: 3rem 0; }

      /* Section headings */
      .section-title { font-size: 1.875rem; }
      .section-description { font-size: 1rem; margin-bottom: 2rem; }

      /* Grids → single column */
      .voice-grid, .features-grid, .steps-grid { grid-template-columns: 1fr; }

      /* Cards */
      .feature-card { padding: 1.75rem; }
      .feature-title { font-size: 1.25rem; }
      .voice-name { font-size: 1.25rem; }
      .step-card { padding: 1.5rem; }
      .step-number { width: 50px; height: 50px; font-size: 1.25rem; }
      .step-title { white-space: normal; font-size: 1.1rem; }

      /* Pricing */
      .pricing-card { padding: 2rem; }
      .price { font-size: 2.5rem; }

      /* Contact — tabs stack vertically, form tightens */
      .contact-tabs {
        flex-direction: column;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
      }
      .contact-tab { height: 44px; font-size: 0.9rem; border-radius: 8px; }
      .contact-form { padding: 1.5rem; margin: 0; }
      .form-row { grid-template-columns: 1fr; gap: 0; }

      /* Footer */
      .footer-content { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { font-size: 0.85rem; }

      /* Fixed controls — pull away from edge */
      #speakerControl { right: 12px; width: 44px; height: 44px; }
      #scrollTopButton { width: 42px; height: 42px; bottom: 16px; right: 16px; }

      /* Toasts — prevent overflow on narrow phones */
      .toast-container { right: 12px; bottom: 16px; }
      .toast { max-width: calc(100vw - 28px); }

      /* Microphone modal — centered dialog on mobile */
      .microphone-modal { align-items: center; padding: 0.75rem; }
      .microphone-modal-content {
        border-radius: 20px;
        max-width: 100%;
        max-height: 90vh;
        max-height: 90dvh;
        overflow-y: auto;
        width: 100%;
      }
      .microphone-modal-header { padding: 1rem 1.25rem; }
      .microphone-modal-header h3 { font-size: 1.05rem; }
      .microphone-modal-body { padding: 1rem 1.25rem 1.5rem; }
      .troubleshooting-section ul { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      .purple-king-orb, #orbClickText { animation: none !important; }
    }

    /* ── Mobile: during active session, collapse trust strip to free vertical space ── */
    @media (max-width: 768px) {
      .hero-section.session-active .trust-strip--mobile { display: none !important; }
      .hero-section.session-active .hero-description { margin-bottom: 0.3rem; }
      .hero-section.session-active .orb-container { padding-top: 0; }
    }

    /* ── Toast Notifications ── */
    .toast-container {
      position: fixed;
      bottom: 28px;
      right: 24px;
      z-index: 9999;
      display: flex;
      flex-direction: column-reverse;
      gap: 8px;
      pointer-events: none;
    }
    .toast {
      background: rgba(30, 41, 59, 0.93);
      color: #f1f5f9;
      padding: 11px 18px;
      border-radius: 10px;
      font-size: 0.875rem;
      font-weight: 500;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      border-left: 3px solid #7e54f9;
      max-width: 300px;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .toast.visible {
      opacity: 1;
      transform: translateY(0);
    }
