/* ─── Variables ─────────────────────────────────────── */
:root {
  --bg:        #07080E;
  --bg2:       #0C0F1B;
  --bg3:       #10141F;
  --ice:       #7DD3FC;
  --ice-b:     #BAE6FD;
  --ice-dim:   rgba(125,211,252,0.12);
  --ice-faint: rgba(125,211,252,0.05);
  --gold:      #F59E0B;
  --gold-b:    #FCD34D;
  --gold-dim:  rgba(245,158,11,0.12);
  --green:     #34D399;
  --red:       #F87171;
  --text:      #CBD5E1;
  --muted:     #475569;
  --r:         8px;
  --r-lg:      14px;
  --ease:      0.3s ease;
  --gi-sm: 0 0 14px rgba(125,211,252,0.45), 0 0 28px rgba(125,211,252,0.15);
  --gi-md: 0 0 26px rgba(125,211,252,0.65), 0 0 52px rgba(125,211,252,0.25);
  --gg-sm: 0 0 14px rgba(245,158,11,0.45),  0 0 28px rgba(245,158,11,0.15);
  --gg-md: 0 0 26px rgba(245,158,11,0.65),  0 0 52px rgba(245,158,11,0.25);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle hex grid texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(125,211,252,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,211,252,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none; z-index: 0;
}

/* ─── Header / Nav ───────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,8,14,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(125,211,252,0.07);
}

.logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 2px;
  text-decoration: none; flex-shrink: 0;
  background: linear-gradient(100deg, var(--gold-b) 0%, #fff 45%, var(--ice-b) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-wrap {
  display: flex; align-items: center; gap: 0.2rem;
}

.nav-link {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.3px;
  color: var(--text); text-decoration: none;
  padding: 0.45rem 0.75rem; border-radius: var(--r);
  transition: var(--ease); position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ice-b); background: var(--ice-faint); }
.nav-link.active { color: var(--ice); }

/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after {
  content: ' ▾'; font-size: 0.68rem; opacity: 0.6;
}
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 180px;
  background: rgba(12,15,27,0.97);
  border: 1px solid rgba(125,211,252,0.12);
  border-radius: var(--r); padding: 0.4rem 0;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem; color: var(--text); text-decoration: none;
  transition: var(--ease);
}
.dropdown-menu a:hover { color: var(--ice-b); background: var(--ice-faint); }

/* Header CTA */
.header-cta {
  font-family: inherit; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.4px; cursor: pointer;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-b));
  border: none; border-radius: var(--r);
  color: #07080E; text-decoration: none;
  transition: var(--ease); box-shadow: var(--gg-sm);
  white-space: nowrap; margin-left: 0.6rem;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: var(--gg-md); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ice); border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 63px; left: 0; right: 0; bottom: 0;
  background: rgba(7,8,14,0.98);
  backdrop-filter: blur(16px);
  z-index: 99; padding: 2rem;
  flex-direction: column; gap: 0.2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(125,211,252,0.06);
  transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--ice-b); }
.mobile-nav .m-label {
  font-size: 0.66rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); padding: 1.2rem 1rem 0.4rem;
}
.mobile-nav .m-cta {
  margin-top: 1.5rem;
  display: block; text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-b));
  border-radius: var(--r); color: #07080E; font-weight: 700;
}

/* ─── Hero (Homepage) ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 2rem 6rem;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(125,211,252,0.07) 0%,
    rgba(245,158,11,0.04) 40%,
    transparent 70%);
  pointer-events: none;
}

#hex-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.h-ice  { animation: pi var(--d,4s) ease-in-out var(--dl,0s) infinite; }
.h-gold { animation: pg var(--d,4s) ease-in-out var(--dl,0s) infinite; }
.h-dim  { fill: rgba(125,211,252,0.02); stroke: rgba(125,211,252,0.1); stroke-width: 1; }

@keyframes pi {
  0%,100% { fill: rgba(125,211,252,0.03); stroke: rgba(125,211,252,0.18);
            filter: drop-shadow(0 0 2px rgba(125,211,252,0.1)); }
  50%      { fill: rgba(125,211,252,0.11); stroke: rgba(125,211,252,0.65);
            filter: drop-shadow(0 0 10px rgba(125,211,252,0.55)); }
}
@keyframes pg {
  0%,100% { fill: rgba(245,158,11,0.03); stroke: rgba(245,158,11,0.18);
            filter: drop-shadow(0 0 2px rgba(245,158,11,0.1)); }
  50%      { fill: rgba(245,158,11,0.11); stroke: rgba(245,158,11,0.65);
            filter: drop-shadow(0 0 10px rgba(245,158,11,0.55)); }
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.eyebrow {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 0.9rem;
  background: linear-gradient(130deg, var(--gold-b) 0%, #fff 40%, var(--ice-b) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: tglow 4s ease-in-out infinite;
}
@keyframes tglow {
  0%,100% { filter: drop-shadow(0 0 18px rgba(125,211,252,0.3)) drop-shadow(0 0 36px rgba(245,158,11,0.15)); }
  50%      { filter: drop-shadow(0 0 32px rgba(125,211,252,0.5)) drop-shadow(0 0 64px rgba(245,158,11,0.25)); }
}
.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  letter-spacing: 3px; color: var(--text);
  margin-bottom: 1.4rem;
}
.hero-sub .t-ice  { color: var(--ice); }
.hero-sub .t-gold { color: var(--gold-b); }

.hero-desc {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-desc strong { color: var(--text); }

/* ─── Inner-Page Hero ────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 1.5rem 2rem 4rem;
  text-align: center; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%,
    rgba(125,211,252,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  position: relative; z-index: 1;
  font-size: 0.76rem; color: var(--muted);
  margin-bottom: 1.2rem; letter-spacing: 0.3px;
}
.page-hero .breadcrumb a { color: var(--ice); text-decoration: none; }
.page-hero .breadcrumb span { margin: 0 0.4rem; opacity: 0.4; }
.page-hero h1 {
  position: relative; z-index: 1;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600; line-height: 1.15;
  color: #fff; margin-bottom: 1rem;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-b), var(--ice-b));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  position: relative; z-index: 1;
  color: var(--muted); font-size: 1.05rem;
  max-width: 580px; margin: 0 auto; line-height: 1.8;
}

/* ─── Scroll Cue ─────────────────────────────────────── */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: var(--muted); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  animation: sbounce 2.2s ease-in-out infinite; z-index: 2;
}
.scroll-arrow {
  width: 16px; height: 16px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
@keyframes sbounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ─── Section Layout ─────────────────────────────────── */
.section { position: relative; z-index: 1; padding: 5.5rem 2rem; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--bg3); }
.container { max-width: 1080px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }

.sec-label {
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--ice); text-align: center; margin-bottom: 0.6rem; font-weight: 500;
}
.sec-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: #fff; text-align: center; margin-bottom: 0.6rem; line-height: 1.25;
}
.sec-sub {
  text-align: center; color: var(--muted);
  max-width: 540px; margin: 0 auto 3.5rem;
  font-size: 0.97rem; line-height: 1.75;
}
.rule {
  width: 55px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  margin: 0 auto 0.9rem;
}
.rule-gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── Stat Bar ───────────────────────────────────────── */
.stat-bar {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  padding: 1.8rem 2rem;
  border-top: 1px solid rgba(125,211,252,0.07);
  border-bottom: 1px solid rgba(125,211,252,0.07);
  background: rgba(12,15,27,0.5);
  position: relative; z-index: 1;
}
.stat {
  text-align: center;
}
.stat-val {
  font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 600;
  color: var(--gold-b); display: block; line-height: 1.1;
}
.stat-lbl {
  font-size: 0.76rem; color: var(--muted); letter-spacing: 0.3px;
}

/* ─── Feature Cards ──────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.feat-card {
  background: rgba(12,15,27,0.75);
  border: 1px solid rgba(125,211,252,0.1);
  border-radius: var(--r-lg); padding: 2.2rem 1.8rem;
  backdrop-filter: blur(8px);
  transition: var(--ease); position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(125,211,252,0.05), transparent 60%);
  opacity: 0; transition: opacity var(--ease);
}
.feat-card:hover {
  border-color: rgba(125,211,252,0.35);
  box-shadow: 0 0 28px rgba(125,211,252,0.08);
  transform: translateY(-4px);
}
.feat-card:hover::before { opacity: 1; }
.feat-card.gold-accent { border-color: rgba(245,158,11,0.12); }
.feat-card.gold-accent::before {
  background: radial-gradient(circle at 30% 25%, rgba(245,158,11,0.06), transparent 60%);
}
.feat-card.gold-accent:hover {
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 0 28px rgba(245,158,11,0.1);
}
.feat-icon {
  display: block; width: 64px; height: 64px; margin-bottom: 1.3rem;
  filter: drop-shadow(0 0 7px rgba(125,211,252,0.5));
}
.feat-card.gold-accent .feat-icon {
  filter: drop-shadow(0 0 7px rgba(245,158,11,0.5));
}
.feat-tag {
  display: inline-block; font-size: 0.66rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ice);
  border: 1px solid rgba(125,211,252,0.3);
  padding: 0.2rem 0.55rem; border-radius: 4px; margin-bottom: 0.9rem;
}
.feat-card.gold-accent .feat-tag { color: var(--gold-b); border-color: rgba(245,158,11,0.3); }
.feat-card h3 {
  font-family: 'Cinzel', serif; font-size: 1.1rem;
  color: #fff; margin-bottom: 0.6rem;
}
.feat-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.75; }

/* ─── Tile Showcase ──────────────────────────────────── */
.tile-grid {
  display: flex; gap: 4rem; justify-content: center;
  flex-wrap: wrap; align-items: flex-start;
}
.tile-col { text-align: center; flex: 1; min-width: 260px; }
.tile-col h3 {
  font-family: 'Cinzel', serif; color: #fff;
  font-size: 1rem; margin-top: 1.5rem; margin-bottom: 0.3rem;
}
.tile-col p { color: var(--muted); font-size: 0.84rem; }

.hex-cluster { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; }
.hex-row { display: flex; gap: 3px; }
.hex-row:nth-child(even) { transform: translateX(43px); }

.hex-outer {
  width: 82px; height: 95px;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease); cursor: default;
}
.hex-inner {
  width: 76px; height: 88px;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; background: #0C0F1B;
}
.hex-outer.ice {
  background: rgba(125,211,252,0.35);
  animation: hoice var(--d,3.5s) ease-in-out var(--dl,0s) infinite;
}
.hex-outer.gold {
  background: rgba(245,158,11,0.3);
  animation: hogold var(--d,4s) ease-in-out var(--dl,0s) infinite;
}
.hex-outer.dim { background: rgba(125,211,252,0.1); }

@keyframes hoice {
  0%,100% { background: rgba(125,211,252,0.2); }
  50%      { background: rgba(125,211,252,0.45); filter: drop-shadow(0 0 8px rgba(125,211,252,0.6)); }
}
@keyframes hogold {
  0%,100% { background: rgba(245,158,11,0.18); }
  50%      { background: rgba(245,158,11,0.42); filter: drop-shadow(0 0 8px rgba(245,158,11,0.6)); }
}

.sq-cluster { display: grid; grid-template-columns: repeat(3,78px); gap: 4px; justify-content: center; }
.sq {
  width: 78px; height: 78px;
  background: #0C0F1B; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(125,211,252,0.1);
  position: relative; overflow: hidden;
  transition: var(--ease);
}
.sq.ice { animation: sqice var(--d,3.3s) ease-in-out var(--dl,0s) infinite; }
.sq.gold { animation: sqgold var(--d,3.8s) ease-in-out var(--dl,0s) infinite; }
@keyframes sqice {
  0%,100% { border-color: rgba(125,211,252,0.22); box-shadow: inset 0 0 8px rgba(125,211,252,0.04); }
  50%      { border-color: rgba(125,211,252,0.7); box-shadow: inset 0 0 18px rgba(125,211,252,0.1),0 0 12px rgba(125,211,252,0.3); }
}
@keyframes sqgold {
  0%,100% { border-color: rgba(245,158,11,0.22); box-shadow: inset 0 0 8px rgba(245,158,11,0.04); }
  50%      { border-color: rgba(245,158,11,0.7); box-shadow: inset 0 0 18px rgba(245,158,11,0.1),0 0 12px rgba(245,158,11,0.3); }
}

/* ─── Product Badges ─────────────────────────────────── */
.product-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.3px;
  padding: 0.3rem 0.75rem; border-radius: 20px;
  margin: 0.2rem;
}
.badge-ice { background: rgba(125,211,252,0.12); color: var(--ice-b); border: 1px solid rgba(125,211,252,0.25); }
.badge-gold { background: rgba(245,158,11,0.12); color: var(--gold-b); border: 1px solid rgba(245,158,11,0.25); }
.badge-green { background: rgba(52,211,153,0.12); color: var(--green); border: 1px solid rgba(52,211,153,0.25); }

/* ─── Spec Table ─────────────────────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.spec-table td, .spec-table th {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(125,211,252,0.07);
  font-size: 0.92rem; text-align: left;
}
.spec-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ice); background: rgba(125,211,252,0.04);
}
.spec-table td:first-child { color: var(--muted); width: 40%; }
.spec-table td:last-child { color: var(--text); font-weight: 500; }
.spec-table tr:hover td { background: rgba(125,211,252,0.03); }

/* ─── Comparison Table ───────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(125,211,252,0.07);
  font-size: 0.88rem; text-align: center;
}
.compare-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
  background: #13172a;
  border-bottom: 2px solid rgba(125,211,252,0.18);
  padding: 1.1rem 1rem;
}
.compare-table th:first-child { text-align: left; }
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table .col-glowrune { background: rgba(125,211,252,0.04); }
.compare-table th.col-glowrune {
  color: var(--ice-b);
  background: rgba(125,211,252,0.1);
  border-bottom: 2px solid rgba(125,211,252,0.5);
}
.yes { color: var(--green); font-weight: 600; }
.no  { color: var(--red); }
.na  { color: var(--muted); font-size: 0.8rem; }
.compare-table tr:hover td { background: rgba(125,211,252,0.025); }
.compare-table .price { color: var(--gold-b); font-weight: 600; font-size: 0.95rem; }
.compare-table .cat-row { pointer-events: none; }
.compare-table .cat-row td,
.compare-table .cat-row:hover td {
  background: rgba(125,211,252,0.03) !important;
  color: rgba(125,211,252,0.4);
  font-family: 'Cinzel', serif;
  font-size: 0.64rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.45rem 1rem;
  font-weight: 600;
  border-top: 1px solid rgba(125,211,252,0.08);
  border-bottom: none;
  text-align: left;
}

.compare-wrapper { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid rgba(125,211,252,0.15); }

/* ─── FAQ Accordion ──────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: rgba(12,15,27,0.6);
  border: 1px solid rgba(125,211,252,0.1);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: rgba(125,211,252,0.3); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Cinzel', serif; font-size: 0.97rem;
  color: var(--text); transition: color var(--ease);
}
.faq-q:hover { color: #fff; }
.faq-item.open .faq-q { color: #fff; }
.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform var(--ease);
  color: var(--ice);
}
.faq-item.open .faq-chevron { transform: rotate(225deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.6rem;
  color: var(--muted); font-size: 0.95rem; line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 1.6rem 1.4rem;
}
.faq-a a { color: var(--ice); }

/* ─── Blog Cards ─────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.blog-card {
  background: rgba(12,15,27,0.75);
  border: 1px solid rgba(125,211,252,0.09);
  border-radius: var(--r-lg); overflow: hidden;
  transition: var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(125,211,252,0.28);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.blog-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb-svg { width: 80px; height: 80px; opacity: 0.4; }
.blog-meta {
  padding: 1.5rem 1.5rem 0;
  display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
}
.blog-tag {
  font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-b); padding: 0.15rem 0.5rem;
  border: 1px solid rgba(245,158,11,0.25); border-radius: 4px;
}
.blog-date { font-size: 0.76rem; color: var(--muted); }
.blog-card h3 {
  font-family: 'Cinzel', serif; font-size: 1rem; line-height: 1.4;
  color: #fff; padding: 0.75rem 1.5rem 0.4rem;
  transition: color var(--ease);
}
.blog-card:hover h3 { color: var(--ice-b); }
.blog-card p {
  color: var(--muted); font-size: 0.87rem; line-height: 1.7;
  padding: 0 1.5rem; flex: 1;
}
.blog-card-link {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--ice); font-size: 0.82rem; font-weight: 500;
  text-decoration: none; padding: 1.2rem 1.5rem;
  transition: gap var(--ease);
}
.blog-card-link:hover { gap: 0.6rem; }
.blog-card a { text-decoration: none; color: inherit; }

/* ─── Blog Post Layout ───────────────────────────────── */
.post-body {
  max-width: 740px; margin: 0 auto;
  font-size: 1.02rem; line-height: 1.85; color: var(--text);
}
.post-body h2 {
  font-family: 'Cinzel', serif; font-size: 1.45rem;
  color: #fff; margin: 3rem 0 1rem; line-height: 1.3;
}
.post-body h3 {
  font-family: 'Cinzel', serif; font-size: 1.15rem;
  color: var(--ice-b); margin: 2rem 0 0.75rem;
}
.post-body p { margin-bottom: 1.3rem; color: var(--muted); }
.post-body p strong { color: var(--text); }
.post-body ul, .post-body ol {
  margin: 0 0 1.3rem 1.5rem; color: var(--muted);
}
.post-body li { margin-bottom: 0.5rem; }
.post-body a { color: var(--ice); }
.post-body blockquote {
  margin: 2rem 0; padding: 1.2rem 1.6rem;
  border-left: 3px solid var(--ice);
  background: rgba(125,211,252,0.04);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--text); font-style: italic;
}
.key-takeaways {
  background: rgba(125,211,252,0.05);
  border: 1px solid rgba(125,211,252,0.2);
  border-radius: var(--r-lg); padding: 1.5rem 1.8rem;
  margin-bottom: 2.5rem;
}
.key-takeaways h3 {
  font-family: 'Cinzel', serif; color: var(--ice-b);
  font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.key-takeaways ul { margin: 0 0 0 1.2rem; }
.key-takeaways li { color: var(--text); font-size: 0.95rem; margin-bottom: 0.45rem; }

.post-meta {
  display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center;
  margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(125,211,252,0.07);
}
.post-author { font-size: 0.85rem; color: var(--muted); }
.post-author strong { color: var(--ice-b); }
.post-readtime { font-size: 0.82rem; color: var(--muted); }
.post-tag {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-b); padding: 0.2rem 0.55rem;
  border: 1px solid rgba(245,158,11,0.3); border-radius: 4px;
}

/* ─── Steps / How It Works ───────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 1.5rem; align-items: start;
}
.step-num {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(125,211,252,0.08);
  border: 1px solid rgba(125,211,252,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--ice); box-shadow: var(--gi-sm);
}
.step-body h3 {
  font-family: 'Cinzel', serif; color: #fff;
  font-size: 1.05rem; margin-bottom: 0.5rem;
}
.step-body p { color: var(--muted); font-size: 0.93rem; line-height: 1.75; }

/* ─── Innovation Cards (How It Works) ───────────────── */
.innovation {
  background: rgba(12,15,27,0.6);
  border: 1px solid rgba(125,211,252,0.1);
  border-radius: var(--r-lg); padding: 2.5rem;
  margin-bottom: 1.5rem; position: relative;
}
.innovation.gold-border { border-color: rgba(245,158,11,0.15); }
.inno-label {
  font-size: 0.66rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ice); margin-bottom: 0.7rem; display: block;
}
.innovation.gold-border .inno-label { color: var(--gold-b); }
.inno-num {
  position: absolute; top: 1.8rem; right: 2rem;
  font-family: 'Cinzel Decorative', serif; font-size: 3rem;
  color: rgba(125,211,252,0.06); line-height: 1; user-select: none;
}
.innovation h2 {
  font-family: 'Cinzel', serif; font-size: 1.5rem;
  color: #fff; margin-bottom: 0.9rem; line-height: 1.3;
}
.innovation p { color: var(--muted); font-size: 0.97rem; line-height: 1.8; }

/* ─── Compatibility Grid ─────────────────────────────── */
.compat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.compat-card {
  background: rgba(12,15,27,0.6);
  border: 1px solid rgba(125,211,252,0.08);
  border-radius: var(--r); padding: 1rem 1.2rem;
  text-align: center; transition: var(--ease);
}
.compat-card:hover { border-color: rgba(125,211,252,0.3); }
.compat-card .game-icon { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.compat-card span { font-size: 0.82rem; color: var(--text); font-weight: 500; }

/* ─── Waitlist Section ───────────────────────────────── */
.waitlist-wrap {
  max-width: 580px; margin: 0 auto;
  background: rgba(12,15,27,0.6);
  border: 1px solid rgba(125,211,252,0.14);
  border-radius: 16px; padding: 3.5rem 2.5rem;
  backdrop-filter: blur(10px); text-align: center;
  position: relative; overflow: hidden;
}
.waitlist-wrap::before {
  content: '';
  position: absolute; top: -40%; left: -40%; width: 180%; height: 180%;
  background: radial-gradient(ellipse at 50% 0%, rgba(125,211,252,0.06), transparent 55%);
  pointer-events: none;
}
.waitlist-wrap h2 {
  font-family: 'Cinzel', serif; color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 0.75rem;
}
.waitlist-wrap > p { color: var(--muted); font-size: 0.96rem; line-height: 1.75; margin-bottom: 2rem; }
.waitlist-wrap > p strong { color: var(--gold-b); }

.form-row { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
.form-row input[type=email],
.form-row input[type=text] {
  flex: 1; min-width: 200px;
  padding: 0.85rem 1.15rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125,211,252,0.3);
  border-radius: var(--r);
  color: #fff; font-family: inherit; font-size: 0.93rem;
  outline: none; transition: var(--ease);
}
.form-row input:focus { border-color: var(--ice); box-shadow: var(--gi-sm); }
.form-row input::placeholder { color: var(--muted); }

.inline-form { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.inline-form input[type=email] {
  flex: 1; min-width: 200px;
  padding: 0.82rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125,211,252,0.3);
  border-radius: var(--r);
  color: #fff; font-family: inherit; font-size: 0.92rem;
  outline: none; transition: var(--ease);
}
.inline-form input:focus { border-color: var(--ice); background: rgba(125,211,252,0.06); box-shadow: var(--gi-sm); }
.inline-form input::placeholder { color: var(--muted); }

.select-row {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-top: 0.75rem;
}
.select-row label {
  cursor: pointer;
}
.select-row input[type=radio] { display: none; }
.radio-btn {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(125,211,252,0.2);
  border-radius: 20px; font-size: 0.8rem; color: var(--muted);
  transition: var(--ease);
}
.select-row input[type=radio]:checked + .radio-btn {
  border-color: var(--ice); color: var(--ice-b);
  background: rgba(125,211,252,0.08);
}

.perks {
  display: flex; gap: 1.2rem; justify-content: center;
  flex-wrap: wrap; margin-top: 1.6rem;
}
.perk { font-size: 0.79rem; color: var(--muted); display: flex; align-items: center; gap: 0.35rem; }
.perk::before { content: '◆'; color: var(--gold); font-size: 0.6rem; }

.success-msg {
  display: none;
  padding: 0.9rem 1.5rem;
  background: rgba(125,211,252,0.08);
  border: 1px solid rgba(125,211,252,0.4);
  border-radius: var(--r); color: var(--ice);
  font-size: 0.92rem; text-align: center;
  box-shadow: var(--gi-sm);
}

/* ─── Buttons ────────────────────────────────────────── */
.btn-gold {
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-b));
  color: #07080E; font-weight: 700; font-size: 0.93rem;
  border: none; border-radius: var(--r);
  cursor: pointer; font-family: inherit; letter-spacing: 0.4px;
  transition: var(--ease); box-shadow: var(--gg-sm);
  white-space: nowrap; text-decoration: none; display: inline-block;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--gg-md); }

.btn-ice {
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--ice); font-weight: 600; font-size: 0.93rem;
  border: 1px solid rgba(125,211,252,0.4); border-radius: var(--r);
  cursor: pointer; font-family: inherit; letter-spacing: 0.4px;
  transition: var(--ease); white-space: nowrap;
  text-decoration: none; display: inline-block;
}
.btn-ice:hover { background: var(--ice-dim); box-shadow: var(--gi-sm); transform: translateY(-2px); }

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ─── Breadcrumb ─────────────────────────────────────── */
.breadcrumb-bar {
  position: relative; z-index: 1; padding: 5rem 2rem 0.5rem;
  font-size: 0.76rem; color: var(--muted);
}
.breadcrumb-bar a { color: var(--ice); text-decoration: none; }
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar .sep { margin: 0 0.4rem; opacity: 0.4; }

/* ─── Trust / Milestone ──────────────────────────────── */
.milestone-row {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-top: 2.5rem;
}
.milestone {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: var(--muted);
  background: rgba(12,15,27,0.6);
  border: 1px solid rgba(125,211,252,0.1);
  border-radius: 20px; padding: 0.45rem 0.9rem;
}
.milestone.done { border-color: rgba(52,211,153,0.3); color: var(--green); }
.milestone.active { border-color: rgba(125,211,252,0.3); color: var(--ice-b); }
.m-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* ─── Countdown ──────────────────────────────────────── */
.countdown {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap; margin: 2.5rem 0;
}
.cd-unit {
  text-align: center;
  background: rgba(12,15,27,0.7);
  border: 1px solid rgba(125,211,252,0.15);
  border-radius: var(--r-lg); padding: 1.2rem 1.5rem; min-width: 80px;
}
.cd-num {
  font-family: 'Cinzel', serif; font-size: 2.4rem; font-weight: 600;
  color: var(--ice-b); display: block; line-height: 1;
  text-shadow: 0 0 20px rgba(125,211,252,0.5);
}
.cd-lbl { font-size: 0.7rem; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 0.4rem; }

/* ─── Art Pack Cards ─────────────────────────────────── */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}
.art-card {
  background: rgba(12,15,27,0.75);
  border: 1px solid rgba(125,211,252,0.1);
  border-radius: var(--r-lg); overflow: hidden;
  transition: var(--ease); text-align: center;
}
.art-card:hover { border-color: rgba(125,211,252,0.3); transform: translateY(-3px); }
.art-thumb {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
}
.art-body { padding: 1.2rem; }
.art-body h3 { font-family: 'Cinzel', serif; color: #fff; font-size: 0.97rem; margin-bottom: 0.3rem; }
.art-body p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }
.art-price { color: var(--gold-b); font-weight: 600; font-size: 1rem; margin-top: 0.5rem; }

/* ─── Footer ─────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(125,211,252,0.07);
  padding: 3rem 2rem 2rem;
  background: var(--bg);
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr repeat(3, auto);
  gap: 3rem; align-items: start;
}
.footer-brand { max-width: 240px; }
.footer-logo {
  font-family: 'Cinzel Decorative', serif; font-size: 1rem;
  font-weight: 700; letter-spacing: 2px; display: inline-block;
  background: linear-gradient(90deg, var(--gold-b), var(--ice-b));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 0.5rem;
}
.footer-tagline { font-family: 'Cinzel', serif; letter-spacing: 2px; font-size: 0.72rem; color: rgba(125,211,252,0.4); }
.footer-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; margin-top: 0.7rem; }

.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ice);
  margin-bottom: 0.9rem;
}
.footer-col a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 0.85rem; margin-bottom: 0.5rem; transition: color var(--ease);
}
.footer-col a:hover { color: var(--ice-b); }
.footer-bottom {
  border-top: 1px solid rgba(125,211,252,0.06);
  padding-top: 1.5rem; margin-top: 2.5rem;
  text-align: center; font-size: 0.78rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--ice); }

/* ─── Social Proof / Notice ──────────────────────────── */
.social-proof { margin-top: 1rem; font-size: 0.79rem; color: var(--muted); letter-spacing: 0.3px; }
.social-proof strong { color: var(--gold); }

.notice-bar {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--r); padding: 0.75rem 1.2rem;
  font-size: 0.87rem; color: var(--gold-b);
  text-align: center; margin-bottom: 2rem;
}

/* ─── Misc Utils ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-ice  { color: var(--ice-b); }
.text-gold { color: var(--gold-b); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.gap-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-wrap { display: none; }
  .hamburger { display: flex; }

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

  .compare-table th, .compare-table td { padding: 0.7rem 0.7rem; font-size: 0.8rem; }
  .spec-table td, .spec-table th { padding: 0.7rem 0.9rem; }

  .step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .step-num { width: 48px; height: 48px; font-size: 0.95rem; }
}

@media (max-width: 600px) {
  header { padding: 1rem 1.2rem; }
  .hero { padding: 7rem 1.5rem 5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .section { padding: 4rem 1.5rem; }

  .page-hero { padding: 1rem 1.5rem 3rem; }
  .breadcrumb-bar { padding: 4.5rem 1.5rem 0.5rem; }
  .inline-form, .form-row { flex-direction: column; align-items: stretch; }
  .inline-form input, .form-row input { min-width: unset; }
  .hex-row:nth-child(even) { transform: translateX(42px); }
  .tile-grid { gap: 2.5rem; }
  .sq-cluster { grid-template-columns: repeat(3,68px); }
  .sq { width: 68px; height: 68px; }
  .countdown { gap: 0.8rem; }
  .cd-num { font-size: 1.8rem; }
  .cd-unit { padding: 0.9rem 1rem; min-width: 64px; }
  .stat-bar { gap: 1rem; }
}
