:root {
  --bg: #06120f;
  --bg-2: #0b1b18;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f8fafc;
  --muted: #b6c6bd;
  --line: rgba(255, 255, 255, 0.16);
  --green: #22c55e;
  --lime: #a3e635;
  --gold: #facc15;
  --orange: #fb923c;
  --cyan: #22d3ee;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 197, 94, 0.28), transparent 28rem),
    radial-gradient(circle at 90% 6%, rgba(250, 204, 21, 0.18), transparent 26rem),
    linear-gradient(135deg, #06120f 0%, #0f172a 42%, #052e16 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.24;
  animation: drift 10s ease-in-out infinite alternate;
}
.page-glow-one { background: var(--green); left: -8rem; top: 16rem; }
.page-glow-two { background: var(--gold); right: -9rem; top: 36rem; animation-delay: -4s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: calc(var(--max) + 36px);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(20px);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0.55rem 1rem;
  background: rgba(2, 6, 23, 0.64);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: -1;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand img { width: 42px; height: 42px; }
.site-nav { display: flex; align-items: center; gap: 0.35rem; }
.site-nav a {
  color: var(--muted);
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-size: 0.94rem;
  transition: 180ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); background: rgba(255,255,255,.1); }
.site-nav .nav-cta {
  color: #052e16;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  font-weight: 800;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .65rem .8rem;
}

.section-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.25rem;
}
.hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 90px);
  padding-top: 4rem;
}
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .77rem;
}
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.055em; }
h1 { font-size: clamp(3.1rem, 7vw, 6.9rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 4.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
p { color: var(--muted); line-height: 1.75; font-size: 1.04rem; }
.hero-lead { color: #eefdf4; font-size: 1.2rem; }
.hero-actions, .hero-pills { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.55rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  min-height: 48px;
  border-radius: 999px;
  padding: .86rem 1.2rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #052e16; background: linear-gradient(135deg, var(--lime), var(--gold)); box-shadow: 0 18px 44px rgba(163, 230, 53, .24); }
.button-secondary { color: var(--text); background: rgba(255,255,255,.1); border: 1px solid var(--line); }
.button.full { width: 100%; }
.hero-pills span {
  color: #dffdea;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem .8rem;
  font-size: .9rem;
}
.hero-media { position: relative; }
.hero-media img { filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); animation: float 5.5s ease-in-out infinite; }
.floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, .72);
  color: var(--text);
  padding: .8rem 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.score-card { left: 3%; bottom: 13%; }
.trophy-card { right: 3%; top: 14%; }
.live-dot { width: .65rem; height: .65rem; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(239,68,68,.7); animation: pulse 1.4s infinite; }

.cta-strip, .final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.4rem;
  background:
    linear-gradient(135deg, rgba(34,197,94,.22), rgba(250,204,21,.16)),
    rgba(255,255,255,.07);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  margin-block: 1.5rem;
}
.cta-strip h2, .final-cta h2 { font-size: clamp(1.6rem, 3vw, 3rem); }
.section-heading { max-width: 800px; margin-bottom: 2rem; }
.overview-grid, .gallery-grid, .pros-cons-grid {
  display: grid;
  gap: 1.1rem;
}
.overview-grid { grid-template-columns: repeat(3, 1fr); }
.overview-card, .gallery-card, .article-card, .side-card, .pc-card {
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.overview-card { padding: 1.35rem; position: relative; overflow: hidden; }
.overview-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% 10%;
  height: 140px;
  background: radial-gradient(circle, rgba(250,204,21,.25), transparent 62%);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(163,230,53,.25), rgba(34,211,238,.18));
  font-size: 1.65rem;
  margin-bottom: 1rem;
}
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-card { overflow: hidden; margin: 0; transition: transform 220ms ease, border-color 220ms ease; }
.gallery-card:hover { transform: translateY(-7px) rotate(-.6deg); border-color: rgba(163,230,53,.58); }
.gallery-card img { width: 100%; aspect-ratio: 1.22 / 1; object-fit: cover; }
.gallery-card figcaption { padding: 1rem; font-weight: 900; }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 1.25rem;
}
.article-card { padding: clamp(1.2rem, 3vw, 2.1rem); overflow: hidden; }
.article-card section { padding: 2rem 0; border-top: 1px solid var(--line); }
.article-card section:first-of-type { border-top: 0; padding-top: 0; }
.article-card h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); margin-bottom: 1rem; }
.article-card h3 { margin: 1.35rem 0 .5rem; color: #ecfccb; }
.article-card p, .article-card li, .article-card td, .article-card th { font-size: 1rem; }
.article-card ul { margin: 1rem 0 1.4rem; padding: 0; list-style: none; display: grid; gap: .62rem; }
.article-card li {
  position: relative;
  color: #d8e9df;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: .72rem .8rem .72rem 2.25rem;
}
.article-card li::before {
  content: "";
  position: absolute;
  left: .85rem;
  top: 1.05rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 0 16px rgba(163,230,53,.5);
}
.article-marker {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #052e16;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  font-weight: 900;
}
.article-toc {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(2,6,23,.38);
  margin-bottom: 1.25rem;
}
.article-toc strong { margin-right: .4rem; }
.article-toc a { color: var(--muted); padding: .42rem .65rem; border-radius: 999px; background: rgba(255,255,255,.055); font-size: .9rem; }
.article-toc a:hover { color: var(--text); }
.table-wrap { overflow-x: auto; margin: 1.2rem 0 1.6rem; border-radius: 18px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 560px; background: rgba(2, 6, 23, .28); }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,.1); }
th { color: #052e16; background: linear-gradient(135deg, var(--lime), var(--gold)); font-weight: 900; }
tr:last-child td { border-bottom: 0; }
td { color: #e4f4eb; }
.sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 1rem;
}
.side-card { padding: 1.2rem; }
.stat-list { display: grid; gap: .65rem; }
.stat-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .78rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.stat-list span { color: var(--muted); }
.stat-list strong { color: #ecfccb; text-align: right; }
.check-list { padding: 0; list-style: none; display: grid; gap: .65rem; margin: 1rem 0; }
.check-list li { color: #dffdea; }
.check-list li::before { content: "✓"; color: var(--lime); font-weight: 900; margin-right: .45rem; }
.offer-card { background: linear-gradient(135deg, rgba(250,204,21,.16), rgba(34,197,94,.1)); }
.similar-list { display: grid; gap: .75rem; }
.similar-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .3rem .75rem;
  align-items: center;
  padding: .85rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.similar-list span { grid-row: span 2; font-size: 1.35rem; }
.similar-list small { color: var(--muted); }
.pros-cons-grid { grid-template-columns: repeat(2, 1fr); }
.pc-card { padding: 1.4rem; }
.pc-card ul { margin: 1.1rem 0 0; padding-left: 1.2rem; color: #d8e9df; line-height: 1.75; }
.pros { border-color: rgba(34,197,94,.36); }
.cons { border-color: rgba(250,204,21,.34); }
.final-cta { grid-template-columns: auto 1fr auto; }
.cta-ball {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 27px;
  background: rgba(255,255,255,.12);
  font-size: 2.5rem;
  animation: bounce 1.9s ease-in-out infinite;
}
.site-footer {
  max-width: calc(var(--max) + 40px);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}
.site-footer p { max-width: 600px; font-size: .95rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: .85rem; align-content: start; }
.site-footer nav a { color: var(--muted); }
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #052e16;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  font-weight: 900;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 200ms ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(22px) scale(.985); transition: opacity 680ms ease, transform 680ms ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(2rem,-1.5rem,0) scale(1.08); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(239,68,68,.7); } 70% { box-shadow: 0 0 0 10px rgba(239,68,68,0); } 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-8px) rotate(5deg); } }
@media (max-width: 1040px) {
  .hero, .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    right: 1.25rem;
    top: 5rem;
    display: none;
    flex-direction: column;
    width: min(320px, calc(100vw - 2.5rem));
    align-items: stretch;
    padding: .75rem;
    border-radius: 24px;
    background: rgba(2,6,23,.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero { padding-top: 2rem; }
  .overview-grid, .pros-cons-grid, .sidebar { grid-template-columns: 1fr; }
  .cta-strip, .final-cta { grid-template-columns: 1fr; text-align: left; }
  .site-footer { flex-direction: column; }
}
@media (max-width: 560px) {
  .section-block { padding: 3.5rem 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.6rem, 16vw, 4.2rem); }
  .floating-card { position: static; margin: .75rem 0 0; width: fit-content; }
  .site-header::before { inset: .5rem; }
}
