:root {
  --bg: #04050f;
  --bg-soft: #060818;
  --bg-warm: #06081a;
  --panel: #090d28;
  --panel-soft: #0e1438;
  --panel-light: #070a20;
  --text: #eef0ff;
  --muted: #6878b0;
  --line: rgba(255, 255, 255, 0.07);
  --primary: #3d7fff;
  --primary-text: #ffffff;
  --accent: #2260e0;
  --accent-soft: #081840;
  --pink: #ff0099;
  --shadow: 0 22px 60px rgba(61, 127, 255, 0.13);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --site-gutter: 32px;
}

/* ── Age gate ── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(2, 3, 12, 0.90);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-verified .age-gate {
  display: none;
}

.age-gate.hidden {
  display: none;
}

.age-gate-card {
  background: var(--panel);
  border: 1px solid rgba(61, 127, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(61, 127, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.age-gate-logo {
  height: 48px;
  width: auto;
}

.age-gate-eyebrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.age-gate-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.age-gate-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 30ch;
  margin: 0;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
}

.age-gate-yes,
.age-gate-no {
  flex: 1;
}

@media (max-width: 480px) {
  .age-gate-card {
    padding: 36px 24px;
  }

  .age-gate-actions {
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 0, 153, 0.05), transparent 20%),
    radial-gradient(circle at top right, rgba(61, 127, 255, 0.07), transparent 24%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 18%, var(--bg) 100%);
}

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

button {
  font: inherit;
}

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

.site-shell {
  width: min(1000px, calc(100% - (var(--site-gutter) * 2)));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.nicotine-warning {
  background: #020310;
  color: rgba(61, 127, 255, 0.70);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
}

/* Pink notice bar — ties directly to the logo colour */
.notice-bar {
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  background: var(--pink);
  border-bottom: 1px solid rgba(255, 0, 153, 0.20);
}

.notice-track {
  display: flex;
  width: max-content;
  padding: 5px 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

.notice-group {
  display: flex;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
}

.notice-track span::after {
  content: "*";
  margin-left: 28px;
  color: rgba(255, 255, 255, 0.45);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.topbar,
.hero-grid,
.promo-band,
.info-panels,
.footer {
  display: grid;
  gap: 22px;
}

.topbar img {
  height: 28px;
  width: auto;
}

.topbar {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 22px;
  margin-bottom: 26px;
  background: rgba(9, 13, 40, 0.92);
  border: 1px solid rgba(61, 127, 255, 0.14);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  position: sticky;
  top: 14px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.main-nav {
  display: inline-flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.94rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a {
  color: var(--muted);
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--pink);
}

.footer a {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: var(--primary-text);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Ghost button uses pink — logo colour echo */
.button-ghost {
  background: rgba(255, 0, 153, 0.12);
  color: var(--pink);
  border: 1px solid rgba(255, 0, 153, 0.25);
}

.nav-cta:hover {
  background: var(--pink);
  color: #ffffff;
  border-color: rgba(255, 0, 153, 0.9);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(1.95rem, 3.2vw, 3.2rem);
  line-height: 1;
  margin-bottom: 6px;
  max-width: 9ch;
  color: #ffffff;
}

h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.04;
  margin-bottom: 10px;
  color: #ffffff;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero-text,
.promo-copy p,
.tile-copy p,
.mini-feature p,
.catalog-card p,
.info-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-grid {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  margin-bottom: 22px;
}

.hero-card,
.mini-feature,
.promo-band,
.catalog-card,
.info-card,
.footer {
  background: rgba(9, 13, 40, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 10px;
  height: 100%;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.64fr);
  gap: 12px;
  align-items: stretch;
  height: 100%;
  min-height: 0;
  grid-auto-rows: 1fr;
}

.hero-main > * {
  align-self: stretch;
  height: auto;
  min-height: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2px;
  align-self: stretch;
  height: 100%;
}

.hero-copy-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.hero-copy .eyebrow {
  margin-bottom: 10px;
}

.hero-actions,
.tile-actions,
.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: auto;
  padding-top: 8px;
}

.hero-actions .button {
  width: 100%;
}

.hero-side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 4px;
  align-items: stretch;
  height: 100%;
}

.tile-copy {
  padding: 0 4px 0;
}

.tile-badge {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  background: rgba(61, 127, 255, 0.14);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
  border: 1px solid rgba(61, 127, 255, 0.22);
}

.slider-like,
.catalog-grid {
  display: grid;
  gap: 20px;
}

.slider-like {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.mini-feature {
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-placeholder.mini-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(61, 127, 255, 0.04);
}

.mini-copy {
  flex: 1;
}

.promo-band {
  display: block;
  padding: 40px;
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(61, 127, 255, 0.10) 0%, rgba(20, 60, 160, 0.14) 100%);
  border: 1px solid rgba(61, 127, 255, 0.16);
}

.promo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.promo-copy h2 {
  margin: 6px 0 8px;
}

.promo-copy p {
  color: var(--muted);
  margin: 0;
}

.promo-cta {
  flex-shrink: 0;
}

.promo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.promo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(61, 127, 255, 0.14);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.promo-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 27, 84, 0.28);
}

.promo-step--best {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(160deg, #5d96ff 0%, #3d7fff 48%, #265be0 100%);
  border-color: rgba(137, 179, 255, 0.9);
  box-shadow:
    0 24px 60px rgba(38, 91, 224, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-8px) scale(1.03);
}

.promo-step--best::before {
  content: "Melhor Oferta";
  position: absolute;
  top: 14px;
  right: -34px;
  padding: 6px 38px;
  background: rgba(6, 10, 34, 0.92);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(34deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.promo-step--best .promo-step-qty,
.promo-step--best .promo-step-disc,
.promo-step--best .promo-step-label {
  color: #ffffff;
}

.promo-step--best .promo-step-qty {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.promo-step--best .promo-step-disc {
  font-size: 3rem;
  text-shadow: 0 6px 18px rgba(19, 43, 124, 0.32);
}

.promo-step--best .promo-step-label {
  font-size: 0.9rem;
  font-weight: 800;
}

.promo-step-qty {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-step-disc {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.promo-step-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 860px) {
  .promo-band {
    padding: 28px 24px;
  }

  .promo-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .promo-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-step-disc {
    font-size: 1.8rem;
  }
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.catalog-section {
  padding: 42px 0 16px;
}

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

.catalog-card {
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  gap: 16px;
}

.catalog-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.chip,
.series {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.chip {
  background: rgba(255, 0, 153, 0.12);
  color: var(--pink);
  border: 1px solid rgba(255, 0, 153, 0.22);
}

.series {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.image-placeholder.catalog-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.image-placeholder.catalog-image:has(img[src]:not([src=""])) {
  aspect-ratio: 1 / 1;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(61, 127, 255, 0.04);
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

.catalog-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.catalog-actions .button {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

/* ── Testimonials ── */
.testimonials-section {
  overflow: hidden;
  background: rgba(7, 10, 30, 0.96);
  border: 1px solid rgba(61, 127, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
}

.testimonials-section .section-heading {
  margin-bottom: 36px;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
}

.testimonials-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s ease;
  will-change: transform;
  flex-wrap: nowrap;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 calc(25% - 14px);
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 1120px) {
  .testimonial-card { flex: 0 0 calc(50% - 9px); }
}

@media (max-width: 720px) {
  .testimonial-card { flex: 0 0 100%; }
}

.testimonial-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonial-photo::after {
  content: "Add photo";
  color: var(--muted);
  font-size: 0.82rem;
  position: absolute;
}

.testimonial-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: relative;
  z-index: 1;
}

.testimonial-photo-img[src]:not([src=""]) {
  display: block;
}

.testimonial-rating {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.testimonial-quote {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
}

.testimonial-name {
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--primary-text);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.info-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 42px 0 0;
}

.info-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.footer {
  grid-template-columns: 1fr;
  align-items: start;
  margin-top: 32px;
  border-radius: 24px;
  background: rgba(5, 7, 22, 0.98);
  border: 1px solid rgba(61, 127, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
  padding: 28px 24px 18px;
}

.footer-column h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #ffffff;
}

.footer-column:nth-child(2),
.footer-column:nth-child(3) {
  padding-top: 60px;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 190px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 0, 153, 0.1);
  border: 1px solid rgba(255, 0, 153, 0.18);
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 0, 153, 0.18);
  border-color: rgba(255, 0, 153, 0.32);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-expand {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 24px 24px;
}

.footer-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  padding: 14px 12px;
}

.footer-toggle-arrow {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.footer-toggle[aria-expanded="true"] .footer-toggle-arrow {
  transform: rotate(180deg);
}

.footer-span-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  list-style: none;
  margin: 0;
}

.footer-span-list li {
  margin: 0;
  padding: 0;
}

.footer-span-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(61, 127, 255, 0.07);
  color: var(--text);
  font-size: 0.92rem;
  border: 1px solid rgba(61, 127, 255, 0.12);
}

.footer-copyright {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.image-placeholder {
  display: grid;
  place-items: center;
  height: 100px;
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1.5px dashed rgba(61, 127, 255, 0.20);
  background:
    linear-gradient(135deg, rgba(61, 127, 255, 0.05), rgba(20, 60, 160, 0.07)),
    repeating-linear-gradient(
      -45deg,
      rgba(61, 127, 255, 0.03),
      rgba(61, 127, 255, 0.03) 16px,
      rgba(0, 0, 0, 0) 16px,
      rgba(0, 0, 0, 0) 32px
    );
  color: var(--muted);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(61, 127, 255, 0.04);
}

.image-placeholder:has(img[src]:not([src=""])) {
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.image-placeholder img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 24px;
}

/* must come after .image-placeholder img to win the cascade */
.image-placeholder.mini-image:has(img[src]:not([src=""])) {
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(61, 127, 255, 0.04);
}

/* must come after .image-placeholder img to win the cascade */
.mini-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: inherit;
}

.image-placeholder span {
  max-width: 16ch;
  font-weight: 700;
}

.hero-image {
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 10px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(61, 127, 255, 0.05);
}

.tile-image {
  min-height: 0;
  height: auto;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px 0;
}

.hero-image img {
  width: min(100%, 100%);
  height: auto;
  max-width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
  clip-path: inset(0 round 22px);
}

.tile-image img {
  width: min(100%, 340px);
  height: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 24px;
}

.hero-text {
  margin-bottom: 0;
  line-height: 1.42;
  font-size: 0.92rem;
}

.hero-text,
.tile-copy p {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .topbar {
    padding: 10px 16px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .nav-cta {
    padding-inline: 20px;
  }

  h1 {
    font-size: clamp(1.8rem, 2.8vw, 2.75rem);
    max-width: 8ch;
  }

  h2 {
    font-size: clamp(1.45rem, 2.15vw, 2rem);
  }

  h3 {
    font-size: 1rem;
  }

  .hero-main {
    grid-template-columns: minmax(0, 0.96fr) minmax(220px, 0.74fr);
  }

  .hero-image img {
    max-height: 460px;
  }

  .tile-image img {
    max-height: 300px;
  }

  .hero-text,
  .promo-copy p,
  .tile-copy p,
  .mini-feature p,
  .catalog-card p,
  .info-card p,
  .faq-list p {
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .hero-actions,
  .tile-actions,
  .info-actions,
  .catalog-actions {
    gap: 10px;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .hero-main,
  .promo-band,
  .info-panels,
  .footer,
  .topbar {
    grid-template-columns: 1fr;
  }

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

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

  .testimonials-section {
    padding: 40px 24px;
  }

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

  .main-nav {
    justify-content: start;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    justify-self: end;
    align-self: center;
    z-index: 12;
  }

  .nav-cta {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: start;
    gap: 0;
    width: 100%;
    padding: 18px;
    background: rgba(9, 13, 40, 0.98);
    border: 1px solid rgba(61, 127, 255, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    z-index: 11;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {
  :root {
    --site-gutter: 18px;
  }

  .site-shell {
    width: min(1200px, calc(100% - (var(--site-gutter) * 2)));
  }

  .catalog-actions {
    flex-wrap: wrap;
  }

  .catalog-actions .button {
    flex-basis: 100%;
  }

  .slider-like,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 32px 16px;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .footer-span-list {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-span-list li,
  .footer-span-list a {
    width: 100%;
  }

  .hero-card,
  .promo-band,
  .info-card,
  .topbar {
    padding: 18px;
  }

  .footer-main {
    padding: 18px 18px 10px;
  }

  .footer-expand {
    padding: 10px 18px 18px;
  }

  .hero-main {
    min-height: auto;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-image {
    order: 2;
  }

  .hero-copy-intro {
    order: 1;
  }

  .hero-copy-body {
    order: 3;
  }

  .hero-copy-intro,
  .hero-image,
  .hero-copy-body {
    align-self: start;
  }

  .hero-image,
  .tile-image,
  .catalog-image,
  .mini-image {
    min-height: 240px;
  }

  h1 {
    max-width: none;
  }
}
