/* ============================================================
   7k742k.casino — Steel/Azure palette
   Fonts: Lexend Deca (headings) + Mulish (body)
   Prefix: .edge-
   ============================================================ */

/* ─── Custom properties ─────────────────────────────────────── */
:root {
  --bg: #090c11;
  --bg-2: #0e1520;
  --bg-3: #141c28;
  --line: #1c2b3a;
  --line-2: #2a3f54;
  --txt: #e8f0f8;
  --txt-d: #8ea4b8;
  --txt-dd: #5c7890;
  --acc: #3b82f6;
  --acc-2: #60a5fa;
  --acc-2-d: #2563eb;
  --hot: #f97316;
  --good: #7dd3fc;
  --r: 12px;
  --r-s: 8px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
img, svg { display: block; max-width: 100% }
a { color: inherit; text-decoration: none }
ul, ol { list-style: none }
button { cursor: pointer; border: none; background: none }
details summary { cursor: pointer; list-style: none }
details summary::-webkit-details-marker { display: none }

/* ─── Base ───────────────────────────────────────────────────── */
body {
  font: 16px/1.62 "Mulish", ui-sans-serif, system-ui, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1000px 580px at 92% -10%, rgba(59,130,246,.12) 0%, transparent 62%),
    radial-gradient(820px 580px at -10% 60%, rgba(96,165,250,.07) 0%, transparent 60%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Lexend Deca", "Mulish", system-ui, sans-serif;
  line-height: 1.22;
  color: var(--txt);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700 }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700 }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600 }
h4 { font-size: 1rem; font-weight: 600 }
p { color: var(--txt-d); margin-top: .7rem }
p:first-child { margin-top: 0 }

/* ─── Container ──────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px }

/* ─── CTA buttons ────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Lexend Deca", "Mulish", system-ui, sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--r);
  padding: 13px 28px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: .02em;
}
.cta--hot {
  background: linear-gradient(90deg, var(--acc) 0%, var(--acc-2) 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(59,130,246,.55), 0 4px 14px rgba(59,130,246,.35);
}
.cta--hot:hover {
  background: linear-gradient(90deg, var(--acc-2-d) 0%, var(--acc) 100%);
  box-shadow: 0 0 36px rgba(59,130,246,.75), 0 6px 20px rgba(59,130,246,.5);
  transform: translateY(-2px);
}
.cta--out {
  background: transparent;
  color: var(--acc-2);
  border: 1.5px solid var(--acc);
}
.cta--out:hover {
  background: rgba(59,130,246,.1);
  transform: translateY(-2px);
}
.cta--sm { padding: 9px 20px; font-size: .85rem }
.cta--block { width: 100%; justify-content: center }

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(9,12,17,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo__ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo__t {
  font-family: "Lexend Deca", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--txt);
  letter-spacing: .03em;
}
.logo__t span { color: var(--acc-2) }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.site-nav a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--txt-d);
  padding: 5px 10px;
  border-radius: var(--r-s);
  transition: var(--transition);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--acc-2); background: rgba(59,130,246,.1) }

/* ─── Stats strip ────────────────────────────────────────────── */
.edge-stats {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.edge-stats::-webkit-scrollbar { display: none }
.stats-row {
  display: flex;
  gap: 0;
  min-width: max-content;
  width: 100%;
}
.stat-cell {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-cell:last-child { border-right: none }
.stat-cell__val {
  font-family: "Lexend Deca", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--acc-2);
  line-height: 1;
}
.stat-cell__lbl {
  font-size: .72rem;
  color: var(--txt-dd);
  margin-top: 3px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.edge-hero {
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.edge-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 500px at 80% 50%, rgba(59,130,246,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--acc-2);
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.3);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__chip::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acc-2);
  box-shadow: 0 0 8px var(--acc-2);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:.3 } }
.hero h1 { margin-bottom: 16px }
.hero h1 .acc { color: var(--acc-2) }
.hero__sub {
  font-size: 1.05rem;
  color: var(--txt-d);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__kpi {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.kpi-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kpi-item__val {
  font-family: "Lexend Deca", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--txt);
}
.kpi-item__lbl {
  font-size: .72rem;
  color: var(--txt-dd);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* ─── Section commons ────────────────────────────────────────── */
section { padding: 72px 0 }
.ovrline {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--acc-2);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.sec-head { margin-bottom: 40px }
.sec-head h2 { margin-top: 6px }
.sec-head p { max-width: 620px; margin-top: 10px }

/* ─── Welcome Bonus ──────────────────────────────────────────── */
.edge-welcome {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(59,130,246,.09) 0%, transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.wbox {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.wbox::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--acc) 0%, var(--acc-2) 100%);
}
.wbox:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59,130,246,.12);
}
.wbox__dep {
  font-size: .7rem;
  font-weight: 700;
  color: var(--acc);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.wbox__pct {
  font-family: "Lexend Deca", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1;
  margin-bottom: 4px;
}
.wbox__cap {
  font-size: .85rem;
  color: var(--acc-2);
  font-weight: 600;
  margin-bottom: 12px;
}
.wbox__fs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--good);
  background: rgba(125,211,252,.1);
  border: 1px solid rgba(125,211,252,.2);
  border-radius: var(--r-s);
  padding: 4px 10px;
  margin-bottom: 10px;
  font-weight: 600;
}
.wbox__game {
  font-size: .78rem;
  color: var(--txt-dd);
  margin-top: 6px;
}
.wbox__game span { color: var(--txt-d) }
.welcome-note {
  font-size: .8rem;
  color: var(--txt-dd);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.welcome-note span {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 5px 12px;
}

/* ─── Steps ──────────────────────────────────────────────────── */
.edge-steps { background: var(--bg) }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
.step:hover { border-color: var(--line-2); transform: translateY(-3px) }
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(59,130,246,.45);
}
.step h3 { margin-bottom: 8px }
.step p { font-size: .88rem }

/* ─── Slots catalog ──────────────────────────────────────────── */
.edge-slots {
  background:
    radial-gradient(600px 400px at 100% 100%, rgba(59,130,246,.07) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.slot-card {
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.slot-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 40px rgba(59,130,246,.2) }
.slot-card__cover {
  height: 110px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.slot-card__cover-inner {
  position: absolute;
  inset: 0;
  opacity: .9;
}
.slot-card__badge {
  position: relative;
  z-index: 1;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 3px 8px;
  color: #fff;
}
.slot-card__body { padding: 12px 12px 14px }
.slot-card__name {
  font-family: "Lexend Deca", sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.slot-card__meta {
  font-size: .72rem;
  color: var(--txt-dd);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.slot-card__rtp { color: var(--acc-2); font-weight: 600 }

.providers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .03em;
}
.tag--prov {
  background: rgba(59,130,246,.1);
  color: var(--acc-2);
  border: 1px solid rgba(59,130,246,.2);
}
.tag--mech {
  background: rgba(249,115,22,.1);
  color: var(--hot);
  border: 1px solid rgba(249,115,22,.2);
}

/* ─── cv gradients ───────────────────────────────────────────── */
.cv-1 { background: linear-gradient(135deg, #0a1a3a 0%, #3b82f6 100%) }
.cv-2 { background: linear-gradient(135deg, #1a0a3a 0%, #60a5fa 100%) }
.cv-3 { background: linear-gradient(135deg, #0a2a3a 0%, #0ea5e9 100%) }
.cv-4 { background: linear-gradient(135deg, #0a3a1a 0%, #34d399 100%) }
.cv-5 { background: linear-gradient(135deg, #3a0a0a 0%, #f97316 100%) }
.cv-6 { background: linear-gradient(135deg, #2a1a0a 0%, #fbbf24 100%); color:#0a0d0a }
.cv-7 { background: linear-gradient(135deg, #2a0a1a 0%, #f472b6 100%) }
.cv-8 { background: linear-gradient(135deg, #0a2a2a 0%, #2dd4bf 100%) }
.cv-9 { background: linear-gradient(135deg, #1a2a0a 0%, #a3e635 100%); color:#08160c }
.cv-10 { background: linear-gradient(135deg, #1a0a2a 0%, #a78bfa 100%) }
.cv-11 { background: linear-gradient(135deg, #0a1a0a 0%, #4ade80 100%); color:#04120a }
.cv-12 { background: linear-gradient(135deg, #2a2a0a 0%, #e2e240 100%); color:#0a0d0a }

/* ─── Loyalty / VIP ──────────────────────────────────────────── */
.edge-loyalty {
  background: var(--bg);
}
.vip-ladder {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.vip-ladder::-webkit-scrollbar { display: none }
.vip-step {
  flex: 1;
  min-width: 130px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 14px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vip-step:hover {
  border-color: var(--acc);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59,130,246,.15);
}
.vip-step--quasar {
  background: linear-gradient(160deg, #0e1520 0%, #1a2a40 100%);
  border-color: var(--acc);
  box-shadow: 0 0 20px rgba(59,130,246,.15);
}
.vip-step__ico {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 8px;
}
.vip-step__name {
  font-family: "Lexend Deca", sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}
.vip-step__cb {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--acc-2);
  margin-bottom: 4px;
}
.vip-step__thresh {
  font-size: .68rem;
  color: var(--txt-dd);
  line-height: 1.4;
}
.lbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.lbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: var(--transition);
}
.lbox:hover { border-color: var(--line-2); transform: translateY(-3px) }
.lbox__ico {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.lbox h3 { margin-bottom: 8px; font-size: .95rem }
.lbox p { font-size: .83rem }

/* ─── Tournament ─────────────────────────────────────────────── */
.edge-tournament {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(59,130,246,.1) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tour-kpi {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.tkpi {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
}
.tkpi__val {
  font-family: "Lexend Deca", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--acc-2);
  margin-bottom: 4px;
}
.tkpi__lbl { font-size: .78rem; color: var(--txt-dd) }
.tour-desc { max-width: 700px; color: var(--txt-d) }

/* ─── Live ───────────────────────────────────────────────────── */
.edge-live {
  background: var(--bg);
}
.lvbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.lvbox {
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  border: 1px solid var(--line);
}
.lvbox:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(59,130,246,.18) }
.lvbox__cover {
  height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.lv-1 { background: linear-gradient(135deg, #0a1a3a 0%, #3b82f6 100%) }
.lv-2 { background: linear-gradient(135deg, #1a0a3a 0%, #a78bfa 100%) }
.lv-3 { background: linear-gradient(135deg, #0a3a2a 0%, #34d399 100%) }
.lv-4 { background: linear-gradient(135deg, #3a1a0a 0%, #fb923c 100%) }
.lv-5 { background: linear-gradient(135deg, #0a2a3a 0%, #60a5fa 100%) }
.lv-6 { background: linear-gradient(135deg, #2a0a2a 0%, #f472b6 100%) }
.lvbox__live-dot {
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef4444;
  animation: blink 2s ease-in-out infinite;
}
.lvbox__label {
  position: relative;
  z-index: 1;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 3px 8px;
  color: #fff;
}
.lvbox__body { padding: 12px 14px 16px; background: var(--bg-3) }
.lvbox__name {
  font-family: "Lexend Deca", sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 4px;
}
.lvbox__meta { font-size: .75rem; color: var(--txt-dd) }
.lvbox__meta span { color: var(--acc-2) }

/* ─── Brand overview ─────────────────────────────────────────── */
.edge-brand {
  background:
    radial-gradient(700px 400px at 0% 50%, rgba(59,130,246,.07) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-lead {
  max-width: 760px;
  margin-bottom: 40px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.brand-block {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 22px;
  transition: var(--transition);
}
.brand-block:hover { border-color: var(--line-2) }
.brand-block h3 {
  color: var(--acc-2);
  margin-bottom: 12px;
  font-size: 1rem;
}
.brand-block p { font-size: .88rem; margin-top: .6rem }
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(59,130,246,.1);
  color: var(--acc-2);
  border: 1px solid rgba(59,130,246,.25);
  white-space: nowrap;
}

/* ─── Reviews ────────────────────────────────────────────────── */
.edge-reviews { background: var(--bg) }
.rbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.rbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: var(--transition);
}
.rbox:hover { border-color: var(--line-2); transform: translateY(-2px) }
.rbox__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rbox__ava {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 700; font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.rbox__name { font-weight: 600; font-size: .9rem }
.rbox__stars { color: #fbbf24; font-size: .9rem; letter-spacing: .05em }
.rbox p { font-size: .85rem }

/* ─── Payments ───────────────────────────────────────────────── */
.edge-payments {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.pbox {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.pbox:hover {
  border-color: var(--acc);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59,130,246,.15);
}
.pbox__ico { font-size: 1.8rem; margin-bottom: 8px }
.pbox__name {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--txt);
  margin-bottom: 4px;
}
.pbox__time { font-size: .75rem; color: var(--acc-2); font-weight: 600 }
.pbox__limits { font-size: .7rem; color: var(--txt-dd); margin-top: 4px }

/* ─── Pre-footer CTA ─────────────────────────────────────────── */
.edge-precta {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(59,130,246,.13) 0%, transparent 65%),
    var(--bg);
  text-align: center;
  padding: 72px 0;
}
.edge-precta h2 { margin-bottom: 14px }
.edge-precta p { margin-bottom: 28px; color: var(--txt-d) }

/* ─── FAQ ────────────────────────────────────────────────────── */
.edge-faq {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.faq-list { max-width: 860px }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 18px 0;
  font-weight: 600;
  font-size: .95rem;
  color: var(--txt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition);
}
.faq-item summary:hover { color: var(--acc-2) }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--acc-2);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] summary::after { content: '−' }
.faq-item .faq-body {
  padding: 0 0 18px;
  color: var(--txt-d);
  font-size: .9rem;
  line-height: 1.72;
}

/* ─── Author note ────────────────────────────────────────────── */
.author {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.author h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--txt-d);
}
.author p {
  font-size: .82rem;
  max-width: 760px;
  color: var(--txt-dd);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer__brand p {
  font-size: .82rem;
  color: var(--txt-dd);
  max-width: 280px;
  margin-top: 12px;
}
.footer__col h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--txt-dd);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  font-size: .84rem;
  color: var(--txt-d);
  padding: 4px 0;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--acc-2) }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: .78rem;
  color: var(--txt-dd);
}
.footer__legal {
  font-size: .72rem;
  color: var(--txt-dd);
  max-width: 600px;
  text-align: right;
}
.footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 2px solid var(--txt-dd);
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--txt-dd);
  flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none }
  .footer__top { grid-template-columns: 1fr 1fr }
}
@media (max-width: 768px) {
  section { padding: 52px 0 }
  .site-nav { display: none }
  .footer__top { grid-template-columns: 1fr }
  .footer__legal { text-align: left }
  .tour-kpi { grid-template-columns: 1fr 1fr }
  .wbox-grid { grid-template-columns: 1fr 1fr }
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column }
  .cta { width: 100%; justify-content: center }
  .wbox-grid { grid-template-columns: 1fr }
  .slots-grid { grid-template-columns: repeat(2, 1fr) }
  .pbox-grid { grid-template-columns: repeat(2, 1fr) }
  .footer__bottom { flex-direction: column; align-items: flex-start }
  .footer__legal { text-align: left }
}

/* ─── Utility ────────────────────────────────────────────────── */
.text-acc { color: var(--acc-2) }
.text-hot { color: var(--hot) }
.text-good { color: var(--good) }
.mt-4 { margin-top: 1rem }
.mt-8 { margin-top: 2rem }
.mb-4 { margin-bottom: 1rem }
.ta-c { text-align: center }
