@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

@font-face {
  font-family: Thicccboi;
  src: url("assets/font/THICCCBOI-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: Thicccboi;
  src: url("assets/font/THICCCBOI-Bold.woff2") format("woff2");
  font-weight: 700;
}

:root {
  --bg: #0b0712;
  --panel: #15101f;
  --panel-2: #1b1530;
  --text: #f6f4ff;
  --muted: #b6acc9;
  --line: rgba(255, 255, 255, .12);
  --accent: #8b5cf6;
  --accent-deep: #6d28d9;
  --accent-soft: #a78bfa;
  --rose: #ff5f8f;
  --shadow: 0 24px 80px rgba(0, 0, 0, .36);
  --page-x: clamp(18px, 4vw, 56px);
  --section-y: clamp(58px, 7vw, 82px);
  --content-max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Thicccboi, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (hover: none) {
  .button:hover,
  .header-cta:hover,
  .tab:hover,
  .guide-card-grid article:hover,
  .guide-hub-card:hover,
  .product-card:hover {
    transform: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  color: var(--accent-soft);
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 12px 12px 0;
  padding-top: max(12px, env(safe-area-inset-top));
  padding-left: max(12px, env(safe-area-inset-left));
  padding-right: max(12px, env(safe-area-inset-right));
  background: linear-gradient(180deg, rgba(11, 7, 18, .94), rgba(11, 7, 18, .24));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color .2s ease, background .2s ease;
}

body.nav-open {
  overflow: hidden;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(11, 7, 18, .94), rgba(11, 7, 18, .24));
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr) auto auto auto auto;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  width: min(100%, 1520px);
  max-width: calc(100vw - 24px);
  min-height: 64px;
  padding: 10px 18px 10px 20px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(16, 18, 24, .82);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .04);
  overflow: visible;
}

.patch-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(63, 231, 123, .3);
  border-radius: 10px;
  color: #dfffea;
  background: rgba(63, 231, 123, .08);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.patch-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #3fe77b;
  box-shadow: 0 0 0 5px rgba(63, 231, 123, .12);
}

.currency-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 6px 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: border-color .18s ease, background .18s ease;
}

.currency-picker:hover {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
}

.currency-picker > span {
  opacity: .7;
}

.currency-picker select {
  min-height: 30px;
  border: 0;
  border-radius: 8px;
  padding: 0 6px;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
}

.currency-picker select option {
  color: var(--text);
  background: #110b1d;
}

.sale-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 0 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(167, 139, 250, .32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(124, 58, 237, .18), rgba(167, 139, 250, .08) 54%, rgba(27, 21, 48, .86));
  box-shadow: var(--shadow);
}

.sale-banner h3 {
  margin: 8px 0 6px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.sale-banner span {
  color: var(--muted);
  font-weight: 700;
}

.sale-banner strong {
  min-width: 180px;
  color: #a78bfa;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.sale-price {
  display: block;
  color: var(--text);
  font-size: clamp(34px, 3.1vw, 42px);
  line-height: 1;
}

.sale-price-row {
  display: block;
}

.sale-price-row s {
  display: none;
}

.sale-price-row strong {
  display: block;
  color: var(--text);
  font-size: clamp(34px, 3.1vw, 42px);
  line-height: 1;
}

.sale-price > small {
  display: block;
  margin-top: 8px;
  color: #a78bfa;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.sale-note {
  display: block;
  margin: -10px 0 18px;
  color: #a78bfa;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.sale-note s {
  color: var(--muted);
  text-decoration-thickness: 2px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 96px;
  z-index: 2;
}

.logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 148px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand img {
  width: 128px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 14px);
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.nav a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 9px;
  color: var(--muted);
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.nav a:hover,
.nav-item:hover > a,
.nav-item:focus-within > a {
  color: var(--text);
  background: rgba(255, 255, 255, .05);
}

.nav > a::before,
.nav-item.has-dropdown > a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  opacity: .85;
}

.nav-item.has-dropdown > a[href="/#products"]::before { content: "\f54e"; }
.nav > a[href="/lol-tier-list"]::before { content: "\f091"; }
.nav > a[href="/setup-guide"]::before { content: "\f02d"; }
.nav > a[href="/#faq"]::before { content: "\f059"; }

.nav-item {
  position: relative;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 18px;
}

.chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .82;
}

.shop-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(13, 17, 25, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease .12s, transform .18s ease .12s;
}

.has-dropdown:hover .shop-dropdown,
.has-dropdown:focus-within .shop-dropdown,
.has-dropdown.dropdown-open .shop-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.shop-dropdown a {
  display: flex;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
}

.shop-dropdown a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .18s ease, background .18s ease;
}

.cart-link:hover {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
}

.cart-link i {
  width: 18px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.cart-link svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.button.large {
  min-height: 48px;
  padding: 0 24px;
  font-size: 16px;
}

.button.small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 14px;
}

.button:hover,
.header-cta:hover,
.tab:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #a78bfa, #7c3aed 60%, #6d28d9);
  border-color: rgba(167, 139, 250, .55);
  box-shadow: 0 12px 34px rgba(124, 58, 237, .42), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.button.primary:hover {
  box-shadow: 0 16px 42px rgba(124, 58, 237, .55), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  background: rgba(88, 101, 242, .16);
  border-color: rgba(88, 101, 242, .42);
}

.header-cta::before {
  content: "\f392";
  font-family: "Font Awesome 6 Brands";
  font-size: 16px;
  line-height: 1;
}

.header-cta:hover {
  background: rgba(88, 101, 242, .28);
  border-color: rgba(88, 101, 242, .6);
}

.button.secondary {
  color: #fff;
  background: rgba(167, 139, 250, .12);
  border-color: rgba(167, 139, 250, .45);
}

.button.danger {
  color: #fff;
  background: rgba(255, 95, 143, .18);
  border-color: rgba(255, 95, 143, .5);
}

.tool-inline-upsell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: stretch;
  margin: 24px 0 0;
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(167, 139, 250, .24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 12%, rgba(167, 139, 250, .13), transparent 34%),
    linear-gradient(135deg, rgba(27, 21, 48, .96), rgba(12, 8, 22, .94));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
}

.tool-inline-upsell.compact {
  grid-template-columns: 1fr;
}

.tool-inline-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.tool-inline-copy .badge {
  margin: 0;
}

.tool-inline-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.tool-inline-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.tool-inline-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tool-upsell-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 12px;
  align-items: end;
  min-height: 168px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.tool-upsell-option h3,
.tool-upsell-option p {
  grid-column: 1 / -1;
}

.tool-upsell-option h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.tool-upsell-option p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.tool-upsell-option strong {
  color: #fff;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.tool-upsell-option .button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 15px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, .09);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform .26s cubic-bezier(.4, 0, .2, 1), opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(580px, 80vh, 740px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(104px, 11vh, 124px) var(--page-x) clamp(44px, 5vh, 64px);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center center;
  opacity: .32;
  transform: scale(1.08);
  transform-origin: center center;
}

.hero-overlay {
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(124, 58, 237, .14), transparent 58%),
    linear-gradient(180deg, rgba(11, 7, 18, .55) 0%, rgba(11, 7, 18, .94) 72%),
    linear-gradient(90deg, rgba(11, 7, 18, .97) 0%, rgba(11, 7, 18, .82) 44%, rgba(11, 7, 18, .38) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: min(1280px, 100%);
  margin-inline: auto;
}

.hero-content {
  justify-self: center;
  width: min(580px, 100%);
  text-align: left;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e9e4ff;
  background: rgba(139, 92, 246, .1);
  border: 1px solid rgba(167, 139, 250, .22);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.hero-content h1 {
  max-width: 12em;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero-content .lead {
  max-width: 40em;
  margin: 0;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.58;
  color: rgba(182, 172, 201, .9);
}

.hero .hero-actions {
  margin-top: 28px;
  gap: 12px;
}

.hero .button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero .trust {
  margin-top: 24px;
  gap: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(182, 172, 201, .78);
}

.hero .trust img {
  width: 128px;
  opacity: .92;
}

.hero-visual {
  position: relative;
  justify-self: end;
  align-self: start;
  display: grid;
  place-items: start end;
  width: min(100%, 620px);
  aspect-ratio: 4 / 5;
  max-height: min(74vh, 660px);
  margin-top: -8px;
  margin-right: -12px;
}

.hero-character {
  position: relative;
  z-index: 1;
  width: 108%;
  max-height: 108%;
  object-fit: contain;
  object-position: right 20% top;
  opacity: 1;
  pointer-events: none;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, .42));
  transform: translate(3%, 2%);
}

.guide-hero {
  position: relative;
  min-height: clamp(560px, 68vh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px var(--page-x) 72px;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(124, 58, 237, .16), transparent 58%),
    radial-gradient(ellipse 45% 35% at 85% 15%, rgba(167, 139, 250, .08), transparent 55%),
    var(--bg);
}

.guide-hero.compact-page {
  min-height: 540px;
}

.guide-hero .hero-overlay {
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(124, 58, 237, .1), transparent 62%),
    linear-gradient(180deg, rgba(11, 7, 18, .15) 0%, rgba(11, 7, 18, .88) 100%);
}

.guide-hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  max-width: var(--content-max);
  margin-inline: auto;
  text-align: center;
}

.guide-hero-content .badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ece8ff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.guide-hero-content h1,
.guide-hero-content .lead {
  margin-inline: auto;
}

.guide-hero-content h1 {
  max-width: none;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
}

.guide-hero-content .lead {
  max-width: 620px;
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.65;
  color: rgba(182, 172, 201, .9);
}

.guide-hero-content .hero-actions {
  justify-content: center;
  margin-top: 34px;
  gap: 12px;
}

.guide-hero-content .button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
}

.guide-hero-content .button.primary {
  background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
  border-color: rgba(167, 139, 250, .35);
  box-shadow: 0 10px 28px rgba(124, 58, 237, .26), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.guide-hero-content .button.primary:hover {
  box-shadow: 0 14px 36px rgba(124, 58, 237, .34), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.guide-hero-content .button.secondary {
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge,
.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--accent-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  padding: 0;
  margin: 0;
  background: var(--line);
}

.stats-strip article {
  padding: clamp(18px, 2.5vw, 26px) 18px;
  background: #0d1119;
  text-align: center;
}

.stats-strip strong {
  display: block;
  color: var(--accent);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.02;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
}

.trust img {
  width: 153px;
}

.section {
  padding: var(--section-y) var(--page-x);
  max-width: calc(var(--content-max) + (var(--page-x) * 2));
  margin-inline: auto;
}

.guide-section,
.guide-process,
.guide-split {
  max-width: calc(var(--content-max) + (var(--page-x) * 2));
}

.guide-page .section-heading {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.guide-page .section-heading .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .14em;
}

.guide-page .section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.guide-page .section-heading p:not(.eyebrow) {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(182, 172, 201, .88);
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-card-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card-grid article,
.guide-note {
  min-height: 100%;
  padding: clamp(24px, 2.8vw, 32px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .06) inset,
    0 18px 48px rgba(0, 0, 0, .18);
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.guide-card-grid article:hover {
  border-color: rgba(167, 139, 250, .28);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .08) inset,
    0 22px 56px rgba(0, 0, 0, .24);
}

.guide-card-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  background: rgba(124, 58, 237, .14);
  border: 1px solid rgba(167, 139, 250, .22);
}

.guide-card-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.guide-card-grid p,
.guide-split p,
.guide-note p {
  color: var(--muted);
}

.guide-process img,
.guide-video-card {
  align-self: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-video-card {
  overflow: hidden;
  background: #0e0a17;
}

.guide-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #05070b;
}

.guide-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  gap: clamp(22px, 4vw, 60px);
  align-items: center;
}

.guide-note {
  border-color: rgba(167, 139, 250, .36);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, .16), rgba(167, 139, 250, .04)),
    rgba(255, 255, 255, .03);
}

.guide-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: calc(var(--content-max) + (var(--page-x) * 2));
  margin-inline: auto;
}

.guide-hub-card {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.guide-hub-card:hover {
  border-color: rgba(167, 139, 250, .32);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.guide-hub-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, .28);
  background: rgba(124, 58, 237, .12);
  color: var(--accent-soft);
  font-size: 20px;
}

.guide-hub-card h2 { margin: 0; font-size: 22px; }
.guide-hub-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.guide-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--accent-soft);
  font-weight: 800;
  font-size: 14px;
}

.guide-breadcrumbs {
  position: relative;
  z-index: 2;
  width: min(var(--content-max), calc(100% - var(--page-x) * 2));
  margin: 0 auto;
  padding: 108px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: rgba(182, 172, 201, .85);
}

.guide-breadcrumbs a:hover { color: #fff; }
.guide-breadcrumbs b { color: var(--accent-soft); font-weight: 800; }

.guide-steps {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.guide-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(18px, 2.4vw, 22px) clamp(20px, 2.6vw, 24px);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .05) inset;
  transition: border-color .2s ease, background .2s ease;
}

.guide-steps li:hover {
  border-color: rgba(167, 139, 250, .22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
}

.guide-steps li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(124, 58, 237, .14);
  border: 1px solid rgba(167, 139, 250, .24);
  color: var(--accent-soft);
  font-weight: 800;
  font-size: 14px;
}

.guide-steps h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.guide-steps p {
  margin: 0;
  color: rgba(182, 172, 201, .92);
  line-height: 1.65;
  font-size: 15px;
}

.guide-warning {
  margin-top: 28px;
  padding: clamp(20px, 2.4vw, 24px) clamp(22px, 2.6vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(251, 191, 36, .28);
  background:
    linear-gradient(180deg, rgba(251, 191, 36, .1), rgba(251, 191, 36, .04));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fde68a;
}

.guide-warning strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  letter-spacing: -.01em;
}

.guide-warning ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(182, 172, 201, .92);
  line-height: 1.65;
}

.guide-warning li { margin-top: 8px; }

.guide-warning a {
  color: #fde68a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-page .section.faq {
  padding-top: clamp(48px, 6vw, 72px);
}

.guide-page .faq-list details {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.guide-page .guide-cta-row {
  justify-content: center;
  margin-top: 28px;
}

.guide-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.guide-problem-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
}

.guide-problem-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 16px;
  color: #fca5a5;
}

.guide-problem-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.guide-problem-card .solution {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #bbf7d0;
}

@media (max-width: 900px) {
  .guide-hub-grid { grid-template-columns: 1fr; }
}

.feature-band,
.showcase-section,
.champion-section,
.proof-section,
.final-cta,
.contact {
  max-width: none;
}

.feature-band,
.showcase-section,
.champion-section,
.proof-section,
.contact {
  padding-inline: max(var(--page-x), calc((100vw - var(--content-max)) / 2 + var(--page-x)));
}

.section-heading {
  max-width: 850px;
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.tab {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, .05);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.product-grid,
.feature-grid,
.compare-grid,
.blog-grid {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.product-card,
.blog-card,
.feature-grid article,
.compare-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel), rgba(27, 21, 48, .74));
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card.is-featured {
  border-color: rgba(167, 139, 250, .42);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, .12), var(--shadow);
}

.blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.blog-card div {
  padding: 24px;
}

.blog-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-weight: 700;
}

.product-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1230 0%, #0b0712 100%);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(11, 7, 18, .72));
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-icon,
.showcase-icon,
.product-visual-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, .18), rgba(109, 40, 217, .08));
}

.product-icon i,
.showcase-icon i,
.product-visual-icon i {
  font-size: clamp(52px, 8vw, 72px);
  color: var(--accent-soft);
  text-shadow: 0 12px 40px rgba(124, 58, 237, .45);
}

.showcase-icon {
  min-height: clamp(140px, 14vw, 170px);
}

.product-visual-icon {
  min-height: 220px;
  border-radius: 12px;
}

.product-visual-icon i {
  font-size: clamp(72px, 10vw, 96px);
}

.product-hero .product-visual {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-hero-visual {
  position: relative;
  display: grid;
  place-items: end center;
  width: 100%;
  min-height: clamp(360px, 42vw, 520px);
  max-height: min(68vh, 560px);
}

.product-showcase-section {
  padding-top: 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.product-showcase-section .product-showcase-inner {
  display: grid;
  gap: 16px;
}

.product-showcase-section .product-showcase-frame {
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
  contain: layout style paint;
}

.product-showcase {
  margin: 18px 0 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(33, 26, 58, .92), rgba(20, 14, 34, .88));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.product-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, .18);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-showcase-badge i {
  font-size: 11px;
}

.product-showcase-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-showcase-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #05040a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.product-showcase-frame iframe,
.product-showcase-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  background: #000;
}

.product-showcase-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #05040a;
  cursor: pointer;
}

.product-showcase-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-play-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(124, 58, 237, .92);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
  transition: transform .18s ease, background .18s ease;
}

.product-showcase-play-icon i {
  margin-left: 4px;
  font-size: 24px;
}

.product-showcase-play:hover .product-showcase-play-icon,
.product-showcase-play:focus-visible .product-showcase-play-icon {
  transform: scale(1.06);
  background: rgba(139, 92, 246, .96);
}

.product-showcase-play:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

body.product-showcase-modal-open {
  overflow: hidden;
}

.product-showcase-modal[hidden] {
  display: none !important;
}

.product-showcase-modal {
  position: fixed;
  inset: 0;
  z-index: 1190;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
}

.product-showcase-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 10, .88);
  backdrop-filter: blur(10px);
}

.product-showcase-modal-panel {
  position: relative;
  width: min(1180px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0b0712;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
  overflow: hidden;
}

.product-showcase-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.product-showcase-modal-copy h2 {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
}

.product-showcase-modal-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-showcase-modal-hint kbd {
  display: inline-block;
  min-width: 28px;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font: inherit;
  font-size: 12px;
  text-align: center;
}

.product-showcase-modal-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.product-showcase-modal-close:hover,
.product-showcase-modal-close:focus-visible {
  background: rgba(255, 255, 255, .12);
}

.product-showcase-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.product-showcase-modal-frame iframe,
.product-showcase-modal-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

@media (max-width: 620px) {
  .product-showcase-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.product-hero-character {
  position: relative;
  z-index: 1;
  width: 112%;
  max-height: 108%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, .42));
  transform: translate(2%, 0);
}

.spec-card h3,
.feature-grid h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-card h3 i,
.feature-grid h3 i,
.guide-card-grid h3 i {
  color: var(--accent-soft);
  font-size: 18px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.trust-list li i {
  color: var(--accent-soft);
  font-size: 14px;
}

.feature-grid .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(139, 92, 246, .14);
  color: var(--accent-soft);
  font-size: 20px;
}

.related-card .related-icon {
  display: grid;
  place-items: center;
  min-height: 120px;
  background: linear-gradient(135deg, rgba(139, 92, 246, .16), rgba(109, 40, 217, .06));
}

.related-card .related-icon i {
  font-size: 42px;
  color: var(--accent-soft);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.product-badge-row {
  min-height: 30px;
  margin-bottom: 8px;
}

.product-badge-row .badge {
  margin: 0;
}

.product-badge-spacer {
  display: block;
  min-height: 30px;
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.15;
}

.product-meta {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  min-height: calc(1.55em * 4);
}

.product-footer {
  margin-top: auto;
  padding-top: 18px;
}

.price {
  display: block;
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.product-body h3 a {
  color: inherit;
}

.product-body h3 a:hover {
  color: var(--accent-soft);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.button.ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.button.ghost:hover {
  border-color: rgba(167, 139, 250, .55);
  color: #fff;
}

.feature-band {
  background: #110b1d;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 7, 18, .64), #0b0712 74%),
    url("assets/image/hero-bg.webp") center / cover;
}

.showcase-intro {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.showcase-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.showcase-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.showcase-card,
.proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(33, 26, 58, .92), rgba(27, 21, 48, .82));
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}

.showcase-card-body,
.showcase-card div:not(.showcase-icon),
.proof-card {
  padding: 22px;
}

.showcase-card h3,
.proof-card h3 {
  margin-bottom: 12px;
}

.showcase-card p,
.proof-card p {
  color: var(--muted);
  line-height: 1.65;
}

.champion-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0f16;
}

.champion-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.champion-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(167, 139, 250, .42);
  border-radius: 999px;
  color: var(--text);
  background: rgba(124, 58, 237, .1);
  font-weight: 800;
}

.proof-section {
  background: #0e0a17;
}

.proof-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-size: 22px;
  letter-spacing: 2px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: center;
}

.process-section > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 720px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.process-list strong {
  color: var(--accent);
  font-size: 24px;
}

.process-list h3 {
  margin-bottom: 6px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-grid article,
.compare-card {
  padding: clamp(20px, 2.5vw, 26px);
}

.feature-grid span {
  color: var(--accent-soft);
  font-weight: 700;
}

.feature-grid p,
.compare-card li,
.faq p,
.contact p,
.footer p,
.media-section p {
  color: var(--muted);
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.compare-card ul {
  margin: 0;
  padding-left: 20px;
}

.compare-card li {
  margin: 10px 0;
}

.compare-card.highlight {
  border-color: rgba(167, 139, 250, .5);
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}

.media-section img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 14px;
}

.faq summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  padding: 0 22px 22px;
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(90deg, rgba(124, 58, 237, .16), rgba(167, 139, 250, .1));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 52vw, 440px);
  display: grid;
  place-items: center;
  text-align: center;
}

.cta-video,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-video {
  object-fit: cover;
  transform: scale(1.08);
  opacity: .5;
}

.cta-overlay {
  background: linear-gradient(180deg, rgba(11, 7, 18, .72), rgba(11, 7, 18, .92));
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.cta-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.cta-content .hero-actions {
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 5vw, 56px) var(--page-x);
  max-width: calc(var(--content-max) + (var(--page-x) * 2));
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-links h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.admin-page {
  min-height: 100vh;
  background: #0e0a17;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 46px);
  background: rgba(9, 13, 20, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.admin-header-actions,
.export-actions,
.editor-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 26px;
  padding: clamp(18px, 4vw, 46px);
}

.admin-sidebar,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 21, 48, .9);
  box-shadow: var(--shadow);
}

.admin-sidebar {
  align-self: start;
  position: sticky;
  top: 102px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.admin-sidebar h1 {
  margin-bottom: 8px;
  font-size: 42px;
}

.admin-sidebar p {
  color: var(--muted);
}

.admin-status {
  padding: 12px;
  border: 1px solid rgba(167, 139, 250, .34);
  border-radius: 8px;
  color: var(--accent-soft);
  background: rgba(124, 58, 237, .08);
}

.admin-panel {
  overflow: hidden;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
}

.admin-tab {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, .05);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-tab.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.admin-section {
  display: none;
  padding: 24px;
}

.admin-section.active {
  display: block;
}

.admin-section > p,
.admin-section-head p {
  color: var(--muted);
}

.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-section-head.tight {
  margin-bottom: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid.compact {
  gap: 12px;
}

.field,
.check-field {
  display: grid;
  gap: 8px;
}

.field span,
.check-field span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select,
.export-code {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #0e0a17;
  font: inherit;
}

.field input,
.field select {
  min-height: 44px;
  padding: 0 12px;
}

.field textarea {
  min-height: 96px;
  padding: 12px;
  resize: vertical;
}

.span-2 {
  grid-column: span 2;
}

.check-field {
  align-content: end;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0a17;
}

.product-editor-list {
  display: grid;
  gap: 16px;
}

.category-editor {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
}

.category-editor-list {
  display: grid;
  gap: 10px;
}

.category-editor-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) auto;
  align-items: end;
  gap: 10px;
}

.product-editor {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
}

.product-editor-preview {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 8px;
  background: #0b0712;
}

.product-editor-preview img {
  max-height: 140px;
  object-fit: contain;
}

.product-editor-fields {
  display: grid;
  gap: 12px;
}

.export-code {
  min-height: 420px;
  margin-top: 18px;
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  resize: vertical;
}

@media (min-width: 1440px) {
  .hero {
    min-height: 720px;
  }

  .section {
    padding-block: 74px;
  }

  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  :root {
    --section-y: 66px;
  }

  .nav {
    gap: 8px;
    font-size: 14px;
  }

  .nav a,
  .nav-item > a {
    padding: 0 10px;
  }

  .header-shell {
    width: min(100%, calc(100vw - 20px));
    gap: 10px;
    padding-inline: 14px;
  }

  .product-grid,
  .showcase-grid,
  .guide-card-grid:not(.cols-2) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-inline-upsell {
    grid-template-columns: 1fr;
  }
}

/* ===== Desktop: lock original layout above tablet nav ===== */
@media (min-width: 981px) {
  .header-shell {
    display: grid;
    grid-template-columns: minmax(96px, auto) minmax(0, 1fr) auto auto auto auto;
  }

  .menu-toggle {
    display: none;
  }

  .header-cta,
  .cart-link,
  .patch-status {
    display: inline-flex;
  }

  .guide-hero.compact-page {
    min-height: 560px;
  }

  .section-heading,
  .guide-page .section-heading {
    text-align: center;
  }

  .guide-card-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions,
  .contact-actions,
  .cta-content .hero-actions {
    width: auto;
  }

  .hero-actions .button,
  .contact-actions .button,
  .cta-content .button,
  .guide-hero-content .button,
  .guide-cta-row .button {
    width: auto;
  }

  .final-cta {
    text-align: center;
  }

  .cta-content .hero-actions {
    justify-content: center;
  }

  .footer {
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== Tablet + mobile: hamburger navigation ===== */
@media (max-width: 980px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    justify-self: stretch;
    width: 100%;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(30px, 7.5vw, 40px);
  }

  .hero-visual {
    width: min(88vw, 420px);
    max-height: 420px;
    margin-inline: auto;
  }

  /* Header: single clean row -> logo ... currency + hamburger */
  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 60px;
    padding: 8px 12px 8px 16px;
  }

  .logo {
    order: 1;
    margin-right: auto;
  }

  .currency-picker {
    order: 2;
    min-width: 0;
    min-height: 42px;
  }

  .currency-picker > span {
    display: none;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta,
  .cart-link,
  .patch-status {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(13, 10, 22, .96);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .55);
    font-size: 17px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.99);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s cubic-bezier(.4, 0, .2, 1), visibility .24s;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-item,
  .nav-item > a,
  .nav a {
    width: 100%;
  }

  .nav a,
  .nav-item > a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
  }

  .shop-dropdown {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 4px 0 4px 10px;
    border: 0;
    border-left: 2px solid rgba(167, 139, 250, .3);
    border-radius: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .chevron {
    margin-left: auto;
  }

  .hero {
    min-height: clamp(560px, 78vh, 650px);
    padding-top: 112px;
    padding-bottom: 46px;
  }

  .guide-hero {
    min-height: clamp(420px, 56vh, 540px);
    padding-top: clamp(116px, 16vh, 132px);
    padding-bottom: 56px;
  }

  .hero-character {
    width: 100%;
    max-height: 100%;
    transform: none;
    opacity: .45;
  }

  .product-grid,
  .blog-grid,
  .showcase-grid,
  .proof-grid,
  .feature-grid,
  .compare-grid,
  .guide-card-grid:not(.cols-2) {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .media-section,
  .process-section,
  .guide-split,
  .contact,
  .admin-shell,
  .form-grid,
  .product-editor,
  .category-editor-row {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-section,
  .process-section {
    text-align: left;
  }

  .admin-sidebar {
    position: static;
  }

  .span-2 {
    grid-column: auto;
  }

  .contact-actions {
    margin-top: 0;
  }
}

/* ===== Tablet portrait ===== */
@media (max-width: 768px) {
  :root {
    --section-y: 60px;
  }
}

/* ===== Phone ===== */
@media (max-width: 620px) {
  :root {
    --page-x: 18px;
    --section-y: 52px;
  }

  .logo img {
    height: 32px;
  }

  .sale-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sale-banner strong {
    min-width: 0;
    text-align: left;
  }

  .tool-inline-options {
    grid-template-columns: 1fr;
  }

  .tool-upsell-option {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .tool-upsell-option .button {
    width: 100%;
  }

  .hero {
    min-height: clamp(520px, 86vh, 600px);
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .guide-hero {
    min-height: clamp(380px, 60vh, 460px);
    padding-top: clamp(108px, 16vh, 120px);
    padding-bottom: 48px;
    text-align: left;
  }

  .guide-hero-content {
    text-align: left;
  }

  .guide-hero-content h1,
  .guide-hero-content .lead {
    margin-inline: 0;
  }

  .guide-hero-content .hero-actions {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(27px, 7.5vw, 34px);
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .section-heading p:not(.eyebrow),
  .product-meta {
    min-height: 0;
  }

  .hero-actions,
  .contact-actions,
  .cta-content .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .trust img {
    width: 130px;
  }

  .section {
    padding-block: var(--section-y);
  }

  .section-heading {
    text-align: left;
  }

  /* Single column for all card grids on phones */
  .product-grid,
  .blog-grid,
  .showcase-grid,
  .proof-grid,
  .feature-grid,
  .compare-grid,
  .guide-card-grid,
  .guide-card-grid.cols-2,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip strong {
    font-size: 34px;
  }

  .showcase-icon {
    min-height: 150px;
  }

  .champion-row {
    justify-content: flex-start;
  }

  .champion-row span {
    min-width: auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .final-cta {
    min-height: 340px;
    text-align: left;
  }

  .cta-content .hero-actions {
    justify-content: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }
}

@media (max-width: 390px) {
  :root {
    --page-x: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 27px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 44px;
    padding-inline: 14px;
  }
}

/* Sellhub checkout + variant picker */
.variant-picker { margin: 18px 0 4px; }
.variant-label { margin: 0 0 10px; font-size: 13px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.variant-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-pill {
  display: grid;
  gap: 2px;
  min-width: 108px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.variant-pill span { font-size: 13px; color: var(--muted); font-weight: 700; }
.variant-pill strong { font-size: 18px; font-weight: 900; }
.variant-pill:hover { border-color: rgba(167,139,250,.45); transform: translateY(-1px); }
.variant-pill.active { border-color: rgba(167,139,250,.75); background: rgba(124,58,237,.18); }

body.sellhub-checkout-open { overflow: hidden; }
.sellhub-checkout[hidden] { display: none !important; }
.sellhub-checkout {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.sellhub-checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 10, .82);
  backdrop-filter: blur(8px);
}
.sellhub-checkout-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: #0b0712;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.sellhub-checkout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sellhub-checkout-head h2 { margin: 0; font-size: 20px; }
.sellhub-checkout-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.sellhub-checkout-form { display: grid; gap: 16px; padding: 20px; }
.sellhub-checkout-summary {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.sellhub-checkout-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.sellhub-checkout-line span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.sellhub-field { display: grid; gap: 8px; }
.sellhub-field span { font-size: 13px; font-weight: 700; color: var(--muted); }
.sellhub-field input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
}
.sellhub-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.sellhub-terms a { color: var(--accent-soft); }
.sellhub-checkout-error { margin: 0; color: #f87171; font-size: 14px; font-weight: 700; }
.sellhub-checkout-submit { width: 100%; justify-content: center; }

/* Terms of Service page */
.terms-page { min-height: 100vh; padding: 128px var(--page-x) 84px; background: #0b0712; }
.terms-wrap { width: min(1120px, 100%); margin: 0 auto; }
.terms-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--accent-soft);
  font-size: 14px;
  font-weight: 700;
}
.terms-back:hover { color: #fff; }
.terms-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 28px 30px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: radial-gradient(circle at 80% 10%, rgba(124,58,237,.18), transparent 42%), rgba(255,255,255,.02);
}
.terms-hero h1 { margin: 10px 0 12px; font-size: clamp(34px, 5vw, 52px); line-height: 1.02; }
.terms-lead { max-width: 680px; color: var(--muted); line-height: 1.65; }
.terms-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.terms-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(18,20,26,.72);
}
.terms-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid rgba(167,139,250,.35);
  background: rgba(124,58,237,.12);
  color: var(--accent-soft);
}
.terms-card h2 { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.terms-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.terms-body { margin-top: 56px; }
.terms-body-head { max-width: 760px; margin-bottom: 28px; }
.terms-body-head h2 { margin: 8px 0 10px; font-size: clamp(28px, 4vw, 38px); }
.terms-body-head p { color: var(--muted); line-height: 1.65; }
.terms-section {
  padding: 24px 26px;
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.terms-section h3 { margin: 0 0 12px; font-size: 17px; }
.terms-section p { margin: 0 0 12px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.terms-section p:last-child { margin-bottom: 0; }
.terms-section a { color: var(--accent-soft); }
.terms-consent-panel {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(167,139,250,.25);
  background: rgba(124,58,237,.08);
}
.terms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
}
.terms-consent-label input { margin-top: 3px; }

/* ===== Responsive polish: modals, pills, overlays on small screens ===== */
@media (max-width: 620px) {
  .variant-pill {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .sellhub-checkout,
  .product-showcase-modal {
    padding: 0;
    place-items: end stretch;
  }

  .sellhub-checkout-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .product-showcase-modal-panel {
    width: 100%;
    border-radius: 22px 22px 0 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .product-showcase-modal-hint {
    display: none;
  }

  .terms-page {
    padding-top: 104px;
  }

  .terms-hero {
    padding: 26px 20px 24px;
  }
}

/* Larger tap targets on touch devices */
@media (hover: none) and (pointer: coarse) {
  .nav a,
  .nav-item > a,
  .footer-links a,
  .shop-dropdown a {
    min-height: 44px;
  }
}
