:root {
  --bg: #07090e;
  --bg-elev: #10151e;
  --ink: #f2f5fa;
  --muted: #9aa8ba;
  --line: rgba(242, 245, 250, 0.12);
  --accent: #3dffa8;
  --accent-dim: #1fcf86;
  --gold: #e8c47a;
  --gold-dim: #b8924a;
  --hold: #b794f6;
  --warn: #ffb454;
  --danger: #ff6b6b;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  background:
    radial-gradient(1100px 620px at 8% -8%, rgba(61, 255, 168, 0.16), transparent 55%),
    radial-gradient(900px 520px at 92% 0%, rgba(232, 196, 122, 0.1), transparent 48%),
    radial-gradient(800px 480px at 70% 40%, rgba(88, 80, 255, 0.07), transparent 55%),
    linear-gradient(180deg, #0c1118 0%, var(--bg) 42%, #05070b 100%);
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vip-glow {
  pointer-events: none;
  position: fixed;
  inset: auto -10% -20% auto;
  width: 55vw;
  height: 45vh;
  z-index: 0;
  background: radial-gradient(ellipse, rgba(232, 196, 122, 0.08), transparent 70%);
  filter: blur(40px);
}

.top,
main,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo__mark {
  color: var(--accent);
}

.top__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.top__nav a:hover {
  color: var(--ink);
}

.top__cta {
  color: #1a1408 !important;
  background: linear-gradient(135deg, var(--gold), #f0d9a0 45%, var(--gold-dim));
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: 0 0 24px rgba(232, 196, 122, 0.25);
}

.top__cta:hover {
  background: linear-gradient(135deg, #f5e0ae, var(--gold));
  color: #1a1408 !important;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.2rem, 7vh, 4.5rem) var(--pad) 2.5rem;
  position: relative;
  min-height: min(92vh, 58rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  inset: 6% auto auto 38%;
  width: min(42vw, 30rem);
  height: min(42vw, 30rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 255, 168, 0.2), transparent 70%);
  filter: blur(28px);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}

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

.hero__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: rise 0.7s ease both;
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  background: linear-gradient(115deg, #fff 10%, #d8ffe9 42%, var(--gold) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise 0.8s 0.05s ease both;
}

.hero__lead {
  margin: 1.4rem 0 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  animation: rise 0.8s 0.12s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  animation: rise 0.8s 0.18s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.55rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, #5fffc0, var(--accent));
  color: #042216;
  box-shadow: 0 0 28px rgba(61, 255, 168, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #8affd2, #5fffc0);
  box-shadow: 0 0 36px rgba(61, 255, 168, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  border-color: rgba(232, 196, 122, 0.35);
}

.btn--ghost:hover {
  border-color: rgba(232, 196, 122, 0.65);
  background: rgba(232, 196, 122, 0.06);
}

.btn--wide {
  width: 100%;
  margin-top: 0.5rem;
}

.btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* VIP panel önizleme — boş kutuların yerine */
.hero-panel {
  margin-top: clamp(2rem, 6vh, 3.25rem);
  border-radius: 1.15rem;
  border: 1px solid rgba(232, 196, 122, 0.22);
  background:
    linear-gradient(165deg, rgba(22, 28, 38, 0.92), rgba(8, 11, 16, 0.96));
  box-shadow:
    0 0 0 1px rgba(61, 255, 168, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  animation: rise 0.9s 0.22s ease both;
}

.hero-panel__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.hero-panel__dots {
  display: flex;
  gap: 0.35rem;
}

.hero-panel__dots i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3a4555;
}

.hero-panel__dots i:nth-child(1) { background: #ff6b6b; }
.hero-panel__dots i:nth-child(2) { background: #ffb454; }
.hero-panel__dots i:nth-child(3) { background: #3dffa8; }

.hero-panel__url {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-panel__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-panel__live em {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero-panel__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.75rem 1rem 0.35rem;
}

.hero-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-chip strong {
  color: var(--ink);
  font-size: 0.85rem;
  font-family: var(--font-display);
}

.hero-chip--mint {
  border-color: rgba(61, 255, 168, 0.35);
  background: rgba(61, 255, 168, 0.08);
}

.hero-chip--mint strong { color: var(--accent); }

.hero-chip--gold {
  border-color: rgba(232, 196, 122, 0.4);
  background: rgba(232, 196, 122, 0.08);
}

.hero-chip--gold strong { color: var(--gold); }

.hero-chip--soft strong { color: #7dd3fc; }

.hero-seats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
  padding: 0.65rem 1rem 0.85rem;
}

.seat {
  position: relative;
  min-height: 6.4rem;
  padding: 0.55rem 0.55rem 0.5rem;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(10, 14, 20, 0.85));
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: transparent;
}

.seat header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.15rem;
}

.seat__ico {
  width: 1.05rem;
  height: 0.85rem;
  border-radius: 0.18rem;
  border: 1.5px solid currentColor;
  opacity: 0.75;
  position: relative;
}

.seat__ico::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -3px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.seat header b {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.seat__name {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seat__time {
  margin: 0;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  color: inherit;
  opacity: 0.85;
}

.seat footer {
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.seat.is-busy {
  color: #b8ffe0;
  border-color: rgba(61, 255, 168, 0.45);
  background:
    linear-gradient(165deg, rgba(61, 255, 168, 0.18), rgba(8, 20, 16, 0.92));
  box-shadow: 0 0 22px rgba(61, 255, 168, 0.12);
}

.seat.is-busy::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.seat.is-free {
  color: #c5d0de;
  border-color: rgba(148, 163, 184, 0.28);
  background: linear-gradient(165deg, rgba(30, 38, 50, 0.7), rgba(10, 14, 20, 0.9));
}

.seat.is-hold {
  color: #e9d5ff;
  border-color: rgba(183, 148, 246, 0.55);
  background: linear-gradient(165deg, rgba(183, 148, 246, 0.18), rgba(18, 12, 28, 0.92));
  box-shadow: 0 0 20px rgba(183, 148, 246, 0.15);
}

.seat.is-hold::before {
  background: linear-gradient(90deg, transparent, var(--hold), transparent);
}

.seat.is-pulse {
  animation: seatGlow 2.8s ease-in-out infinite;
}

@keyframes seatGlow {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(61, 255, 168, 0.1);
  }
  50% {
    box-shadow: 0 0 28px rgba(61, 255, 168, 0.28);
  }
}

.hero-panel__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 1rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-panel__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-panel__legend i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.lg-busy { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.lg-free { background: #64748b; }
.lg-hold { background: var(--hold); box-shadow: 0 0 8px var(--hold); }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5rem) var(--pad);
}

.section--alt {
  border-block: 1px solid var(--line);
  background: rgba(18, 24, 32, 0.45);
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section__sub {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  color: var(--muted);
}

.features {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.75rem 1.5rem;
}

.features h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Ekosistem + mock görseller —— */
.eco {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.eco__card {
  padding: 1.1rem 1.1rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(12, 16, 22, 0.55);
}

.eco__card h3 {
  margin: 1rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.eco__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mock {
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: #0a0e14;
  overflow: hidden;
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 24, 32, 0.9);
}

.mock__bar i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #3a4555;
}

.mock__bar i:nth-child(1) { background: #ff6b6b; }
.mock__bar i:nth-child(2) { background: #ffb454; }
.mock__bar i:nth-child(3) { background: #2ee6a6; }

.mock__bar span {
  margin-left: 0.4rem;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.mock__body {
  display: grid;
  grid-template-columns: 1fr 2.2rem;
  gap: 0.45rem;
  padding: 0.65rem;
  min-height: 7.5rem;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
}

.mock-grid b {
  aspect-ratio: 1.2;
  border-radius: 0.25rem;
  border: 1px solid var(--line);
  background: rgba(232, 238, 246, 0.04);
}

.mock-grid b.is-busy {
  background: rgba(46, 230, 166, 0.22);
  border-color: rgba(46, 230, 166, 0.45);
  animation: seat 2.8s ease-in-out infinite;
}

.mock-grid b.is-hold {
  border-color: rgba(167, 139, 250, 0.65);
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.35);
  background: rgba(167, 139, 250, 0.12);
}

.mock-side {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mock-side span {
  flex: 1;
  border-radius: 0.25rem;
  background: rgba(232, 238, 246, 0.06);
  border: 1px solid var(--line);
}

.mock-side span.is-on {
  background: rgba(46, 230, 166, 0.2);
  border-color: rgba(46, 230, 166, 0.4);
}

.mock--phone {
  display: flex;
  justify-content: center;
  padding: 0.85rem 0.5rem 0.4rem;
  border: none;
  background: transparent;
}

.mock-phone {
  width: 8.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(120, 200, 255, 0.22);
  background: linear-gradient(165deg, #121820, #0a0e14);
  padding: 0.65rem 0.7rem 0.55rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.mock-phone__notch {
  width: 2.2rem;
  height: 0.28rem;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  background: #2a3340;
}

.mock-phone__brand {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #00d4ff;
  margin-bottom: 0.35rem;
}

.mock-phone__bal {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.mock-phone__pill {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  color: #bae6fd;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.mock-phone__row {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
  margin-bottom: 0.35rem;
}

.mock-phone__row.is-short {
  width: 55%;
}

.mock-phone__btn {
  margin: 0.55rem 0 0.65rem;
  padding: 0.4rem 0.35rem;
  text-align: center;
  border-radius: 0.4rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: #062218;
  background: var(--accent);
}

.mock-phone__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.mock-phone__nav i {
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
}

.mock-phone__nav i.is-on {
  background: #00d4ff;
}

.mock--phone-lg .mock-phone {
  width: 10.5rem;
  min-height: 14rem;
}

.mock-kasa {
  padding: 1rem 1.1rem 1.15rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(46, 230, 166, 0.25);
  background: linear-gradient(160deg, rgba(46, 230, 166, 0.1), rgba(10, 14, 20, 0.9));
  min-height: 7.5rem;
}

.mock-kasa__h {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.mock-kasa__big {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--accent);
}

.mock-kasa__chips {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.mock-kasa__chips span {
  width: 2.8rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
}

.spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.spotlight--rev {
  grid-template-columns: 0.9fr 1.1fr;
}

.spotlight--rev .spotlight__copy {
  order: 2;
}

.spotlight--rev .spotlight__visual {
  order: 1;
}

.spotlight__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.spotlight__list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.spotlight__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.spotlight__steps {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  counter-reset: sp;
}

.spotlight__steps li {
  counter-increment: sp;
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.spotlight__steps li::before {
  content: counter(sp, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}

.spotlight__steps strong {
  color: var(--ink);
}

.mock--remote {
  min-height: 14rem;
}

.mock-remote__screen {
  position: relative;
  margin: 0.75rem;
  height: 9.5rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(56, 120, 255, 0.12), transparent 50%),
    #0d1218;
  overflow: hidden;
}

.mock-remote__win {
  position: absolute;
  left: 12%;
  top: 18%;
  width: 48%;
  height: 42%;
  border-radius: 0.3rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(30, 41, 59, 0.65);
}

.mock-remote__win.is-sm {
  left: 55%;
  top: 48%;
  width: 32%;
  height: 28%;
}

.mock-remote__cursor {
  position: absolute;
  left: 58%;
  top: 36%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0 0 50% 0;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(46, 230, 166, 0.55);
  animation: cursorMove 3.5s ease-in-out infinite;
}

@keyframes cursorMove {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-28px, 22px);
  }
}

.mock-remote__foot {
  padding: 0 0.85rem 0.75rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.mock--kitchen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem;
  min-height: 12rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: #0a0e14;
}

.mock-kitchen__col {
  padding: 0.65rem;
  border-radius: 0.55rem;
  border: 1px solid var(--line);
  background: rgba(18, 24, 32, 0.6);
}

.mock-kitchen__col > span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mock-kitchen__col.is-ready > span {
  color: var(--accent);
}

.mock-ticket {
  height: 2.4rem;
  margin-bottom: 0.4rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(251, 146, 60, 0.35);
  background: linear-gradient(90deg, rgba(251, 146, 60, 0.18), transparent);
}

.mock-ticket.is-dim {
  opacity: 0.45;
  height: 1.8rem;
}

.mock-ticket.is-ok {
  border-color: rgba(46, 230, 166, 0.4);
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.2), transparent);
}

@media (max-width: 900px) {
  .eco {
    grid-template-columns: 1fr;
  }

  .spotlight,
  .spotlight--rev {
    grid-template-columns: 1fr;
  }

  .spotlight--rev .spotlight__copy,
  .spotlight--rev .spotlight__visual {
    order: unset;
  }

  .hero-seats {
    grid-template-columns: repeat(3, 1fr);
  }

  .seat:nth-child(n + 10) {
    display: none;
  }
}

@media (max-width: 720px) {
  .top__nav a:not(.top__cta) {
    display: none;
  }

  .trial-form {
    grid-template-columns: 1fr;
  }

  .hero-seats {
    grid-template-columns: repeat(2, 1fr);
  }

  .seat:nth-child(n + 7) {
    display: none;
  }

  .hero-panel__url {
    display: none;
  }
}

.steps {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.steps__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.steps code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  color: var(--accent);
}

.trial-form {
  margin-top: 2rem;
  max-width: min(40rem, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
  padding: 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}

.trial-form__full {
  grid-column: 1 / -1;
}

.trial-form label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.trial-phone__row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.45rem;
}

.trial-phone__row select {
  padding-left: 0.55rem;
  padding-right: 0.35rem;
  font-size: 0.9rem;
}

.trial-form__hint-inline {
  align-self: end;
  padding-bottom: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--muted);
}

.trial-form__hint-inline strong {
  color: var(--accent);
  font-weight: 600;
  word-break: break-all;
}

.trial-form__hint-soft {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

.trial-form__preview {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
  word-break: break-all;
}

.trial-form label span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.trial-form label em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.75;
}

.trial-form input,
.trial-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background: #0b1016;
  color: var(--ink);
  font: inherit;
}

.trial-form input:focus,
.trial-form select:focus {
  outline: 2px solid rgba(46, 230, 166, 0.45);
  outline-offset: 1px;
  border-color: var(--accent-dim);
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.trial-form__hint {
  margin: 0.25rem 0 0;
  min-height: 1.4em;
  font-size: 0.95rem;
  color: var(--muted);
}

.trial-form__hint.is-ok {
  color: var(--accent);
}

.trial-form__hint.is-err {
  color: var(--danger);
}

.foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--pad) 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.foot__links a {
  color: var(--muted);
  text-decoration: none;
}

.foot__links a:hover {
  color: var(--accent);
}
