:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface2: #eef2f6;
  --border: #d6dde6;
  --accent: #00b8ff;
  --accent-light: #58d3ff;
  --accent-dim: #0088c7;
  --silver: #cfd6df;
  --silver-light: #f8fafc;
  --silver-dim: #aab4c2;
  --graphite: #2a3038;
  --graphite-light: #47515d;
  --graphite-dim: #1f252c;
  --text: #1f252c;
  --muted: #697584;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(42,48,56,0.07);
  --shadow-md: 0 4px 20px rgba(42,48,56,0.10);
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1140px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dim); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible, details:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
ul, ol { list-style: none; }

.mkt-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--graphite-dim);
  border-bottom: 1px solid rgba(207,214,223,0.12);
  backdrop-filter: blur(8px);
}
.mkt-header .mkt-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.mkt-brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--surface);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.mkt-brand:hover { color: var(--accent-light); }
.mkt-nav ul {
  display: flex;
  gap: 1.5rem;
}
.mkt-nav a {
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color var(--transition);
}
.mkt-nav a:hover,
.mkt-nav a[aria-current="page"] { color: var(--accent-light); }

/* BURGER */
.mkt-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
}
.mkt-burger span {
  display: block;
  height: 2px;
  background: var(--surface);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mkt-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mkt-burger.is-active span:nth-child(2) { opacity: 0; }
.mkt-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BREADCRUMB */
.mkt-crumbs {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.mkt-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.mkt-crumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 0.35rem;
  color: var(--silver-dim);
}
.mkt-crumbs a { color: var(--accent-dim); }
.mkt-crumbs span[aria-current] { color: var(--text); font-weight: 500; }

/* HERO */
.hero-segment {
  background: linear-gradient(135deg, var(--graphite-dim) 0%, var(--graphite) 100%);
  color: var(--surface);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.hero-segment h1 {
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.hero-lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.65;
}

/* CONTENT BLOCKS */
.content-block { padding: 3rem 0; background: var(--surface); }
.content-block.alt-bg { background: var(--bg); }
.content-block h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--graphite-dim);
}
.content-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.6rem;
  color: var(--graphite);
}
.content-block p { margin-bottom: 0.85rem; color: var(--text); }
.prose-content ul, .prose-content ol {
  margin: 0.8rem 0 1rem 1.5rem;
  list-style: disc;
}
.prose-content ul li, .prose-content ol li { margin-bottom: 0.35rem; }

/* SHOWCASE */
.showcase-segment {
  padding: 3rem 0;
  background: var(--surface);
}
.showcase-segment h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--graphite-dim);
  text-align: center;
}
.venue-list { display: flex; flex-direction: column; gap: 1rem; }

.venue-tile {
  display: grid;
  grid-template-columns: auto 100px 1fr auto;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.venue-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.venue-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--surface);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.venue-logo-box {
  background: var(--graphite);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207,214,223,0.15);
  min-height: 48px;
}
.venue-logo-box img { max-height: 32px; width: auto; }
.venue-info { min-width: 0; }
.promo-name {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dim);
  background: rgba(0,184,255,0.10);
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  margin-bottom: 0.25rem;
}
.promo-amount {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--graphite-dim);
  margin-bottom: 0.15rem;
}
.promo-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--surface);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.cta-btn:hover {
  box-shadow: 0 8px 28px rgba(0,184,255,0.28);
  transform: translateY(-1px);
  color: var(--surface);
}
.cta-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: box-shadow var(--transition);
  white-space: nowrap;
}
.cta-sm:hover {
  box-shadow: 0 6px 20px rgba(0,184,255,0.25);
  color: var(--surface);
}

/* DATA TABLES */
.tbl-responsive { overflow-x: auto; margin: 1.25rem 0; -webkit-overflow-scrolling: touch; }
.data-grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 500px;
}
.data-grid thead th {
  background: var(--graphite);
  color: var(--surface);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.data-grid thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.data-grid thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.data-grid tbody tr { border-bottom: 1px solid var(--border); }
.data-grid tbody tr:nth-child(odd) { background: var(--surface); }
.data-grid tbody tr:nth-child(even) { background: var(--surface2); }
.data-grid tbody td { padding: 0.7rem 1rem; vertical-align: middle; }

/* REVIEWS */
.reviews-segment {
  padding: 3rem 0;
  background: var(--bg);
}
.reviews-segment > .mkt-wrap > h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--graphite-dim);
}
.reviews-segment > .mkt-wrap > p { margin-bottom: 2rem; }

.platform-review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--silver-light);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.review-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--surface);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-logo-box {
  background: var(--graphite);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207,214,223,0.15);
  min-width: 110px;
  min-height: 50px;
}
.review-logo-box img { max-height: 36px; width: auto; }
.review-heading { flex: 1; min-width: 200px; }
.review-heading h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--graphite-dim);
  margin: 0;
}

.review-body { padding: 1.5rem; }
.review-body > p { margin-bottom: 1rem; }

.review-bonus-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(0,184,255,0.06);
  border: 1px solid rgba(0,184,255,0.18);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.strip-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dim);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.strip-value { font-weight: 700; font-size: 0.95rem; color: var(--graphite-dim); }

.review-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.merit-col, .caveat-col {
  padding: 1rem;
  border-radius: var(--radius-sm);
}
.merit-col { background: rgba(46,204,113,0.06); border: 1px solid rgba(46,204,113,0.18); }
.caveat-col { background: rgba(231,76,60,0.05); border: 1px solid rgba(231,76,60,0.15); }
.merit-col h4, .caveat-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.merit-col h4 { color: #27ae60; }
.caveat-col h4 { color: #c0392b; }
.merit-col ul, .caveat-col ul {
  list-style: none;
  font-size: 0.88rem;
}
.merit-col li::before { content: '✓ '; color: #27ae60; font-weight: 700; }
.caveat-col li::before { content: '✗ '; color: #c0392b; font-weight: 700; }
.merit-col li, .caveat-col li { margin-bottom: 0.3rem; }

.review-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.86rem;
}
.review-specs tr { border-bottom: 1px solid var(--border); }
.review-specs td { padding: 0.5rem 0.75rem; }
.review-specs td:first-child {
  font-weight: 600;
  color: var(--muted);
  width: 42%;
  white-space: nowrap;
}
.review-specs tr:nth-child(odd) { background: var(--surface2); }

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.tag-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(0,184,255,0.10);
  color: var(--accent-dim);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.step-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--surface);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.step-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--graphite-dim);
}
.step-item p { font-size: 0.88rem; margin: 0; color: var(--muted); }

/* VERDICT */
.verdict-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0,184,255,0.05), rgba(0,136,199,0.08));
  border: 1px solid rgba(0,184,255,0.2);
  border-radius: var(--radius);
}
.verdict-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dim);
  margin: 0 0 0.75rem;
}
.verdict-box p { margin: 0; }

/* FAQ */
.faq-segment {
  padding: 3rem 0;
}
.faq-segment h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--graphite-dim);
}
.faq-group { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  color: var(--graphite-dim);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { background: var(--surface2); }
.faq-answer { padding: 0 1.25rem 1rem; font-size: 0.92rem; color: var(--muted); }
.faq-answer p { margin: 0.5rem 0 0; }

/* FOOTER */
.mkt-footer {
  background: var(--graphite-dim);
  color: var(--silver);
  padding: 2.5rem 0 1.25rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 0.5rem;
}
.footer-note { font-size: 0.82rem; color: var(--silver-dim); }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--surface);
  margin-bottom: 0.75rem;
}
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col a { color: var(--silver-dim); font-size: 0.88rem; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(207,214,223,0.12);
  padding-top: 1.25rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--silver-dim); margin: 0; }

/* SCROLL TO TOP */
.topscroll {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--surface);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, box-shadow 0.3s, transform 0.3s;
  z-index: 150;
  box-shadow: 0 4px 14px rgba(0,184,255,0.25);
}
.topscroll.is-visible { opacity: 1; visibility: visible; }
.topscroll:hover {
  box-shadow: 0 8px 28px rgba(0,184,255,0.35);
  transform: translateY(-2px);
}

/* AUTHOR PROFILE */
.author-profile {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.author-avatar {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0,184,255,0.15);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-bio h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--graphite-dim);
  margin-bottom: 0.25rem;
}
.author-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dim);
  margin-bottom: 1rem;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .venue-tile {
    grid-template-columns: auto 80px 1fr;
    grid-template-rows: auto auto;
  }
  .venue-tile .cta-btn {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  .review-cols {
    grid-template-columns: 1fr;
  }
  .author-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .mkt-burger { display: flex; }
  .mkt-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100dvh;
    background: var(--graphite-dim);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 205;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }
  .mkt-nav.is-open { transform: translateX(0); }
  .mkt-nav ul { flex-direction: column; gap: 0.25rem; }
  .mkt-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(207,214,223,0.1);
  }

  .venue-tile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem;
    position: relative;
  }
  .venue-rank {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }
  .venue-logo-box { justify-self: center; min-width: 100px; }
  .venue-info { text-align: center; }
  .venue-tile .cta-btn { width: 100%; }

  .review-top { flex-direction: column; text-align: center; position: relative; padding-top: 1.5rem; }
  .review-rank {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .review-logo-box { min-width: 100px; }
  .review-heading { text-align: center; min-width: 100%; }
  .review-body { padding: 1rem; }
  .review-body .cta-btn { width: 100%; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .hero-segment { padding: 2rem 0 1.75rem; }
  .hero-segment h1 { font-size: 1.4rem; }
  .hero-lead { font-size: 0.95rem; }

  .steps-grid { grid-template-columns: 1fr; }

  .data-grid { min-width: 420px; }

  .topscroll { bottom: 1rem; right: 1rem; width: 42px; height: 42px; }
}

@media (max-width: 400px) {
  .mkt-wrap { padding: 0 0.85rem; }
  .hero-segment h1 { font-size: 1.25rem; }
  .promo-amount { font-size: 0.88rem; }
  .review-heading h3 { font-size: 0.98rem; }
}