/* ============================================================
   VenueLedger — Design Tokens
   Concept: a field ledger at dusk. The outdoor venue world
   (open field, stage light, dusk sky) meets ledger precision
   (grid lines, tabular figures, quiet accounting rigor).
   ============================================================ */

:root {
  /* Color */
  --navy: #0F1720;        /* dusk-field background */
  --navy-raised: #141F2B;  /* card surface, one step up */
  --grid-line: #223040;    /* hairline ledger-grid rule */
  --paper: #F2EFE6;        /* ledger-paper, used sparingly for light panels */
  --amber: #E8A23D;        /* stage-light accent — primary action */
  --amber-dim: #6B5427;
  --ledger-green: #3E9169; /* verified / break-even positive */
  --ledger-red: #C0563F;   /* shortfall / negative */
  --text-primary: #EDEFF2;
  --text-muted: #93A1AF;
  --text-faint: #5C6A78;

  /* Type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-editorial: 'Fraunces', serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --max-width: 1120px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.mono { font-family: var(--font-mono); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 32, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grid-line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #1a1204;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232, 162, 61, 0.25); }
/* ---------- Hamburger button (real, not placeholder) ---------- */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--grid-line);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 300ms ease;
}
.nav-toggle:hover { border-color: var(--amber); }
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 400ms cubic-bezier(0.32, 0.72, 0, 1),
              opacity 300ms ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- Mobile menu — full-screen backdrop overlay ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(15, 23, 32, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 24px;
}
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.32, 0.72, 0, 1),
              transform 600ms cubic-bezier(0.32, 0.72, 0, 1),
              color 300ms ease;
}
.mobile-menu[aria-hidden="false"] .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu[aria-hidden="false"] .mobile-menu-links a:nth-child(1) { transition-delay: 100ms; }
.mobile-menu[aria-hidden="false"] .mobile-menu-links a:nth-child(2) { transition-delay: 160ms; }
.mobile-menu[aria-hidden="false"] .mobile-menu-links a:nth-child(3) { transition-delay: 220ms; }
.mobile-menu[aria-hidden="false"] .mobile-menu-links a:nth-child(4) { transition-delay: 280ms; }
.mobile-menu[aria-hidden="false"] .mobile-menu-links a:nth-child(5) { transition-delay: 340ms; }

.mobile-menu-links a:not(.mobile-menu-cta):hover { color: var(--amber); }

.mobile-menu-cta {
  margin-top: 20px;
  padding: 14px 32px !important;
  background: var(--amber);
  color: #1a1204 !important;
  border-radius: 999px;
  font-size: 18px !important;
  font-weight: 600;
}
.mobile-menu-cta:hover {
  background: #F0AE4A;
  box-shadow: 0 10px 30px rgba(232, 162, 61, 0.3);
}

/* Prevent body scroll when menu is open */
body.menu-open { overflow: hidden; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (min-width: 821px) {
  .mobile-menu { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .mobile-menu-links a, .nav-toggle-bar {
    transition-duration: 100ms;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--grid-line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  font-weight: 500;
}
.hero h1 .accent {
  color: var(--amber);
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.01em;
}
.hero p.lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 32px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--amber);
  color: #1a1204;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232, 162, 61, 0.25); }
.btn-ghost {
  border: 1px solid var(--grid-line);
  color: var(--text-primary);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 15px;
}
.btn-ghost:hover { border-color: var(--text-faint); }

/* ---------- Signature element: the live ledger ---------- */
.ledger-card {
  background: var(--navy-raised);
  border: 1px solid var(--grid-line);
  border-radius: 10px;
  padding: 28px;
  font-family: var(--font-mono);
  font-size: 14px;
}
.ledger-card .ledger-title {
  font-family: var(--font-body);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.ledger-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--grid-line);
  opacity: 0;
  transform: translateY(6px);
  animation: rowIn 0.5s ease forwards;
}
.ledger-row:last-of-type { border-bottom: none; }
.ledger-row span:first-child { color: var(--text-muted); }
.ledger-row .num { color: var(--text-primary); }
.ledger-row.result {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grid-line);
  border-bottom: none;
  font-size: 15px;
}
.ledger-row.result .num { color: var(--ledger-green); font-weight: 600; }
@keyframes rowIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 16.5px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  border: 1px solid var(--grid-line);
  border-radius: 8px;
  padding: 26px;
  background: var(--navy-raised);
}
.feature-card .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ledger-green);
  margin-bottom: 12px;
  display: block;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* ---------- Steps (real sequence — numbering earned) ---------- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--grid-line);
}
.step:last-child { border-bottom: none; }
.step .index {
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--text-faint);
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--text-muted); margin: 0; font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--grid-line);
  padding: 22px 0;
}
.faq-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); margin: 0; font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing-card {
  border: 1px solid var(--grid-line);
  background: var(--navy-raised);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.pricing-card .eyebrow { justify-content: center; display: flex; }
.pricing-card h2 { font-size: 26px; margin-bottom: 12px; }
.pricing-card p { color: var(--text-muted); margin-bottom: 28px; }

/* ---------- Hero atmosphere: stage-light glow + drifting particles ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; }

.stage-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 78% 82%, rgba(232, 162, 61, 0.18) 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 12% 18%, rgba(62, 145, 105, 0.10) 0%, transparent 55%),
    radial-gradient(circle 800px at 68% 100%, rgba(232, 162, 61, 0.09) 0%, transparent 70%);
  animation: stageBreathe 12s ease-in-out infinite alternate;
}
@keyframes stageBreathe {
  0%   { opacity: 0.85; transform: translate3d(0, 0, 0); }
  100% { opacity: 1;    transform: translate3d(-1%, -0.5%, 0); }
}

.particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  box-shadow: 0 0 6px rgba(232, 162, 61, 0.6);
  animation: particleDrift 14s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

/* Distribute 25 particles across the hero with varied positions, sizes, delays */
.particles span:nth-child(1)  { left: 8%;  bottom: -10px; animation-delay: 0s;    animation-duration: 15s; }
.particles span:nth-child(2)  { left: 15%; bottom: -10px; animation-delay: 2s;    animation-duration: 18s; width: 2px; height: 2px; }
.particles span:nth-child(3)  { left: 22%; bottom: -10px; animation-delay: 4s;    animation-duration: 13s; }
.particles span:nth-child(4)  { left: 29%; bottom: -10px; animation-delay: 6s;    animation-duration: 16s; width: 4px; height: 4px; }
.particles span:nth-child(5)  { left: 36%; bottom: -10px; animation-delay: 1s;    animation-duration: 14s; }
.particles span:nth-child(6)  { left: 43%; bottom: -10px; animation-delay: 3.5s;  animation-duration: 17s; width: 2px; height: 2px; }
.particles span:nth-child(7)  { left: 50%; bottom: -10px; animation-delay: 5.5s;  animation-duration: 15s; }
.particles span:nth-child(8)  { left: 57%; bottom: -10px; animation-delay: 7s;    animation-duration: 12s; }
.particles span:nth-child(9)  { left: 64%; bottom: -10px; animation-delay: 0.5s;  animation-duration: 19s; width: 3px; height: 3px; }
.particles span:nth-child(10) { left: 71%; bottom: -10px; animation-delay: 2.5s;  animation-duration: 16s; }
.particles span:nth-child(11) { left: 78%; bottom: -10px; animation-delay: 4.5s;  animation-duration: 14s; width: 2px; height: 2px; }
.particles span:nth-child(12) { left: 85%; bottom: -10px; animation-delay: 6.5s;  animation-duration: 17s; }
.particles span:nth-child(13) { left: 92%; bottom: -10px; animation-delay: 8s;    animation-duration: 13s; }
.particles span:nth-child(14) { left: 5%;  bottom: -10px; animation-delay: 9s;    animation-duration: 18s; width: 2px; height: 2px; }
.particles span:nth-child(15) { left: 12%; bottom: -10px; animation-delay: 10.5s; animation-duration: 15s; }
.particles span:nth-child(16) { left: 20%; bottom: -10px; animation-delay: 11s;   animation-duration: 16s; }
.particles span:nth-child(17) { left: 32%; bottom: -10px; animation-delay: 12s;   animation-duration: 14s; }
.particles span:nth-child(18) { left: 40%; bottom: -10px; animation-delay: 13s;   animation-duration: 17s; width: 3px; height: 3px; }
.particles span:nth-child(19) { left: 48%; bottom: -10px; animation-delay: 1.8s;  animation-duration: 15s; }
.particles span:nth-child(20) { left: 60%; bottom: -10px; animation-delay: 3.2s;  animation-duration: 18s; width: 2px; height: 2px; }
.particles span:nth-child(21) { left: 68%; bottom: -10px; animation-delay: 5.8s;  animation-duration: 14s; }
.particles span:nth-child(22) { left: 76%; bottom: -10px; animation-delay: 7.5s;  animation-duration: 16s; }
.particles span:nth-child(23) { left: 82%; bottom: -10px; animation-delay: 9.5s;  animation-duration: 13s; width: 3px; height: 3px; }
.particles span:nth-child(24) { left: 88%; bottom: -10px; animation-delay: 11.5s; animation-duration: 17s; }
.particles span:nth-child(25) { left: 96%; bottom: -10px; animation-delay: 13.5s; animation-duration: 15s; width: 2px; height: 2px; }

@keyframes particleDrift {
  0%   { opacity: 0; transform: translate3d(0, 0, 0); }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate3d(-6vw, -105%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .particles span, .stage-glow { animation: none; }
  .particles span { opacity: 0.4; }
}
/* ---------- Interactive hero calculator ---------- */
.calc-card { min-width: 0; }
.calc-field { margin-bottom: 18px; }
.calc-field-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.calc-field-label .num {
  font-family: var(--font-mono);
  color: var(--amber);
  font-weight: 600;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--grid-line);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 1px var(--amber);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--navy);
  cursor: pointer;
}

/* ---------- Product preview section ---------- */
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 760px) { .preview-grid { grid-template-columns: 1fr; } }

.donut-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.donut {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--donut);
  position: relative;
  flex-shrink: 0;
}
.donut::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: var(--navy-raised);
}
.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.donut-legend span { display: flex; align-items: center; gap: 8px; }
.donut-legend i {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  display: inline-block;
}
/* ---------- Cost-type badges ---------- */
.type-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.type-onetime { background: rgba(147, 161, 175, 0.15); color: #B7C1CC; }
.type-recurring { background: rgba(232, 162, 61, 0.15); color: var(--amber); }
.type-hybrid { background: rgba(122, 107, 157, 0.2); color: #B7A9E0; }

/* ---------- Comparison grid ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col {
  border: 1px solid var(--grid-line);
  border-radius: 10px;
  padding: 24px;
  background: var(--navy-raised);
}
.compare-featured {
  border: 2px solid var(--amber);
  background: rgba(232, 162, 61, 0.06);
}
.compare-head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grid-line);
}
.compare-featured .compare-head { color: var(--amber); }
.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 9px 0;
  line-height: 1.5;
}
.compare-row span:first-child {
  font-family: var(--font-mono);
  flex-shrink: 0;
  width: 16px;
  color: var(--text-faint);
}
.compare-featured .compare-row span:first-child { color: var(--ledger-green); }
.compare-featured .compare-row { color: var(--text-primary); }
/* ---------- Hover physicality — every card type, site-wide ---------- */
.feature-card, .compare-col, .step, .faq-item, .pricing-card,
.hero .ledger-card {
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.feature-card:hover, .compare-col:hover, .pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  background: #17232F;
}
.compare-featured:hover { border-color: var(--amber); }
.step:hover { border-color: transparent; background: var(--navy-raised); border-radius: 8px; padding-left: 14px; padding-right: 14px; margin: 0 -14px; }
.faq-item:hover { background: var(--navy-raised); border-radius: 8px; padding-left: 14px; padding-right: 14px; margin: 0 -14px; }
.hero .ledger-card:hover { border-color: var(--amber); }

/* ---------- Nav link underline ---------- */
.nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--amber);
  transition: right 0.2s ease;
}
.nav-links a:hover::after { right: 0; }
.brand { transition: opacity 0.15s ease; }
.brand:hover { opacity: 0.8; }

/* ---------- Scroll-reveal — real cubic-bezier physics ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity 900ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 900ms cubic-bezier(0.32, 0.72, 0, 1),
    filter 700ms cubic-bezier(0.32, 0.72, 0, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------- Inline stat emphasis for numbers in prose ---------- */
.inline-stat {
  font-family: var(--font-mono);
  color: var(--amber);
  font-weight: 500;
}

/* ---------- Feature card icon ---------- */
.feature-icon {
  width: 30px;
  height: 30px;
  color: var(--amber);
  margin-bottom: 14px;
  display: block;
}

/* ---------- Section heading accent rule ---------- */
.section-head h2 { position: relative; padding-bottom: 16px; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--amber);
}

/* ---------- Pricing tiers — double-bezel architecture ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; gap: 20px; } }

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%), var(--navy-raised);
  border: 1px solid var(--grid-line);
  border-radius: 20px;
  padding: 6px;
  transition: transform 700ms cubic-bezier(0.32, 0.72, 0, 1), border-color 400ms ease;
}
.tier-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 162, 61, 0.35);
}

/* Inner core — the double-bezel effect */
.tier-header,
.tier-body {
  padding: 22px 26px;
}
.tier-header {
  border-radius: 15px 15px 0 0;
  border-bottom: 1px dashed var(--grid-line);
  background: rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.tier-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 26px;
  padding-bottom: 22px;
}

.tier-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 18px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.tier-price-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}
.tier-price-suffix {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-faint);
}

.tier-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.tier-feature strong {
  color: var(--text-primary);
  font-weight: 500;
}
.tier-check {
  font-family: var(--font-mono);
  color: var(--ledger-green);
  flex-shrink: 0;
  width: 14px;
}

.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 20px 20px;
  padding: 13px 22px;
  border: 1px solid var(--grid-line);
  border-radius: 999px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  transition: border-color 300ms ease, background 300ms ease, transform 200ms ease;
}
.tier-cta:hover { border-color: var(--amber); background: rgba(232, 162, 61, 0.08); }
.tier-cta:active { transform: scale(0.98); }

.tier-cta-featured {
  background: var(--amber);
  color: #1a1204;
  border-color: var(--amber);
  font-weight: 600;
}
.tier-cta-featured:hover {
  background: #F0AE4A;
  border-color: #F0AE4A;
  box-shadow: 0 12px 28px rgba(232, 162, 61, 0.25);
}

/* Featured tier — subtle amber halo, lifts slightly by default */
.tier-featured {
  border-color: rgba(232, 162, 61, 0.35);
  background:
    linear-gradient(180deg, rgba(232, 162, 61, 0.06) 0%, transparent 60%),
    var(--navy-raised);
  box-shadow:
    inset 0 1px 0 rgba(232, 162, 61, 0.12),
    0 20px 60px rgba(232, 162, 61, 0.06);
  transform: translateY(-8px);
}
.tier-featured:hover { transform: translateY(-14px); }

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #1a1204;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(232, 162, 61, 0.35);
}

@media (max-width: 900px) {
  .tier-featured, .tier-featured:hover { transform: none; }
  .tier-card:hover { transform: none; border-color: rgba(232, 162, 61, 0.35); }
}

/* ---------- Bento grid — mixed cell sizes for real visual rhythm ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: minmax(160px, auto);
}
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card { grid-column: span 1 !important; grid-row: auto !important; }
}

.bento-card {
  position: relative;
  border: 1px solid var(--grid-line);
  border-radius: 16px;
  padding: 26px 28px;
  background: var(--navy-raised);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 500ms cubic-bezier(0.32, 0.72, 0, 1), border-color 400ms ease;
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 162, 61, 0.3);
}

.bento-lg {
  background:
    radial-gradient(ellipse at top right, rgba(232, 162, 61, 0.08) 0%, transparent 50%),
    var(--navy-raised);
}

.bento-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}
.bento-lg .bento-title {
  font-size: 26px;
  line-height: 1.1;
}

.bento-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.bento-viz {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--grid-line);
  background: rgba(0, 0, 0, 0.2);
}
.chip-onetime { color: #B7C1CC; border-color: rgba(183, 193, 204, 0.25); }
.chip-recurring { color: var(--amber); border-color: rgba(232, 162, 61, 0.3); }
.chip-hybrid { color: #B7A9E0; border-color: rgba(183, 169, 224, 0.28); }

.bento-metric {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bento-metric-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--amber);
  line-height: 1;
}
.bento-metric-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Genre cost ranges ---------- */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .genre-grid { grid-template-columns: 1fr; } }

.genre-card {
  border: 1px solid var(--grid-line);
  border-radius: 14px;
  padding: 24px 26px;
  background: var(--navy-raised);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 500ms cubic-bezier(0.32, 0.72, 0, 1), border-color 400ms ease;
}
.genre-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 162, 61, 0.3);
}

.genre-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.genre-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232, 162, 61, 0.1);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.genre-icon svg { width: 20px; height: 20px; }

.genre-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 3px;
}
.genre-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.genre-range {
  padding: 14px 0;
  border-top: 1px dashed var(--grid-line);
  border-bottom: 1px dashed var(--grid-line);
}
.genre-range-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--amber);
  line-height: 1.1;
  margin-bottom: 2px;
}
.genre-range-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.genre-note {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.genre-disclaimer {
  margin-top: 36px;
  padding: 20px 24px;
  border: 1px solid var(--grid-line);
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  background: rgba(232, 162, 61, 0.04);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.genre-disclaimer strong { color: var(--text-primary); font-weight: 500; }

/* ---------- FAQ — ledger register style ---------- */
.faq-category {
  padding: 32px 0 12px;
  border-bottom: 1px solid var(--grid-line);
  margin-bottom: 4px;
}
.faq-category:first-of-type { padding-top: 0; }
.faq-cat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.faq-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--grid-line);
  transition: background 300ms ease, padding 300ms ease;
}
.faq-item:hover {
  background: linear-gradient(90deg, rgba(232, 162, 61, 0.03), transparent 40%);
  padding-left: 14px;
  padding-right: 14px;
  margin: 0 -14px;
  border-radius: 8px;
}
.faq-num {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--text-faint);
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 8px 0;
  color: var(--text-primary);
}
.faq-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.faq-cta {
  margin-top: 48px;
  padding: 40px 32px;
  border: 1px solid var(--grid-line);
  border-radius: 12px;
  background:
    radial-gradient(ellipse at top, rgba(232, 162, 61, 0.05) 0%, transparent 60%),
    var(--navy-raised);
  text-align: center;
}
.faq-cta p {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

/* ---------- Proof grid — real venue photo + dashboard mockup ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }

.venue-photo {
  position: relative;
  margin: 0;
  padding: 6px;
  background: var(--navy-raised);
  border: 1px solid var(--grid-line);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}
.venue-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  aspect-ratio: 720 / 1199;
  object-fit: cover;
}
.venue-photo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 32, 0.85) 100%);
  pointer-events: none;
}
.venue-photo figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
}
.venue-photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 8px 12px;
  border: 1px solid rgba(232, 162, 61, 0.35);
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.7);
  backdrop-filter: blur(8px);
}
.venue-photo-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(232, 162, 61, 0.6);
}

.proof-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--grid-line);
  padding: 40px 0;
  color: var(--text-faint);
  font-size: 13.5px;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a:hover { color: var(--text-muted); }
