:root {
  --ink: #0a1014;
  --ink-soft: #121b22;
  --panel: rgba(18, 32, 38, 0.72);
  --line: rgba(196, 165, 116, 0.28);
  --copper: #c4a574;
  --copper-bright: #e2c48a;
  --teal: #2f8f8a;
  --teal-deep: #174844;
  --mist: #e7efec;
  --mute: #9aada8;
  --danger: #c86b5a;
  --radius: 22px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--mist);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(47, 143, 138, 0.18), transparent 55%),
    radial-gradient(900px 600px at 100% 0%, rgba(196, 165, 116, 0.16), transparent 50%),
    linear-gradient(180deg, #081015 0%, var(--ink) 40%, #0d171c 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--copper-bright);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  color: var(--copper-bright);
}

p {
  margin: 0 0 1rem;
  color: var(--mute);
}

strong {
  color: var(--mist);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--copper);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper), #9d7a45);
  color: #14100a;
  font-weight: 700;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(196, 165, 116, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  color: #14100a;
  box-shadow: 0 16px 36px rgba(196, 165, 116, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--mist);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--mist);
  border-color: var(--copper);
}

.btn--compact {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 14, 18, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.topbar.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(8, 14, 18, 0.9);
}

.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--mist);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.desk-nav {
  display: none;
  gap: 1.1rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.desk-nav a {
  color: var(--mute);
  font-size: 0.92rem;
}

.desk-nav a:hover {
  color: var(--copper-bright);
}

.topbar .btn--compact {
  display: none;
}

.menu-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mist);
}

.drawer {
  display: grid;
  gap: 0.35rem;
  padding: 0 1.25rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.drawer[hidden] {
  display: none;
}

.drawer a {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--mist);
  border: 1px solid transparent;
}

.drawer a:hover {
  border-color: var(--line);
}

/* Hero */
.zirve {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
  display: grid;
  gap: 2.5rem;
  position: relative;
}

.zirve__glow {
  position: absolute;
  inset: 10% auto auto 40%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(47, 143, 138, 0.25), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.zirve__copy {
  position: relative;
  z-index: 1;
}

.zirve__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.zirve__visual {
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.zirve__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 14, 18, 0.75));
  pointer-events: none;
}

.zirve__visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.zirve__visual figcaption,
.frame-tilt figcaption,
.bonus-theatre__art figcaption,
.live-stage__shot figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
  color: var(--mute);
  background: rgba(8, 14, 18, 0.92);
  position: relative;
  z-index: 1;
}

/* Snapshot */
.snapshot,
.steps-slab,
.pay-az,
.scoreboard,
.faq-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.snapshot__panel,
.scoreboard__table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(12px);
  overflow: auto;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

th {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(196, 165, 116, 0.08);
}

td:first-child {
  color: var(--mist);
  font-weight: 600;
  width: 32%;
}

/* Trust */
.trust-rail {
  margin: 1rem auto 0;
  max-width: var(--max);
  padding: 2.5rem 1.25rem;
  display: grid;
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgba(23, 72, 68, 0.45), rgba(10, 16, 20, 0.2)),
    var(--ink-soft);
  border-block: 1px solid var(--line);
}

.check-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-stack li {
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(47, 143, 138, 0.25);
  position: relative;
}

.check-stack li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(47, 143, 138, 0.18);
}

.trust-rail__note {
  color: var(--copper-bright);
  border-left: 3px solid var(--copper);
  padding-left: 1rem;
}

/* Mobile band */
.mobil-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.mobil-band__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.frame-tilt {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow);
  background: var(--ink-soft);
}

.frame-tilt img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mobil-band ul,
.bonus-theatre ul,
.fit-map ul,
.plus-pane ul,
.minus-pane ul {
  padding-left: 1.15rem;
  color: var(--mute);
}

.mobil-band li,
.bonus-theatre li,
.fit-map li,
.plus-pane li,
.minus-pane li,
.glass-card li {
  margin-bottom: 0.45rem;
}

/* Steps */
.rail-steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.rail-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(196, 165, 116, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rail-steps span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--copper);
  font-size: 1.2rem;
}

/* Bonus */
.bonus-theatre {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: grid;
  gap: 1.75rem;
}

.bonus-theatre__art {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.bonus-theatre__art img,
.live-stage__shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bonus-split,
.pay-columns {
  display: grid;
  gap: 1rem;
}

.glass-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(18, 32, 38, 0.65);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.glass-card ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--mute);
}

/* Catalog */
.catalog {
  padding: 1rem 1.25rem 3rem;
}

.catalog__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.2rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(47, 143, 138, 0.18), transparent 40%),
    linear-gradient(320deg, rgba(196, 165, 116, 0.12), transparent 45%),
    var(--ink-soft);
  border: 1px solid var(--line);
}

/* Live */
.live-stage {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  display: grid;
  gap: 1.75rem;
}

.live-stage__shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Dual lens */
.dual-lens,
.fit-map {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.dual-lens__grid,
.fit-map {
  display: grid;
  gap: 1rem;
}

.plus-pane,
.minus-pane,
.fit-map__ok,
.fit-map__alt {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.plus-pane,
.fit-map__ok {
  background: linear-gradient(180deg, rgba(47, 143, 138, 0.16), rgba(18, 32, 38, 0.5));
}

.minus-pane,
.fit-map__alt {
  background: linear-gradient(180deg, rgba(200, 107, 90, 0.14), rgba(18, 32, 38, 0.5));
}

/* Verdict */
.verdict {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 3.5rem;
}

.verdict__card {
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(196, 165, 116, 0.22), transparent 60%),
    linear-gradient(160deg, #152028, #0d151a);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.verdict__card .btn {
  margin-top: 0.5rem;
}

/* FAQ */
.accordion {
  display: grid;
  gap: 0.7rem;
}

.accordion__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--mist);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.accordion__trigger::after {
  content: "+";
  color: var(--copper);
  font-size: 1.4rem;
  line-height: 1;
}

.accordion__trigger[aria-expanded="true"]::after {
  content: "–";
}

.accordion__panel {
  padding: 0 1.2rem 1.1rem;
}

.accordion__panel[hidden] {
  display: none;
}

/* Footer */
.site-end {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.25rem 6rem;
  max-width: var(--max);
  margin: 0 auto;
}

.site-end__top {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.site-end__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.site-end__links a {
  color: var(--mute);
}

.site-end__copy {
  color: rgba(154, 173, 168, 0.7);
  font-size: 0.88rem;
  margin: 0;
}

.float-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #1f6662);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(47, 143, 138, 0.35);
}

.float-cta:hover {
  color: #fff;
  transform: translateY(-2px);
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(12, 20, 24, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar p {
  margin: 0;
  flex: 1 1 220px;
  color: var(--mist);
  font-size: 0.92rem;
}

.cookie-bar__btn {
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  background: var(--copper);
  color: #14100a;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 768px) {
  .desk-nav {
    display: flex;
  }

  .topbar .btn--compact {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .zirve {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-top: 4.5rem;
  }

  .mobil-band__grid,
  .live-stage {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .live-stage__shot {
    order: -1;
  }

  .bonus-split,
  .pay-columns,
  .dual-lens__grid,
  .fit-map {
    grid-template-columns: 1fr 1fr;
  }

  .trust-rail {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 3rem 2rem;
    border-radius: 0;
  }

  .trust-rail__note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .bonus-theatre {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas:
      "art copy"
      "cards cards";
  }

  .bonus-theatre__art {
    grid-area: art;
  }

  .bonus-theatre__copy {
    grid-area: copy;
    align-self: center;
  }

  .bonus-split {
    grid-area: cards;
  }

  .float-cta {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .topbar .btn--compact {
    display: none;
  }
}
