:root {
  --bg: #070a0f;
  --bg-2: #0b1119;
  --panel: #0e151f;
  --panel-2: #111a26;
  --border: #1b2735;
  --border-bright: #2a3a4d;
  --text: #e8ecf2;
  --muted: #8a96a6;
  --gold: #c8aa6e;
  --gold-bright: #f0e6d2;
  --gold-deep: #785a28;
  --teal: #2ad6c6;
  --red: #e84057;
  --maxw: 1180px;
  --display: "Chakra Petch", "Segoe UI", sans-serif;
  --body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1100px 560px at 78% -160px, rgba(200,170,110,0.13), transparent 66%),
    radial-gradient(820px 460px at 8% 4%, rgba(42,214,198,0.07), transparent 64%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-bright); }
em { font-style: normal; color: var(--gold); }
kbd {
  font-family: var(--mono); font-size: .78em; color: var(--gold-bright);
  background: #060a10; border: 1px solid var(--border-bright);
  border-bottom-width: 2px; border-radius: 5px; padding: 1px 7px;
}

/* Film grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > *:not(.grain) { position: relative; z-index: 2; }

/* Shared headings */
.section-eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 4vw, 42px); line-height: 1.08;
  letter-spacing: -.4px; color: var(--gold-bright); margin-bottom: 18px;
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 28px;
  background: rgba(7,10,15,.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 19px;
  letter-spacing: .5px; color: var(--gold-bright);
}
.brand em { color: var(--gold); font-style: normal; }
.brand img { border-radius: 5px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 760px) { .nav-links a:not(.btn) { display: none; } }

/* Buttons — angled hextech corner */
.btn {
  display: inline-block; font-family: var(--display); font-weight: 600;
  letter-spacing: .3px;
  background: linear-gradient(180deg, #d8bd86, #b59456);
  color: #191206; border: 1px solid #e0c690;
  padding: 11px 20px; border-radius: 3px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
  box-shadow: 0 8px 26px rgba(200,170,110,.16);
}
.btn:hover { color: #191206; filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(200,170,110,.26); }
.btn-sm { padding: 8px 15px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-ghost {
  background: transparent; color: var(--gold-bright);
  border-color: var(--border-bright); box-shadow: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(200,170,110,.06); }

/* live dot */
.dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 0 rgba(42,214,198,.55);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42,214,198,.55); }
  70% { box-shadow: 0 0 0 7px rgba(42,214,198,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,214,198,0); }
}

/* Hero */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 76px 28px 70px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; padding-top: 52px; } .hero-art { order: -1; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--border-bright); border-radius: 999px;
  padding: 6px 15px; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 5.6vw, 62px); line-height: 1.04;
  letter-spacing: -1px; color: var(--gold-bright); margin-bottom: 22px;
}
.grad {
  background: linear-gradient(100deg, var(--gold) 10%, var(--teal) 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: clamp(16.5px, 2vw, 20px); color: var(--muted); max-width: 620px; margin-bottom: 30px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row.center { justify-content: center; margin-top: 34px; }
.trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid var(--border);
}
.trust li { font-size: 13.5px; color: var(--muted); font-family: var(--mono); letter-spacing: .3px; }
.trust strong { color: var(--gold-bright); font-size: 18px; font-weight: 700; margin-right: 4px; }

/* Hextech image frame */
.frame {
  position: relative; border: 1px solid var(--border-bright);
  border-radius: 4px; overflow: hidden; background: var(--bg-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  box-shadow: 0 26px 70px rgba(0,0,0,.5);
}
.frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-top: 1px solid rgba(200,170,110,.35);
  background: linear-gradient(180deg, rgba(200,170,110,.05), transparent 30%);
}
.frame img { width: 100%; height: auto; display: block; }
.frame-glow { box-shadow: 0 0 0 1px rgba(200,170,110,.18), 0 30px 80px rgba(0,0,0,.55), 0 0 70px rgba(200,170,110,.10); }
.hero-art { position: relative; }
.hero-art .frame { transform: rotate(.6deg); }
.frame-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold-bright); background: rgba(7,10,15,.78);
  border: 1px solid var(--border-bright); border-radius: 4px; padding: 4px 9px;
}

/* Bands */
.band { max-width: var(--maxw); margin: 0 auto; padding: 70px 28px; }
.band.narrow { max-width: 820px; }
.band > .section-eyebrow, .band > .section-title { text-align: center; }
.band > .section-title { margin-bottom: 44px; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border); border-radius: 6px; padding: 24px 22px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition: border-color .18s ease, transform .18s ease;
}
.pillar:hover { border-color: rgba(200,170,110,.45); transform: translateY(-3px); }
.pillar-ico {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  font-size: 22px; color: var(--gold); margin-bottom: 14px;
  border: 1px solid var(--border-bright); border-radius: 6px;
  background: radial-gradient(circle at 50% 30%, rgba(200,170,110,.14), transparent 70%);
}
.pillar h3 { font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--gold-bright); margin-bottom: 8px; }
.pillar p { font-size: 14.5px; color: var(--muted); }

/* Spotlights */
.spotlight {
  max-width: var(--maxw); margin: 0 auto; padding: 56px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
@media (max-width: 900px) { .spotlight { grid-template-columns: 1fr; gap: 30px; } .spotlight.reverse .spot-media { order: -1; } }
.spotlight.reverse .spot-media { order: 2; }
@media (max-width: 900px) { .spotlight.reverse .spot-media { order: -1; } }
.num {
  font-family: var(--display); font-weight: 700; font-size: 56px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--gold-deep);
  display: block; margin-bottom: 8px; opacity: .85;
}
.spot-copy p { color: var(--muted); margin-bottom: 18px; }
.spot-copy .section-title { margin-bottom: 14px; }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 26px; font-size: 15px; color: var(--text); }
.ticks li::before {
  content: "◢"; position: absolute; left: 0; top: 1px; color: var(--gold);
  font-size: 12px;
}
.ticks strong { color: var(--gold-bright); }
.frame.stack { position: relative; }
.frame.stack .stack-2 {
  position: absolute; right: -7%; bottom: -12%; width: 52%;
  border: 1px solid var(--border-bright); border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,.6); clip-path: none;
}
@media (max-width: 520px) { .frame.stack .stack-2 { display: none; } }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }
.cell {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border); border-radius: 6px; padding: 22px;
  transition: border-color .18s ease, transform .18s ease;
}
.cell:hover { border-color: rgba(200,170,110,.4); transform: translateY(-2px); }
.cell.wide { grid-column: span 2; }
@media (max-width: 880px) { .cell.wide { grid-column: span 2; } }
@media (max-width: 560px) { .cell.wide { grid-column: span 1; } }
.cell h3 {
  font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--gold);
  margin-bottom: 9px; letter-spacing: .3px;
}
.cell p { font-size: 14.5px; color: var(--muted); }

/* Compare table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 8px; }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td { padding: 15px 20px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--border); }
.compare thead th { font-family: var(--display); font-size: 15px; letter-spacing: .4px; color: var(--muted); background: var(--bg-2); }
.compare thead th.us { color: var(--gold-bright); }
.compare tbody th { font-weight: 500; color: var(--text); }
.compare td { color: var(--muted); }
.compare td.us { color: var(--text); background: rgba(200,170,110,.045); border-left: 1px solid rgba(200,170,110,.18); border-right: 1px solid rgba(200,170,110,.18); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.yes { color: var(--gold-bright); font-weight: 600; }
.yes::before { content: "✓ "; color: var(--teal); font-weight: 700; }
.no { color: var(--muted); }
.no::before { content: "✕ "; color: var(--red); }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border); border-radius: 6px; padding: 4px 20px;
  transition: border-color .18s ease;
}
.faq details[open] { border-color: rgba(200,170,110,.4); }
.faq summary {
  cursor: pointer; list-style: none; padding: 14px 0; font-family: var(--display);
  font-weight: 600; font-size: 16.5px; color: var(--gold-bright);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--gold); font-size: 22px; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: 15px; padding: 0 0 16px; max-width: 64ch; }

/* Closer */
.closer { text-align: center; max-width: 760px; margin: 0 auto; padding: 84px 28px 40px; }
.closer h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4.6vw, 46px); color: var(--gold-bright); letter-spacing: -.5px; margin-bottom: 14px; }
.closer p { color: var(--muted); font-size: 18px; }

/* Footer */
.footer {
  border-top: 1px solid var(--border); margin: 48px auto 0; max-width: var(--maxw);
  padding: 34px 28px 60px; text-align: center; color: var(--muted); font-size: 14px;
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--gold); }
.disclaimer { margin-top: 16px; font-size: 12px; line-height: 1.55; max-width: 720px; margin-inline: auto; opacity: .75; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dot { animation: none; }
  html { scroll-behavior: auto; }
}
