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

:root {
  --color-bg: #0d0d0d;
  --color-surface: #1a1a1a;
  --color-surface-2: #242424;
  --color-amber: #d4a045;
  --color-amber-light: #e8c06a;
  --color-cream: #f5f0e8;
  --color-muted: #8a8a8a;
  --color-border: rgba(212,160,69,0.15);
  --max-width: 1200px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-bg);
  color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-amber); text-decoration: none; }
a:hover { color: var(--color-amber-light); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--color-amber); }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-size: 0.9rem; color: var(--color-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--color-cream); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: var(--color-amber); color: #1a1a1a; }
.btn-primary:hover { background: var(--color-amber-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-amber); border: 1px solid var(--color-amber); }
.btn-outline:hover { background: rgba(212,160,69,0.1); }
.btn-large { padding: 0.85rem 2.5rem; font-size: 1.05rem; border-radius: 10px; }

/* ── Hero ── */
.hero {
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,69,0.08) 0%, transparent 70%);
}
.hero-logo {
  display: block;
  width: 180px; height: auto;
  margin: 0 auto 1.5rem;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(212,160,69,0.3));
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero h1 span { color: var(--color-amber); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; position: relative; }

/* ── Features ── */
.features { padding: 6rem 0; }
.features h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  margin-bottom: 1rem;
}
.features > .container > p {
  text-align: center; color: var(--color-muted);
  max-width: 600px; margin: 0 auto 3.5rem;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: rgba(212,160,69,0.4);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(212,160,69,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--color-muted); line-height: 1.6; }

/* ── How it works ── */
.how-it-works { padding: 6rem 0; background: var(--color-surface); }
.how-it-works h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  margin-bottom: 3.5rem;
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  max-width: 900px; margin: 0 auto;
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,160,69,0.12); color: var(--color-amber);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--color-muted); }

/* ── Pricing ── */
.pricing { padding: 6rem 0; }
.pricing h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  margin-bottom: 1rem;
}
.pricing > .container > p {
  text-align: center; color: var(--color-muted);
  max-width: 500px; margin: 0 auto 3.5rem;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; max-width: 760px; margin: 0 auto;
}
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}
.price-card.featured {
  border-color: var(--color-amber);
  box-shadow: 0 0 40px rgba(212,160,69,0.1);
}
.price-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--color-amber); color: #1a1a1a;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 6px;
}
.price-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.price-amount { font-size: 3rem; font-weight: 800; margin: 0.75rem 0; }
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--color-muted); }
.price-features { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.price-features li {
  padding: 0.4rem 0; font-size: 0.9rem; color: var(--color-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.price-features li::before { content: '✓'; color: var(--color-amber); font-weight: 700; }
.price-card .btn { width: 100%; }
.price-note { font-size: 0.8rem; color: var(--color-muted); margin-top: 0.25rem; }

/* ── Hardware ── */
.hardware { padding: 6rem 0; background: var(--color-surface); }
.hardware h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  margin-bottom: 1rem;
}
.hardware > .container > p {
  text-align: center; color: var(--color-muted);
  max-width: 600px; margin: 0 auto 3.5rem;
}
.hardware-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; max-width: 540px; margin: 0 auto;
}
.hardware-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex; flex-direction: column;
}
.hardware-card.featured-hw {
  border-color: var(--color-amber);
  box-shadow: 0 0 40px rgba(212,160,69,0.1);
}
.hardware-card-icon {
  font-size: 3.5rem; margin-bottom: 1rem;
  filter: drop-shadow(0 4px 20px rgba(212,160,69,0.2));
}
.hardware-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; margin-bottom: 0.25rem;
}
.hardware-card-sub {
  font-size: 0.85rem; color: var(--color-muted); margin-bottom: 1rem;
}
.hardware-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  max-width: 950px; margin: 0 auto;
}
.hardware-visual {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hardware-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,160,69,0.06) 0%, transparent 70%);
}
.hardware-device-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  position: relative;
  filter: drop-shadow(0 4px 20px rgba(212,160,69,0.2));
}
.hardware-device-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--color-amber);
  position: relative;
}
.hardware-device-sub {
  font-size: 0.85rem; color: var(--color-muted);
  margin-top: 0.25rem; position: relative;
}
.hardware-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.hardware-price {
  font-size: 2.5rem; font-weight: 800;
  color: var(--color-amber);
  margin: 0.75rem 0 0.25rem;
}
.hardware-price span { font-size: 1rem; font-weight: 400; color: var(--color-muted); }
.hardware-specs {
  list-style: none; padding: 0; margin: 1.5rem 0 2rem;
}
.hardware-specs li {
  padding: 0.5rem 0; font-size: 0.95rem; color: var(--color-muted);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.hardware-specs li::before { content: '✓'; color: var(--color-amber); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq { padding: 6rem 0; }
.faq h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  margin-bottom: 3rem;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(212,160,69,0.4); }
.faq-item summary {
  font-size: 1.05rem; font-weight: 600; color: var(--color-cream);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--color-amber); font-size: 1.5rem; font-weight: 400;
  line-height: 1; transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 0.95rem; color: var(--color-muted); margin-top: 0.85rem; }

/* ── CTA ── */
.cta {
  padding: 6rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,160,69,0.06) 0%, transparent 70%);
}
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem;
  position: relative;
}
.cta p { color: var(--color-muted); margin-bottom: 2rem; position: relative; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0;
}
.footer .container {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.85rem; color: var(--color-muted); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: var(--color-muted); }

/* ── Scroll reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,0.8,0.3,1),
              transform 0.7s cubic-bezier(0.16,0.8,0.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-scale { transform: scale(0.94); }
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible { transform: none; }

/* ── Hero entrance ── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes floatGlow {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 30px rgba(212,160,69,0.3)); }
  50%      { transform: translateY(-8px); filter: drop-shadow(0 0 44px rgba(212,160,69,0.45)); }
}
.hero-anim { opacity: 0; animation: heroIn 0.9s cubic-bezier(0.16,0.8,0.3,1) forwards; }
.hero-logo { animation: floatGlow 6s ease-in-out infinite; }
.hero h1.hero-anim        { animation-delay: 0.1s; }
.hero p.hero-anim         { animation-delay: 0.25s; }
.hero-buttons.hero-anim   { animation-delay: 0.4s; }
.hero-stats.hero-anim     { animation-delay: 0.55s; }

/* ── Nav scrolled state ── */
.nav { transition: background 0.3s, box-shadow 0.3s, height 0.3s; }
.nav.scrolled {
  background: rgba(13,13,13,0.96);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

/* ── Eyebrow / value prop ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-amber);
  background: rgba(212,160,69,0.1);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.9rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 3.5rem; position: relative;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700; color: var(--color-amber); line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem; color: var(--color-muted); margin-top: 0.35rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ── Why DuesterTap (value prop) ── */
.value { padding: 6rem 0; }
.value h2 {
  text-align: center; font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem;
}
.value > .container > .value-sub {
  text-align: center; color: var(--color-muted);
  max-width: 620px; margin: 0 auto 3.5rem;
}
.value-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 1050px; margin: 0 auto;
}
.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px; padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: rgba(212,160,69,0.4); transform: translateY(-3px); }
.value-card .value-ico { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.92rem; color: var(--color-muted); }
.value-card strong { color: var(--color-cream); font-weight: 600; }

/* ── Consolidation / "replaces" banner ── */
.replaces {
  max-width: 900px; margin: 4rem auto 0; text-align: center;
  background: linear-gradient(135deg, rgba(212,160,69,0.08), rgba(212,160,69,0.02));
  border: 1px solid var(--color-border); border-radius: 16px; padding: 2.5rem 2rem;
}
.replaces h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; margin-bottom: 1.5rem;
}
.replaces-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.75rem; }
.replaces-pill {
  font-size: 0.9rem; color: var(--color-muted);
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  padding: 0.5rem 1rem; border-radius: 999px; text-decoration: line-through;
  text-decoration-color: rgba(212,160,69,0.6);
}
.replaces-arrow { color: var(--color-amber); font-size: 1.3rem; }
.replaces-result {
  font-weight: 700; color: var(--color-amber); font-size: 0.95rem;
  background: rgba(212,160,69,0.12); border: 1px solid var(--color-amber);
  padding: 0.5rem 1.1rem; border-radius: 999px;
}

/* ── Interior / content pages (sub-hero, article prose, crosslinks) ── */
.page-hero {
  padding: 9rem 0 4rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,69,0.08) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 1.25rem; position: relative;
}
.page-hero h1 span { color: var(--color-amber); }
.page-hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--color-muted);
  max-width: 680px; margin: 0 auto 2rem; position: relative;
}

.breadcrumb {
  font-size: 0.82rem; color: var(--color-muted);
  max-width: var(--max-width); margin: 0 auto; padding: 5.5rem 2rem 0;
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-amber); }

.article { padding: 2rem 0 5rem; }
.prose {
  max-width: 760px; margin: 0 auto;
  font-size: 1.05rem; color: #cfcabf;
}
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--color-cream);
  margin: 2.75rem 0 1rem;
}
.prose h3 {
  font-size: 1.2rem; font-weight: 600; color: var(--color-cream);
  margin: 1.75rem 0 0.6rem;
}
.prose p { margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--color-cream); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--color-amber);
  background: var(--color-surface);
  padding: 1rem 1.25rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0;
  color: var(--color-cream); font-style: italic;
}
.prose .meta { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 2rem; }

/* ── Cross-links / related pages ── */
.crosslinks { padding: 4rem 0; background: var(--color-surface); }
.crosslinks h2 {
  text-align: center; font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; margin-bottom: 2.5rem;
}
.crosslink-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; max-width: 1000px; margin: 0 auto;
}
.crosslink-card {
  display: block; background: var(--color-surface-2);
  border: 1px solid var(--color-border); border-radius: 12px; padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.crosslink-card:hover { border-color: rgba(212,160,69,0.4); transform: translateY(-3px); }
.crosslink-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--color-cream); margin-bottom: 0.35rem; }
.crosslink-card p { font-size: 0.88rem; color: var(--color-muted); }

/* ── Blog index list ── */
.post-list { max-width: 820px; margin: 0 auto; }
.post-item {
  display: block; padding: 1.75rem 0; border-bottom: 1px solid var(--color-border);
}
.post-item:hover h3 { color: var(--color-amber); }
.post-item h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--color-cream); margin-bottom: 0.4rem; transition: color 0.2s;
}
.post-item p { font-size: 0.95rem; color: var(--color-muted); }
.post-item .meta { font-size: 0.78rem; color: var(--color-amber); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .hero-anim { opacity: 1 !important; animation: none !important; }
  .hero-logo { animation: none !important; }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hardware-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr !important; gap: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .hardware-content { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 8rem 0 4rem; }
  .hero-logo { width: 140px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer .container { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   Landing v2 (index.html only) — hero demo, audio section,
   3-tier pricing with billing toggle. Interior pages untouched.
   ════════════════════════════════════════════════════════════════ */

/* ── Hero v2: two-column with live product demo ── */
.hero-v2 { text-align: left; padding: 9rem 0 5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem; align-items: center; position: relative;
}
.hero-v2 .hero-copy h1 { margin-bottom: 1.25rem; }
.hero-v2 .hero-copy p { margin: 0 0 2rem; max-width: 560px; }
.hero-v2 .hero-buttons { justify-content: flex-start; }
.hero-ticks {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem;
}
.hero-ticks li {
  font-size: 0.85rem; color: var(--color-muted);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.hero-ticks li::before { content: '✓'; color: var(--color-amber); font-weight: 700; }
.hero-v2 .hero-stats { margin-top: 4.5rem; }

/* ── Hero demo: TV menu board + phone staff console ── */
.hero-demo { position: relative; padding: 0 0 4.5rem; }
.demo-tv {
  background: #060606;
  border: 6px solid #2b2b2b;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 60px rgba(212,160,69,0.07);
}
.demo-tv-stand {
  width: 38%; height: 10px; margin: 0 auto;
  background: #1f1f1f; border-radius: 0 0 8px 8px;
}
.demo-tv-screen {
  padding: 1.1rem 1.2rem 1.3rem;
  background: linear-gradient(160deg, #131210 0%, #0c0c0c 100%);
  border-radius: 8px;
  position: relative; overflow: hidden;
}
.demo-tv-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.6rem; margin-bottom: 0.75rem;
}
.demo-tv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--color-amber);
}
.demo-tv-venue {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-muted);
}
.demo-row {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px dashed rgba(212,160,69,0.1);
  position: relative;
}
.demo-row:last-of-type { border-bottom: none; }
.demo-tap {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(212,160,69,0.12); color: var(--color-amber);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}
.demo-name {
  flex: 1; font-size: 0.92rem; font-weight: 600; color: var(--color-cream);
  display: flex; flex-direction: column; line-height: 1.3;
}
.demo-name em {
  font-style: normal; font-weight: 400; font-size: 0.7rem; color: var(--color-muted);
}
.demo-price {
  font-size: 0.95rem; font-weight: 700; color: var(--color-amber);
}
.demo-86-tag {
  position: absolute; right: 2.6rem; top: 50%; transform: translateY(-50%) rotate(-6deg);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #e05c5c; border: 1.5px solid #e05c5c; border-radius: 4px;
  padding: 0.1rem 0.4rem; opacity: 0;
}
.demo-row-86 { animation: demoRow86 9s ease-in-out infinite; }
.demo-row-86 .demo-86-tag { animation: demo86Tag 9s ease-in-out infinite; }
@keyframes demoRow86 {
  0%, 40%  { opacity: 1; filter: none; }
  46%, 72% { opacity: 0.35; filter: grayscale(0.8); }
  78%, 100% { opacity: 1; filter: none; }
}
@keyframes demo86Tag {
  0%, 42%  { opacity: 0; }
  46%, 72% { opacity: 1; }
  76%, 100% { opacity: 0; }
}
.demo-cow {
  position: absolute; bottom: 0.1rem; left: -12%;
  font-size: 1.1rem; opacity: 0.9;
  animation: demoCowWalk 26s linear infinite;
}
@keyframes demoCowWalk {
  from { left: -12%; }
  to   { left: 108%; }
}
.demo-phone {
  position: absolute; right: -0.75rem; bottom: 0;
  width: 215px;
  background: #161616;
  border: 1px solid rgba(212,160,69,0.3);
  border-radius: 18px;
  padding: 0.9rem 1rem 0.8rem;
  box-shadow: 0 18px 44px rgba(0,0,0,0.65);
}
.demo-phone-head {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-amber); margin-bottom: 0.6rem;
}
.demo-phone-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 10px; padding: 0.55rem 0.7rem;
  font-size: 0.82rem; font-weight: 600; color: var(--color-cream);
}
.demo-toggle {
  width: 36px; height: 20px; border-radius: 999px;
  background: var(--color-amber); position: relative; flex-shrink: 0;
  animation: demoToggleTrack 9s ease-in-out infinite;
}
.demo-knob {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #0d0d0d;
  transform: translateX(16px);
  animation: demoToggleKnob 9s ease-in-out infinite;
}
@keyframes demoToggleTrack {
  0%, 38%  { background: var(--color-amber); }
  43%, 72% { background: #3a3a3a; }
  77%, 100% { background: var(--color-amber); }
}
@keyframes demoToggleKnob {
  0%, 38%  { transform: translateX(16px); }
  43%, 72% { transform: translateX(0); }
  77%, 100% { transform: translateX(16px); }
}
.demo-phone-hint {
  font-size: 0.62rem; color: var(--color-muted); margin-top: 0.55rem; line-height: 1.4;
}

/* ── Audio spotlight ── */
.audio-spot {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #121009 50%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.audio-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
  max-width: 1050px; margin: 0 auto;
}
.audio-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  line-height: 1.15; margin: 0 0 1rem;
}
.audio-copy h2 span { color: var(--color-amber); }
.audio-copy > p { color: var(--color-muted); margin-bottom: 1.5rem; max-width: 520px; }
.audio-points { list-style: none; padding: 0; margin: 0 0 2rem; }
.audio-points li {
  padding: 0.45rem 0 0.45rem 1.5rem; font-size: 0.95rem; color: var(--color-muted);
  position: relative;
}
.audio-points li::before {
  content: '✓'; color: var(--color-amber); font-weight: 700;
  position: absolute; left: 0; top: 0.45rem;
}
.audio-points strong { color: var(--color-cream); font-weight: 600; }
.audio-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
.audio-card-head {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-amber); margin-bottom: 1rem;
}
.audio-track {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 10px; padding: 0.8rem 1rem; margin-bottom: 1rem;
}
.audio-eq { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 18px; flex-shrink: 0; }
.audio-eq i {
  width: 3.5px; background: var(--color-amber); border-radius: 2px;
  animation: eqBounce 1.1s ease-in-out infinite;
}
.audio-eq i:nth-child(1) { height: 60%; animation-delay: 0s; }
.audio-eq i:nth-child(2) { height: 100%; animation-delay: 0.18s; }
.audio-eq i:nth-child(3) { height: 45%; animation-delay: 0.36s; }
.audio-eq i:nth-child(4) { height: 80%; animation-delay: 0.54s; }
@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.5); }
  50%      { transform: scaleY(1); }
}
.audio-track-name { font-size: 0.85rem; color: var(--color-cream); font-weight: 500; line-height: 1.4; }
.audio-sched { display: flex; flex-direction: column; gap: 0.4rem; }
.audio-sched-row {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--color-muted);
  padding: 0.45rem 0.7rem; border-radius: 8px;
  border: 1px solid transparent;
}
.audio-sched-row.is-live {
  border-color: rgba(212,160,69,0.35);
  background: rgba(212,160,69,0.07);
  color: var(--color-cream);
}
.audio-sched-row.is-live span:first-child { color: var(--color-amber); font-weight: 700; }

/* ── Billing toggle + 3-tier pricing ── */
.nav-links a.btn-primary { color: #1a1a1a; }
.nav-links a.btn-primary:hover { color: #1a1a1a; }
.price-amount .price-amt { font-size: 3rem; font-weight: 800; color: var(--color-cream); }

/* "Coming soon" eyebrow — pulsing dot to draw the eye without over-promising */
.eyebrow-soon { gap: 0.55rem; }
.eyebrow-soon::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-amber); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(212,160,69,0.6);
  animation: soonPulse 2s ease-in-out infinite;
}
@keyframes soonPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,160,69,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(212,160,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,160,69,0); }
}
@media (prefers-reduced-motion: reduce) { .eyebrow-soon::before { animation: none; } }
.billing-toggle {
  display: flex; justify-content: center; gap: 0;
  margin: -1.5rem auto 2.5rem; width: fit-content;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px; padding: 4px;
}
.billing-opt {
  font-family: inherit; font-size: 0.88rem; font-weight: 600;
  color: var(--color-muted); background: transparent; border: none;
  padding: 0.5rem 1.4rem; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.billing-opt.is-active { background: var(--color-amber); color: #1a1a1a; }
.billing-save {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  background: rgba(13,13,13,0.18); border-radius: 999px; padding: 0.1rem 0.5rem;
}
.billing-opt:not(.is-active) .billing-save {
  background: rgba(212,160,69,0.12); color: var(--color-amber);
}
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px; align-items: start;
}
.pricing-grid-3 .price-card { display: flex; flex-direction: column; }
.pricing-grid-3 .price-features { flex: 1; }

/* ── Hardware footnote + CTA reassurance ── */
.hardware-alt {
  text-align: center; color: var(--color-muted);
  font-size: 0.92rem; margin: 2.5rem auto 0; max-width: 560px;
}
.cta-sub {
  font-size: 0.85rem !important; color: var(--color-muted);
  margin-top: 1.25rem !important; margin-bottom: 0 !important;
}

/* ── Landing v2 responsive ── */
@media (max-width: 1000px) {
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-v2 { text-align: center; }
  .hero-v2 .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-v2 .hero-buttons { justify-content: center; }
  .hero-ticks { justify-content: center; }
  .hero-demo { max-width: 480px; margin: 0 auto; width: 100%; }
  .audio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .audio-copy { text-align: center; }
  .audio-copy > p, .audio-points { margin-left: auto; margin-right: auto; }
  .audio-points { max-width: 480px; text-align: left; }
  .audio-visual { max-width: 440px; margin: 0 auto; width: 100%; }
}
@media (max-width: 480px) {
  .demo-phone { right: 0; width: 188px; }
  .demo-tv-screen { padding: 0.85rem 0.9rem 1rem; }
  .demo-name { font-size: 0.84rem; }
  .demo-86-tag { right: 2.2rem; }
  .billing-opt { padding: 0.5rem 1rem; font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  .demo-row-86, .demo-row-86 .demo-86-tag,
  .demo-toggle, .demo-knob, .demo-cow, .audio-eq i {
    animation: none !important;
  }
  .demo-86-tag { opacity: 0; }
  .demo-cow { left: 70%; }
}
