
:root {
  --bg: #07070d;
  --panel: rgba(16, 18, 32, .78);
  --panel-strong: rgba(20, 12, 28, .96);
  --text: #fff8ef;
  --muted: #b8aec8;
  --line: rgba(255,255,255,.14);
  --cyan: #00f5ff;
  --pink: #ff2bbf;
  --orange: #ff6a00;
  --yellow: #ffdb4d;
  --red: #ff3434;
  --green: #5dff9a;
  --shadow: 0 24px 80px rgba(0,0,0,.48);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 9% 13%, rgba(255,43,191,.22), transparent 27rem),
    radial-gradient(circle at 90% 7%, rgba(0,245,255,.17), transparent 28rem),
    radial-gradient(circle at 80% 88%, rgba(255,106,0,.18), transparent 30rem),
    linear-gradient(135deg, #050409 0%, #0e0b17 38%, #180716 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.noise-layer {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .12;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 3px), repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
}
.spark-field { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.spark { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 14px var(--orange); animation: sparkFloat linear forwards; }
@keyframes sparkFloat { from { transform: translateY(110vh) scale(.4); opacity: 0; } 12% { opacity: .9; } to { transform: translateY(-20vh) scale(1.2); opacity: 0; } }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,13,.72); backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; min-width: 220px; }
.brand-mark {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px;
  font-family: Anton, Impact, sans-serif; font-size: 1.35rem;
  background: linear-gradient(135deg, var(--pink), var(--orange), var(--cyan));
  box-shadow: 0 0 28px rgba(255,43,191,.38);
}
.brand small { display: block; color: var(--muted); font-size: .75rem; margin-top: .12rem; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: .35rem; flex-wrap: wrap; }
.main-nav a {
  color: var(--muted); padding: .65rem .85rem; border: 1px solid transparent; border-radius: 999px; font-size: .93rem;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.header-cta { padding: .75rem 1.05rem; border-radius: 999px; background: linear-gradient(90deg, var(--pink), var(--orange)); font-weight: 800; box-shadow: 0 0 24px rgba(255,106,0,.35); white-space: nowrap; }
.menu-toggle { display: none; border: 1px solid var(--line); background: rgba(255,255,255,.08); color: var(--text); border-radius: 12px; padding: .7rem .85rem; }
.section-block { position: relative; z-index: 2; width: min(1180px, calc(100% - 2rem)); margin: 0 auto 6rem; }
.hero { display: grid; grid-template-columns: 1fr minmax(360px, .92fr); align-items: center; gap: 3rem; min-height: calc(100vh - 80px); padding-top: 4rem; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: .45rem; color: var(--yellow); font-size: .83rem; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow::before, .section-kicker::before { content: ""; width: 28px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--pink), var(--orange)); box-shadow: 0 0 16px var(--pink); }
h1, h2, h3 { margin: 0; line-height: .96; letter-spacing: -.03em; }
h1 { font-family: Anton, Impact, sans-serif; font-size: clamp(4.4rem, 10vw, 9.4rem); text-transform: uppercase; margin: .85rem 0 1rem; text-shadow: 6px 6px 0 rgba(255,43,191,.18), -4px -3px 0 rgba(0,245,255,.14); }
.hero-lede { color: #eadff1; font-size: clamp(1.05rem, 1.6vw, 1.32rem); line-height: 1.75; max-width: 720px; }
.hero-actions { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; margin-top: 2rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .9rem 1.2rem; border-radius: 999px; font-weight: 900; letter-spacing: .01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(90deg, var(--cyan), var(--pink), var(--orange)); color: #07070d; box-shadow: 0 18px 45px rgba(255,43,191,.26); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.mini-stats { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.mini-stats span { padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.06); color: var(--muted); }
.mini-stats strong { color: var(--text); margin-right: .3rem; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: 34px; border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-visual::before { content:""; position:absolute; inset: -22px; border-radius: 42px; background: conic-gradient(from 180deg, transparent, rgba(0,245,255,.55), transparent, rgba(255,43,191,.55), transparent); filter: blur(30px); opacity: .8; z-index: -1; animation: pulseGlow 4s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100%{ transform: scale(.98); opacity:.52;} 50%{ transform: scale(1.03); opacity:.88;} }
.glitch-tag { position: absolute; right: -16px; bottom: 28px; padding: .75rem 1.1rem; border: 2px solid var(--yellow); background: #08070c; color: var(--yellow); font-family: Anton, Impact, sans-serif; letter-spacing: .06em; box-shadow: 9px 9px 0 rgba(255,43,191,.45); transform: rotate(-3deg); }
.cta-strip, .final-cta .cta-poster {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(1.3rem, 4vw, 3rem); border-radius: 34px;
  background: linear-gradient(135deg, rgba(0,245,255,.12), rgba(255,43,191,.13), rgba(255,106,0,.13)), rgba(255,255,255,.06);
  border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
}
.cta-strip h2, .section-heading h2, .final-cta h2 { font-size: clamp(2.25rem, 5vw, 5rem); font-family: Anton, Impact, sans-serif; text-transform: uppercase; margin-top: .5rem; }
.cta-strip p, .section-heading p, .final-cta p { color: var(--muted); line-height: 1.7; max-width: 760px; }
.section-heading { margin-bottom: 2rem; }
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.metric-card, .gallery-card, .article-card, .side-card, .verdict-card {
  border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(18px); box-shadow: var(--shadow);
}
.metric-card { position: relative; min-height: 230px; padding: 1.25rem; border-radius: 28px; overflow: hidden; }
.metric-card::before { content:""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(0,245,255,.18), transparent 45%, rgba(255,106,0,.18)); opacity: .85; }
.metric-card > * { position: relative; }
.metric-card span { color: var(--yellow); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.metric-card strong { display: block; margin: .9rem 0 .65rem; font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1; }
.metric-card p { color: var(--muted); line-height: 1.6; margin: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-card { margin: 0; border-radius: 28px; overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.gallery-card:hover { transform: translateY(-9px) rotate(-1deg); border-color: rgba(255,219,77,.45); }
.gallery-card img { width: 100%; aspect-ratio: 1.12 / .78; object-fit: cover; }
.gallery-card figcaption { padding: 1rem 1.1rem; color: var(--text); font-weight: 900; background: linear-gradient(90deg, rgba(255,43,191,.15), rgba(255,106,0,.15)); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 1.2rem; align-items: start; }
.article-card { position: relative; border-radius: 32px; padding: clamp(1.2rem, 3vw, 3rem); overflow: hidden; }
.article-card::before { content:""; position:absolute; left:0; top:0; bottom:0; width: 9px; background: repeating-linear-gradient(45deg, var(--yellow) 0 13px, #09090f 13px 26px); }
.article-progress { position: sticky; top: 78px; z-index: 5; height: 5px; width: 0%; margin: -1rem 0 1.2rem; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--pink), var(--orange)); box-shadow: 0 0 18px rgba(255,43,191,.5); }
.article-card h2, .article-card h3 { font-family: Anton, Impact, sans-serif; text-transform: uppercase; }
.article-card h2 { font-size: clamp(2rem, 4vw, 4rem); margin: 2.1rem 0 1rem; padding-top: .7rem; color: var(--text); }
.article-card h2:first-of-type { margin-top: .3rem; }
.article-card h3 { font-size: clamp(1.35rem, 2.4vw, 2.2rem); margin: 1.5rem 0 .65rem; color: var(--yellow); }
.article-card p { color: #e5dceb; line-height: 1.78; font-size: 1rem; }
.article-marker { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,219,77,.35); background: rgba(255,219,77,.09); color: var(--yellow) !important; font-weight: 900; font-size: 1.25rem !important; }
.article-list { display: grid; gap: .72rem; padding: 0; margin: .85rem 0 1.25rem; list-style: none; }
.article-list li { position: relative; padding: .78rem .9rem .78rem 2.45rem; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; color: #f3eaf7; background: rgba(255,255,255,.045); }
.article-list li::before { content:"✦"; position: absolute; left: .9rem; top: .72rem; color: var(--orange); text-shadow: 0 0 10px var(--pink); }
.table-wrap { overflow-x: auto; margin: 1.4rem 0 2rem; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(0,0,0,.28); }
table { width: 100%; border-collapse: collapse; min-width: 560px; background: rgba(4,5,12,.72); }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,.1); vertical-align: top; }
th { background: linear-gradient(90deg, rgba(0,245,255,.2), rgba(255,43,191,.2), rgba(255,106,0,.18)); color: var(--yellow); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
td { color: #eadff0; }
.sidebar { position: sticky; top: 92px; display: grid; gap: 1rem; }
.side-card { border-radius: 26px; padding: 1.1rem; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,43,191,.07)); }
.side-card h3 { font-family: Anton, Impact, sans-serif; font-size: 1.55rem; text-transform: uppercase; margin-bottom: 1rem; }
.stat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.stat-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .72rem; border-radius: 14px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.08); }
.stat-list span { color: var(--muted); }
.offer-card, .similar-slot { display: block; padding: .85rem; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(0,0,0,.24); margin-bottom: .65rem; }
.offer-card strong { display: block; color: var(--yellow); }
.offer-card span { display:block; color: var(--muted); font-size: .9rem; margin-top: .3rem; line-height: 1.5; }
.similar-slot { color: var(--text); font-weight: 800; }
.similar-slot:hover { border-color: rgba(0,245,255,.45); box-shadow: 0 0 24px rgba(0,245,255,.13); }
.toc { display: grid; gap: .45rem; max-height: 370px; overflow: auto; padding-right: .25rem; }
.toc-link { display: block; color: var(--muted); line-height: 1.35; padding: .55rem .65rem; border-radius: 12px; border: 1px solid transparent; }
.toc-link.level-3 { margin-left: .8rem; font-size: .9rem; }
.toc-link:hover, .toc-link.active { color: var(--text); border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.06); }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.verdict-card { position: relative; border-radius: 32px; padding: clamp(1.25rem, 3vw, 2rem); overflow: hidden; }
.verdict-card::before { content:""; position:absolute; inset:0; opacity:.23; background: radial-gradient(circle at top left, var(--cyan), transparent 45%), radial-gradient(circle at bottom right, var(--orange), transparent 50%); }
.verdict-card.cons::before { background: radial-gradient(circle at top left, var(--red), transparent 45%), radial-gradient(circle at bottom right, var(--pink), transparent 50%); }
.verdict-card > * { position: relative; }
.verdict-card h3 { font-family: Anton, Impact, sans-serif; font-size: clamp(2rem, 4vw, 4rem); text-transform: uppercase; margin-bottom: 1rem; }
.verdict-card ul { padding-left: 1.2rem; color: #eadff0; line-height: 1.75; }
.final-cta .cta-poster { display: block; min-height: 360px; background: linear-gradient(135deg, rgba(255,43,191,.18), rgba(0,245,255,.1), rgba(255,106,0,.2)), url("assets/gallery-explosion.svg") center/cover; position: relative; isolation: isolate; }
.final-cta .cta-poster::before { content:""; position:absolute; inset:0; z-index:-1; background: rgba(4,4,10,.62); backdrop-filter: blur(2px); }
.site-footer { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 2rem clamp(1rem, 4vw, 3.5rem); border-top: 1px solid var(--line); background: #05050a; color: var(--muted); }
.site-footer strong { color: var(--text); }
.site-footer p { margin: .25rem 0 0; }
.site-footer a { color: var(--yellow); font-weight: 900; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 2rem; }
  .overview-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .toc-card { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .main-nav, .header-cta { display: none; }
  .site-header.open .main-nav { display: grid; position: absolute; left: 1rem; right: 1rem; top: 74px; background: rgba(7,7,13,.95); padding: 1rem; border: 1px solid var(--line); border-radius: 18px; }
  .site-header.open .header-cta { display: inline-flex; position: absolute; right: 1rem; top: 258px; }
  h1 { font-size: clamp(3.6rem, 18vw, 6.4rem); }
  .cta-strip { display: block; }
  .cta-strip .btn { margin-top: 1rem; }
  .pros-cons-grid, .overview-grid, .gallery-grid, .sidebar { grid-template-columns: 1fr; }
  .site-footer { display: block; }
  .site-footer a { display: inline-block; margin-top: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
