/* ---- Rosewood FX — Stringotter ----------------------------------- */

:root {
  --cream: #f5e8c8;
  --cream-light: #fbf3dc;
  --cream-deep: #ecd9a8;
  --rosewood: #3d1818;
  --rosewood-mid: #5a2020;
  --rosewood-light: #7a2828;
  --burgundy: #7a1f1f;
  --gold: #c9a55a;
  --gold-bright: #e0bf73;
  --gold-deep: #a0823f;
  --ink: #2a0f0f;
  --led: #5dc972;
  --led-glow: rgba(93, 201, 114, 0.65);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(122, 40, 40, 0.022) 0 1px,
      transparent 1px 4px),
    repeating-linear-gradient(90deg,
      rgba(160, 130, 63, 0.018) 0 1px,
      transparent 1px 11px);
}

.serif {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---- NAV --------------------------------------------------------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px;
  background: rgba(45, 18, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 165, 90, 0.18);
  transition: padding .3s;
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-brand:hover { opacity: 0.85; }
.footer-brand .nav-brand { color: var(--cream-light); }
.nav-brand .logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold-deep) 70%, #6b5025);
  box-shadow: 0 0 0 2px rgba(245, 232, 200, 0.15), inset 0 -2px 4px rgba(0,0,0,0.3);
  display: grid; place-items: center;
  font-size: 16px;
}
.nav-brand .logo-mark.img {
  background: transparent;
  box-shadow: 0 0 0 1px rgba(201, 165, 90, 0.25);
  object-fit: cover;
}
.footer-brand .nav-brand .logo-mark.img {
  box-shadow: 0 0 0 1px rgba(201, 165, 90, 0.35);
}

.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-bright); }

.nav-cta {
  background: var(--gold);
  color: var(--rosewood) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  font-size: 12px !important;
  opacity: 1 !important;
  transition: transform .2s, box-shadow .2s, background .2s !important;
}
.nav-cta:hover {
  background: var(--gold-bright) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 165, 90, 0.35);
}

/* ---- HERO -------------------------------------------------------- */

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  padding: 140px 80px 100px;
  gap: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(122, 31, 31, 0.10), transparent 50%),
    radial-gradient(ellipse at 10% 100%, rgba(201, 165, 90, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: rgba(122, 31, 31, 0.08);
  border: 1px solid rgba(122, 31, 31, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--led);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--led-glow);
  animation: pulse 1.8s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--rosewood);
  margin-bottom: 28px;
}
.hero-title .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
  background: linear-gradient(135deg, var(--burgundy), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 19px;
  color: rgba(42, 15, 15, 0.72);
  max-width: 520px;
  margin-bottom: 42px;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform .2s, box-shadow .25s, background .25s;
}
.btn-primary {
  background: linear-gradient(180deg, var(--burgundy) 0%, var(--rosewood) 100%);
  color: var(--cream-light);
  box-shadow:
    0 12px 30px rgba(122, 31, 31, 0.35),
    inset 0 1px 0 rgba(255, 220, 170, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(122, 31, 31, 0.45),
    inset 0 1px 0 rgba(255, 220, 170, 0.25);
}
.btn-primary .arrow { transition: transform .25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--rosewood);
  border: 1.5px solid rgba(61, 24, 24, 0.25);
}
.btn-ghost:hover {
  border-color: var(--rosewood);
  background: rgba(61, 24, 24, 0.04);
}

.price-tag {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 28px;
}
.price-tag .now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
}
.price-tag .now .cents { font-size: 0.42em; top: -0.65em; }
.price-tag .was {
  font-size: 16px;
  color: rgba(42, 15, 15, 0.45);
  text-decoration: line-through;
}
.price-tag .was .cents { font-size: 0.7em; top: -0.4em; }
.price-tag .badge {
  background: var(--burgundy);
  color: var(--cream-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-left: 4px;
}

/* ---- HERO PEDAL VISUAL ------------------------------------------ */

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: auto;
  min-height: 480px;
}

/* ---- STRINGS-STAGE HERO (vibrating strings, electric→acoustic) - */

.strings-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 5 / 3;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(122, 31, 31, 0.18), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 165, 90, 0.22), transparent 65%),
    linear-gradient(155deg, #fbf3dc 0%, #f0dfa9 100%);
  border: 1px solid rgba(122, 31, 31, 0.16);
  box-shadow:
    0 40px 80px rgba(61, 24, 24, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
  isolation: isolate;
}

/* slow drifting backlight glow */
.strings-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 25% 50%, rgba(122, 31, 31, 0.35), transparent 35%),
    radial-gradient(circle at 75% 50%, rgba(201, 165, 90, 0.4), transparent 40%);
  filter: blur(40px);
  opacity: 0.7;
  animation: glow-drift 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes glow-drift {
  0%, 100% { transform: scale(1) translateX(0); }
  50%      { transform: scale(1.05) translateX(-3%); }
}

.strings-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.stage-tag {
  position: absolute;
  top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.stage-tag.left {
  left: 16px;
  color: var(--burgundy);
  background: rgba(245, 232, 200, 0.7);
  border: 1px solid rgba(122, 31, 31, 0.3);
}
.stage-tag.right {
  right: 16px;
  color: var(--gold-deep);
  background: rgba(245, 232, 200, 0.7);
  border: 1px solid rgba(201, 165, 90, 0.5);
}
.stage-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 7px;
  vertical-align: middle;
  box-shadow: 0 0 8px currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}

/* superscript .99 styling */
.cents {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 2px;
  letter-spacing: -0.01em;
  font-weight: inherit;
  line-height: 0;
  top: -0.3em;
  position: relative;
}

.spotlight {
  position: absolute;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.18) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* The pedal itself, rendered with CSS */
.pedal {
  position: relative;
  width: 320px;
  height: 540px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(160, 60, 60, 0.45), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(20, 5, 5, 0.6), transparent 50%),
    repeating-linear-gradient(110deg,
      #4a1818 0px, #5a2020 2px, #3a1212 4px, #4a1818 7px),
    linear-gradient(180deg, #4a1818, #2a0808);
  border-radius: 18px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.35),
    0 25px 40px rgba(61, 24, 24, 0.25),
    inset 0 0 0 2px rgba(0, 0, 0, 0.4),
    inset 0 0 0 4px rgba(201, 165, 90, 0.08),
    inset 0 2px 0 rgba(255, 200, 150, 0.12),
    inset 0 -4px 12px rgba(0, 0, 0, 0.5);
  animation: pedal-float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes pedal-float {
  0%, 100% { transform: translateY(0) rotateZ(-1deg); }
  50% { transform: translateY(-12px) rotateZ(1deg); }
}

/* Pedal screws */
.pedal::before, .pedal::after {
  content: ''; position: absolute;
  width: 9px; height: 9px;
  background: radial-gradient(circle at 30% 30%, #888, #333);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.5);
}
.pedal::before { top: 14px; left: 14px; }
.pedal::after { top: 14px; right: 14px; }

.pedal-label {
  position: absolute;
  top: 30px; left: 0; right: 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.pedal-brand {
  position: absolute;
  top: 50px; left: 0; right: 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 0 18px rgba(201, 165, 90, 0.3);
}

.knob-row {
  position: absolute;
  display: flex; justify-content: space-around;
  width: calc(100% - 50px);
  left: 25px;
}
.knob-row.row-1 { top: 105px; padding: 0 30px; }
.knob-row.row-2 { top: 200px; }

.knob {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #2a2a2a, #0a0a0a 70%);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.5),
    inset 0 -2px 4px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  display: grid; place-items: center;
}
.knob::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 2.5px; height: 14px;
  background: var(--gold-bright);
  transform-origin: center 22px;
  transform: translateX(-50%) rotate(var(--rot, -45deg));
  box-shadow: 0 0 4px rgba(201, 165, 90, 0.4);
  border-radius: 2px;
}
.knob.spinning::after {
  animation: knob-spin 8s linear infinite;
}
@keyframes knob-spin {
  from { transform: translateX(-50%) rotate(-150deg); }
  to { transform: translateX(-50%) rotate(150deg); }
}
.knob-label {
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--cream-light);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.toggle-row {
  position: absolute;
  top: 305px; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: 0 60px;
}
.toggle {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.toggle-led {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--led);
  box-shadow: 0 0 12px var(--led-glow), 0 0 4px #fff inset;
  animation: led-blink 2s ease-in-out infinite;
}
.toggle:nth-child(2) .toggle-led { animation-delay: 0.6s; }
@keyframes led-blink {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  95% { opacity: 0.4; }
  98% { opacity: 1; }
}
.toggle-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.footswitch-row {
  position: absolute;
  bottom: 50px; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: 0 50px;
}
.footswitch {
  width: 60px; height: 60px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #c0bfc1 0%, #6e6d70 40%, #2c2b2d 100%);
  box-shadow:
    0 6px 12px rgba(0,0,0,0.4),
    inset 0 -3px 6px rgba(0,0,0,0.3),
    inset 0 2px 4px rgba(255,255,255,0.2);
  cursor: pointer;
  transition: transform .15s;
}
.footswitch:hover { transform: scale(1.05); }
.footswitch:active { transform: scale(0.96); }

/* Jack ports */
.jack {
  position: absolute;
  width: 22px; height: 30px;
  background: radial-gradient(ellipse at 40% 30%, #1a1a1a, #000);
  border-radius: 4px;
  box-shadow: inset 0 0 0 2px rgba(80,80,80,0.5), inset 0 2px 4px rgba(0,0,0,0.8);
}
.jack.left-1 { left: -8px; top: 220px; }
.jack.left-2 { left: -8px; top: 280px; }
.jack.right-1 { right: -8px; top: 220px; }

/* Floating accent particles */
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
  animation: float-up 6s linear infinite;
}
@keyframes float-up {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-300px) translateX(20px); opacity: 0; }
}

/* ---- SECTION CHROME --------------------------------------------- */

.section {
  position: relative;
  padding: 130px 80px;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(122, 31, 31, 0.25);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--rosewood);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--burgundy);
}
.section-sub {
  font-size: 18px;
  color: rgba(42, 15, 15, 0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- DEMO PLAYER ------------------------------------------------- */

.demo-section {
  background:
    linear-gradient(180deg, transparent, rgba(122, 31, 31, 0.03) 50%, transparent);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.demo-card {
  background: var(--cream-light);
  border: 1px solid rgba(122, 31, 31, 0.12);
  border-radius: 22px;
  padding: 38px;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.demo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 31, 31, 0.3);
  box-shadow: 0 24px 50px rgba(61, 24, 24, 0.1);
}

.demo-card.on {
  background: linear-gradient(160deg, #4a1818 0%, #2a0808 100%);
  color: var(--cream-light);
  border-color: rgba(201, 165, 90, 0.2);
}
.demo-card.on .demo-meta { color: rgba(245, 232, 200, 0.65); }
.demo-card.on .waveform-bar { background: var(--gold-bright); }
.demo-card.on .play-btn {
  background: var(--gold);
  color: var(--rosewood);
}
.demo-card.on .time { color: rgba(245, 232, 200, 0.7); }

.demo-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--burgundy);
  opacity: 0.85;
}
.demo-card.on .demo-tag { color: var(--gold-bright); }
.demo-tag .led {
  width: 7px; height: 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}

.demo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.demo-meta {
  font-size: 13px;
  color: rgba(42, 15, 15, 0.55);
  margin-bottom: 28px;
}

.player {
  display: flex; align-items: center; gap: 18px;
}

.play-btn {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--burgundy);
  color: var(--cream-light);
  cursor: pointer;
  display: grid; place-items: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 8px 20px rgba(122, 31, 31, 0.3);
}
.play-btn:hover { transform: scale(1.08); }
.play-btn:active { transform: scale(0.96); }
.play-btn svg { width: 18px; height: 18px; }

.player-body {
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}

.waveform {
  display: flex; align-items: center; gap: 2px;
  height: 40px;
  cursor: pointer;
}
.waveform-bar {
  flex: 1;
  background: rgba(122, 31, 31, 0.35);
  border-radius: 1px;
  transition: background .15s, transform .15s;
  min-height: 3px;
}
.waveform-bar.played { background: var(--burgundy); }
.demo-card.on .waveform-bar.played { background: var(--gold-bright); }
.demo-card.on .waveform-bar { background: rgba(245, 232, 200, 0.25); }

.waveform-bar.active {
  transform: scaleY(1.15);
}

.time {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: rgba(42, 15, 15, 0.5);
  letter-spacing: 0.05em;
}

.demo-divider {
  display: flex; align-items: center; justify-content: center;
  margin: 50px 0 0;
  gap: 14px;
  color: rgba(42, 15, 15, 0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.demo-divider::before, .demo-divider::after {
  content: ''; flex: 1; max-width: 100px;
  height: 1px; background: rgba(122, 31, 31, 0.2);
}

/* ---- FEATURES ---------------------------------------------------- */

.features-section {
  padding-top: 60px;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.feature {
  background: var(--cream-light);
  border: 1px solid rgba(122, 31, 31, 0.10);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 31, 31, 0.25);
  box-shadow: 0 24px 50px rgba(61, 24, 24, 0.08);
}

.feature.lg { grid-column: span 4; }
.feature.md { grid-column: span 3; }
.feature.sm { grid-column: span 2; }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--rosewood);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature.lg .feature-title { font-size: 38px; line-height: 1.05; }

.feature-text {
  font-size: 14.5px;
  color: rgba(42, 15, 15, 0.7);
  line-height: 1.6;
}

/* Hero feature card with mini visual */
.feature.hero-feat {
  background: linear-gradient(135deg, #4a1818, #2a0808);
  color: var(--cream-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 0;
  overflow: hidden;
}
.feature.hero-feat .text-side {
  padding: 40px;
}
.feature.hero-feat .feature-title { color: var(--cream-light); font-size: 38px; }
.feature.hero-feat .feature-text { color: rgba(245, 232, 200, 0.75); }
.feature.hero-feat .feature-num { color: var(--gold-bright); }

.eq-visual {
  height: 100%;
  background: rgba(0,0,0,0.25);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 30px 20px;
}
.eq-visual .bars {
  display: flex; align-items: end; gap: 4px;
  height: 100%;
  width: 100%;
  max-width: 240px;
}
.eq-visual .bar {
  flex: 1;
  background: linear-gradient(0deg, var(--gold-deep), var(--gold-bright));
  border-radius: 2px 2px 0 0;
  animation: eq-bounce 1.4s ease-in-out infinite;
  min-height: 8%;
  box-shadow: 0 0 8px rgba(224, 191, 115, 0.3);
}
.eq-visual .bar:nth-child(1) { animation-delay: 0.0s; height: 30%; }
.eq-visual .bar:nth-child(2) { animation-delay: 0.1s; height: 55%; }
.eq-visual .bar:nth-child(3) { animation-delay: 0.2s; height: 80%; }
.eq-visual .bar:nth-child(4) { animation-delay: 0.3s; height: 65%; }
.eq-visual .bar:nth-child(5) { animation-delay: 0.4s; height: 90%; }
.eq-visual .bar:nth-child(6) { animation-delay: 0.5s; height: 70%; }
.eq-visual .bar:nth-child(7) { animation-delay: 0.6s; height: 45%; }
.eq-visual .bar:nth-child(8) { animation-delay: 0.7s; height: 60%; }
.eq-visual .bar:nth-child(9) { animation-delay: 0.8s; height: 35%; }
.eq-visual .bar:nth-child(10) { animation-delay: 0.9s; height: 50%; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.45); }
}

.feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(122, 31, 31, 0.08);
  border: 1px solid rgba(122, 31, 31, 0.18);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--burgundy);
}
.feat-icon svg { width: 20px; height: 20px; }

/* ---- APP PREVIEW ------------------------------------------------ */

.app-section {
  padding: 130px 40px;
}

.app-wrap {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(160deg, #4a1818, #2a0808);
  border-radius: 26px;
  padding: 60px 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 165, 90, 0.18);
  box-shadow: 0 40px 80px rgba(61, 24, 24, 0.25);
}
.app-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.12), transparent 60%);
  pointer-events: none;
}
.app-wrap .section-eyebrow { color: var(--gold-bright); border-color: rgba(201, 165, 90, 0.3); }
.app-wrap .section-title { color: var(--cream-light); }
.app-wrap .section-sub { color: rgba(245, 232, 200, 0.7); }
.app-wrap .section-title em { color: var(--gold-bright); }

.app-shot {
  margin-top: 50px;
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(201, 165, 90, 0.25);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3), 0 30px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  line-height: 0;
}
.app-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- DOWNLOADS --------------------------------------------------- */

.downloads-section {
  padding-top: 60px;
}

.downloads-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.download-card {
  background: var(--cream-light);
  border: 1px solid rgba(122, 31, 31, 0.12);
  border-radius: 22px;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 31, 31, 0.3);
  box-shadow: 0 24px 50px rgba(61, 24, 24, 0.1);
}

.download-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.08), transparent 70%);
  pointer-events: none;
}

.dl-os {
  display: flex; align-items: center; gap: 14px;
}
.dl-os-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(122, 31, 31, 0.06);
  border: 1px solid rgba(122, 31, 31, 0.15);
  display: grid; place-items: center;
  color: var(--burgundy);
}
.dl-os-icon svg { width: 22px; height: 22px; }
.dl-os-text {
  display: flex; flex-direction: column;
}
.dl-os-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--rosewood);
  line-height: 1;
}
.dl-os-text .meta {
  font-size: 12px;
  color: rgba(42, 15, 15, 0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.dl-info {
  font-size: 13.5px;
  color: rgba(42, 15, 15, 0.7);
  line-height: 1.55;
}

.dl-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.dl-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 165, 90, 0.12);
  border: 1px solid rgba(201, 165, 90, 0.25);
}

.btn-dl {
  margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(180deg, var(--burgundy), var(--rosewood));
  color: var(--cream-light);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 22px rgba(122, 31, 31, 0.25);
}
.btn-dl:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(122, 31, 31, 0.35);
}

.dl-note {
  max-width: 920px;
  margin: 36px auto 0;
  padding: 22px 28px;
  background: rgba(122, 31, 31, 0.04);
  border: 1px dashed rgba(122, 31, 31, 0.25);
  border-radius: 14px;
  display: flex; align-items: center; gap: 18px;
  font-size: 14px;
  color: rgba(42, 15, 15, 0.7);
  line-height: 1.55;
}
.dl-note svg {
  flex-shrink: 0;
  color: var(--burgundy);
}
.dl-note strong { color: var(--rosewood); font-weight: 600; }

/* ---- BUY / PRICING ---------------------------------------------- */

.buy-section {
  background:
    linear-gradient(180deg,
      transparent,
      rgba(122, 31, 31, 0.04) 50%,
      transparent);
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(160deg, #4a1818 0%, #2a0808 100%);
  border-radius: 28px;
  padding: 56px 50px;
  color: var(--cream-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 165, 90, 0.2);
  box-shadow:
    0 50px 100px rgba(61, 24, 24, 0.3),
    inset 0 1px 0 rgba(255, 220, 170, 0.1);
}
.pricing-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.18), transparent 60%);
  pointer-events: none;
}

.presale-banner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px;
  background: var(--gold);
  color: var(--rosewood);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.price-display {
  display: flex; align-items: baseline; justify-content: center; gap: 14px;
  margin-bottom: 12px;
  position: relative;
}
.price-display .now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 600;
  line-height: 1;
  color: var(--cream-light);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.price-display .now .currency {
  font-size: 50px;
  vertical-align: baseline;
  margin-right: 4px;
  color: var(--gold-bright);
  position: relative;
  top: -8px;
}
.price-display .now .cents {
  font-size: 0.32em;
  top: -1.4em;
  margin-left: 4px;
  color: var(--gold-bright);
  font-weight: 500;
}
.price-display .was {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: rgba(245, 232, 200, 0.4);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}
.price-display .was .cents { font-size: 0.65em; top: -0.5em; }

.price-caption {
  font-size: 13px;
  color: rgba(245, 232, 200, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.pricing-features {
  text-align: left;
  margin: 0 0 38px;
  padding: 26px 0;
  border-top: 1px solid rgba(201, 165, 90, 0.2);
  border-bottom: 1px solid rgba(201, 165, 90, 0.2);
  list-style: none;
  display: grid;
  gap: 12px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  color: rgba(245, 232, 200, 0.85);
}
.pricing-features li svg {
  width: 16px; height: 16px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.btn-buy {
  width: 100%;
  padding: 18px 30px;
  background: var(--gold);
  color: var(--rosewood);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow:
    0 12px 30px rgba(201, 165, 90, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  text-decoration: none;
}
.btn-buy:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(201, 165, 90, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-buy .arrow { transition: transform .25s; }
.btn-buy:hover .arrow { transform: translateX(4px); }

.guarantee {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(245, 232, 200, 0.5);
  letter-spacing: 0.05em;
}

/* ---- FOOTER ------------------------------------------------------ */

.footer {
  background: var(--rosewood);
  color: var(--cream-light);
  padding: 80px 80px 30px;
  margin-top: 80px;
  border-top: 1px solid rgba(201, 165, 90, 0.15);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201, 165, 90, 0.15);
}
.footer-brand .nav-brand { color: var(--cream-light); margin-bottom: 14px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(245, 232, 200, 0.55);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(245, 232, 200, 0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream-light); }
.copyright {
  max-width: 1200px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 12px;
  color: rgba(245, 232, 200, 0.4);
}

/* ---- SCROLL REVEAL ----------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE -------------------------------------------------- */

@media (max-width: 980px) {
  .nav { padding: 12px 18px; }
  .nav-brand { font-size: 18px; }
  .nav-brand .logo-mark { width: 30px; height: 30px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 11px !important; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 22px 60px;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }
  .hero-eyebrow, .price-tag { margin-left: auto; margin-right: auto; }
  .price-tag { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .hero-cta-row { justify-content: center; }
  .hero-visual { height: auto; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .btn { padding: 14px 22px; font-size: 13px; }

  .section { padding: 70px 22px; }
  .section-head { margin-bottom: 50px; }
  .section-title { font-size: clamp(34px, 8vw, 52px); }
  .section-sub { font-size: 15px; }

  .demo-grid { grid-template-columns: 1fr; gap: 16px; }
  .demo-card { padding: 26px 22px; border-radius: 18px; }
  .demo-title { font-size: 26px; }
  .player { gap: 14px; }
  .play-btn { width: 46px; height: 46px; }

  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature.lg, .feature.md, .feature.sm { grid-column: span 1; }
  .feature { padding: 26px 22px; border-radius: 18px; }
  .feature-title { font-size: 24px; }
  .feature.lg .feature-title { font-size: 30px; }
  .feature.hero-feat { grid-template-columns: 1fr; }
  .feature.hero-feat .text-side { padding: 28px 22px; }
  .feature.hero-feat .feature-title { font-size: 30px; }
  .eq-visual { min-height: 160px; padding: 22px 18px; }

  .app-section { padding: 70px 14px; }
  .app-wrap { padding: 28px 16px 0; border-radius: 18px; }
  .app-shot { margin-top: 32px; }

  .strings-stage { max-width: 100%; aspect-ratio: 4 / 3; border-radius: 18px; }
  .stage-tag { font-size: 9px; letter-spacing: 0.22em; padding: 5px 10px; }

  .downloads-grid { grid-template-columns: 1fr; gap: 14px; }
  .download-card { padding: 28px 24px; }
  .dl-os-text .name { font-size: 22px; }
  .dl-note { padding: 18px 20px; font-size: 13px; gap: 14px; flex-wrap: wrap; border-radius: 12px; }

  .pricing-card { padding: 40px 26px; border-radius: 22px; }
  .price-display .now { font-size: 86px; }
  .price-display .now .currency { font-size: 38px; }
  .price-display .was { font-size: 26px; }
  .pricing-features li { font-size: 13.5px; }
  .btn-buy { padding: 16px 22px; font-size: 13px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer { padding: 56px 22px 24px; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 480px) {
  .nav { padding: 10px 14px; }
  .nav-brand span { font-size: 17px; }
  .hero { padding: 90px 18px 50px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta-row .btn { justify-content: center; }
  .section { padding: 60px 16px; }
  .price-display .now { font-size: 72px; }
  .price-display .now .currency { font-size: 32px; }
  .pricing-card { padding: 34px 20px; }
}

/* ---- SUCCESS PAGE ---------------------------------------------- */

.fulfillment-page {
  min-height: 100vh;
}

.status-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 48px;
}

.status-card {
  width: min(760px, 100%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.74)),
    linear-gradient(155deg, #fbf3dc 0%, #f0dfa9 100%);
  border: 1px solid rgba(122, 31, 31, 0.12);
  border-radius: 28px;
  box-shadow:
    0 32px 80px rgba(61, 24, 24, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  padding: 42px;
}

.status-title {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.96;
  color: var(--rosewood);
  margin-bottom: 18px;
}

.status-sub {
  font-size: 18px;
  color: rgba(42, 15, 15, 0.74);
  max-width: 52ch;
}

.status-spinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid rgba(122, 31, 31, 0.12);
  border-top-color: var(--burgundy);
  margin: 30px 0 10px;
  animation: status-spin 0.9s linear infinite;
}

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

.license-panel {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(245, 232, 200, 0.74);
  border: 1px solid rgba(122, 31, 31, 0.12);
}

.license-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.copy-license-btn {
  border: 1px solid rgba(61, 24, 24, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--rosewood);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, border-color .2s, background .2s;
}

.copy-license-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(61, 24, 24, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.license-box {
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(122, 31, 31, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56));
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rosewood);
  word-break: break-word;
}

.status-meta {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(42, 15, 15, 0.7);
}

.status-error {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(122, 31, 31, 0.08);
  border: 1px solid rgba(122, 31, 31, 0.16);
  color: var(--burgundy);
  font-size: 15px;
  line-height: 1.6;
}

.status-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 980px) {
  .status-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .status-sub {
    font-size: 16px;
  }

  .status-actions {
    flex-direction: column;
  }

  .status-actions .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .status-shell {
    padding: 100px 16px 32px;
  }

  .license-panel {
    padding: 18px;
  }

  .license-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .license-box {
    font-size: 18px;
    letter-spacing: 0.12em;
    padding: 18px 16px;
  }
}
