    /* ── TOKENS ── */
    :root {
      --dark:        #06050c;
      --dark-mid:    #09070f;
      --dark-card:   rgba(10, 8, 20, 0.75);
      --gold:        #c9a84c;
      --gold-light:  #e8d5a3;
      --gold-dim:    rgba(201, 168, 76, 0.12);
      --gold-glow:   rgba(201, 168, 76, 0.22);
      --fire:        #c95f28;
      --fire-light:  #e87840;
      --ice:         #3a7fc4;
      --ice-light:   #5ab3e8;
      --text-dim:    #4a4040;
      --text-muted:  #6a6050;
      --text:        #a08878;
      --text-bright: #e8d5a3;
      --border:      rgba(201, 168, 76, 0.14);
      --border-hover:rgba(201, 168, 76, 0.36);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
    }

    /* Subtle grain overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.028;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: overlay;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 52px;
      transition: background 0.5s ease, padding 0.3s ease, border-color 0.5s ease;
      border-bottom: 1px solid transparent;
    }

    nav.scrolled {
      background: rgba(6, 5, 12, 0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 14px 52px;
      border-bottom-color: var(--border);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
    }

    .nav-brand img {
      width: 34px;
      height: 34px;
      filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
    }

    .nav-brand-name {
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--gold-light);
      letter-spacing: 0.14em;
    }

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

    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      transition: color 0.25s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-links a.nav-pill {
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--dark);
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border: none;
      padding: 9px 22px;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 16px rgba(201, 168, 76, 0.28);
    }

    .nav-links a.nav-pill:hover {
      opacity: 0.9;
      transform: translateY(-1px);
      box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 140px 24px 80px;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      will-change: transform;
    }

    .hero-bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom,
          rgba(6,5,12,0.25) 0%,
          rgba(6,5,12,0.48) 35%,
          rgba(6,5,12,0.82) 75%,
          rgba(6,5,12,1.00) 100%),
        radial-gradient(ellipse at center, transparent 28%, rgba(0,0,0,0.55) 100%);
      z-index: 1;
    }

    .particles {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      bottom: -4px;
      border-radius: 50%;
      opacity: 0;
      animation: pfloat linear infinite;
    }

    @keyframes pfloat {
      0%   { transform: translateY(0)       translateX(0)                    scale(1);   opacity: 0; }
      8%   { opacity: 1; }
      85%  { opacity: 0.5; }
      100% { transform: translateY(-88vh)   translateX(var(--px-drift, 40px)) scale(0.3); opacity: 0; }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    /* Rune ring around logo */
    .logo-ring {
      position: relative;
      margin-bottom: 30px;
      animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.05s both;
    }

    .logo-ring::before {
      content: '';
      position: absolute;
      inset: -28px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, rgba(201,168,76,0.05) 45%, transparent 70%);
      animation: breathe 3.5s ease-in-out infinite;
    }

    .logo-ring::after {
      content: '';
      position: absolute;
      inset: -14px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.2);
      animation: spin-slow 20s linear infinite;
    }

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

    @keyframes spin-slow {
      to { transform: rotate(360deg); }
    }

    .hero-logo {
      width: 128px;
      height: 128px;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 0 40px rgba(201,168,76,0.35));
    }

    .hero-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.8rem, 9vw, 5.4rem);
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 0.18em;
      text-shadow:
        0 0 80px rgba(201,168,76,0.28),
        0 4px 48px rgba(0,0,0,0.9);
      animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.18s both;
      margin-bottom: 10px;
      line-height: 1;
    }

    .hero-tagline {
      font-family: 'Cinzel', serif;
      font-size: clamp(0.7rem, 1.7vw, 0.9rem);
      color: var(--gold);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.32s both;
      margin-bottom: 36px;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 36px;
      animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.42s both;
    }

    .hero-divider::before,
    .hero-divider::after {
      content: '';
      width: 70px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold));
    }

    .hero-divider::after {
      background: linear-gradient(to left, transparent, var(--gold));
    }

    .hero-divider-gem {
      width: 6px;
      height: 6px;
      transform: rotate(45deg);
      background: var(--gold);
    }

    .hero-desc {
      max-width: 580px;
      font-size: clamp(1.05rem, 2.2vw, 1.28rem);
      font-weight: 300;
      color: var(--text);
      line-height: 2;
      font-style: italic;
      animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.52s both;
      margin-bottom: 48px;
    }

    .hero-desc mark {
      background: none;
      color: var(--gold-light);
      font-style: normal;
      font-weight: 500;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.64s both;
      margin-bottom: 72px;
    }

    .btn-gold {
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #0a0815;
      background: linear-gradient(135deg, #c9a84c 0%, #e8d5a3 55%, #c9a84c 100%);
      background-size: 220% auto;
      border: none;
      padding: 16px 38px;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: background-position 0.45s ease, transform 0.22s, box-shadow 0.22s;
      box-shadow: 0 4px 24px rgba(201,168,76,0.32);
    }

    .btn-gold:hover {
      background-position: right center;
      transform: translateY(-2px);
      box-shadow: 0 8px 36px rgba(201,168,76,0.48);
    }

    .btn-ghost {
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      background: transparent;
      border: 1px solid rgba(201,168,76,0.38);
      padding: 16px 38px;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.22s, background 0.22s, transform 0.22s;
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.06);
      transform: translateY(-2px);
    }

    /* Waveform */
    .waveform-block {
      animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.78s both;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .waveform-label {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.65;
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--fire-light);
      animation: dotblink 1.6s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes dotblink {
      0%,100% { opacity: 1;   box-shadow: 0 0 8px var(--fire-light); }
      50%      { opacity: 0.2; box-shadow: none; }
    }

    .waveform {
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .bar {
      width: 3px;
      border-radius: 2px;
      background: linear-gradient(to top, var(--fire), var(--gold-light));
      transform-origin: center bottom;
      animation: bardance ease-in-out infinite;
    }

    @keyframes bardance {
      0%,100% { transform: scaleY(0.12); opacity: 0.35; }
      50%      { transform: scaleY(1);   opacity: 1; }
    }

    /* 25 bars */
    .bar:nth-child(1)  { height:32px; animation-duration:1.20s; animation-delay:0.00s }
    .bar:nth-child(2)  { height:46px; animation-duration:0.95s; animation-delay:0.08s }
    .bar:nth-child(3)  { height:28px; animation-duration:1.35s; animation-delay:0.16s }
    .bar:nth-child(4)  { height:40px; animation-duration:1.05s; animation-delay:0.24s }
    .bar:nth-child(5)  { height:52px; animation-duration:0.88s; animation-delay:0.32s }
    .bar:nth-child(6)  { height:30px; animation-duration:1.15s; animation-delay:0.40s }
    .bar:nth-child(7)  { height:56px; animation-duration:0.92s; animation-delay:0.48s }
    .bar:nth-child(8)  { height:36px; animation-duration:1.28s; animation-delay:0.56s }
    .bar:nth-child(9)  { height:48px; animation-duration:1.00s; animation-delay:0.64s }
    .bar:nth-child(10) { height:24px; animation-duration:1.42s; animation-delay:0.72s }
    .bar:nth-child(11) { height:50px; animation-duration:0.85s; animation-delay:0.80s }
    .bar:nth-child(12) { height:34px; animation-duration:1.18s; animation-delay:0.88s }
    .bar:nth-child(13) { height:60px; animation-duration:0.96s; animation-delay:0.96s }
    .bar:nth-child(14) { height:38px; animation-duration:1.10s; animation-delay:0.88s }
    .bar:nth-child(15) { height:28px; animation-duration:1.38s; animation-delay:0.80s }
    .bar:nth-child(16) { height:44px; animation-duration:0.90s; animation-delay:0.72s }
    .bar:nth-child(17) { height:32px; animation-duration:1.22s; animation-delay:0.64s }
    .bar:nth-child(18) { height:50px; animation-duration:0.98s; animation-delay:0.56s }
    .bar:nth-child(19) { height:26px; animation-duration:1.30s; animation-delay:0.48s }
    .bar:nth-child(20) { height:40px; animation-duration:1.08s; animation-delay:0.40s }
    .bar:nth-child(21) { height:54px; animation-duration:0.86s; animation-delay:0.32s }
    .bar:nth-child(22) { height:30px; animation-duration:1.25s; animation-delay:0.24s }
    .bar:nth-child(23) { height:44px; animation-duration:1.02s; animation-delay:0.16s }
    .bar:nth-child(24) { height:26px; animation-duration:1.40s; animation-delay:0.08s }
    .bar:nth-child(25) { height:36px; animation-duration:1.14s; animation-delay:0.00s }

    /* Scroll caret */
    .scroll-caret {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      animation: caretBounce 2.4s ease-in-out infinite, fadeIn 1s 1.4s both;
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.2s;
    }

    .scroll-caret:hover { opacity: 1; }

    .scroll-caret svg {
      display: block;
      width: 22px;
      height: 22px;
      stroke: var(--gold);
    }

    @keyframes caretBounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(6px); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 0.5; }
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

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

    /* ── SECTION COMMONS ── */
    .section-wrap {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      text-align: center;
      margin-bottom: 14px;
      display: block;
    }

    .section-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--gold-light);
      text-align: center;
      letter-spacing: 0.06em;
      margin-bottom: 64px;
      line-height: 1.2;
    }

    /* ── HOW IT WORKS ── */
    #how {
      padding: 110px 0;
    }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 0;
      position: relative;
    }

    .steps-row::before {
      content: '';
      position: absolute;
      top: 43px;
      left: calc(16.66% + 44px);
      right: calc(16.66% + 44px);
      height: 1px;
      background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2), var(--gold));
      z-index: 0;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 32px;
    }

    .step-icon-wrap {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      border: 1px solid var(--gold);
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.1rem;
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
      transition: box-shadow 0.35s, transform 0.35s;
    }

    .step:hover .step-icon-wrap {
      box-shadow: 0 0 48px rgba(201,168,76,0.22), inset 0 0 24px rgba(201,168,76,0.06);
      transform: translateY(-6px);
    }

    .step-num {
      position: absolute;
      top: -9px;
      right: -9px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      font-weight: 700;
      color: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-name {
      font-family: 'Cinzel', serif;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--gold-light);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .step-text {
      font-size: 1.05rem;
      color: var(--text);
      line-height: 1.85;
    }

    /* ── FEATURES ── */
    #features {
      padding: 110px 0;
      background: linear-gradient(to bottom, var(--dark) 0%, var(--dark-mid) 50%, var(--dark) 100%);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .feat-card {
      background: var(--dark-card);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 34px 28px;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }

    .feat-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1.5px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .feat-card:hover {
      border-color: var(--border-hover);
      box-shadow: 0 12px 48px rgba(0,0,0,0.45), 0 0 48px rgba(201,168,76,0.05);
      transform: translateY(-5px);
    }

    .feat-card:hover::after { opacity: 1; }

    .feat-icon {
      font-size: 2.2rem;
      display: block;
      margin-bottom: 20px;
    }

    .feat-name {
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.13em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .feat-text {
      font-size: 1.03rem;
      color: var(--text);
      line-height: 1.85;
    }

    /* ── SCENE SHOWCASE ── */
    #scenes {
      padding: 110px 0;
    }

    .scene-intro {
      max-width: 600px;
      margin: 0 auto 56px;
      text-align: center;
      font-size: 1.12rem;
      color: var(--text);
      line-height: 1.9;
      font-style: italic;
    }

    .scenes-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .scene-card {
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 30px 26px;
      background: var(--dark-card);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s;
      display: flex;
      flex-direction: column;
    }

    .scene-card:hover {
      transform: translateY(-4px);
    }

    .scene-glow {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    .scene-card:hover .scene-glow { opacity: 1; }

    .scene-card.combat { border-color: rgba(200,90,40,0.2); }
    .scene-card.combat:hover { border-color: rgba(200,90,40,0.45); }
    .scene-card.combat .scene-glow {
      background: radial-gradient(circle at 80% 15%, rgba(212,99,42,0.08) 0%, transparent 65%);
    }

    .scene-card.explore { border-color: rgba(201,168,76,0.18); }
    .scene-card.explore:hover { border-color: rgba(201,168,76,0.42); }
    .scene-card.explore .scene-glow {
      background: radial-gradient(circle at 20% 85%, rgba(201,168,76,0.07) 0%, transparent 65%);
    }

    .scene-card.mystery { border-color: rgba(58,127,196,0.2); }
    .scene-card.mystery:hover { border-color: rgba(58,127,196,0.45); }
    .scene-card.mystery .scene-glow {
      background: radial-gradient(circle at 50% 50%, rgba(58,127,196,0.09) 0%, transparent 65%);
    }

    .scene-card.rest { border-color: rgba(100,160,90,0.2); }
    .scene-card.rest:hover { border-color: rgba(100,160,90,0.42); }
    .scene-card.rest .scene-glow {
      background: radial-gradient(circle at 20% 20%, rgba(100,160,90,0.07) 0%, transparent 65%);
    }

    .scene-mood-tag {
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .combat  .scene-mood-tag { color: var(--fire-light); }
    .explore .scene-mood-tag { color: var(--gold); }
    .mystery .scene-mood-tag { color: var(--ice-light); }
    .rest    .scene-mood-tag { color: #7aae6a; }

    .scene-quote {
      font-size: 1.2rem;
      font-style: italic;
      color: var(--text-bright);
      line-height: 1.85;
      margin-bottom: 20px;
      position: relative;
    }

    .scene-track {
      font-size: 1rem;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
    }

    .scene-track-note {
      color: var(--gold);
      font-size: 1.1rem;
    }

    /* ── TESTIMONIAL / QUOTE ── */
    #quote {
      padding: 80px 0;
    }

    .blockquote-wrap {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }

    .blockquote-wrap::before {
      content: '\201C';
      font-family: 'Cinzel', serif;
      font-size: 8rem;
      color: var(--gold);
      opacity: 0.08;
      position: absolute;
      top: -40px;
      left: -20px;
      line-height: 1;
      pointer-events: none;
    }

    .blockquote-text {
      font-size: clamp(1.15rem, 2.5vw, 1.55rem);
      font-style: italic;
      color: var(--text);
      line-height: 1.9;
      margin-bottom: 28px;
      position: relative;
    }

    .blockquote-source {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.75;
    }

    /* ── CTA BANNER ── */
    #download {
      padding: 120px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #download::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
        radial-gradient(ellipse at 20% 80%, rgba(212,99,42,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(58,127,196,0.04) 0%, transparent 50%);
    }

    #download::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.4;
    }

    .cta-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.9rem, 4.5vw, 3.2rem);
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 18px;
      letter-spacing: 0.06em;
      position: relative;
    }

    .cta-sub {
      font-size: clamp(1rem, 2vw, 1.22rem);
      color: var(--text);
      max-width: 520px;
      margin: 0 auto 44px;
      line-height: 1.85;
      font-style: italic;
      position: relative;
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid rgba(201,168,76,0.08);
      padding: 36px 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 18px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-brand img {
      width: 26px;
      height: 26px;
      opacity: 0.75;
    }

    .footer-brand span {
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 0.1em;
    }

    .footer-links {
      display: flex;
      gap: 22px;
    }

    .footer-links a {
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-copy {
      font-size: 0.75rem;
      color: var(--text-dim);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      nav.scrolled { padding: 12px 24px; }
      .nav-links { display: none; }

      .section-wrap { padding: 0 24px; }
      #how, #features, #scenes, #quote { padding: 80px 0; }
      #download { padding: 80px 24px; }

      .steps-row { grid-template-columns: 1fr; gap: 52px; }
      .steps-row::before { display: none; }

      .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

      .scenes-grid { gap: 14px; }

      footer {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
    }

    @media (max-width: 560px) {
      .features-grid { grid-template-columns: 1fr; }
      .scenes-grid   { grid-template-columns: 1fr; }
      .hero-title    { letter-spacing: 0.1em; }
    }

/* ── TRUST STRIP ── */
#trust { padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 880px; margin: 0 auto; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-ico { font-size: 1.5rem; line-height: 1.2; flex-shrink: 0; }
.trust-h { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; color: var(--gold-light); margin-bottom: 6px; }
.trust-p { font-size: 1rem; color: var(--text); line-height: 1.7; }
@media (max-width: 700px) { .trust-grid { grid-template-columns: 1fr; gap: 22px; } }

/* ── COMPARISON ── */
#compare { padding: 110px 0; }
.cmp-table { max-width: 760px; margin: 0 auto; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; background: var(--dark-card); }
.cmp-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.cmp-row + .cmp-row { border-top: 1px solid var(--border); }
.cmp-cell { padding: 16px 14px; font-size: 0.95rem; color: var(--text); text-align: center; }
.cmp-cell:first-child { text-align: left; color: var(--text-bright); }
.cmp-head .cmp-cell { font-family: 'Cinzel', serif; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.cmp-head .cmp-mt { color: var(--gold-light); }
.cmp-yes { color: #7aae6a; font-weight: 600; }
.cmp-no { color: var(--text-dim); }
@media (max-width: 640px) { .cmp-cell { font-size: 0.8rem; padding: 12px 8px; } }

/* ── PRICING ── */
#pricing { padding: 110px 0; background: linear-gradient(to bottom, var(--dark) 0%, var(--dark-mid) 50%, var(--dark) 100%); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: 3px; padding: 34px 28px; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; }
.price-card:hover { border-color: var(--border-hover); transform: translateY(-5px); }
.price-card.featured { border-color: var(--border-hover); box-shadow: 0 0 48px rgba(201,168,76,0.08); }
.price-name { font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.price-amt { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold-light); margin-bottom: 6px; }
.price-amt small { font-size: 0.9rem; color: var(--text); }
.price-desc { font-size: 1rem; color: var(--text); line-height: 1.7; margin-top: 10px; }
.price-foot { margin-top: 32px; text-align: center; font-size: 0.95rem; color: var(--text-muted); font-style: italic; }
@media (max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
#faq { padding: 110px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q { font-family: 'Cinzel', serif; font-size: 0.92rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.04em; margin-bottom: 10px; }
.faq-a { font-size: 1.02rem; color: var(--text); line-height: 1.8; }

/* ── SCENE PLAY ── */
.scene-play { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-family: 'Cinzel', serif; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: transparent; border: 1px solid rgba(201,168,76,0.38); padding: 9px 16px; border-radius: 2px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.scene-play:hover:not(:disabled) { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.scene-play:disabled { opacity: 0.4; cursor: not-allowed; }
.scene-play[aria-pressed="true"] { background: rgba(201,168,76,0.12); }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .particle { display: none !important; }
}
