@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: #07090f;
  --panel: #11151f;
  --panel-2: #171d29;
  --text: #f6f8ff;
  --muted: #aeb7c9;
  --line: rgba(255, 255, 255, .12);
  --accent: #0087ff;
  --accent-soft: #53d6ff;
  --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;
}

body {
  margin: 0;
  font-family: Thicccboi, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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: 16px var(--page-x) 0;
  background: linear-gradient(180deg, rgba(7, 9, 15, .72), transparent);
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, background .2s ease;
}

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

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  width: min(100%, 1180px);
  min-height: 74px;
  padding: 10px 16px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(14, 16, 18, .9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
}

.logo img {
  display: block;
  width: 138px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  color: var(--text);
  font-weight: 700;
  font-size: clamp(17px, 1.7vw, 22px);
}

.nav a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
}

.nav a:hover,
.nav-item:hover > a {
  color: var(--text);
}

.nav-item {
  position: relative;
}

.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% + 12px);
  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, transform .18s ease;
}

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

.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: 44px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.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;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

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

.header-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #0087ff, #005bb8);
  border-color: rgba(83, 214, 255, .55);
  box-shadow: 0 12px 32px rgba(0, 135, 255, .24);
}

.button.secondary {
  background: rgba(83, 214, 255, .12);
  border-color: rgba(83, 214, 255, .45);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px var(--page-x) 64px;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 15, .98), rgba(7, 9, 15, .72) 48%, rgba(7, 9, 15, .84)),
    radial-gradient(circle at 70% 42%, rgba(0, 135, 255, .18), transparent 34%);
}

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

.guide-hero {
  position: relative;
  min-height: clamp(560px, 70vh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px var(--page-x) 72px;
}

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

.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 h1,
.guide-hero-content .lead {
  margin-inline: auto;
}

.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;
  padding: 1px var(--page-x);
  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;
}

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;
}

.hero-character {
  position: absolute;
  z-index: 1;
  right: 2vw;
  bottom: 0;
  width: min(42vw, 640px);
  opacity: .94;
  pointer-events: none;
}

.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-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.guide-card-grid article,
.guide-note {
  min-height: 100%;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
}

.guide-card-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

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

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

.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(83, 214, 255, .36);
  background:
    linear-gradient(180deg, rgba(0, 135, 255, .16), rgba(83, 214, 255, .04)),
    rgba(255, 255, 255, .03);
}

.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);
}

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

.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, .05);
  font: inherit;
  font-weight: 700;
  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));
}

.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(17, 21, 31, .74));
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.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 {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 16px;
  background: #0b0f18;
}

.product-image img {
  max-height: 170px;
  object-fit: contain;
}

.product-body {
  padding: 20px;
}

.product-meta {
  color: var(--muted);
  min-height: 48px;
}

.price {
  display: block;
  margin: 18px 0;
  font-size: 32px;
  font-weight: 700;
}

.feature-band {
  background: #0b1018;
}

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

.showcase-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 9, 15, .64), #07090f 74%),
    url("assets/image/hero-bg.png") 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(23, 29, 41, .92), rgba(17, 21, 31, .82));
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: clamp(140px, 14vw, 170px);
  object-fit: cover;
  opacity: .78;
}

.showcase-card div,
.proof-card {
  padding: 22px;
}

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

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

.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(83, 214, 255, .42);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 135, 255, .1);
  font-weight: 800;
}

.proof-section {
  background: #090d14;
}

.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(83, 214, 255, .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(0, 135, 255, .16), rgba(83, 214, 255, .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(7, 9, 15, .72), rgba(7, 9, 15, .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: #090d14;
}

.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(17, 21, 31, .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(83, 214, 255, .34);
  border-radius: 8px;
  color: var(--accent-soft);
  background: rgba(0, 135, 255, .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: #090d14;
  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: #090d14;
}

.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: #07090f;
}

.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: 16px;
    font-size: 18px;
  }

  .header-shell {
    width: 100%;
  }

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

  .hero-character {
    width: 46vw;
    opacity: .74;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 64px;
    padding: 8px 12px 8px 14px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 9, 15, .98);
    font-size: 18px;
  }

  .nav.open {
    display: flex;
  }

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

  .shop-dropdown {
    position: static;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .hero {
    min-height: 650px;
    padding-top: 116px;
    padding-bottom: 46px;
  }

  .guide-hero {
    min-height: 580px;
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .hero-character {
    width: 62vw;
    opacity: .24;
  }

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

  .blog-card {
    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;
  }
}

@media (max-width: 620px) {
  :root {
    --page-x: 16px;
    --section-y: 52px;
  }

  .site-header {
    padding-inline: 10px;
  }

  .logo img {
    width: 112px;
  }

  .nav {
    right: 12px;
    left: 12px;
  }

  .hero {
    min-height: 590px;
    padding-top: 96px;
    padding-bottom: 38px;
  }

  .guide-hero {
    min-height: 540px;
    padding-top: 108px;
    text-align: left;
  }

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

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

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 32px;
    line-height: 1.06;
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust img {
    width: 130px;
  }

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

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

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

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

  .guide-card-grid,
  .product-image {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 160px;
  }

  .product-image img {
    max-height: 140px;
  }

  .showcase-card img {
    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: 360px;
    text-align: left;
  }

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

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

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

@media (max-width: 390px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

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

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