:root {
    --pq-bg:        #0a0a1f;
    --pq-bg-soft:   #0e1138;
    --pq-bg-deep:   #060820;
    --pq-veil:      #1a1336;
    --pq-fg:        #f4ecd6;
    --pq-fg-soft:   rgba(244, 236, 214, 0.78);
    --pq-fg-mute:   rgba(244, 236, 214, 0.5);
    --pq-fg-faint:  rgba(244, 236, 214, 0.28);
    --pq-accent:    #f5d99a;
    --pq-accent-d:  #d4ad6b;
    --pq-rule:      rgba(244, 236, 214, 0.10);
    --pq-rule-soft: rgba(244, 236, 214, 0.06);
    --pq-serif: 'Newsreader', 'Lora', Georgia, serif;
    --pq-sans:  'Inter', -apple-system, system-ui, sans-serif;
    --pq-pad-x:  clamp(20px, 5vw, 80px);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--pq-sans);
    color: var(--pq-fg);
    background: var(--pq-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; }

  /* ─── Type ─────────────────────────────────────────────── */
  .kicker {
    font-family: var(--pq-sans);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--pq-accent);
    opacity: 0.7;
  }
  .display {
    font-family: var(--pq-serif);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--pq-fg);
    text-wrap: balance;
  }
  .display em {
    font-style: italic;
    font-weight: 400;
    color: var(--pq-accent);
  }
  .section-title {
    font-family: var(--pq-serif);
    font-weight: 400;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin: 0;
  }
  .section-title em {
    font-style: italic;
    color: var(--pq-accent);
  }
  .lede {
    font-family: var(--pq-serif);
    font-style: italic;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.55;
    color: var(--pq-fg-soft);
    text-wrap: pretty;
  }

  /* ─── Top nav ──────────────────────────────────────────── */
  nav.top {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px var(--pq-pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(10, 10, 31, 0.6);
    border-bottom: 1px solid var(--pq-rule-soft);
  }
  nav.top .mark {
    font-family: var(--pq-serif);
    font-size: 22px;
    color: var(--pq-fg);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  nav.top .mark em {
    font-style: italic;
    color: var(--pq-accent);
    font-weight: 400;
  }
  nav.top .mark-dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, #fff4d9, #f5d99a 60%, #d4ad6b);
    box-shadow: 0 0 14px rgba(245, 217, 154, 0.5);
  }
  nav.top .links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--pq-fg-soft);
  }
  nav.top .links a {
    transition: color 200ms ease;
  }
  nav.top .links a:hover { color: var(--pq-fg); }
  nav.top .cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(244, 236, 214, 0.06);
    border: 1px solid rgba(244, 236, 214, 0.12);
    color: var(--pq-fg);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(.4, 0, .2, 1);
  }
  nav.top .cta:hover {
    background: rgba(244, 236, 214, 0.10);
    border-color: rgba(244, 236, 214, 0.22);
  }
  @media (max-width: 720px) {
    nav.top .links { display: none; }
  }

  /* ─── Hero ────────────────────────────────────────────── */
  section.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px var(--pq-pad-x) 80px;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-bg {
    position: absolute; inset: 0;
    z-index: -1;
    background:
      radial-gradient(ellipse 80% 60% at 25% 10%, #2a1f55 0%, transparent 55%),
      radial-gradient(ellipse 70% 50% at 85% 70%, #1a1340 0%, transparent 50%),
      var(--pq-bg);
  }
  .hero-bg svg.stars {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }
  .hero-copy { display: flex; flex-direction: column; gap: 28px; }
  .hero-copy .display {
    font-size: clamp(46px, 6.2vw, 84px);
  }
  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(180deg, #f5d99a 0%, #d4ad6b 100%);
    color: #2a1f0a;
    font-family: var(--pq-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1px;
    cursor: pointer;
    box-shadow: 0 12px 36px rgba(245, 217, 154, 0.22),
                0 0 60px rgba(245, 217, 154, 0.08);
    transition: transform 400ms cubic-bezier(.4, 0, .2, 1),
                box-shadow 400ms cubic-bezier(.4, 0, .2, 1);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(245, 217, 154, 0.30),
                0 0 80px rgba(245, 217, 154, 0.14);
  }
  .btn-primary:active { transform: scale(0.985); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 24px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(244, 236, 214, 0.16);
    color: var(--pq-fg-soft);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms cubic-bezier(.4, 0, .2, 1);
  }
  .btn-ghost:hover {
    border-color: rgba(244, 236, 214, 0.32);
    color: var(--pq-fg);
  }
  .hero-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: 13px;
    color: var(--pq-fg-mute);
  }
  .hero-meta div { display: flex; align-items: center; gap: 8px; }
  .hero-meta .star {
    color: var(--pq-accent);
    letter-spacing: 1px;
  }

  /* phone — reuses the prototype shell */
  .hero-phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .phone {
    width: 360px;
    height: 780px;
    border-radius: 52px;
    background: var(--pq-bg-soft);
    position: relative;
    overflow: hidden;
    box-shadow:
      0 60px 120px rgba(0, 0, 0, 0.65),
      0 30px 60px rgba(0, 0, 0, 0.5),
      0 0 0 11px var(--pq-veil),
      0 0 0 12px rgba(255, 255, 255, 0.08),
      0 0 100px rgba(245, 217, 154, 0.06);
    transform: rotate(-2.5deg);
  }
  .phone .notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 114px; height: 33px;
    border-radius: 999px;
    background: #000;
    z-index: 100;
  }
  .phone .home-ind {
    position: absolute;
    bottom: 8px; left: 50%;
    transform: translateX(-50%);
    width: 124px; height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 100;
  }
  .phone .stat {
    position: absolute;
    top: 17px; left: 0; right: 0;
    z-index: 50;
    display: flex; justify-content: space-between;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--pq-fg);
    pointer-events: none;
  }
  .phone-screen {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 52px;
  }

  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .hero-copy { align-items: center; }
    .hero-cta-row, .hero-meta { justify-content: center; }
    .phone { transform: rotate(-1.5deg) scale(0.85); margin-top: 20px; }
    section.hero { min-height: auto; padding-top: 120px; }
  }

  /* ─── Generic section frame ────────────────────────────── */
  section {
    padding: clamp(80px, 10vw, 140px) var(--pq-pad-x);
    position: relative;
  }
  .container { max-width: 1240px; margin: 0 auto; }
  .section-head {
    max-width: 720px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* ─── How it works (3 steps) ─────────────────────────── */
  section.how {
    background: var(--pq-bg);
    border-top: 1px solid var(--pq-rule-soft);
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--pq-rule);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--pq-rule);
  }
  .step {
    padding: 44px 36px 40px;
    background: var(--pq-bg);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 360px;
    position: relative;
  }
  .step .num {
    font-family: var(--pq-serif);
    font-style: italic;
    font-size: 36px;
    color: var(--pq-accent);
    line-height: 1;
  }
  .step h3 {
    font-family: var(--pq-serif);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--pq-fg);
  }
  .step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--pq-fg-soft);
  }
  .step .art {
    margin-top: auto;
    height: 100px;
    border-radius: 14px;
    border: 1px solid var(--pq-rule);
    background: var(--pq-bg-deep);
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 820px) {
    .steps { grid-template-columns: 1fr; }
    .step { min-height: auto; }
  }

  /* ─── Sample story spread ──────────────────────────────── */
  section.sample {
    background: var(--pq-bg-deep);
    border-top: 1px solid var(--pq-rule-soft);
    border-bottom: 1px solid var(--pq-rule-soft);
    overflow: hidden;
  }
  .sample-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
  }
  .story-card {
    background: #14102e;
    border: 1px solid var(--pq-rule);
    border-radius: 24px;
    padding: 44px 44px 40px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  }
  .story-card .pretitle {
    font-family: var(--pq-sans);
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(245, 217, 154, 0.6);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .story-card h4 {
    font-family: var(--pq-serif);
    font-weight: 400;
    font-style: italic;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 26px;
    color: var(--pq-fg);
  }
  .story-card .body {
    font-family: var(--pq-serif);
    font-size: 17px;
    line-height: 1.65;
    color: var(--pq-fg-soft);
    text-wrap: pretty;
  }
  .story-card .body p { margin: 0 0 16px; }
  .story-card .body p:last-child { margin-bottom: 0; }
  .story-card .body em { color: var(--pq-accent); font-style: italic; }
  .story-card .corner {
    position: absolute;
    top: -1px; right: -1px;
    width: 80px; height: 80px;
    border-top: 1px solid var(--pq-accent);
    border-right: 1px solid var(--pq-accent);
    border-top-right-radius: 24px;
    opacity: 0.35;
  }
  .story-card .corner.bl {
    top: auto; right: auto;
    bottom: -1px; left: -1px;
    border-top: none; border-right: none;
    border-bottom: 1px solid var(--pq-accent);
    border-left: 1px solid var(--pq-accent);
    border-top-right-radius: 0;
    border-bottom-left-radius: 24px;
  }
  @media (max-width: 900px) {
    .sample-grid { grid-template-columns: 1fr; }
  }

  /* ─── Features grid ────────────────────────────────────── */
  section.features {
    background: var(--pq-bg);
  }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .feature {
    border: 1px solid var(--pq-rule);
    border-radius: 22px;
    padding: 32px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255, 255, 255, 0.018);
    transition: all 400ms cubic-bezier(.4, 0, .2, 1);
  }
  .feature:hover {
    border-color: rgba(245, 217, 154, 0.22);
    background: rgba(245, 217, 154, 0.025);
  }
  .feature .icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(245, 217, 154, 0.22);
    background: rgba(245, 217, 154, 0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--pq-accent);
  }
  .feature h4 {
    margin: 0;
    font-family: var(--pq-serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    color: var(--pq-fg);
    letter-spacing: -0.01em;
  }
  .feature p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--pq-fg-soft);
  }
  @media (max-width: 820px) {
    .feature-grid { grid-template-columns: 1fr; }
  }

  /* ─── Trust strip ──────────────────────────────────────── */
  section.trust {
    background: var(--pq-bg);
    padding-top: 0;
  }
  .trust-rule {
    border-top: 1px solid var(--pq-rule);
    padding-top: 56px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
  }
  .trust-rule h3 {
    font-family: var(--pq-serif);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.15;
    margin: 0;
    color: var(--pq-fg);
  }
  .trust-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
  }
  .trust-point {
    border-left: 1px solid rgba(245, 217, 154, 0.3);
    padding: 4px 0 4px 20px;
  }
  .trust-point .pt-title {
    font-family: var(--pq-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--pq-fg);
    margin-bottom: 6px;
  }
  .trust-point p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--pq-fg-mute);
  }
  @media (max-width: 820px) {
    .trust-rule { grid-template-columns: 1fr; gap: 32px; }
    .trust-points { grid-template-columns: 1fr; }
  }

  /* ─── Voices (quotes) ──────────────────────────────────── */
  section.voices {
    background: var(--pq-bg-deep);
    border-top: 1px solid var(--pq-rule-soft);
    border-bottom: 1px solid var(--pq-rule-soft);
  }
  .quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .quote {
    padding: 36px 32px 30px;
    border-radius: 20px;
    border: 1px solid var(--pq-rule);
    background: rgba(255, 255, 255, 0.018);
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .quote .marks {
    font-family: var(--pq-serif);
    font-size: 56px;
    line-height: 0.6;
    color: var(--pq-accent);
    opacity: 0.6;
    height: 22px;
  }
  .quote blockquote {
    font-family: var(--pq-serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: var(--pq-fg);
    margin: 0;
    text-wrap: pretty;
  }
  .quote .who {
    font-size: 13px;
    color: var(--pq-fg-mute);
    margin-top: auto;
  }
  .quote .who b {
    color: var(--pq-fg);
    font-weight: 500;
  }
  @media (max-width: 900px) {
    .quote-grid { grid-template-columns: 1fr; }
  }

  /* ─── Pricing ──────────────────────────────────────────── */
  section.pricing { background: var(--pq-bg); }
  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .price {
    border: 1px solid var(--pq-rule);
    border-radius: 24px;
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    overflow: hidden;
  }
  .price.featured {
    border-color: rgba(245, 217, 154, 0.4);
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 217, 154, 0.08), transparent 70%),
      rgba(255, 255, 255, 0.022);
  }
  .price .name {
    font-family: var(--pq-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--pq-fg);
  }
  .price .price-num {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .price .price-num .amt {
    font-family: var(--pq-serif);
    font-weight: 400;
    font-size: 56px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--pq-fg);
  }
  .price.featured .price-num .amt { color: var(--pq-accent); }
  .price .price-num .per {
    font-size: 14px;
    color: var(--pq-fg-mute);
  }
  .price .desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--pq-fg-soft);
    margin: -10px 0 0;
  }
  .price ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--pq-rule-soft);
    padding-top: 22px;
  }
  .price li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--pq-fg-soft);
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .price li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--pq-accent);
    margin-top: 8px;
    flex-shrink: 0;
    opacity: 0.7;
  }
  .price .price-cta {
    margin-top: auto;
    padding: 16px 24px;
    border-radius: 999px;
    border: 1px solid rgba(244, 236, 214, 0.18);
    background: transparent;
    color: var(--pq-fg);
    font-family: var(--pq-sans);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 300ms cubic-bezier(.4, 0, .2, 1);
  }
  .price .price-cta:hover {
    border-color: rgba(244, 236, 214, 0.35);
  }
  .price.featured .price-cta {
    background: linear-gradient(180deg, #f5d99a 0%, #d4ad6b 100%);
    color: #2a1f0a;
    border: none;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(245, 217, 154, 0.18);
  }
  .price.featured .price-cta:hover {
    box-shadow: 0 12px 36px rgba(245, 217, 154, 0.28);
  }
  .price .badge {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--pq-accent);
    font-weight: 600;
    border: 1px solid rgba(245, 217, 154, 0.32);
    padding: 5px 10px;
    border-radius: 999px;
  }
  @media (max-width: 900px) {
    .price-grid { grid-template-columns: 1fr; }
  }

  /* ─── FAQ ──────────────────────────────────────────────── */
  section.faq { background: var(--pq-bg); }
  .faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .faq-list {
    border-top: 1px solid var(--pq-rule);
  }
  .faq-item {
    border-bottom: 1px solid var(--pq-rule);
    padding: 26px 0;
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--pq-serif);
    font-size: 21px;
    line-height: 1.25;
    color: var(--pq-fg);
    letter-spacing: -0.01em;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item .chev {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 999px;
    border: 1px solid var(--pq-rule);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pq-fg-mute);
    transition: transform 400ms cubic-bezier(.4, 0, .2, 1),
                border-color 300ms ease;
  }
  .faq-item[open] .chev { transform: rotate(45deg); border-color: var(--pq-accent); color: var(--pq-accent); }
  .faq-item .answer {
    margin-top: 16px;
    padding-right: 60px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--pq-fg-soft);
  }
  @media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ─── Final CTA ────────────────────────────────────────── */
  section.final-cta {
    background: var(--pq-bg-deep);
    border-top: 1px solid var(--pq-rule-soft);
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  section.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 30%, rgba(245, 217, 154, 0.08), transparent 60%),
      radial-gradient(ellipse 70% 40% at 50% 100%, rgba(42, 31, 85, 0.4), transparent 60%);
    pointer-events: none;
  }
  .final-cta-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .final-moon {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff4d9, #f5d99a 60%, #d4ad6b);
    box-shadow: 0 0 80px rgba(245, 217, 154, 0.4),
                0 0 180px rgba(245, 217, 154, 0.18);
    position: relative;
    margin-bottom: 12px;
  }
  .final-moon::after {
    content: '';
    position: absolute;
    top: -8%; left: 22%;
    width: 80%; height: 80%;
    border-radius: 50%;
    background: var(--pq-bg-deep);
  }

  /* ─── Footer ───────────────────────────────────────────── */
  footer {
    background: var(--pq-bg);
    padding: 64px var(--pq-pad-x) 32px;
    border-top: 1px solid var(--pq-rule-soft);
  }
  .footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }
  .foot-brand .mark {
    font-family: var(--pq-serif);
    font-size: 24px;
  }
  .foot-brand .mark em { font-style: italic; color: var(--pq-accent); }
  .foot-brand p {
    margin: 16px 0 0;
    font-family: var(--pq-serif);
    font-style: italic;
    font-size: 15px;
    color: var(--pq-fg-mute);
    max-width: 260px;
    line-height: 1.5;
  }
  .foot-col h5 {
    margin: 0 0 16px;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--pq-fg-mute);
    font-weight: 600;
  }
  .foot-col a {
    display: block;
    font-size: 14px;
    color: var(--pq-fg-soft);
    padding: 4px 0;
    transition: color 200ms ease;
  }
  .foot-col a:hover { color: var(--pq-fg); }
  .foot-bottom {
    max-width: 1240px;
    margin: 64px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--pq-rule-soft);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--pq-fg-faint);
  }
  @media (max-width: 820px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .foot-brand { grid-column: 1 / -1; }
    .foot-bottom { flex-direction: column; gap: 12px; }
  }

  /* ─── In-phone home screen mini-render ─────────────────── */
  .mini-scene { position: absolute; inset: 0; }
  .mini-scene svg { width: 100%; height: 100%; display: block; }
  .mini-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(8, 10, 32, 0.85) 80%);
  }
  .mini-tonight {
    position: absolute; top: 70px; left: 0; right: 0;
    text-align: center;
    font-size: 12px; font-weight: 500;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: rgba(245, 217, 154, 0.6);
  }
  .mini-title {
    position: absolute; bottom: 240px; left: 28px; right: 28px;
    text-align: center;
    font-family: var(--pq-serif);
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--pq-fg);
    text-wrap: balance;
  }
  .mini-begin {
    position: absolute; bottom: 130px; left: 28px; right: 28px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f5d99a 0%, #d4ad6b 100%);
    color: #2a1f0a;
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    font-size: 17px; font-weight: 600;
    box-shadow: 0 12px 36px rgba(245, 217, 154, 0.25);
  }
  .mini-replay {
    position: absolute; bottom: 70px; left: 60px; right: 60px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--pq-fg-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 500;
  }

  /* twinkle animation, used sparingly */
  @keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .hero-bg .twinkle { animation: twinkle 4s ease-in-out infinite; }

  /* selection */
  ::selection {
    background: rgba(245, 217, 154, 0.3);
    color: var(--pq-fg);
  }
