:root {
  --bg: #061111;
  --bg-2: #08201d;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f4fff9;
  --muted: #b7c8c1;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #1cff9a;
  --accent-2: #38d7ff;
  --accent-3: #f2f36d;
  --danger: #ff6b86;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  width: 100%;
  overflow-x: clip;
}

html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(28, 255, 154, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(56, 215, 255, 0.16), transparent 26rem),
    linear-gradient(145deg, var(--bg), #020707 54%, #092018);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 85%);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: #03100c;
  background: var(--accent);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 98px 0;
}

.section--compact {
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
}

p {
  color: var(--muted);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(28, 255, 154, 0.45), rgba(56, 215, 255, 0.38));
  opacity: 0;
  filter: blur(16px);
  transition: opacity 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn--primary,
.btn--nav,
.btn--product,
.btn--small {
  color: #02120c;
  background: linear-gradient(135deg, var(--accent), #c8ff62);
  border-color: transparent;
  box-shadow: 0 16px 44px rgba(28, 255, 154, 0.2);
}

.btn--secondary,
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.btn--nav {
  min-height: 42px;
  padding: 0 18px;
}

.btn--product {
  width: 100%;
  margin-top: auto;
}

.cta-group,
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.product-card__actions {
  margin-top: auto;
}

.product-card__actions .btn {
  flex: 1 1 150px;
}

.product-card__actions .btn--product {
  width: auto;
  margin-top: 0;
}

.btn--product-secondary {
  color: #f7fffb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(79, 255, 226, 0.35);
  backdrop-filter: blur(14px);
}

.btn--small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(2, 9, 9, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-decoration: none;
}

.brand__logo {
  width: 84px;
  height:auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto;
}

.brand__icon,
.brand span {
  display: none !important;
}

.brand--footer .brand__logo {
  width: 60px;
  height: 60px;
}

.nav-menu {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.nav-menu a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 750;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  padding-top: 78px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.section-note {
  margin: 14px auto 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.finder-card,
.table-wrap {
  padding: clamp(18px, 4vw, 28px);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.finder-step h3 {
  margin-bottom: 10px;
}

.finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.chip:hover,
.chip:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
}

.chip.is-selected {
  border-color: rgba(28, 255, 154, 0.55);
  background: rgba(28, 255, 154, 0.12);
}

.finder-result {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.finder-result__top {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.finder-result__title {
  color: #eafff4;
}

.link-btn {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.finder-result__model {
  margin: 12px 0 8px;
  color: #eafff4;
  font-weight: 900;
}

.finder-result__actions {
  margin-top: 12px;
}

.finder-result__actions .btn {
  width: auto;
  min-width: 180px;
}

.finder-disclaimer {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.field span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 850;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  outline: none;
}

.field input:focus-visible,
.field select:focus-visible {
  border-color: rgba(28, 255, 154, 0.55);
  box-shadow: 0 0 0 4px rgba(28, 255, 154, 0.12);
}

.table-wrap {
  overflow: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}

.compare-table th,
.compare-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  vertical-align: top;
}

.compare-table thead th {
  color: #eafff4;
  font-weight: 950;
}

.compare-cards {
  display: none;
  margin-top: 14px;
  gap: 12px;
  min-width: 0;
}

.compare-card,
.info-card,
.range-card,
.glossary-item {
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.compare-card h3 {
  margin-bottom: 10px;
}

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

.compare-card p:last-child {
  margin-bottom: 0;
}

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

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

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

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1100;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.mobile-cta[hidden] {
  display: none;
}

.blog-grid,
.article-card-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card,
.article-shell,
.article-toc,
.article-cta,
.article-recommendation,
.breadcrumb,
.warning-strip {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  border-color: rgba(28, 255, 154, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}

.blog-card__media,
.article-hero__media {
  position: relative;
  display: flex;
  min-height: 220px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  background:
    radial-gradient(circle at 55% 25%, rgba(28, 255, 154, 0.28), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.blog-card__media::before,
.article-hero__media::before {
  position: absolute;
  z-index: 0;
  inset: 28px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.blog-card__media::after,
.article-hero__media::after {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  content: "VapSolo";
  color: rgba(255, 255, 255, 0.82);
  font-weight: 950;
}

.blog-card__media img,
.article-hero__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 1;
}

.blog-card__category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: #03100c;
  background: var(--accent-3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
}

.blog-card p {
  margin: 0 0 16px;
}

.blog-card__link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 850;
}

.warning-strip {
  padding: 14px 16px;
  border-color: rgba(255, 107, 134, 0.3);
  border-radius: 18px;
  color: #ffe9ee;
  font-weight: 800;
}

.blog-hero,
.article-hero {
  padding-top: 78px;
}

.blog-hero__copy,
.article-hero__copy {
  max-width: 900px;
}

.article-hero__media {
  min-height: 320px;
  margin-top: 28px;
}

.article-shell,
.article-toc,
.article-cta {
  padding: clamp(22px, 5vw, 42px);
  border-radius: 28px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

.article-toc h2 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.article-toc a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-weight: 750;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--accent);
}

.article-body p,
.article-body li {
  font-size: 17px;
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.article-body p a,
.article-body li a {
  color: #4fffe2;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-cover {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.article-cover__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(79, 255, 226, 0.22), transparent 36%),
    radial-gradient(circle at 80% 30%, rgba(160, 90, 255, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(8, 32, 29, 0.96), rgba(2, 7, 7, 0.98));
}

.article-cover__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.article-cover__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 19, 19, 0.18) 0%, rgba(7, 19, 19, 0.72) 58%, rgba(7, 19, 19, 0.96) 100%),
    radial-gradient(circle at 20% 20%, rgba(79, 255, 226, 0.22), transparent 36%),
    radial-gradient(circle at 80% 30%, rgba(160, 90, 255, 0.22), transparent 38%);
}

.article-cover__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding-top: 140px;
  padding-bottom: 70px;
}

.article-cover h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.article-cover .hero__lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.75;
}

.breadcrumb--cover {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.2);
}

.breadcrumb--cover a {
  color: #4fffe2;
}

.article-main .article-narrow {
  max-width: 920px;
}

.article-main .warning-strip {
  margin: 0 0 22px;
}

.article-toc--horizontal {
  position: static;
  top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
  padding: 20px;
  border: 1px solid rgba(79, 255, 226, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.article-toc--horizontal h2 {
  width: 100%;
  margin: 0 0 8px;
}

.article-toc--horizontal a {
  display: inline-flex;
  margin: 0;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.article-toc--horizontal a:hover,
.article-toc--horizontal a:focus-visible {
  color: #071313;
  background: #4fffe2;
}

.article-main .article-body {
  max-width: 860px;
  margin: 0 auto;
}

.article-main .article-body p {
  font-size: 17px;
  line-height: 1.85;
}

.article-body p a:hover,
.article-body li a:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(79, 255, 226, 0.45);
}

.article-recommendation {
  padding: 18px;
  border-radius: var(--radius);
}

.article-recommendation h3 {
  margin-bottom: 10px;
}

.article-recommendation .btn {
  width: 100%;
  margin-top: 10px;
}

.article-cta {
  margin-top: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(28, 255, 154, 0.18), transparent 16rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
}

.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.mini-conversion,
.article-inline-cta {
  margin: 34px 0;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(79, 255, 226, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(79, 255, 226, 0.2);
  border-radius: 26px;
  box-shadow: 0 22px 66px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.mini-conversion {
  margin-block: clamp(22px, 4vw, 42px);
}

.mini-conversion__inner,
.article-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.mini-conversion span,
.article-inline-cta span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-3);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-conversion h2,
.article-inline-cta h3 {
  margin: 0 0 8px;
}

.mini-conversion p,
.article-inline-cta p {
  margin: 0;
  color: var(--muted);
}

.mini-conversion small,
.article-inline-cta small,
.trust-microcopy {
  display: block;
  margin-top: 10px;
  color: rgba(244, 255, 249, 0.72);
  font-size: 0.86rem;
}

.article-inline-cta .btn {
  white-space: nowrap;
}

.buy-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.buy-checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.buy-checklist li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 18px;
  height: 18px;
  content: "";
  background: radial-gradient(circle, var(--accent) 0 42%, transparent 45%);
  border: 1px solid rgba(28, 255, 154, 0.5);
  border-radius: 50%;
}

.faq-more {
  margin: 22px auto 0;
  text-align: center;
}

.faq-more a,
.geo-intro__link a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-cta .btn {
  flex: 1 1 auto;
  min-height: 44px;
}

.mobile-cta__close {
  flex: 0 0 auto;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.hero__lead {
  max-width: 720px;
  margin: 24px 0;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}

.hero__note {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.hero__badges span {
  padding: 9px 12px;
  color: #dfffee;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__showcase {
  min-width: 0;
}

.hero-slider {
  position: relative;
  min-height: 560px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(28, 255, 154, 0.22), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(56, 215, 255, 0.14), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.showcase-card {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 20% 20%, rgba(28, 255, 154, 0.22), transparent 16rem);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.showcase-card::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
}

.device {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #061111;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(230, 255, 246, 0.66) 28%, rgba(28, 255, 154, 0.9) 29%, rgba(18, 158, 104, 0.95)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38), inset 0 0 32px rgba(255, 255, 255, 0.26);
}

.hero-products {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.hero-products img {
  position: absolute;
  max-width: min(72%, 360px);
  max-height: 470px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.42));
}

.hero-products__main {
  transform: translateX(26px) rotate(4deg);
}

.hero-products__secondary {
  left: 7%;
  bottom: 44px;
  max-width: min(42%, 230px);
  opacity: 0.94;
  transform: rotate(-9deg);
}

.hero-products__compact {
  right: 8%;
  bottom: 24px;
  max-width: min(34%, 180px);
  opacity: 0.92;
  transform: rotate(10deg);
}

.device--main {
  right: 17%;
  bottom: 58px;
  width: clamp(150px, 24vw, 220px);
  height: 420px;
  padding: 34px 18px;
  transform: rotate(6deg);
  animation: float 5.5s ease-in-out infinite;
}

.device--small {
  left: 10%;
  bottom: 96px;
  width: 108px;
  height: 270px;
  padding: 26px 12px;
  transform: rotate(-10deg);
  animation: float 5.5s ease-in-out 700ms infinite;
}

.device__cap {
  position: absolute;
  top: -20px;
  width: 54%;
  height: 40px;
  background: linear-gradient(180deg, #effff8, #a7ffe1);
  border-radius: 18px 18px 10px 10px;
}

.device__brand {
  position: absolute;
  top: 74px;
  font-weight: 950;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.device strong {
  font-size: 4rem;
  line-height: 1;
}

.device small {
  font-weight: 900;
  text-transform: uppercase;
}

.orb {
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(28, 255, 154, 0.24), transparent 65%);
  filter: blur(3px);
  animation: drift 12s ease-in-out infinite alternate;
}

.orb--one {
  top: 14%;
  right: -80px;
}

.orb--two {
  bottom: 5%;
  left: -130px;
  background: radial-gradient(circle, rgba(56, 215, 255, 0.18), transparent 65%);
  animation-delay: -3s;
}

.slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(28, 255, 154, 0.13), rgba(56, 215, 255, 0.09));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.slider__track {
  position: relative;
  min-height: 430px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  justify-items: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: translateX(30px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: translateX(0);
}

.slide__kicker {
  color: var(--accent-3);
  font-weight: 900;
}

.slide h2 {
  margin: 8px 0 10px;
}

.slide p {
  max-width: 620px;
  margin: 0;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 30px rgba(28, 255, 154, 0.12));
  transform: scale(1.02);
}

.slider__cta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  transform: translateX(-50%);
  white-space: nowrap;
}

.slider__cta--no-hover:hover,
.slider__cta--no-hover:focus-visible {
  transform: translateX(-50%);
}

.slider__cta--no-hover {
  transition: none;
}

.slider__arrow {
  position: absolute;
  top: 52%;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--text);
  background: rgba(5, 16, 14, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.slider__arrow--prev {
  left: 18px;
}

.slider__arrow--next {
  right: 18px;
}

.slider__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.slider__dots button.is-active {
  width: 34px;
  background: var(--accent);
}

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

.product-card,
.benefit-card,
.city-card,
.copy-panel,
.trust-panel,
.legal-card,
.faq-item,
.trust-card,
.testimonial-card,
.geo-intro {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px;
  border-radius: var(--radius);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  border-color: rgba(28, 255, 154, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-7px);
}

.product-card--featured {
  border-color: rgba(79, 255, 226, 0.42);
  background:
    radial-gradient(circle at 18% 12%, rgba(79, 255, 226, 0.20), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(28, 255, 154, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 70px rgba(28, 255, 154, 0.14);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  color: #03100c;
  background: var(--accent-3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card__image {
  position: relative;
  display: flex;
  min-height: 240px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(28, 255, 154, 0.38), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.product-card__image::before {
  display: none;
  width: 82px;
  height: 164px;
  content: "";
  background: linear-gradient(160deg, #f7fff9 0 24%, var(--accent) 25% 58%, #0ea46a);
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.36);
  transform: rotate(8deg);
}

.product-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.34));
}

.product-card__image span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 2;
  font-size: 2.6rem;
  font-weight: 1000;
  line-height: 1;
}

.product-card h3 {
  margin-bottom: 8px;
}

.product-card p {
  margin: 0 0 12px;
  font-size: 0.94rem;
}

.product-card__meta,
.nicotine {
  color: #dfffee;
  font-weight: 800;
}

.product-card__meta {
  margin-bottom: 16px;
}

.product-card .btn--product {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.nicotine {
  margin-top: auto;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.final-cta__inner {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  text-align: center;
  border: 1px solid rgba(79, 255, 226, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(79, 255, 226, 0.18), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(28, 255, 154, 0.16), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.final-cta__inner p:not(.eyebrow) {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta__inner .btn {
  margin-top: 10px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

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

.benefit-card,
.city-card,
.legal-card,
.faq-item,
.trust-card,
.testimonial-card {
  padding: 22px;
  border-radius: var(--radius);
}

.benefit-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: #03100c;
  background: var(--accent);
  border-radius: 12px;
  font-weight: 950;
}

.benefit-card p,
.city-card p {
  margin-bottom: 0;
}

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

.trust-card h3 {
  margin-bottom: 10px;
}

.trust-card p {
  margin: 0;
}

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

.testimonial-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.65;
}

.testimonial-card span {
  margin-top: 18px;
  color: #dfffee;
  font-weight: 900;
}

.testimonials__actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(79, 255, 226, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.testimonials__actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.testimonials__actions .btn {
  flex: 0 0 auto;
}

.geo-intro {
  max-width: 920px;
  margin: 0 auto 18px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(56, 215, 255, 0.16), transparent 16rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
}

.contact-card {
  padding: clamp(22px, 4.8vw, 40px);
  border-radius: 28px;
  max-width: 920px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 80% 20%, rgba(28, 255, 154, 0.18), transparent 16rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.contact-card p {
  max-width: 780px;
}

.contact-card__actions {
  margin-top: 18px;
}

.contact-card__actions .btn {
  width: auto;
  min-width: 180px;
}

.contact-card__note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.geo-intro h3 {
  margin-bottom: 10px;
}

.geo-intro p {
  margin: 0;
}

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

.city-card h3 {
  margin-bottom: 10px;
  color: #eafff4;
}

.copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.copy-panel,
.trust-panel {
  padding: clamp(24px, 5vw, 42px);
  border-radius: 28px;
}

.copy-panel h2,
.copy-panel h3 {
  margin: 0 0 14px;
}

.copy-panel h3 {
  margin-top: 28px;
}

.copy-panel p:last-child,
.trust-panel p:last-child,
.legal-card p:last-child {
  margin-bottom: 0;
}

.trust-panel {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background:
    radial-gradient(circle at 85% 20%, rgba(28, 255, 154, 0.24), transparent 13rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.trust-panel__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: #061111;
  background: var(--accent-3);
  border-radius: 999px;
  font-weight: 950;
}

.trust-panel .btn {
  width: 100%;
  margin-top: 12px;
}

.legal-card {
  border-color: rgba(255, 107, 134, 0.34);
}

.legal-card h2 {
  color: #ffe9ee;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
}

.faq-item[open] summary::after {
  content: "−";
}

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

.footer {
  padding: 54px 0 24px;
  background: rgba(0, 0, 0, 0.32);
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 32px;
}

.footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.brand--footer {
  margin-bottom: 14px;
}

.footer__warning {
  color: #ffe9ee;
  font-weight: 850;
}

.footer__disclaimer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__links {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__bottom {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}

.age-modal[hidden] {
  display: none;
}

.age-modal__panel {
  width: min(100%, 520px);
  padding: clamp(24px, 6vw, 42px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(28, 255, 154, 0.28), transparent 16rem),
    linear-gradient(145deg, rgba(10, 32, 29, 0.96), rgba(3, 12, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.age-modal__mark {
  display: inline-grid;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  place-items: center;
  color: #03100c;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border-radius: 24px;
  font-size: 1.45rem;
  font-weight: 1000;
}

.age-modal__panel h2 {
  font-size: clamp(1.7rem, 7vw, 2.7rem);
}

.age-modal__actions {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 12px;
  margin-top: 26px;
}

.floating-promo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: min(370px, calc(100vw - 32px));
  padding: 18px;
  background: linear-gradient(145deg, rgba(13, 43, 37, 0.96), rgba(4, 13, 13, 0.98));
  border: 1px solid rgba(28, 255, 154, 0.32);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translateY(130%);
}

.floating-promo.is-visible {
  animation: promoIn 380ms ease forwards;
}

.floating-promo[hidden] {
  display: none;
}

.floating-promo strong {
  display: block;
  padding-right: 34px;
  font-size: 1.1rem;
}

.floating-promo p {
  margin: 8px 0 14px;
  font-size: 0.92rem;
}

.floating-promo__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(22px, -18px, 0) scale(1.06);
  }
}

@keyframes promoIn {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }

  .section {
    padding: 76px 0;
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav > .btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    visibility: hidden;
    background: rgba(4, 18, 17, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    opacity: 0;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero__grid,
  .split,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    min-height: 480px;
  }

  .trust-panel {
    position: relative;
    top: auto;
  }

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

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

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

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: relative;
    top: auto;
  }

  .article-cover h1 {
    font-size: 3.5rem;
  }

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

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

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

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

@media (max-width: 768px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .article-cover {
    min-height: 520px;
  }

  .article-cover__content {
    padding-top: 110px;
    padding-bottom: 46px;
  }

  .article-cover h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .article-toc--horizontal {
    padding: 16px;
    border-radius: 18px;
  }

  .article-toc--horizontal a {
    width: 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: calc(100vw - 24px);
    padding: 12px;
    background: rgba(7, 19, 19, 0.92);
    border: 1px solid rgba(79, 255, 226, 0.28);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta span {
    min-width: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-sticky-cta a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 14px;
    color: #071313;
    background: #4fffe2;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .hero__actions,
  .age-modal__actions {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
  }

  .cta-group,
  .product-card__actions,
  .article-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .showcase-card {
    min-height: 420px;
    padding: 20px;
    border-radius: 24px;
  }

  .hero-products {
    min-height: 380px;
  }

  .hero-products img {
    max-height: 350px;
  }

  .hero-products__secondary {
    left: 2%;
    max-width: min(42%, 180px);
  }

  .hero-products__compact {
    right: 2%;
    max-width: min(34%, 140px);
  }

  .device--main {
    right: 12%;
    bottom: 38px;
    width: 148px;
    height: 330px;
  }

  .device--small {
    left: 9%;
    bottom: 70px;
    width: 82px;
    height: 214px;
  }

  .device strong {
    font-size: 3rem;
  }

  .slider__track {
    min-height: 300px;
  }

  .slide {
    padding: 34px 54px 58px;
  }

  .slider__arrow {
    width: 40px;
    height: 40px;
  }

  .slider__arrow--prev {
    left: 10px;
  }

  .slider__arrow--next {
    right: 10px;
  }

  .slider__dots {
    right: 50%;
    transform: translateX(50%);
  }

  .product-grid,
  .benefit-grid,
  .trust-grid,
  .testimonial-grid,
  .city-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__actions {
    display: grid;
  }

  .grid-4,
  .grid-3,
  .glossary-grid,
  .blog-grid,
  .article-card-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-cover {
    min-height: 520px;
  }

  .article-cover__content {
    padding-top: 110px;
    padding-bottom: 46px;
  }

  .article-cover h1 {
    font-size: 2.65rem;
  }

  .article-cover .hero__lead {
    font-size: 1rem;
  }

  .article-toc--horizontal {
    padding: 16px;
    border-radius: 18px;
  }

  .article-toc--horizontal a {
    width: 100%;
  }

  .table-wrap {
    display: none;
  }

  .compare-cards {
    display: grid;
  }

  .mini-conversion,
  .article-inline-cta {
    padding: 18px;
    border-radius: 20px;
  }

  .mini-conversion__inner,
  .article-inline-cta {
    grid-template-columns: 1fr;
  }

  .article-inline-cta .btn,
  .mini-conversion .btn {
    width: 100%;
    white-space: normal;
  }

  .mobile-sticky-cta a {
    width: auto;
  }

  .mobile-cta {
    display: flex;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .floating-promo {
    right: 12px;
    bottom: 12px;
    width: min(420px, calc(100vw - 24px));
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .slide {
    padding-inline: 46px;
  }

  .product-card {
    padding: 12px;
  }
}

/* Final hero/mobile responsiveness pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--container, 1180px));
}

.hero h1,
.hero__copy h1 {
  max-width: 900px;
  font-size: clamp(1.85rem, 7vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 720px;
  font-size: clamp(0.92rem, 3.2vw, 1.12rem);
  line-height: 1.65;
}

.hero .eyebrow {
  font-size: clamp(0.72rem, 2.8vw, 0.82rem);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .hero {
    overflow: hidden;
  }

  .hero__copy {
    max-width: 100%;
  }

  .nav {
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: 1rem;
    line-height: 1;
  }

  .brand__logo {
    width: 60px;
    height: auto;
  }



  .brand--footer .brand__logo {
    width: 52px;
    height: 52px;
  }

  .btn--nav {
    display: none;
  }

  .nav-toggle {
    flex: 0 0 auto;
  }

  .blog-card__media {
    min-height: 180px;
  }

  .blog-card__media img {
    height: 180px;
  }

  .hero h1,
  .hero__copy h1 {
    font-size: clamp(1.65rem, 8.2vw, 2.4rem);
    line-height: 1.03;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-slider {
    min-height: 340px;
    padding: 10px;
  }

  .hero-slider .slider__track {
    min-height: 300px;
  }

  .hero-slider .slide {
    padding: 18px 10px 42px;
  }

  .hero-slider .slide img {
    width: min(100%, 210px);
    max-height: 250px;
    transform: none;
  }

  .slider__arrow {
    top: 50%;
    width: 38px;
    height: 38px;
  }

  .slider__arrow--prev {
    left: 8px;
  }

  .slider__arrow--next {
    right: 8px;
  }

  .slider__dots {
    bottom: 10px;
  }

}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    padding: 18px;
  }

  .product-card__image {
    min-height: 220px;
  }

  .product-card__image img {
    max-height: 220px;
    object-fit: contain;
  }

  .product-card h3 {
    font-size: 1.15rem;
  }

  .product-card__meta {
    font-size: 0.88rem;
  }

  .product-card .btn--product {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 46px;
    overflow: hidden;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy {
    text-align: left;
  }

  .hero h1,
  .hero__copy h1 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 11vw, 3rem);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .hero__lead {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero__badges span {
    max-width: 100%;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 13px 16px;
    font-size: 0.86rem;
  }

  .hero__note {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .hero__showcase {
    width: 100%;
    max-width: 100%;
  }

  .showcase-card {
    min-height: 360px;
    padding: 18px;
    overflow: hidden;
  }

  .hero-products {
    min-height: 300px;
    transform: scale(0.92);
    transform-origin: center;
  }

  .hero-products img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-products__main {
    max-height: 300px;
  }

  .hero-products__secondary,
  .hero-products__compact {
    max-height: 210px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 24px, var(--container, 1180px));
  }

  .hero {
    padding-top: 88px;
  }

  .hero h1,
  .hero__copy h1 {
    font-size: 1.78rem;
    line-height: 1.04;
    letter-spacing: 0;
  }

  .hero__lead {
    font-size: 0.94rem;
  }

  .hero__badges span {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .hero__actions .btn {
    padding: 12px 13px;
    font-size: 0.8rem;
  }

  .showcase-card {
    min-height: 320px;
  }

  .hero-products {
    min-height: 270px;
    transform: scale(0.86);
  }

  .hero-products__main {
    max-height: 265px;
  }

  .hero-products__secondary,
  .hero-products__compact {
    max-height: 185px;
  }
}

/* Final horizontal overflow hardening */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 32px, var(--container, 1180px));
  max-width: var(--container, 1180px);
  margin-inline: auto;
}

.hero,
.section,
.site-header,
.footer {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .hero,
  .section,
  .site-header,
  .footer {
    overflow-x: hidden;
  }
}

.site-header,
.nav,
.nav-menu,
.hero,
.hero__grid,
.hero__copy,
.hero__showcase,
.showcase-card,
.hero-products,
.hero-slider,
.product-grid,
.product-card,
.product-card__image,
.table-wrap,
.compare-cards,
.blog-grid,
.blog-card,
.blog-card__media,
.city-grid,
.testimonial-grid,
.faq-list,
.footer__grid,
.city-card,
.testimonial-card,
.faq-item,
.footer {
  min-width: 0;
  max-width: 100%;
}

main,
.hero,
.section,
.site-header,
.footer,
.hero-slider,
.nav-menu,
.mobile-sticky-cta,
.mobile-cta {
  overflow-x: clip;
  max-width: 100vw;
}

@supports not (overflow: clip) {
  main,
  .hero,
  .section,
  .site-header,
  .footer,
  .hero-slider,
  .nav-menu,
  .mobile-sticky-cta,
  .mobile-cta {
    overflow-x: hidden;
  }
}

.hero {
  overflow: hidden;
}

.hero h1,
.hero__copy h1,
.product-card h3,
.product-card__meta,
.blog-card h3,
.blog-card p,
.city-card p,
.testimonial-card p,
.footer p,
.footer a {
  overflow-wrap: anywhere;
}

.compare-cards * {
  min-width: 0;
}

.hero__lead,
.hero__note,
.hero__actions,
.cta-group {
  max-width: 100%;
}

.hero-products,
.product-card,
.product-card__image,
.blog-card,
.compare-cards {
  overflow: hidden;
}

.hero-products img,
.product-card__image img,
.blog-card__media img {
  max-width: 100%;
}

.product-card__image img {
  object-fit: contain;
}

.hero__actions .btn,
.cta-group .btn,
.product-card .btn,
.btn--product {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 720px;
}

.brand {
  min-width: 0;
}

.brand span {
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 360px) {
  .brand__logo {
    width: 58px;
    height: auto;
  }
}

.nav {
  min-width: 0;
  max-width: 100%;
}

.nav-menu {
  max-width: 100%;
  overflow-x: hidden;
}

.mobile-sticky-cta,
.mobile-cta {
  box-sizing: border-box;
  max-width: calc(100vw - 24px);
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero h1,
  .hero__copy h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(1.35rem, 7.4vw, 2rem);
    line-height: 1.06;
  }

  .hero__lead,
  .hero__note {
    max-width: 100%;
  }

  .hero__badges {
    gap: 8px;
    margin: 20px 0;
  }

  .hero__badges span {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .hero__actions,
  .cta-group {
    width: 100%;
    max-width: 100%;
  }

  .hero__actions .btn,
  .cta-group .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .showcase-card,
  .hero-products {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-slider {
    min-height: 330px;
    padding: 8px;
    width: 100%;
    max-width: 100%;
  }

  .hero-products img,
  .hero-products__main,
  .hero-products__secondary,
  .hero-products__compact {
    max-width: 100%;
    object-fit: contain;
  }

  .table-wrap {
    display: none;
  }

  .compare-cards,
  .city-grid,
  .testimonial-grid,
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
  }

  .compare-cards,
  .compare-card,
  .product-card,
  .testimonial-card,
  .city-card,
  .benefit-card,
  .faq-item,
  .trust-card {
    min-width: 0;
    max-width: 100%;
  }

  .btn--nav {
    display: none;
  }

  .nav-menu {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    box-sizing: border-box;
  }

  .mobile-sticky-cta,
  .mobile-cta {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    overflow: hidden;
  }

  .hero-slider .slide {
    padding: 0;
  }

  .hero-slider .slide img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .slider__cta {
    bottom: 12px;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .slider__arrow {
    width: 36px;
    height: 36px;
  }

  .slider__arrow--prev {
    left: 10px;
  }

  .slider__arrow--next {
    right: 10px;
  }

  .slider__dots {
    bottom: 8px;
  }

  .mobile-sticky-cta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-sticky-cta a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .product-card .btn--product {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 24px, var(--container, 1180px));
  }

  .showcase-card {
    padding: 14px;
  }

  .mobile-sticky-cta,
  .mobile-cta {
    left: 8px;
    right: 8px;
    max-width: calc(100vw - 16px);
  }

  .mobile-sticky-cta span {
    font-size: 11px;
  }

  .mobile-sticky-cta a {
    padding: 9px 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
