:root {
  /* Cartoon bakery palette */
  --bg: #2b1055;
  --paper: #fff7fb;
  --ink: #22162b;
  --ink2: rgba(34, 22, 43, 0.75);
  /* Compatibility tokens (legacy selectors still present) */
  --text: var(--ink);
  --muted: var(--ink2);
  --dim: rgba(34, 22, 43, 0.55);
  --accent: #ff3ea5;
  --accent2: #7c3aed;
  --mint: #22d3ee;
  --butter: #fbbf24;
  --stroke: rgba(34, 22, 43, 0.22);
  --stroke-strong: rgba(34, 22, 43, 0.42);
  --shadow: 0 18px 0 rgba(34, 22, 43, 0.22);
  --shadow-soft: 0 22px 55px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-lg: 26px;
  --sans: "Fredoka", system-ui, sans-serif;
  --display: "Chewy", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.55;
  background: radial-gradient(circle at 20% 10%, rgba(255, 62, 165, 0.35), transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(34, 211, 238, 0.22), transparent 40%),
    radial-gradient(circle at 55% 85%, rgba(251, 191, 36, 0.20), transparent 42%),
    linear-gradient(180deg, #2b1055 0%, #1a0738 55%, #120426 100%);
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(100% - clamp(1.1rem, 4vw, 2.5rem), var(--max));
  margin-inline: auto;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-canvas { display: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 247, 251, 0.92);
  border-bottom: 3px solid var(--stroke-strong);
}

.topbar-inner {
  width: min(100% - clamp(1.1rem, 4vw, 2.5rem), var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 3px solid var(--stroke-strong);
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.2), rgba(34, 211, 238, 0.18));
  box-shadow: var(--shadow);
}

.topnav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav a {
  text-decoration: none;
  color: var(--ink2);
  font-weight: 900;
  font-size: 0.92rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
}

.topnav a:hover {
  color: var(--ink);
  border-color: rgba(34, 22, 43, 0.14);
  background: rgba(255, 62, 165, 0.08);
}

.cart-fab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 3px solid var(--stroke-strong);
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.85), rgba(124, 58, 237, 0.85));
  color: #120426;
  text-decoration: none;
  font-weight: 1000;
  box-shadow: var(--shadow);
}

.cart-fab:active {
  transform: translateY(2px);
  box-shadow: 0 14px 0 rgba(34, 22, 43, 0.22);
}

.hero {
  position: relative;
  padding: clamp(2.4rem, 6vw, 3.8rem) 0 clamp(2.8rem, 6vw, 4.4rem);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: start;
}

.badgey {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 3px solid rgba(255, 247, 251, 0.65);
  background: rgba(255, 247, 251, 0.22);
  color: rgba(255, 247, 251, 0.92);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 1rem;
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: 0.01em;
  color: rgba(255, 247, 251, 0.98);
  text-shadow: 0 6px 0 rgba(34, 22, 43, 0.22);
}

.hero-lead {
  margin: 0 0 1.35rem;
  color: rgba(255, 247, 251, 0.88);
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 247, 251, 0.98), rgba(255, 233, 246, 0.98));
  color: var(--ink);
  border: 3px solid rgba(255, 247, 251, 0.3);
  box-shadow: 0 10px 0 rgba(34, 22, 43, 0.22);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: rgba(255, 247, 251, 0.12);
  border-color: rgba(255, 247, 251, 0.55);
  color: rgba(255, 247, 251, 0.95);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stat {
  border-radius: 18px;
  border: 3px solid rgba(255, 247, 251, 0.55);
  background: rgba(255, 247, 251, 0.14);
  padding: 0.75rem 0.85rem;
  min-width: 160px;
}

.stat-num {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255, 247, 251, 0.98);
}

.stat-label {
  display: block;
  margin-top: 0.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 247, 251, 0.72);
}

.hero-illu {
  position: relative;
  min-height: 320px;
}

.donut-stack {
  position: relative;
  width: min(420px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.75rem;
}

.donut {
  border-radius: 999px;
  border: 6px solid rgba(255, 247, 251, 0.85);
  box-shadow: 0 18px 0 rgba(34, 22, 43, 0.20), 0 30px 70px rgba(0, 0, 0, 0.25);
  height: 110px;
  background: radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.55), transparent 38%),
    linear-gradient(135deg, rgba(255, 62, 165, 0.95), rgba(124, 58, 237, 0.92));
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 24px 120px;
  border-radius: 999px;
  background: rgba(255, 247, 251, 0.75);
  border: 6px solid rgba(34, 22, 43, 0.18);
}

.d1 { top: 0; transform: rotate(-8deg); }
.d2 { top: 110px; transform: rotate(7deg) scale(0.98); background: linear-gradient(135deg, rgba(34, 211, 238, 0.92), rgba(255, 62, 165, 0.88)); }
.d3 { top: 220px; transform: rotate(-4deg) scale(0.96); background: linear-gradient(135deg, rgba(251, 191, 36, 0.92), rgba(255, 62, 165, 0.90)); }

.sprinkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 44%, rgba(34, 211, 238, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 24%, rgba(255, 62, 165, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 54%, rgba(251, 191, 36, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 44% 80%, rgba(255, 255, 255, 0.75) 0 2px, transparent 3px);
  opacity: 0.7;
  pointer-events: none;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  width: 100%;
}

.wave--bottom {
  bottom: -1px;
}

.section-splash {
  padding-top: clamp(2.6rem, 6vw, 4rem);
}

.section-title {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(2.05rem, 4.2vw, 2.8rem);
  color: rgba(255, 247, 251, 0.98);
  text-shadow: 0 5px 0 rgba(34, 22, 43, 0.18);
}

.section-sub {
  margin: 0 0 1.25rem;
  color: rgba(255, 247, 251, 0.86);
  max-width: 56rem;
}

.splash-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.splash-card {
  background: rgba(255, 247, 251, 0.92);
  border: 4px solid var(--stroke-strong);
  border-radius: 28px;
  padding: 1.1rem 1.05rem;
  box-shadow: var(--shadow);
}

.splash-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.55rem;
  color: var(--ink);
}

.splash-card p {
  margin: 0 0 0.85rem;
  color: rgba(34, 22, 43, 0.72);
  font-weight: 600;
}

.pill-mini {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 3px solid rgba(34, 22, 43, 0.18);
  background: rgba(255, 62, 165, 0.12);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(34, 22, 43, 0.75);
}

.splash-card--alt {
  background: rgba(255, 247, 251, 0.92);
}

.splash-card--hot {
  background: rgba(255, 247, 251, 0.92);
}

@media (max-width: 980px) {
  .topnav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-illu { min-height: 360px; }
  .splash-grid { grid-template-columns: 1fr; }
}

.btn-block {
  width: 100%;
}

/* Legacy KPI blocks removed (replaced by .hero-stats). */

/* Legacy right-panel removed (new hero illustration + splash grid). */

.panel-title {
  margin: 0 0 0.75rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.panel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.35);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip--soft {
  border-color: rgba(255, 62, 165, 0.18);
}

.chip--hot {
  border-color: rgba(34, 211, 238, 0.22);
  background: rgba(124, 58, 237, 0.12);
}

.panel-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 62, 165, 0.12), transparent 40%),
    rgba(9, 3, 22, 0.55);
  padding: 1.2rem 1.1rem;
}

.panel-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.panel-label {
  margin: 0;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: 0.72rem;
}

.panel-value {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.panel-sub {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-actions {
  display: grid;
  gap: 0.65rem;
}

.fineprint {
  margin: 0.85rem 0 0;
  color: var(--dim);
  font-size: 0.85rem;
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
}

.section-title {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  max-width: 52rem;
}

.section-head {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.feature-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(12, 16, 28, 0.76);
  padding: 1.2rem 1.1rem;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 40, 0.86);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
}

.card--sticky {
  position: sticky;
  top: 5.1rem;
}

.card-title {
  margin: 0 0 0.35rem;
  font-weight: 900;
}

.card-sub {
  margin: 0 0 1rem;
  color: var(--muted);
}

.pulse-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.pulse-bar span {
  display: block;
  height: 100%;
  width: 55%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 62, 165, 0.55), rgba(124, 58, 237, 0.9));
  box-shadow: 0 0 24px rgba(255, 62, 165, 0.18);
  transition: width 0.35s ease;
}

.pulse-meta {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dim);
  font-size: 0.9rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.menu,
.cart {
  border: 4px solid var(--stroke-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 247, 251, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  color: var(--ink);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 3px solid rgba(34, 22, 43, 0.12);
}

.tab {
  border: 3px solid rgba(34, 22, 43, 0.16);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(34, 22, 43, 0.78);
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.85rem;
}

.tab.is-active {
  color: rgba(255, 255, 255, 0.98);
  background: linear-gradient(90deg, rgba(255, 77, 141, 0.95), rgba(124, 58, 237, 0.95));
  border-color: transparent;
  box-shadow: var(--shadow);
}

.menu-items {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.item {
  border: 4px solid rgba(34, 22, 43, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.95rem 0.95rem 0.9rem;
  display: grid;
  gap: 0.45rem;
  box-shadow: 0 14px 0 rgba(34, 22, 43, 0.14);
}

.item h4 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.item p {
  margin: 0;
  color: rgba(34, 22, 43, 0.72);
  font-size: 0.92rem;
}

.item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.price {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: rgba(34, 22, 43, 0.92);
  font-weight: 1000;
}

.link {
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 900;
  cursor: pointer;
  padding: 0;
}

.link:hover {
  color: var(--hot);
}

.danger {
  color: rgba(255, 255, 255, 0.7);
}

.danger:hover {
  color: rgba(255, 255, 255, 0.95);
}

.cart-head {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 3px solid rgba(34, 22, 43, 0.12);
}

.cart-title {
  margin: 0;
  font-weight: 900;
}

.cart-body {
  padding: 0.8rem 1rem 0;
  display: grid;
  gap: 0.65rem;
  max-height: 320px;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  padding: 0.75rem;
  border-radius: 16px;
  border: 4px solid rgba(34, 22, 43, 0.14);
  background: rgba(255, 255, 255, 0.98);
}

.cart-line strong {
  font-size: 0.95rem;
}

.cart-line .muted {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: rgba(34, 22, 43, 0.68);
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 3px solid rgba(34, 22, 43, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: rgba(34, 22, 43, 0.92);
  cursor: pointer;
  font-weight: 900;
}

.qty button:hover {
  border-color: rgba(94, 234, 212, 0.25);
}

.cart-foot {
  padding: 1rem;
  border-top: 3px solid rgba(34, 22, 43, 0.12);
  margin-top: 0.85rem;
}

.totals {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: rgba(34, 22, 43, 0.72);
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.totals strong {
  color: rgba(34, 22, 43, 0.92);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.tile {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.45);
  overflow: hidden;
  cursor: pointer;
  min-height: 160px;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.72), transparent 65%);
  pointer-events: none;
}

.tile span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  z-index: 1;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  opacity: 0.92;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.06);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.reviews,
.why {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 40, 0.86);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.reviews-title,
.why-title {
  margin: 0;
  font-weight: 900;
}

.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
}

.star {
  color: var(--gold);
}

.reviews-list {
  display: grid;
  gap: 0.75rem;
}

.review {
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.42);
}

.review p {
  margin: 0 0 0.4rem;
  color: var(--text);
  font-weight: 700;
}

.review .meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.why-list {
  margin: 0.85rem 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.why-list strong {
  color: var(--text);
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal[aria-hidden="false"],
.lightbox[aria-hidden="false"] {
  display: block;
}

.modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modal-panel {
  position: relative;
  width: min(720px, calc(100% - 2.2rem));
  margin: 7vh auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 24, 40, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-head {
  padding: 1.1rem 1.1rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 900;
}

.modal-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 1.85rem;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.35);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.icon-btn:hover {
  border-color: rgba(94, 234, 212, 0.22);
}

.modal-body {
  padding: 1.1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.field span {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--muted);
}

input,
select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.45);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(94, 234, 212, 0.35);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.14);
}

.slot-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(7, 10, 18, 0.35);
  padding: 0.9rem;
  margin: 0.3rem 0 1rem;
}

.slot-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.slot-title {
  margin: 0;
  font-weight: 900;
}

.slot-sub {
  margin: 0;
  color: var(--dim);
  font-size: 0.9rem;
}

.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.slot {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 28, 0.65);
  color: var(--text);
  padding: 0.65rem 0.6rem;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.slot:hover {
  border-color: rgba(94, 234, 212, 0.25);
}

.slot[aria-selected="true"] {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.92), rgba(34, 211, 238, 0.92));
  color: rgba(4, 16, 22, 0.98);
}

.receipt {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
  padding-top: 1rem;
}

.receipt-title {
  margin: 0 0 0.75rem;
  font-weight: 900;
}

.receipt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin-bottom: 0.85rem;
}

.muted {
  color: var(--muted);
}

.receipt-grid span {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.receipt-grid strong {
  display: block;
  margin-top: 0.18rem;
  letter-spacing: -0.01em;
}

.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lightbox-figure {
  position: relative;
  width: min(980px, calc(100% - 2.2rem));
  margin: 7vh auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 24, 40, 0.95);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lightbox-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox-cap {
  padding: 0.85rem 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 60;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.82);
  color: var(--text);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .menu-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .card--sticky {
    position: static;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bg-canvas {
    display: none;
  }
}
