/* ============================================================
   Lekketap - styles.css
   Palette: #08090B black · #126BFF blue · #FFFFFF white
            #F5F7FA bg grey · #E7EAF0 border · #626A76 text
   ============================================================ */

:root {
  --black: #08090B;
  --blue: #126BFF;
  --blue-dark: #0e56cc;
  --white: #FFFFFF;
  --grey-bg: #F5F7FA;
  --border: #E7EAF0;
  --muted: #626A76;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(8, 9, 11, 0.05), 0 2px 8px rgba(8, 9, 11, 0.05);
  --shadow-md: 0 4px 12px rgba(8, 9, 11, 0.07), 0 12px 32px rgba(8, 9, 11, 0.08);
  --shadow-lg: 0 8px 24px rgba(8, 9, 11, 0.1), 0 24px 64px rgba(8, 9, 11, 0.12);
  --radius: 14px;
  --radius-lg: 14px;
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; }
ul { list-style: none; }

/* Hidden UI must never intercept clicks, even when a component sets display. */
[hidden] { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--black); color: var(--white);
  padding: 10px 18px; border-radius: 10px; text-decoration: none;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 100% - 40px); }

/* ---------------- Loader ---------------- */
.loader {
  position: fixed; inset: 0; z-index: 400;
  background: var(--white);
  display: grid; place-items: center;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  position: relative;
  width: clamp(190px, 26vw, 230px);
  aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(18, 107, 255, 0.12);
}
.loader-mark::before {
  content: "";
  position: absolute; inset: 0;
  border: 5px solid rgba(18, 107, 255, 0.16);
  border-top-color: var(--blue);
  border-right-color: var(--blue);
  border-radius: 50%;
  animation: loaderRing 0.9s linear infinite;
}
.loader-mark img { width: 84%; height: 84%; object-fit: contain; border-radius: 50%; }
@keyframes loaderRing { to { transform: rotate(360deg); } }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 14px rgba(18, 107, 255, 0.28);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 20px rgba(18, 107, 255, 0.36); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #1c1f24; }

.btn-ghost { background: transparent; color: var(--black); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--black); }

.btn-outline { background: var(--white); color: var(--black); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-faq { background: var(--black); color: var(--white); }
.btn-faq:hover { background: #1c2738; transform: translateY(-1px); }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px;
  color: var(--black);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--grey-bg); }

/* ---------------- Navigation ---------------- */
.nav-wrap {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
  transition: top 0.4s var(--ease);
}
.nav {
  pointer-events: auto;
  width: min(1200px, 100% - 28px);
  height: var(--nav-h);
  display: flex; align-items: center; gap: 20px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 0 14px 0 18px;
  transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease), width 0.35s var(--ease);
}
.nav-wrap.is-compact .nav {
  height: 56px;
  width: min(1080px, 100% - 28px);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.logo-crop {
  position: relative;
  display: block;
  aspect-ratio: 1059 / 320;
  overflow: hidden;
}
.logo-crop img {
  position: absolute;
  width: 110%; height: auto; max-width: none;
  left: -5%; top: 50%;
  transform: translateY(-50%);
}
.logo-crop-nav {
  width: 150px;
  transition: width 0.35s var(--ease);
}
.nav-wrap.is-compact .logo-crop-nav { width: 136px; }

.nav-links {
  display: flex; gap: 4px; margin-left: 8px; flex: 1;
}
.nav-links a {
  position: relative;
  display: block; padding: 8px 13px;
  font-size: 14.5px; font-weight: 600; color: var(--muted);
  text-decoration: none; border-radius: 10px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:hover { color: var(--black); background: var(--grey-bg); }
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}
.nav-links a.is-active { color: var(--black); }
.nav-links a.is-active::after { transform: translateX(-50%) scale(1); }

.nav-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.btn-nav { padding: 10px 18px; font-size: 14px; margin-left: 4px; }

.cart-count {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--blue); color: var(--white);
  font-size: 10.5px; font-weight: 800; line-height: 17px;
  border-radius: 9px; text-align: center;
}

.nav-burger { display: none; }

.mobile-menu {
  pointer-events: auto;
  width: min(1200px, 100% - 28px);
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
}
.mobile-menu ul { margin-bottom: 14px; }
.mobile-menu a:not(.btn) {
  display: block; padding: 12px 10px;
  font-size: 17px; font-weight: 700; text-decoration: none;
  border-radius: 10px;
}
.mobile-menu a:not(.btn):hover { background: var(--grey-bg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 170px 0 70px;
  background:
    radial-gradient(1100px 480px at 78% 8%, rgba(18, 107, 255, 0.055), transparent 65%),
    var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  align-items: center; gap: 40px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(18, 107, 255, 0.08);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-accent { color: var(--blue); }
.lede {
  font-size: 19px; color: var(--muted); max-width: 46ch;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.trust-line {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--muted);
}

.hero-stage {
  position: relative; height: 520px;
}
.hero-layer {
  position: absolute;
  left: 50%; top: 50%;
  width: 340px; height: 400px;
  display: grid; place-items: center;
  transform:
    translate(
      calc(-50% + var(--hero-x, 0px)),
      calc(-50% + var(--hero-y, 0px) + var(--hero-scroll, 0px))
    )
    rotate(var(--hero-rotate, 0deg))
    scale(var(--hero-scale, 1));
  opacity: var(--hero-opacity, 1);
  transition:
    left 0.9s var(--ease), top 0.9s var(--ease),
    transform 0.9s var(--ease), opacity 0.7s var(--ease),
    filter 0.7s var(--ease);
  will-change: left, top, transform;
}
.hero-layer img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(8, 9, 11, 0.12));
  animation: heroFloat 5.2s ease-in-out infinite;
}
.hero-layer[data-slot="back-left"] img { animation-delay: -1.7s; }
.hero-layer[data-slot="back-right"] img { animation-delay: -3.4s; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-layer[data-slot="front"] {
  left: 50%; top: 50%; z-index: 3;
  --hero-scale: 1;
  --hero-rotate: 0deg;
  --hero-opacity: 1;
}
.hero-layer[data-slot="back-left"] {
  left: 17%; top: 28%; z-index: 1;
  --hero-scale: 0.64;
  --hero-rotate: -7deg;
  --hero-opacity: 0.82;
}
.hero-layer[data-slot="back-right"] {
  left: 83%; top: 72%; z-index: 2;
  --hero-scale: 0.58;
  --hero-rotate: 7deg;
  --hero-opacity: 0.9;
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #778291;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-scroll-cue svg {
  display: block;
  overflow: visible;
}
.hero-scroll-path {
  fill: none;
  stroke: rgba(18, 107, 255, 0.42);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 7 10;
  animation: heroScrollPathFlow 2.2s ease-in-out infinite;
}
.hero-scroll-dot {
  fill: var(--blue);
  filter: drop-shadow(0 5px 12px rgba(18, 107, 255, 0.32));
  transform-origin: 14px 4px;
  animation: heroScrollDotFlow 2.2s cubic-bezier(.55, 0, .18, 1) infinite;
}
.hero-scroll-cue:hover .hero-scroll-path { stroke: rgba(18, 107, 255, 0.7); }
.hero-scroll-cue:hover .hero-scroll-dot { animation-duration: 1.55s; }

@keyframes heroScrollPathFlow {
  0% { stroke-dashoffset: 0; opacity: .45; }
  35% { opacity: 1; }
  100% { stroke-dashoffset: -34; opacity: .45; }
}
@keyframes heroScrollDotFlow {
  0% { opacity: 0; transform: translate(0, 0) scale(.82); }
  10% { opacity: 1; transform: translate(0, 0) scale(1); }
  30% { transform: translate(8px, 13px) scale(1.04); }
  50% { transform: translate(0, 30px) scale(.96); }
  70% { transform: translate(-8px, 47px) scale(1.04); }
  88% { opacity: 1; transform: translate(0, 68px) scale(.9); }
  100% { opacity: 0; transform: translate(0, 68px) scale(.72); }
}

/* ---------------- Trust strip ---------------- */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--grey-bg);
  padding: 22px 0;
}
.trust-items {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 14px 26px;
}
.trust-item {
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; font-weight: 700;
}
.trust-item svg { flex-shrink: 0; }

/* ---------------- Sections ---------------- */
.section { padding: 96px 0; }
.section-grey { background: var(--grey-bg); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2, .section-head-row h2, .final-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
  margin-bottom: 14px;
}
.section-head p { font-size: 17px; color: var(--muted); }
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; text-align: left; max-width: none; margin-bottom: 40px;
}
.section-head-row p { font-size: 17px; color: var(--muted); }
.scroll-controls { display: flex; gap: 8px; flex-shrink: 0; }
.scroll-controls .icon-btn { border: 1.5px solid var(--border); border-radius: 50%; width: 44px; height: 44px; }
.scroll-controls .icon-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--white); }

/* ---------------- Filters ---------------- */
.filters {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px; margin-bottom: 34px;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 17px; border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13.5px; font-weight: 700; color: var(--muted);
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.is-active { background: var(--black); border-color: var(--black); color: var(--white); }

/* ---------------- Product grid ---------------- */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  animation: cardIn 0.55s var(--ease) both;
  animation-delay: var(--d, 0ms);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.product-media {
  position: relative;
  background: var(--grey-bg);
  padding: 26px;
  overflow: hidden;
}
.product-media img {
  width: 100%; aspect-ratio: 1 / 0.92; object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.045); }
.product-tags {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 6px;
}
.product-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  background: var(--white); color: var(--black);
  border: 1px solid var(--border);
  padding: 4px 9px; border-radius: 999px;
}
.product-tag-blue { color: var(--blue); border-color: rgba(18, 107, 255, 0.3); }
.quick-add {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  transform: translateY(calc(100% + 20px));
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-md);
}
.product-card:hover .quick-add,
.product-card:focus-within .quick-add { transform: translateY(0); }
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-size: 17.5px; font-weight: 800; letter-spacing: -0.01em; }
.product-benefit { font-size: 14px; color: var(--muted); flex: 1; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.product-price { font-size: 19px; font-weight: 800; }
.color-select { display: flex; gap: 8px; }
.color-dot {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--border);
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.color-dot:hover { transform: scale(1.1); }
.color-dot.is-active { border-color: var(--blue); }
.color-dot.is-active::after {
  content: ""; position: absolute; inset: -6px;
  border: 1.5px solid rgba(18, 107, 255, 0.35); border-radius: 50%;
}
.color-dot[data-color="White"] { background: #fff; box-shadow: inset 0 0 0 1px var(--border); }
.color-dot[data-color="Black"] { background: var(--black); }
.view-product {
  font-size: 14px; font-weight: 700; color: var(--blue);
  text-decoration: none; background: none; border: none;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0; margin-top: 4px;
}
.view-product:hover { text-decoration: underline; }

/* ---------------- Goal cards ---------------- */
.goal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.goal-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.goal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.goal-visual {
  display: grid; place-items: center;
  padding: 34px 20px 10px; min-height: 250px;
  overflow: hidden;
}
.goal-visual img { transition: transform 0.5s var(--ease); }
.goal-card:hover .goal-visual img { transform: scale(1.05) translateY(-4px); }
.goal-visual-reviews { background: linear-gradient(180deg, #eef4ff, var(--grey-bg)); }
.goal-visual-social { background: linear-gradient(180deg, #f2f2f5, var(--grey-bg)); }
.goal-visual-share { background: linear-gradient(180deg, #eef4ff, var(--grey-bg)); }
.goal-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.goal-body h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; }
.goal-body p { color: var(--muted); font-size: 15px; flex: 1; }
.goal-body .btn { align-self: flex-start; margin-top: 6px; }

/* ---------------- Steps ---------------- */
.steps {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.steps-line {
  position: absolute; top: 26px; left: 12%; right: 12%;
  height: 2px; background: var(--border);
  border-radius: 2px;
}
.steps-dot {
  position: absolute; top: 50%; left: 0;
  width: 14px; height: 14px; margin-top: -7px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(18, 107, 255, 0.16);
  transition: left 0.2s linear;
}
.step { text-align: center; padding: 0 12px; position: relative; }
.step-num {
  position: relative; z-index: 1;
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  font-weight: 800; font-size: 19px;
  margin-bottom: 20px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.step.is-passed .step-num { border-color: var(--blue); color: var(--blue); }
.step h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 15px; max-width: 30ch; margin-inline: auto; }

/* ---------------- Tap demo ---------------- */
.tap-demo-section { background: var(--grey-bg); border-block: 1px solid var(--border); }
.tap-demo-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: center; gap: 48px;
}
.tap-demo-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800; letter-spacing: -0.025em; margin-bottom: 14px;
}
.tap-demo-copy > p { font-size: 17px; color: var(--muted); margin-bottom: 24px; }
.tick-list li {
  display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 15.5px;
  padding: 7px 0;
}
.tick-list li::before {
  content: ""; width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: rgba(18, 107, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23126BFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4L18 8'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}

.tap-demo-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.tap-demo-product { position: relative; z-index: 1; }
.tap-pulse {
  position: absolute; top: 26%; left: 50%;
  width: 18px; height: 18px; margin-left: -9px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transform: scale(0.4);
}
.tap-stage-2 .tap-pulse, .tap-stage-3 .tap-pulse, .tap-stage-4 .tap-pulse {
  animation: tapPulse 1.4s var(--ease) infinite;
}
@keyframes tapPulse {
  0% { opacity: 0.85; transform: scale(0.4); }
  70% { opacity: 0; transform: scale(2.6); }
  100% { opacity: 0; transform: scale(2.6); }
}

.tap-demo-phone {
  position: absolute; right: 2%; top: 50%;
  transform: translate(46%, -50%) rotate(8deg);
  transition: transform 0.7s var(--ease);
  z-index: 2;
}
.tap-stage-2 .tap-demo-phone,
.tap-stage-3 .tap-demo-phone,
.tap-stage-4 .tap-demo-phone {
  transform: translate(-12%, -50%) rotate(0deg);
}
.phone-frame {
  width: 172px; height: 348px;
  background: var(--black);
  border-radius: 30px;
  padding: 9px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-notch {
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 62px; height: 15px; background: var(--black); border-radius: 9px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #101318;
  border-radius: 22px;
  overflow: hidden; position: relative;
}
.phone-state {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.phone-state-idle { opacity: 1; }
.phone-clock { color: #e8ebf0; font-size: 34px; font-weight: 700; letter-spacing: 0.02em; }
.phone-state-page { background: var(--white); padding: 20px 14px; justify-content: flex-start; }
.phone-page-bar {
  width: 100%; height: 22px; background: var(--grey-bg);
  border-radius: 7px; margin: 18px 0 22px;
  display: flex; align-items: center; padding: 0 8px;
}
.phone-page-bar span { width: 60%; height: 6px; background: var(--border); border-radius: 3px; }
.phone-page-title { font-size: 13.5px; font-weight: 800; color: var(--black); }
.phone-stars { color: var(--blue); font-size: 0; letter-spacing: 3px; }
.phone-stars::before { content: "\2605\2605\2605\2605\2605"; font-size: 17px; }
.phone-btn-mock {
  margin-top: 14px;
  background: var(--blue); color: var(--white);
  font-size: 12px; font-weight: 800;
  padding: 9px 18px; border-radius: 9px;
}
.phone-state-success { background: var(--blue); }
.phone-check {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid; place-items: center;
}
.phone-state-success p { color: var(--white); font-weight: 800; font-size: 15px; }

.tap-stage-3 .phone-state-idle { opacity: 0; }
.tap-stage-3 .phone-state-page { opacity: 1; }
.tap-stage-4 .phone-state-idle,
.tap-stage-4 .phone-state-page { opacity: 0; }
.tap-stage-4 .phone-state-success { opacity: 1; }

.tap-demo-stage.is-resetting .tap-demo-phone,
.tap-demo-stage.is-resetting .phone-state { transition: none; }
.tap-demo-eyebrow { margin-bottom: 22px; }
.tap-demo-copy h2 { max-width: 10ch; }
.tap-demo-copy > p { max-width: 46ch; }
.tap-demo-stage::before {
  content: "";
  position: absolute;
  width: min(80%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 99, 229, 0.1) 0, rgba(11, 99, 229, 0.025) 48%, transparent 72%);
  filter: blur(2px);
}
.tap-demo-flow {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 42px auto 42px auto;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #8993a2;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.1);
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tap-demo-flow i { height: 1px; background: #d7dce3; }
.tap-demo-flow span { transition: color 0.3s var(--ease); }
.tap-stage-2 .tap-flow-tap,
.tap-stage-3 .tap-flow-tap,
.tap-stage-3 .tap-flow-open,
.tap-stage-4 .tap-flow-tap,
.tap-stage-4 .tap-flow-open,
.tap-stage-4 .tap-flow-done { color: var(--blue); }

/* ---------------- Bundles ---------------- */
.bundle-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch;
}
.bundle-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.bundle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bundle-featured { border-color: var(--blue); box-shadow: 0 10px 34px rgba(18, 107, 255, 0.14); }
.bundle-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--blue); color: var(--white);
  font-size: 12px; font-weight: 800; letter-spacing: 0.05em;
  padding: 5px 13px; border-radius: 999px;
}
.bundle-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; }
.bundle-tagline { color: var(--muted); font-size: 14.5px; margin: 6px 0 18px; }
.bundle-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.bundle-price .price { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.price-was { font-size: 14px; font-weight: 700; color: var(--muted); text-decoration: line-through; }
.bundle-card ul { flex: 1; margin-bottom: 24px; }
.bundle-card ul li {
  padding: 7px 0 7px 28px;
  font-size: 14.5px; font-weight: 600;
  border-bottom: 1px solid var(--grey-bg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23126BFF' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") no-repeat left center / 16px;
}
.bundle-card ul li:last-child { border-bottom: 0; }

.form-success {
  margin-top: 14px;
  font-size: 14.5px; font-weight: 700; color: #22c07c;
}

/* ---------------- Use cases ---------------- */
.use-cases-track {
  display: flex; gap: 18px;
  overflow-x: auto;
  padding: 4px max(calc((100% - 1200px) / 2 + 20px), 20px) 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.uc-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--grey-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.uc-card:hover { transform: translateY(-4px); border-color: var(--blue); background: var(--white); }
.uc-icon {
  display: inline-grid; place-items: center;
  width: 54px; height: 54px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  margin-bottom: 18px;
}
.uc-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.uc-card p { font-size: 14px; color: var(--muted); }

/* ---------------- Reviews ---------------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--blue); font-size: 15px; letter-spacing: 3px; }
.review-card p { font-size: 15.5px; font-weight: 600; line-height: 1.65; flex: 1; }
.review-card footer { display: flex; flex-direction: column; gap: 2px; }
.review-card footer strong { font-size: 15px; }
.review-card footer span { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ---------------- Final CTA ---------------- */
.final-cta { overflow: hidden; }
.final-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: center; gap: 40px;
}
.final-copy > p { font-size: 18px; color: var(--muted); margin-bottom: 30px; max-width: 44ch; }
.final-visual { position: relative; height: 400px; }
.final-visual .hero-layer { width: 320px; height: 370px; }

/* ---------------- Footer ---------------- */
.footer {
  background: var(--black); color: var(--white);
  padding: 72px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1c1f24;
}
.footer-logo {
  display: inline-flex;
  padding: 9px 12px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
}
.logo-crop-footer { width: 180px; }
.footer-brand p { color: #9aa1ac; font-size: 14.5px; max-width: 34ch; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid #23262c; border-radius: 12px;
  color: #9aa1ac;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer-social a:hover { color: var(--white); border-color: var(--blue); }
.footer-col h4 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: #9aa1ac;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: #d3d7de; font-size: 14.5px; font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--blue); }
.footer-newsletter p { color: #9aa1ac; font-size: 14.5px; margin-bottom: 16px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1; min-width: 0;
  background: #111318;
  border: 1.5px solid #23262c;
  border-radius: 12px;
  color: var(--white);
  font: inherit; font-size: 14px;
  padding: 11px 14px;
  transition: border-color 0.25s var(--ease);
}
.footer-newsletter input:focus { outline: none; border-color: var(--blue); }
.footer-newsletter .btn { padding: 11px 15px; flex-shrink: 0; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 28px;
}
.footer-bottom p { color: #626A76; font-size: 13.5px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  color: #9aa1ac; font-size: 13.5px; font-weight: 600; text-decoration: none;
}
.footer-legal a:hover { color: var(--white); }

/* ---------------- Quick view modal ---------------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(8, 9, 11, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(880px, 100%);
  max-height: min(680px, calc(100vh - 40px));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--ease);
}
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--white); box-shadow: var(--shadow-sm);
}
.qv-gallery {
  background: var(--grey-bg);
  padding: 34px 28px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; justify-content: center;
}
.qv-image { width: 100%; aspect-ratio: 1; display: grid; place-items: center; }
.qv-image img { width: 100%; height: 100%; max-height: 380px; object-fit: contain; }
.qv-thumbs {
  display: flex; gap: 10px; width: 100%;
  overflow-x: auto; padding: 2px 2px 6px;
  scrollbar-width: thin;
}
.qv-thumb {
  width: 58px; height: 58px; padding: 6px; flex: 0 0 58px;
  background: var(--white);
  border: 2px solid var(--border); border-radius: 12px;
  transition: border-color 0.25s var(--ease);
}
.qv-thumb img { width: 100%; height: 100%; object-fit: contain; }
.qv-thumb.is-active, .qv-thumb:hover { border-color: var(--blue); }
.qv-details {
  padding: 38px 32px 30px;
  display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto;
}
.qv-details h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.qv-benefit { color: var(--muted); font-size: 15px; }
.qv-price { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.qv-row { display: flex; align-items: center; gap: 16px; }
.qv-label { font-size: 13.5px; font-weight: 800; color: var(--muted); min-width: 70px; }
.qty-control {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 12px;
  overflow: hidden;
}
.qty-control button {
  width: 38px; height: 38px;
  font-size: 18px; font-weight: 700;
  transition: background 0.2s var(--ease);
}
.qty-control button:hover { background: var(--grey-bg); }
.qty-control span { min-width: 34px; text-align: center; font-weight: 800; }
.qv-specs { border-top: 1px solid var(--border); padding-top: 14px; }
.qv-specs li { font-size: 14px; color: var(--muted); padding: 4px 0; }
.qv-specs strong { color: var(--black); }
.qv-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.qv-faq-bot {
  width: 100%;
  color: var(--blue);
  font-size: 14px; font-weight: 700;
  text-align: center;
}
.qv-faq-bot:hover { text-decoration: underline; }

/* ---------------- Search ---------------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 260;
  background: rgba(8, 9, 11, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 90px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-panel {
  width: min(620px, 100%); margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(-14px);
  transition: transform 0.35s var(--ease);
}
.search-overlay.is-open .search-panel { transform: translateY(0); }
.search-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.search-bar input {
  flex: 1; border: none; outline: none;
  font: inherit; font-size: 17px; font-weight: 600;
}
.search-results { max-height: 380px; overflow-y: auto; padding: 10px; }
.search-result {
  width: 100%;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: left;
  transition: background 0.2s var(--ease);
}
.search-result:hover { background: var(--grey-bg); }
.search-result img {
  width: 52px; height: 52px; object-fit: contain;
  background: var(--grey-bg); border-radius: 10px; padding: 6px;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-info strong { display: block; font-size: 15px; }
.search-result-info span { font-size: 13px; color: var(--muted); font-weight: 600; }
.search-result-price { font-weight: 800; font-size: 15px; }
.search-hint { padding: 26px; text-align: center; color: var(--muted); font-size: 14.5px; font-weight: 600; }

/* ---------------- Cart ---------------- */
.cart-backdrop {
  position: fixed; inset: 0; z-index: 270;
  background: rgba(8, 9, 11, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 280;
  width: min(440px, 100%);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(103%);
  transition: transform 0.45s var(--ease);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-size: 19px; font-weight: 800; }
.cart-head span { color: var(--muted); font-weight: 700; font-size: 15px; }
.cart-progress { padding: 16px 22px 0; }
.cart-progress p { font-size: 13.5px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.cart-progress p strong { color: var(--blue); }
.progress-track {
  height: 6px; background: var(--grey-bg);
  border-radius: 4px; overflow: hidden;
}
.progress-fill {
  display: block; height: 100%; width: 0;
  background: var(--blue); border-radius: 4px;
  transition: width 0.5s var(--ease);
}
.cart-items { flex: 1; overflow-y: auto; padding: 14px 22px; }
.cart-item {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-bg);
}
.cart-item img {
  width: 74px; height: 74px; object-fit: contain;
  background: var(--grey-bg); border-radius: 14px; padding: 8px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.cart-item-info strong { font-size: 14.5px; line-height: 1.35; }
.cart-item-info .cart-item-variant { font-size: 12.5px; color: var(--muted); font-weight: 700; }
.cart-item-info .cart-item-price { font-size: 14.5px; font-weight: 800; margin-top: 3px; }
.cart-item-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item .qty-control button { width: 30px; height: 30px; font-size: 15px; }
.cart-item .qty-control span { min-width: 26px; font-size: 14px; }
.cart-remove {
  font-size: 12.5px; font-weight: 700; color: var(--muted);
  text-decoration: underline;
  transition: color 0.2s var(--ease);
}
.cart-remove:hover { color: #d43a3a; }
.cart-empty {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 30px; text-align: center;
}
.cart-empty p { font-size: 18px; font-weight: 800; margin-top: 8px; }
.cart-empty span { font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.cart-foot {
  border-top: 1px solid var(--border);
  padding: 16px 22px 20px;
}
.cart-delivery { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.delivery-option {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s var(--ease);
}
.delivery-option:has(input:checked) { border-color: var(--blue); }
.delivery-option input { accent-color: var(--blue); }
.delivery-option span { flex: 1; }
.delivery-option strong { color: var(--muted); font-size: 13.5px; }
.delivery-option.is-free strong { color: #0fa958; }
.cart-totals { margin-bottom: 14px; }
.cart-totals > div {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 3px 0;
}
.cart-totals span { color: var(--muted); font-weight: 600; }
.cart-total-row { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 10px !important; }
.cart-total-row span, .cart-total-row strong { font-size: 16.5px; font-weight: 800; color: var(--black); }
.cart-continue {
  width: 100%; text-align: center;
  margin-top: 12px;
  font-size: 14px; font-weight: 700; color: var(--muted);
  text-decoration: underline;
}
.cart-continue:hover { color: var(--black); }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 290;
  transform: translate(-50%, 16px);
  background: var(--black); color: var(--white);
  font-size: 14.5px; font-weight: 700;
  padding: 13px 22px;
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------------- On-site FAQ assistant ---------------- */
.faq-bot-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 310;
  min-width: 94px; height: 58px; padding: 0 17px 0 10px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 18px;
  background: var(--blue); color: var(--white);
  box-shadow: 0 12px 30px rgba(11, 99, 229, 0.28);
  opacity: 0; transform: translateY(16px) scale(0.94);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), background 0.25s var(--ease);
}
.faq-bot-fab-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.faq-bot-fab-icon svg { display: block; }
.faq-bot-fab-label { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; }
.faq-bot-fab.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.faq-bot-fab:hover { background: var(--blue-dark); transform: translateY(-2px); }

.faq-bot-panel {
  position: fixed; right: 22px; bottom: 92px; z-index: 310;
  width: min(400px, calc(100% - 32px));
  max-height: min(620px, calc(100dvh - 120px));
  display: flex; flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(11, 18, 32, 0.18);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.26s var(--ease), transform 0.26s var(--ease);
}
.faq-bot-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.faq-bot-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 16px 15px 18px;
  border-bottom: 1px solid var(--border);
}
.faq-bot-head > div { display: flex; align-items: center; gap: 11px; }
.faq-bot-head strong { display: block; font-size: 15px; }
.faq-bot-head small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 1px; }
.faq-bot-status {
  width: 9px; height: 9px; flex: 0 0 9px;
  border-radius: 50%; background: #22a765;
  box-shadow: 0 0 0 4px rgba(34, 167, 101, 0.12);
}
.faq-bot-messages {
  min-height: 190px; flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto;
  padding: 18px;
  background: #f4f6f8;
}
.faq-bot-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 13.5px; line-height: 1.55;
}
.faq-bot-message.is-bot {
  align-self: flex-start;
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  background: var(--white);
}
.faq-bot-message.is-user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: var(--blue); color: var(--white);
}
.faq-bot-suggestions {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  padding: 14px;
  border-top: 1px solid var(--border);
  scrollbar-width: thin;
}
.faq-bot-suggestions button {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cdd5df;
  border-radius: 14px;
  color: #4f5968; background: var(--white);
  font-size: 12px; font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.faq-bot-suggestions button:hover,
.faq-bot-suggestions button:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(18, 107, 255, 0.045);
}

/* ---------------- Reveal animations ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .product-grid, .goal-grid, .review-grid, .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { height: 460px; margin-top: 10px; }
  .tap-demo-grid { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; }
  .final-visual { height: 360px; }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .hero { padding: 130px 0 50px; }
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .lede { font-size: 17px; }
  .btn-nav { display: none; }
  .logo-crop-nav { width: 136px; }
  .nav-wrap.is-compact .logo-crop-nav { width: 126px; }
  .product-grid, .goal-grid, .review-grid, .bundle-grid { grid-template-columns: 1fr; }
  .bundle-featured { order: -1; }
  .trust-items { justify-content: flex-start; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps-line {
    top: 0; bottom: 0; left: 25px; right: auto;
    width: 2px; height: auto;
  }
  .steps-dot { left: 50% !important; top: var(--p, 0%); margin: -7px 0 0 -7px; transition: top 0.2s linear; }
  .step { text-align: left; padding-left: 64px; }
  .step-num { position: absolute; left: 0; top: 0; }
  .step p { margin-inline: 0; }
  .hero-stage { height: 400px; }
  .hero-layer { width: 300px; height: 350px; }
  .hero-layer[data-slot="back-left"] { left: 18%; top: 28%; --hero-scale: 0.56; }
  .hero-layer[data-slot="back-right"] { left: 82%; top: 72%; --hero-scale: 0.52; }
  .tap-demo-stage { min-height: 380px; transform: scale(0.86); transform-origin: center; }
  .modal { grid-template-columns: 1fr; max-height: calc(100dvh - 24px); overflow-y: auto; }
  .qv-gallery { padding: 40px 20px 16px; }
  .qv-image img { max-height: 230px; }
  .qv-details { padding: 22px 20px 20px; overflow: visible; }
  .qv-actions {
    position: sticky; bottom: 0;
    background: var(--white);
    padding: 12px 0 4px;
    margin: 0 0 -4px;
  }
  .cart-drawer { width: 100%; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .filters { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .final-visual { height: 300px; }
  .final-visual .hero-layer { width: 260px; height: 300px; }
  .faq-bot-fab { right: 16px; bottom: 16px; height: 54px; padding: 0 14px 0 9px; border-radius: 16px; }
  .faq-bot-fab-icon { width: 22px; height: 22px; flex-basis: 22px; }
  .faq-bot-panel {
    right: 16px; bottom: 80px;
    width: calc(100% - 32px);
    max-height: min(620px, calc(100dvh - 102px));
    border-radius: 16px;
  }
  .search-overlay { padding-top: 70px; }
}

/* Touch devices: keep Quick Add reachable without hover */
@media (hover: none) {
  .quick-add { transform: translateY(0); }
}

/* ---------------- Reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-layer, .tap-demo-phone { transition: none !important; }
  .loader { display: none; }
}

/* ---------------- Product and cart pages ---------------- */
.inner-page-body { background: var(--white); }
.page-nav-wrap { top: 14px; }
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px; color: var(--muted); font-size: 13.5px; font-weight: 700;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.product-page-section { padding: 132px 0 88px; }
.product-page-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(42px, 6vw, 80px); align-items: start;
}
.product-page-gallery { min-width: 0; }
.product-page-main-image {
  display: grid; place-items: center;
  min-height: 560px; padding: 34px;
  background: var(--grey-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.product-page-main-image img { width: 100%; height: 100%; max-height: 520px; object-fit: contain; }
.product-page-thumbs {
  display: flex; gap: 10px; margin-top: 14px; padding: 2px 2px 7px;
  overflow-x: auto; scrollbar-width: thin;
}
.product-page-thumb {
  width: 78px; height: 78px; padding: 7px; flex: 0 0 78px;
  display: grid; place-items: center;
  background: var(--white); border: 2px solid var(--border); border-radius: 13px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.product-page-thumb:hover { transform: translateY(-2px); border-color: #9fbfff; }
.product-page-thumb.is-active { border-color: var(--blue); }
.product-page-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-page-details { padding-top: 12px; }
.product-page-details .eyebrow { margin-bottom: 16px; }
.product-page-details h1 {
  font-size: clamp(36px, 4.2vw, 54px); line-height: 1.04;
  letter-spacing: -0.035em; margin-bottom: 18px;
}
.product-page-lede { color: var(--muted); font-size: 18px; line-height: 1.7; margin-bottom: 20px; }
.product-page-price { font-size: 31px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 24px; }
.product-page-features { padding-block: 18px; border-block: 1px solid var(--border); margin-bottom: 24px; }
.product-page-features li {
  padding: 6px 0 6px 27px; font-size: 14.5px; font-weight: 650;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23126BFF' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") no-repeat left center / 16px;
}
.product-page-option { display: flex; align-items: center; gap: 22px; margin: 18px 0; }
.product-page-option > strong { width: 74px; color: var(--muted); font-size: 13.5px; }
.product-page-actions { display: flex; gap: 12px; margin-top: 28px; }
.product-page-actions .btn { flex: 1; }
.product-page-delivery { margin-top: 18px; color: var(--muted); font-size: 13.5px; text-align: center; }
.product-page-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-page-benefits article {
  padding: 28px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
}
.product-page-benefits strong { display: block; margin-bottom: 8px; font-size: 18px; }
.product-page-benefits p { color: var(--muted); font-size: 14.5px; }
.footer-grid-compact { grid-template-columns: minmax(260px, 1.7fr) 1fr 1fr; }

.cart-page-section { min-height: 70vh; padding: 142px 0 96px; background: var(--grey-bg); }
.cart-page-heading { margin-bottom: 38px; }
.cart-page-heading .eyebrow { margin-bottom: 14px; }
.cart-page-heading h1 { font-size: clamp(38px, 5vw, 58px); letter-spacing: -0.035em; margin-bottom: 10px; }
.cart-page-heading > p:last-child { color: var(--muted); font-size: 17px; }
.cart-page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 30px; align-items: start; }
.cart-page-layout[hidden] { display: none; }
.cart-page-items { display: flex; flex-direction: column; gap: 14px; }
.cart-page-item {
  display: grid; grid-template-columns: 112px minmax(0, 1fr) auto auto;
  gap: 18px; align-items: center; padding: 18px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
}
.cart-page-item-image { width: 112px; height: 112px; padding: 7px; background: var(--grey-bg); border-radius: 12px; }
.cart-page-item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-page-item-copy { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.cart-page-item-copy a { color: var(--black); text-decoration: none; }
.cart-page-item-copy a:hover { color: var(--blue); }
.cart-page-item-copy strong { font-size: 17px; }
.cart-page-item-copy span { color: var(--muted); font-size: 13.5px; }
.cart-page-item-actions { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.cart-page-remove { color: #b83434; font-size: 12.5px; font-weight: 750; }
.cart-page-line-total { min-width: 74px; text-align: right; font-size: 17px; }
.cart-page-summary {
  position: sticky; top: 94px;
  padding: 26px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.cart-page-summary h2 { font-size: 22px; margin-bottom: 20px; }
.cart-page-delivery-options { display: flex; flex-direction: column; gap: 10px; }
.cart-page-delivery-options label {
  display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center;
  padding: 13px; border: 1.5px solid var(--border); border-radius: 12px; cursor: pointer;
}
.cart-page-delivery-options input { accent-color: var(--blue); }
.cart-page-delivery-options span { display: flex; flex-direction: column; gap: 2px; }
.cart-page-delivery-options strong { font-size: 13.5px; }
.cart-page-delivery-options small { color: var(--muted); font-size: 11.5px; }
.cart-page-delivery-options b { font-size: 13px; }
.cart-page-delivery-note { margin: 14px 0; padding: 10px 12px; color: var(--blue); background: rgba(18, 107, 255, 0.08); border-radius: 10px; font-size: 13px; font-weight: 750; }
.cart-page-totals { border-top: 1px solid var(--border); padding-top: 14px; margin-bottom: 20px; }
.cart-page-totals > div { display: flex; justify-content: space-between; gap: 18px; padding: 6px 0; color: var(--muted); font-size: 14px; }
.cart-page-totals strong { color: var(--black); }
.cart-page-totals .cart-page-grand-total { margin-top: 7px; padding-top: 13px; border-top: 1px solid var(--border); color: var(--black); font-size: 18px; }
.cart-page-continue { display: block; margin-top: 14px; color: var(--blue); text-align: center; text-decoration: none; font-size: 14px; font-weight: 750; }
.cart-page-note { margin-top: 18px; color: var(--muted); font-size: 11.5px; line-height: 1.55; text-align: center; }
.cart-page-empty {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 620px; margin: 30px auto 0; padding: 64px 30px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
}
.cart-page-empty[hidden] { display: none; }
.cart-page-empty svg { color: #b9c0cb; margin-bottom: 20px; }
.cart-page-empty h2 { font-size: 26px; margin-bottom: 9px; }
.cart-page-empty p { color: var(--muted); margin-bottom: 24px; }

@media (max-width: 960px) {
  .product-page-grid { grid-template-columns: 1fr; }
  .product-page-main-image { min-height: 500px; }
  .cart-page-layout { grid-template-columns: 1fr; }
  .cart-page-summary { position: static; }
}

@media (max-width: 680px) {
  .product-page-section { padding: 116px 0 64px; }
  .breadcrumb { margin-bottom: 22px; }
  .product-page-main-image { min-height: 340px; padding: 18px; }
  .product-page-main-image img { max-height: 315px; }
  .product-page-thumb { width: 66px; height: 66px; flex-basis: 66px; }
  .product-page-details { padding-top: 0; }
  .product-page-lede { font-size: 16px; }
  .product-page-actions { flex-direction: column; }
  .product-page-benefits { grid-template-columns: 1fr; }
  .footer-grid-compact { grid-template-columns: 1fr; }
  .cart-page-section { padding: 120px 0 70px; }
  .cart-page-item { grid-template-columns: 82px minmax(0, 1fr) auto; gap: 12px; padding: 14px; }
  .cart-page-item-image { width: 82px; height: 82px; }
  .cart-page-item-actions { grid-column: 2; align-items: flex-start; flex-direction: row; }
  .cart-page-line-total { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
  .cart-page-summary { padding: 20px; }
}

/* ============================================================
   Premium storefront refinement
   A quieter, more editorial system with restrained accent use.
   ============================================================ */

:root {
  --black: #0b1220;
  --blue: #0b63e5;
  --blue-dark: #084cae;
  --white: #ffffff;
  --grey-bg: #f6f7f9;
  --border: #dfe3e8;
  --muted: #5d6674;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.04);
  --shadow-md: 0 12px 30px rgba(11, 18, 32, 0.07);
  --shadow-lg: 0 24px 60px rgba(11, 18, 32, 0.11);
  --radius: 8px;
  --radius-lg: 12px;
  --nav-h: 76px;
}

body {
  color: var(--black);
  font-size: 16px;
  letter-spacing: -0.006em;
}

.container { width: min(1240px, 100% - 64px); }
.container-narrow { width: min(840px, 100% - 64px); }

/* Labels become editorial kickers instead of rounded badges. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin-bottom: 28px;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

/* Sharper controls and lower-key interaction. */
.btn {
  min-height: 46px;
  padding: 12px 22px;
  border-width: 1px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.btn-lg {
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 5px;
  font-size: 15px;
}

.btn-primary { box-shadow: none; }
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: none;
  transform: translateY(-1px);
}
.btn-dark:hover { background: #182131; transform: translateY(-1px); }
.btn-ghost,
.btn-outline { border-color: #cbd1d9; }
.btn-ghost:hover,
.btn-outline:hover { border-color: var(--black); color: var(--black); background: transparent; }

.icon-btn { border-radius: 5px; }
.icon-btn:hover { background: #eef0f3; }

/* Premium floating navigation with restrained glass and shadow. */
.nav-wrap {
  top: 14px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-wrap.is-compact { top: 10px; }

.nav,
.nav-wrap.is-compact .nav {
  width: min(1240px, 100% - 64px);
  height: var(--nav-h);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  column-gap: 20px;
  align-items: center;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(213, 219, 226, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 34px rgba(11, 18, 32, 0.09);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.nav-wrap.is-compact .nav {
  width: min(1120px, 100% - 64px);
  height: 62px;
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.08);
}
.nav-logo { justify-self: start; }
.nav-links {
  justify-self: center;
  gap: 0;
  margin-left: 0;
}
.nav-actions {
  justify-self: end;
  margin-left: 0;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 0;
  color: #4f5968;
  font-size: 13px;
  font-weight: 700;
}
.nav-links a:hover { color: var(--black); background: transparent; }
.nav-links a::after {
  left: 50%;
  right: auto;
  bottom: -6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-links a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.nav-wrap.is-compact .nav-links a::after { bottom: -3px; }
.cart-count { border-radius: 2px; }
.mobile-menu {
  width: min(1240px, 100% - 32px);
  margin-top: 8px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

/* Hero: clean composition, stronger hierarchy, no decorative gradient wash. */
.hero {
  padding: 176px 0 100px;
  background: var(--white);
}
.hero-grid { grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1.04fr); gap: 72px; }
.hero-copy { max-width: 650px; }
.hero h1 {
  max-width: 11ch;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.25vw, 72px);
  font-weight: 750;
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.lede {
  max-width: 48ch;
  margin-bottom: 36px;
  color: #536071;
  font-size: 18px;
  line-height: 1.72;
}
.hero-ctas { gap: 12px; margin-bottom: 28px; }
.trust-line {
  gap: 10px;
  color: #687282;
  font-size: 13px;
  font-weight: 650;
}
.hero-stage { height: 540px; }
.hero-layer img { filter: drop-shadow(0 28px 36px rgba(11, 18, 32, 0.11)); }

/* Trust information reads like a specification strip. */
.trust-strip { padding: 0; background: var(--white); }
.trust-items { gap: 0; flex-wrap: nowrap; }
.trust-item {
  flex: 1;
  min-height: 86px;
  justify-content: center;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}
.trust-item:first-child { border-left: 1px solid var(--border); }

/* Section rhythm and type hierarchy. */
.section { padding: 120px 0; }
.section-grey { background: var(--grey-bg); }
.section-head { max-width: 700px; margin-bottom: 58px; }
.section-head h2,
.section-head-row h2,
.final-copy h2,
.tap-demo-copy h2 {
  margin-bottom: 17px;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.section-head p,
.section-head-row p,
.tap-demo-copy > p { color: #687282; font-size: 16px; line-height: 1.75; }

/* Filters resemble compact segmented controls, not floating chips. */
.filters {
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  padding-block: 14px;
  border-block: 1px solid var(--border);
}
.filter-group { gap: 2px; }
.chip {
  padding: 8px 13px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #687282;
  font-size: 12px;
  font-weight: 750;
}
.chip:hover { color: var(--black); background: #eceff2; }
.chip.is-active { background: var(--black); color: var(--white); }

/* Commerce cards: cleaner product focus, thinner frames, restrained motion. */
.product-grid,
.goal-grid,
.bundle-grid,
.review-grid { gap: 24px; }
.product-card,
.goal-card,
.bundle-card,
.review-card,
.uc-card,
.product-page-benefits article,
.cart-page-item,
.cart-page-summary,
.cart-page-empty {
  border-width: 1px;
  border-radius: var(--radius);
}
.product-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: none;
}
.product-media {
  padding: 0;
  border-radius: 14px;
  background: transparent;
}
.product-image-link,
.product-name a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-image-link { overflow: hidden; border-radius: 14px; }
.product-media img { border-radius: 14px; }
.product-card:hover .product-media img { transform: scale(1.02); }
.product-tags { top: 16px; left: 16px; }
.product-tag {
  padding: 5px 8px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.product-tag-blue { color: var(--blue); }
.quick-add { left: 16px; right: 16px; bottom: 16px; box-shadow: none; }
.product-body { padding: 23px 2px 0; gap: 9px; }
.product-name { font-size: 18px; font-weight: 750; }
.product-benefit { color: #687282; line-height: 1.65; }
.product-price { font-size: 18px; font-weight: 800; }
.view-product { color: var(--black); font-size: 13px; }
.view-product:hover { color: var(--blue); text-decoration: none; }
.color-dot { width: 22px; height: 22px; }

/* Outcome cards feel like a catalogue feature, not dashboard tiles. */
.goal-card { border-color: var(--border); }
.goal-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.goal-visual { min-height: 280px; padding: 42px 24px 18px; }
.goal-visual-reviews,
.goal-visual-social,
.goal-visual-share { background: #eef1f4; }
.goal-card:hover .goal-visual img { transform: scale(1.02); }
.goal-body { padding: 28px; }
.goal-body h3 { font-size: 21px; font-weight: 750; }
.goal-body p { color: #687282; line-height: 1.7; }

/* Numbered process with crisp rules. */
.steps { gap: 44px; }
.steps-line { top: 23px; height: 1px; background: #cfd5dc; }
.steps-dot { width: 8px; height: 8px; margin-top: -4px; box-shadow: 0 0 0 4px var(--white); }
.step-num {
  width: 46px;
  height: 46px;
  border-width: 1px;
  border-radius: 4px;
  font-size: 14px;
}
.step h3 { margin-bottom: 10px; font-size: 19px; font-weight: 750; }
.step p { color: #687282; line-height: 1.7; }

.tap-demo-section { background: #f1f3f5; }
.tick-list li { padding: 9px 0; font-size: 14px; font-weight: 700; }
.tick-list li::before { border-radius: 3px; background-color: rgba(11, 99, 229, 0.08); }
.phone-frame { border-radius: 24px; box-shadow: 0 30px 70px rgba(11, 18, 32, 0.18); }
.phone-screen { border-radius: 17px; }

/* Bundles: one decisive dark feature card, minimal badging. */
.bundle-card { padding: 34px 30px; }
.bundle-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bundle-featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: none;
}
.bundle-featured .bundle-tagline,
.bundle-featured .price-was { color: #aeb8c6; }
.bundle-featured ul li { border-color: #253044; }
.bundle-badge {
  top: 18px;
  right: 20px;
  left: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #8fb9ff;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.bundle-card h3 { font-size: 22px; font-weight: 750; }
.bundle-price .price { font-size: 38px; font-weight: 750; }

/* Horizontal use cases and testimonials lose the app-card aesthetic. */
.use-cases-track { gap: 14px; padding-bottom: 26px; }
.uc-card { background: var(--white); padding: 28px; }
.uc-card:hover { transform: translateY(-2px); border-color: #c7cdd5; }
.uc-icon {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 4px;
  background: #eef1f4;
}
.uc-card h3 { font-weight: 750; }
.uc-card p { color: #687282; line-height: 1.7; }
.scroll-controls .icon-btn { width: 42px; height: 42px; border-width: 1px; border-radius: 4px; }

/* Two balanced rows keep the use cases moving without manual controls. */
.use-cases-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.use-cases-head > div { width: 100%; }
.use-cases-head p { margin-inline: auto; }
.use-cases-marquee {
  --marquee-gap: 14px;
  --marquee-half-gap: 7px;
  position: relative;
  display: grid;
  gap: 16px;
  width: 100%;
  overflow: hidden;
  padding: 6px 0 14px;
}
.use-cases-marquee::before,
.use-cases-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: max(42px, calc((100vw - 1240px) / 2));
  pointer-events: none;
}
.use-cases-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}
.use-cases-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}
.use-cases-row { overflow: hidden; padding-block: 6px; }
.use-cases-loop {
  display: flex;
  width: max-content;
  gap: var(--marquee-gap);
  will-change: transform;
  animation: useCasesForward 34s linear infinite;
}
.use-cases-row.is-reverse .use-cases-loop {
  animation-name: useCasesReverse;
}
.use-cases-set {
  display: flex;
  flex: none;
  gap: var(--marquee-gap);
}
.use-cases-marquee .uc-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  row-gap: 5px;
  flex: 0 0 340px;
  min-height: 142px;
  padding: 23px 24px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.use-cases-marquee .uc-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}
.use-cases-marquee .uc-icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 14px;
  background: #f1f4f7;
}
.use-cases-marquee .uc-card h3 {
  align-self: end;
  margin: 0;
  font-size: 17px;
}
.use-cases-marquee .uc-card p {
  line-height: 1.55;
}
.use-cases-marquee:hover .use-cases-loop,
.use-cases-marquee:focus-within .use-cases-loop {
  animation-play-state: paused;
}
@keyframes useCasesForward {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - var(--marquee-half-gap))); }
}
@keyframes useCasesReverse {
  from { transform: translateX(calc(-50% - var(--marquee-half-gap))); }
  to { transform: translateX(0); }
}

@media (max-width: 680px) {
  .use-cases-marquee { gap: 10px; }
  .use-cases-marquee::before,
  .use-cases-marquee::after { width: 28px; }
  .use-cases-marquee .uc-card {
    flex-basis: 300px;
    min-height: 138px;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .use-cases-row { overflow-x: auto; scrollbar-width: none; }
  .use-cases-loop { animation: none; transform: none; }
  .use-cases-set[aria-hidden="true"] { display: none; }
  .use-cases-marquee::before,
  .use-cases-marquee::after { display: none; }
}

.review-card {
  position: relative;
  padding: 34px 30px 30px;
  gap: 20px;
  box-shadow: none;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 24px;
  color: #d9dee5;
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.review-card p { font-weight: 550; line-height: 1.75; }

/* Footer and overlays use the same disciplined geometry. */
.footer { padding-top: 82px; background: #08101e; }
.footer-grid { gap: 48px; border-color: #202a3a; }
.footer-logo { padding: 8px 10px; border-radius: 4px; }
.footer-social a { border-radius: 4px; }
.footer-newsletter input { border-radius: 4px; }
.modal,
.search-panel { border-radius: 10px; }
.qv-gallery { background: #f1f3f5; }
.qv-thumb,
.search-result,
.search-result img,
.qty-control,
.delivery-option,
.cart-item img,
.toast { border-radius: 5px; }
.cart-drawer { box-shadow: -18px 0 50px rgba(11, 18, 32, 0.12); }
.faq-bot-fab { box-shadow: 0 12px 30px rgba(11, 99, 229, 0.24); }

/* Product and cart pages inherit the editorial storefront system. */
.page-nav-wrap { top: 14px; }
.product-page-section { padding: 154px 0 110px; }
.breadcrumb { margin-bottom: 40px; font-size: 12px; font-weight: 700; letter-spacing: 0.03em; }
.product-page-main-image {
  min-height: 590px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.product-page-main-image img { border-radius: 14px; }
.product-page-thumb {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.product-page-thumb img {
  border-radius: 8px;
  opacity: 0.62;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.product-page-thumb:hover img,
.product-page-thumb.is-active img {
  opacity: 1;
  transform: scale(1.025);
}
.product-page-details { padding-top: 20px; }
.product-page-details .eyebrow { margin-bottom: 24px; }
.product-page-details h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 750;
  letter-spacing: -0.05em;
}
.product-page-lede { color: #687282; line-height: 1.75; }
.product-page-price { font-size: 30px; font-weight: 750; }
.product-page-features li { font-weight: 600; }
.product-page-benefits article { padding: 30px; }
.product-page-benefits strong { font-weight: 750; }
.cart-page-section { padding: 158px 0 112px; background: #f3f5f7; }
.cart-page-heading h1 { font-weight: 750; letter-spacing: -0.05em; }
.cart-page-summary { box-shadow: none; }
.cart-page-delivery-note { border-radius: 4px; }
.tap-accent { color: var(--blue); }

@media (max-width: 1024px) {
  .container,
  .container-narrow,
  .nav,
  .nav-wrap.is-compact .nav { width: min(100% - 40px, 1240px); }
  .nav,
  .nav-wrap.is-compact .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { max-width: 12ch; }
  .trust-items { display: grid; grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--border); }
}

@media (max-width: 680px) {
  :root { --nav-h: 68px; }
  .container,
  .container-narrow,
  .nav,
  .nav-wrap.is-compact .nav { width: min(100% - 32px, 1240px); }
  .section { padding: 82px 0; }
  .hero { padding: 132px 0 68px; }
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(38px, 11.5vw, 52px);
    line-height: 1;
  }
  .eyebrow { margin-bottom: 22px; font-size: 10px; letter-spacing: 0.13em; }
  .eyebrow::before { width: 22px; }
  .lede { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-stage { height: 370px; }
  .trust-items { grid-template-columns: 1fr; }
  .trust-item {
    min-height: 66px;
    justify-content: flex-start;
    padding: 14px 16px;
    border-left: 1px solid var(--border);
  }
  .section-head { margin-bottom: 42px; }
  .section-head h2,
  .section-head-row h2,
  .final-copy h2,
  .tap-demo-copy h2 { font-size: clamp(32px, 9.5vw, 42px); }
  .filters { align-items: center; justify-content: center; overflow: visible; }
  .filter-group { flex-wrap: nowrap; width: auto; }
  .product-media { padding: 0; }
  .goal-visual { min-height: 240px; }
  .steps-line { top: 0; width: 1px; }
  .step-num { border-radius: 4px; }
  .bundle-card { padding: 30px 24px; }
  .bundle-badge { top: 16px; right: 16px; }
  .product-page-section { padding: 126px 0 74px; }
  .product-page-main-image { min-height: 350px; padding: 0; }
  .product-page-details h1 { font-size: clamp(38px, 11vw, 50px); }
  .cart-page-section { padding: 128px 0 78px; }
}

/* One consistent corner language for rectangular interface surfaces. */
:is(
  .skip-link,
  .btn,
  button:not(.color-dot),
  input:not([type="radio"]):not([type="checkbox"]),
  textarea,
  select,
  .nav,
  .mobile-menu,
  .mobile-menu a:not(.btn),
  .trust-line,
  .eyebrow,
  .chip,
  .product-card,
  .product-media,
  .product-image-link,
  .product-media img,
  .product-tag,
  .goal-card,
  .goal-visual,
  .step-num,
  .bundle-card,
  .bundle-badge,
  .uc-card,
  .uc-icon,
  .review-card,
  .footer-logo,
  .footer-social a,
  .search-panel,
  .search-result,
  .search-result img,
  .modal,
  .qv-thumb,
  .qv-image img,
  .cart-drawer,
  .cart-item,
  .cart-item img,
  .cart-empty-icon,
  .cart-count,
  .toast,
  .faq-bot-fab,
  .faq-bot-panel,
  .faq-bot-message,
  .faq-bot-suggestions button,
  .tap-demo-flow,
  .product-page-main-image img,
  .product-page-thumb img,
  .product-page-benefits article,
  .qty-control,
  .delivery-option,
  .cart-page-item,
  .cart-page-item-image,
  .cart-page-summary,
  .cart-page-delivery-note,
  .cart-page-empty
) {
  border-radius: 14px;
}

/* White canvas system: separation comes from structure, not tinted page bands. */
html,
body,
.inner-page-body,
main,
.section,
.section-grey,
.tap-demo-section,
.trust-strip,
.cart-page-section,
.footer {
  background: var(--white);
}
.section-grey,
.tap-demo-section,
.trust-strip { border-block: 0; }
.footer {
  color: var(--black);
  border-top: 0;
}
.footer-grid { border-color: var(--border); }
.footer-brand p,
.footer-newsletter p,
.footer-col h4,
.footer-bottom p,
.footer-legal a { color: #687282; }
.footer-col a { color: #2f3947; }
.footer-social a {
  color: #687282;
  border-color: var(--border);
}
.footer-social a:hover,
.footer-legal a:hover { color: var(--blue); }
.footer-newsletter input {
  color: var(--black);
  background: var(--white);
  border-color: var(--border);
}
.qv-gallery,
.faq-bot-messages,
.cart-page-item-image,
.search-result img {
  background: var(--white);
}
.qv-gallery { border-right: 1px solid var(--border); }
.cart-page-item-image,
.search-result img { border: 1px solid var(--border); }

@media (max-width: 680px) {
  .qv-gallery {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

/* Mobile navigation opens as one attached floating surface. */
@media (max-width: 1024px) {
  .nav-wrap .mobile-menu {
    width: min(100% - 40px, 1240px);
  }
  .nav-wrap.is-menu-open .nav,
  .nav-wrap.is-menu-open.is-compact .nav {
    border-bottom-color: transparent;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 10px 24px rgba(11, 18, 32, 0.07);
  }
  .nav-wrap.is-menu-open .mobile-menu {
    margin-top: -1px;
    border-top: 0;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 20px 42px rgba(11, 18, 32, 0.13);
  }
}

@media (max-width: 680px) {
  .nav-wrap .mobile-menu {
    width: min(100% - 32px, 1240px);
  }
}

/* Final navbar sizing and motion pass across every storefront page. */
.nav,
.nav-wrap.is-compact .nav {
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  padding-inline: 20px 16px;
  column-gap: 22px;
  transition:
    width 0.38s var(--ease),
    height 0.38s var(--ease),
    border-color 0.3s var(--ease),
    border-radius 0.3s var(--ease),
    background-color 0.3s var(--ease),
    box-shadow 0.38s var(--ease);
}
.nav-logo {
  display: grid;
  align-items: center;
  justify-self: start;
  height: 100%;
  min-width: 0;
}
.logo-crop-nav {
  width: 174px;
  transition: width 0.38s var(--ease);
}
.nav-wrap.is-compact .logo-crop-nav { width: 156px; }
.nav-links { align-items: center; gap: 2px; }
.nav-links a {
  padding-inline: 13px;
  font-size: 13.5px;
  line-height: 1.6;
}
.nav-actions { gap: 6px; }
.nav-actions .icon-btn {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-actions .icon-btn:hover { transform: translateY(-1px); }
.nav-actions .btn-nav {
  min-height: 44px;
  padding-inline: 18px;
}
.nav-burger svg { transition: transform 0.3s var(--ease); }
.nav-burger[aria-expanded="true"] svg { transform: rotate(90deg); }
.mobile-menu {
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.mobile-menu ul {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}
.mobile-menu a:not(.btn) {
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.45;
}
.nav-wrap.is-menu-open .mobile-menu {
  animation: mobileMenuEnter 0.3s var(--ease) both;
}
@keyframes mobileMenuEnter {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .nav,
  .nav-wrap.is-compact .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 18px 14px;
    column-gap: 14px;
  }
  .logo-crop-nav { width: 160px; }
  .nav-wrap.is-compact .logo-crop-nav { width: 150px; }
  .nav-wrap.is-menu-open .nav,
  .nav-wrap.is-menu-open.is-compact .nav {
    height: var(--nav-h);
  }
}

@media (max-width: 680px) {
  .nav,
  .nav-wrap.is-compact .nav {
    padding-inline: 14px 10px;
    column-gap: 10px;
  }
  .logo-crop-nav { width: 142px; }
  .nav-wrap.is-compact .logo-crop-nav { width: 134px; }
  .nav-actions { gap: 3px; }
  .nav-actions .icon-btn {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .mobile-menu { padding: 12px; }
  .mobile-menu a:not(.btn) { padding: 11px 12px; }
}

@media (max-width: 360px) {
  .logo-crop-nav,
  .nav-wrap.is-compact .logo-crop-nav { width: 128px; }
  #searchBtn { display: none; }
}

/* Two-row review stories with balanced, continuous movement. */
#reviews .section-head {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
#reviews .section-head > p { margin-inline: auto; }
.review-disclaimer {
  display: block;
  max-width: 720px;
  margin: 14px auto 0;
  color: #8a94a3;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}
.reviews-marquee {
  --reviews-gap: 14px;
  --reviews-half-gap: 7px;
  position: relative;
  display: grid;
  gap: 14px;
  width: 100vw;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  padding: 8px 0 16px;
}
.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: max(42px, calc((100vw - 1240px) / 2));
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}
.reviews-row { overflow: hidden; padding-block: 6px; }
.reviews-loop {
  display: flex;
  width: max-content;
  gap: var(--reviews-gap);
  will-change: transform;
  animation: reviewsForward 38s linear infinite;
}
.reviews-row.is-reverse .reviews-loop { animation-name: reviewsReverse; }
.reviews-set {
  display: flex;
  flex: none;
  gap: var(--reviews-gap);
}
.reviews-marquee .review-card {
  flex: 0 0 400px;
  min-height: 228px;
  padding: 30px;
  gap: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.reviews-marquee .review-card:hover {
  box-shadow: none;
  transform: translateY(-2px);
}
.reviews-marquee .review-card p {
  padding-right: 12px;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.68;
}
.reviews-marquee .review-card footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.reviews-marquee .review-card footer img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  border: 3px solid #f1f4f7;
  border-radius: 50%;
}
.reviews-marquee .review-card footer > span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.reviews-marquee .review-card footer strong {
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}
.reviews-marquee .review-card footer small {
  color: #687282;
  font-size: 12px;
  font-weight: 650;
}
.reviews-marquee:hover .reviews-loop,
.reviews-marquee:focus-within .reviews-loop {
  animation-play-state: paused;
}
@keyframes reviewsForward {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - var(--reviews-half-gap))); }
}
@keyframes reviewsReverse {
  from { transform: translateX(calc(-50% - var(--reviews-half-gap))); }
  to { transform: translateX(0); }
}

@media (max-width: 680px) {
  .reviews-marquee {
    gap: 10px;
  }
  .reviews-marquee::before,
  .reviews-marquee::after { width: 28px; }
  .reviews-marquee .review-card {
    flex-basis: 316px;
    min-height: 220px;
    padding: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-row { overflow-x: auto; scrollbar-width: none; }
  .reviews-loop { animation: none; transform: none; }
  .reviews-set[aria-hidden="true"] { display: none; }
  .reviews-marquee::before,
  .reviews-marquee::after { display: none; }
}

/* Product experience: colour-aware gallery, delivery estimate, and stories. */
.product-page-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 24%, rgba(18, 107, 255, 0.07), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}
.product-page-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 96px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(18, 107, 255, 0.025), 0 0 0 140px rgba(18, 107, 255, 0.018);
  pointer-events: none;
}
.product-page-section > .container { position: relative; z-index: 1; }
.product-page-grid { gap: clamp(50px, 6.5vw, 92px); }
.product-page-gallery {
  position: sticky;
  top: 112px;
  min-width: 0;
}
.product-page-main-image {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 11, 0.07);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #f5f7fa 100%);
  box-shadow: 0 24px 70px rgba(15, 31, 55, 0.09);
}
.product-page-main-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 13% 7%;
  height: 13%;
  border-radius: 50%;
  background: rgba(8, 9, 11, 0.12);
  filter: blur(26px);
  transform: scaleX(0.78);
  opacity: 0.42;
}
.product-image-glow {
  position: absolute;
  z-index: -2;
  top: 13%;
  left: 13%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 107, 255, 0.14), rgba(18, 107, 255, 0) 69%);
  animation: productGlow 5s ease-in-out infinite;
}
.product-page-main-image img {
  width: 91%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 18px 20px rgba(8, 9, 11, 0.09));
  transform: scale(1);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.product-page-main-image img.is-switching { animation: productImageIn 0.48s var(--ease) both; }
.product-page-main-image.is-zoomed img { transform: scale(1.32); filter: drop-shadow(0 24px 28px rgba(8, 9, 11, 0.13)); }
.product-image-badge {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(8, 9, 11, 0.07);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(8, 9, 11, 0.08);
  backdrop-filter: blur(10px);
  color: #45505e;
  font-size: 11.5px;
  font-weight: 750;
}
.product-image-badge i,
.product-stock i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24a865;
  box-shadow: 0 0 0 4px rgba(36, 168, 101, 0.12);
}
.product-zoom-button {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(8, 9, 11, 0.08);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(8, 9, 11, 0.07);
  backdrop-filter: blur(10px);
  color: #3a4553;
  font-size: 11.5px;
  font-weight: 750;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.product-zoom-button:hover { color: var(--blue); border-color: rgba(18, 107, 255, 0.35); transform: translateY(-1px); }
.product-zoom-button[aria-pressed="true"] svg { color: var(--blue); }
.product-page-thumbs { gap: 12px; margin-top: 16px; }
.product-page-thumb {
  width: 74px;
  height: 74px;
  flex-basis: 74px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: #f4f6f8;
  opacity: 0.66;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product-page-thumb img { border-radius: 4px; opacity: 1; transform: none; }
.product-page-thumb:hover,
.product-page-thumb.is-active {
  border-color: var(--blue);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(18, 107, 255, 0.12);
}
.product-page-thumb:hover img,
.product-page-thumb.is-active img { transform: none; }
.product-gallery-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  color: #7a8492;
  font-size: 11.5px;
  font-weight: 650;
}
.product-gallery-note span { color: #24a865; font-weight: 800; }
.product-page-details { padding-top: 8px; }
.product-page-details .eyebrow { margin-bottom: 13px; }
.product-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #5b6572;
  text-decoration: none;
  font-size: 12px;
  font-weight: 720;
}
.product-rating-link .review-stars { color: #ffb800; font-size: 13px; letter-spacing: 1px; }
.product-rating-link svg { color: var(--blue); transition: transform 0.25s var(--ease); }
.product-rating-link:hover svg { transform: translateX(3px); }
.product-page-details h1 { margin-bottom: 18px; font-size: clamp(40px, 4vw, 58px); }
.product-page-lede { max-width: 48ch; margin-bottom: 15px; }
.product-page-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.product-page-price-row .product-page-price { margin: 0; }
.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(36, 168, 101, 0.08);
  color: #187245;
  font-size: 11px;
  font-weight: 800;
}
.product-page-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 16px;
  margin-bottom: 20px;
  padding-block: 17px;
}
.product-page-features li { padding-block: 5px; font-size: 13px; }
.product-page-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 15px 0;
}
.product-option-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 0 0 auto;
}
.product-option-label strong { color: var(--black); font-size: 13px; }
.product-option-label span { color: #7d8795; font-size: 11px; font-weight: 650; }
.product-colour-select { display: flex; gap: 8px; }
.product-colour-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #dfe3e9;
  border-radius: 5px;
  background: #fff;
  color: #404a57;
  font-size: 12px;
  font-weight: 750;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.product-colour-choice:hover { border-color: #9dbfff; transform: translateY(-1px); }
.product-colour-choice.is-active {
  border-color: var(--blue);
  background: rgba(18, 107, 255, 0.045);
  box-shadow: 0 0 0 3px rgba(18, 107, 255, 0.08);
  color: var(--black);
}
.product-swatch {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
}
.product-swatch-black { background: #08090b; box-shadow: inset 0 0 0 1px #08090b; }
.product-swatch-white { background: #fff; box-shadow: inset 0 0 0 1px #cbd1da; }
.product-page-option .qty-control { border-color: #dfe3e9; }
.product-page-option .qty-control button { width: 40px; height: 40px; font-size: 17px; }
.product-page-option .qty-control span { min-width: 38px; }
.delivery-estimator {
  margin-top: 22px;
  padding: 17px 18px 15px;
  border: 1px solid rgba(18, 107, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 107, 255, 0.07), rgba(18, 107, 255, 0.018));
}
.delivery-estimator-head { display: flex; align-items: center; gap: 12px; }
.delivery-estimator-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 9px 18px rgba(18, 107, 255, 0.2);
}
.delivery-estimator-head > div { display: grid; flex: 1; }
.delivery-estimator-head span:not(.delivery-estimator-icon) { color: #647080; font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.delivery-estimator-head strong { font-size: 16px; letter-spacing: -0.015em; }
.delivery-estimator-head small { color: #687382; font-size: 10.5px; font-weight: 650; }
.delivery-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 15px 3px 9px;
}
.delivery-route::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0 50%, #d6dce5 50% 100%);
}
.delivery-route span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #8892a0;
  font-size: 9.5px;
  font-weight: 750;
}
.delivery-route i {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 2px solid #d6dce5;
  border-radius: 50%;
  background: #fff;
}
.delivery-route .is-complete i { border-color: var(--blue); background: var(--blue); }
.delivery-route .is-active i { border-color: var(--blue); box-shadow: 0 0 0 5px rgba(18, 107, 255, 0.1); animation: deliveryPulse 2s ease-out infinite; }
.delivery-route .is-complete,
.delivery-route .is-active { color: #4c5765; }
.delivery-estimator > p { color: #6e7987; font-size: 10.5px; line-height: 1.5; }
.product-page-actions { margin-top: 18px; }
.product-page-actions .btn-primary { position: relative; overflow: hidden; }
.product-page-actions .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.28) 45%, transparent 65%);
  transform: translateX(-140%);
  transition: transform 0.7s var(--ease);
}
.product-page-actions .btn-primary:hover::after { transform: translateX(140%); }
.product-assurances {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
  color: #6b7684;
  font-size: 10.5px;
  font-weight: 700;
}
.product-assurances li::before { content: "✓"; margin-right: 5px; color: #24a865; font-weight: 900; }
.product-benefit-section { position: relative; }
.product-page-benefits article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(14, 30, 52, 0.045);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-page-benefits article:hover { border-color: rgba(18, 107, 255, 0.32); transform: translateY(-4px); box-shadow: 0 18px 42px rgba(14, 30, 52, 0.08); }
.benefit-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  margin-bottom: 25px;
  border-radius: 5px;
  background: rgba(18, 107, 255, 0.08);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
}
.product-page-benefits strong { font-size: 17px; }
.product-flow-section { background: #fff; }
.product-section-heading { max-width: 660px; margin: 0 auto 54px; text-align: center; }
.product-section-heading .eyebrow { margin-bottom: 16px; }
.product-section-heading h2,
.product-reviews-heading h2 { font-size: clamp(31px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.04em; }
.product-section-heading > p:last-child { max-width: 54ch; margin: 18px auto 0; color: var(--muted); }
.product-flow { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-flow::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, rgba(18,107,255,0.08), rgba(18,107,255,0.42), rgba(18,107,255,0.08));
}
.product-flow article { position: relative; z-index: 1; text-align: center; }
.product-flow article > span {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin: 0 auto 20px;
  border: 1px solid rgba(18, 107, 255, 0.24);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 9px #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}
.product-flow h3 { margin-bottom: 8px; font-size: 17px; }
.product-flow p { max-width: 31ch; margin-inline: auto; color: var(--muted); font-size: 13.5px; }
.product-reviews-section {
  overflow: hidden;
  background: #0a111f;
  color: #fff;
}
.product-reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.48fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 46px;
}
.product-reviews-heading .eyebrow { margin-bottom: 16px; background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); color: #8bb8ff; }
.product-reviews-heading > p { color: #aab3c0; font-size: 15px; }
.product-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-review-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.product-review-card:hover { border-color: rgba(91,151,255,0.42); background: linear-gradient(145deg, rgba(18,107,255,0.13), rgba(255,255,255,0.035)); transform: translateY(-5px); }
.product-review-card .review-stars { color: #ffbf20; font-size: 14px; letter-spacing: 2px; }
.product-review-card > p { margin: 24px 0 30px; color: #eef2f7; font-size: 15px; font-weight: 570; line-height: 1.72; }
.product-review-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6ba3ff);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
.product-review-card footer > span:last-child { display: grid; }
.product-review-card footer strong { color: #fff; font-size: 13px; }
.product-review-card footer small { color: #9ea9b8; font-size: 10.5px; }
.product-review-disclaimer { margin-top: 22px; color: #778292; font-size: 10px; text-align: center; }
.product-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.product-reveal.is-visible { opacity: 1; transform: none; }
@keyframes productImageIn {
  from { opacity: 0.35; transform: scale(0.965) translateY(6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes productGlow {
  0%, 100% { transform: scale(0.94); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes deliveryPulse {
  0% { box-shadow: 0 0 0 0 rgba(18, 107, 255, 0.24); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(18, 107, 255, 0); }
}

@media (max-width: 960px) {
  .product-page-gallery { position: static; }
  .product-page-main-image { min-height: 520px; }
  .product-review-grid { grid-template-columns: 1fr; }
  .product-review-card { min-height: 0; }
}

@media (max-width: 680px) {
  .product-page-section::after { display: none; }
  .product-page-grid { gap: 38px; }
  .product-page-main-image { min-height: 350px; padding: 22px; }
  .product-page-main-image img { width: 96%; max-height: 310px; }
  .product-image-badge { left: 12px; bottom: 12px; padding: 7px 9px; font-size: 10px; }
  .product-zoom-button { top: 12px; right: 12px; }
  .product-zoom-button span { display: none; }
  .product-page-thumb { width: 64px; height: 64px; flex-basis: 64px; }
  .product-gallery-note { font-size: 10.5px; }
  .product-page-details h1 { font-size: clamp(36px, 11vw, 47px); }
  .product-page-features { grid-template-columns: 1fr; }
  .product-page-option { align-items: flex-end; }
  .product-colour-choice { min-width: 82px; padding-inline: 10px; }
  .product-page-actions { flex-direction: column; }
  .product-assurances { gap: 6px 12px; }
  .product-page-benefits article { min-height: 0; }
  .product-flow { grid-template-columns: 1fr; gap: 34px; }
  .product-flow::before { top: 28px; bottom: 28px; left: 23px; right: auto; width: 1px; height: auto; }
  .product-flow article { display: grid; grid-template-columns: 47px 1fr; gap: 4px 18px; text-align: left; }
  .product-flow article > span { grid-row: 1 / span 2; margin: 0; box-shadow: 0 0 0 7px #fff; }
  .product-flow p { margin: 0; }
  .product-section-heading { margin-bottom: 40px; text-align: left; }
  .product-section-heading > p:last-child { margin-left: 0; }
  .product-reviews-heading { grid-template-columns: 1fr; gap: 17px; }
  .product-review-card { padding: 24px; }
}

@media (max-width: 390px) {
  .product-colour-choice { min-width: 76px; padding-inline: 8px; }
  .product-swatch { width: 16px; height: 16px; flex-basis: 16px; }
  .delivery-estimator { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .product-reveal { opacity: 1; transform: none; }
  .product-image-glow,
  .delivery-route .is-active i,
  .product-page-main-image img.is-switching { animation: none; }
}

/* Product-page restraint pass: clean imagery and homepage-aligned content. */
.product-page-section {
  background: var(--white);
}
.product-page-section::after,
.product-page-main-image::after,
.product-image-glow,
.product-image-badge,
.product-zoom-button {
  display: none;
}
.product-page-main-image,
.product-page-main-image.is-clean {
  min-height: 590px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.product-page-main-image img,
.product-page-main-image.is-zoomed img {
  width: 100%;
  max-height: 570px;
  border-radius: 0;
  filter: none;
  transform: none;
}
.product-page-main-image img.is-switching {
  animation-name: productImageInClean;
}
.product-page-thumb {
  padding: 3px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.product-page-thumb:hover,
.product-page-thumb.is-active {
  border-color: var(--blue);
  box-shadow: none;
}

.product-upsells-section { background: #f3f5f7; }
.product-upsells-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.45fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 46px;
}
.product-upsells-heading .eyebrow { margin-bottom: 15px; }
.product-upsells-heading h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.product-upsells-heading > p { color: var(--muted); font-size: 15px; }
.product-upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.product-upsell-card,
.product-upsell-bundle {
  min-width: 0;
  border-top: 1px solid #cfd5de;
  background: transparent;
}
.product-upsell-image {
  display: grid;
  place-items: center;
  height: 250px;
  padding: 22px 8px 8px;
  background: transparent;
  text-decoration: none;
}
.product-upsell-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.product-upsell-card:hover .product-upsell-image img { transform: translateY(-3px); }
.product-upsell-copy { padding: 18px 0 0; }
.product-upsell-copy > span,
.product-upsell-bundle > span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-upsell-copy h3,
.product-upsell-bundle h3 { font-size: 20px; letter-spacing: -0.02em; }
.product-upsell-copy h3 a { text-decoration: none; }
.product-upsell-copy > p,
.product-upsell-bundle > p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.product-upsell-copy > div,
.product-upsell-bundle > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}
.product-upsell-copy > div strong,
.product-upsell-bundle > div strong { font-size: 18px; }
.product-upsell-copy button,
.product-upsell-bundle a {
  padding: 9px 12px;
  border: 1px solid #cbd2dc;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.product-upsell-copy button:hover,
.product-upsell-bundle a:hover { border-color: var(--blue); color: var(--blue); }
.product-upsell-bundle {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 38px 0 0;
}
.product-upsell-bundle ul {
  display: grid;
  gap: 9px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #d9dee5;
}
.product-upsell-bundle li {
  padding-left: 22px;
  color: #4e5967;
  font-size: 12.5px;
  font-weight: 650;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23126BFF' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") no-repeat left center / 14px;
}
.product-upsell-bundle > div { margin-top: auto; padding-top: 24px; }

.product-reviews-section {
  background: var(--white);
  color: var(--black);
}
.product-reviews-heading .eyebrow {
  border-color: rgba(18, 107, 255, 0.18);
  background: rgba(18, 107, 255, 0.05);
  color: var(--blue);
}
.product-reviews-heading > p { color: var(--muted); }
.product-review-card {
  min-height: 280px;
  padding: 0 0 28px;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.product-review-grid.review-count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-review-grid.review-count-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-review-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  object-fit: cover;
  object-position: var(--review-position, center);
  border-radius: 0;
  background: transparent;
}
.product-review-card:hover {
  border-color: var(--blue);
  background: transparent;
  box-shadow: none;
  transform: none;
}
.product-review-card > p { color: #303a48; }
.product-review-card > .review-stars { margin-top: 0; }
.product-review-card footer img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: cover;
  border: 0;
  border-radius: 50%;
}
.product-review-card footer strong { color: var(--black); }
.product-review-card footer small { color: #737e8d; }
.product-review-disclaimer { color: #8a94a3; }
.product-review-disclaimer a { color: var(--blue); font-weight: 750; text-decoration: none; }
.product-review-disclaimer a:hover { text-decoration: underline; }

@keyframes productImageInClean {
  from { opacity: 0.35; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .product-page-main-image,
  .product-page-main-image.is-clean { min-height: 500px; }
  .product-upsell-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-upsell-bundle { grid-column: 1 / -1; min-height: 0; }
  .product-review-grid.review-count-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .product-page-main-image,
  .product-page-main-image.is-clean { min-height: 340px; padding: 0; }
  .product-page-main-image img { max-height: 330px; }
  .product-upsells-heading { grid-template-columns: 1fr; gap: 16px; }
  .product-upsell-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-upsell-image { height: 235px; padding-top: 16px; }
  .product-upsell-bundle { grid-column: auto; padding-top: 28px; }
  .product-review-card { min-height: 0; padding-top: 24px; }
  .product-review-grid.review-count-3,
  .product-review-grid.review-count-4,
  .product-review-grid.review-count-6 { grid-template-columns: 1fr; }
  .product-review-card { padding-top: 0; }
  .product-review-photo { aspect-ratio: 5 / 4; margin-bottom: 20px; }
}

/* ---------------- Product setup choice ---------------- */
.product-setup-choice {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.product-setup-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.product-setup-heading > div { display: grid; gap: 2px; }
.product-setup-heading strong { font-size: 13px; font-weight: 800; }
.product-setup-heading span { color: var(--muted); font-size: 11.5px; }
.product-setup-heading a {
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 800;
  text-underline-offset: 3px;
}
.product-setup-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.product-setup-options label {
  position: relative;
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  min-width: 0;
  padding: 13px;
  border: 1px solid #d9dee6;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}
.product-setup-options label:hover { border-color: #aeb8c6; transform: translateY(-1px); }
.product-setup-options label.is-selected { border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.product-setup-options input { position: absolute; opacity: 0; pointer-events: none; }
.product-setup-check {
  position: relative;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  border: 1.5px solid #aeb7c3;
  border-radius: 50%;
}
.is-selected .product-setup-check { border-color: var(--blue); }
.is-selected .product-setup-check::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--blue);
}
.product-setup-options label > span:last-child { display: grid; gap: 4px; min-width: 0; }
.product-setup-options strong { font-size: 12px; line-height: 1.35; }
.product-setup-options small { color: var(--muted); font-size: 10.5px; line-height: 1.5; }
.cart-page-item-copy .cart-page-item-setup { color: var(--blue); font-weight: 750; }
.cart-setup-notice {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  max-width: 760px;
  margin: -18px 0 28px;
  padding: 17px 19px;
  border-left: 3px solid var(--blue);
  background: #f1f6ff;
}
.cart-setup-notice > span { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; }
.cart-setup-notice strong { display: block; margin-bottom: 2px; font-size: 14px; }
.cart-setup-notice p { color: #4f5d70; font-size: 12.5px; }
.cart-setup-notice a { color: var(--blue); font-weight: 750; }

/* ---------------- Self-setup guide ---------------- */
.setup-guide-body { background: var(--white); }
.setup-guide-hero { padding: 180px 0 90px; overflow: hidden; }
.setup-guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}
.setup-guide-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.06em;
}
.setup-guide-hero-copy > p:not(.eyebrow) { max-width: 690px; color: var(--muted); font-size: 17px; }
.setup-guide-meta { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 30px; }
.setup-guide-meta span {
  padding-left: 19px;
  color: #3f4b5a;
  font-size: 12px;
  font-weight: 750;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23126BFF' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") no-repeat left center / 13px;
}
.setup-guide-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.setup-guide-visual { position: relative; min-height: 430px; }
.setup-guide-phone {
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 0;
  width: 202px;
  height: 390px;
  border: 10px solid #11151b;
  border-radius: 32px;
  background: #f6f8fb;
  box-shadow: 0 34px 80px rgba(8, 9, 11, 0.16);
  transform: rotate(7deg);
}
.setup-guide-phone::before { content: ""; position: absolute; top: 9px; left: 50%; width: 66px; height: 17px; border-radius: 10px; background: #11151b; transform: translateX(-50%); }
.setup-guide-phone i { position: absolute; inset: 60px 24px auto; height: 190px; border: 1px solid #d8dfe9; background: linear-gradient(145deg, #fff, #e9f1ff); }
.setup-guide-phone b { position: absolute; left: 0; right: 0; bottom: 62px; color: var(--blue); font-size: 14px; text-align: center; letter-spacing: 0.12em; }
.setup-guide-tap-card {
  position: absolute;
  z-index: 3;
  left: 8px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 250px;
  height: 155px;
  padding: 24px;
  border: 1px solid #dfe4eb;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(8, 9, 11, 0.12);
  transform: rotate(-7deg);
}
.setup-guide-tap-card small { position: absolute; top: 18px; left: 22px; color: #7f8997; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; }
.setup-guide-tap-card strong { font-size: 42px; line-height: 1; letter-spacing: -0.05em; }
.setup-guide-tap-card i { position: absolute; right: 20px; bottom: 23px; color: var(--blue); font-size: 10px; font-style: normal; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.setup-guide-wave { position: absolute; z-index: 1; left: 44%; top: 32%; border: 2px solid rgba(18, 107, 255, 0.38); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(38deg); animation: setupGuideWave 2.2s ease-out infinite; }
.setup-guide-wave.wave-one { width: 70px; height: 70px; }
.setup-guide-wave.wave-two { width: 112px; height: 112px; margin: -21px; animation-delay: 0.3s; }
.setup-guide-wave.wave-three { width: 154px; height: 154px; margin: -42px; animation-delay: 0.6s; }
@keyframes setupGuideWave { 0%, 25% { opacity: 0; transform: rotate(38deg) scale(0.82); } 45% { opacity: 1; } 80%, 100% { opacity: 0; transform: rotate(38deg) scale(1.05); } }

.setup-guide-notice-section { padding-bottom: 34px; }
.setup-guide-notice {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid #d8e5fb;
  border-left: 4px solid var(--blue);
  background: #f3f7fe;
}
.setup-guide-notice-icon { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); font-weight: 800; }
.setup-guide-notice strong { display: block; margin-bottom: 4px; font-size: 15px; }
.setup-guide-notice p { color: #4e5d70; font-size: 13.5px; }
.setup-guide-content-grid { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(55px, 9vw, 120px); align-items: start; }
.setup-guide-sidebar { position: sticky; top: 125px; }
.setup-guide-sidebar h2 { margin: 13px 0 24px; font-size: 32px; letter-spacing: -0.04em; }
.setup-guide-checklist { display: grid; gap: 13px; }
.setup-guide-checklist li { padding: 0 0 13px 25px; border-bottom: 1px solid var(--border); color: #3f4a59; font-size: 13px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23126BFF' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") no-repeat left 3px / 14px; }
.setup-guide-checklist code, .setup-guide-help code { font: inherit; color: var(--black); font-weight: 750; }
.setup-guide-download { margin-top: 28px; padding: 20px; border: 1px solid var(--border); }
.setup-guide-download strong { font-size: 13px; }
.setup-guide-download p { margin: 3px 0 13px; color: var(--muted); font-size: 11.5px; }
.setup-guide-download a, .setup-guide-source { color: var(--blue); font-size: 11.5px; font-weight: 800; text-underline-offset: 3px; }
.setup-guide-steps { border-top: 1px solid var(--border); }
.setup-guide-step { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 24px; padding: 55px 0 62px; border-bottom: 1px solid var(--border); }
.setup-guide-step-number { padding-top: 3px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; }
.setup-guide-step h2 { max-width: 700px; margin: 12px 0 18px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.045em; }
.setup-guide-step > div > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 14.5px; }
.setup-guide-tip, .setup-guide-warning { margin: 24px 0 20px; padding: 18px 20px; border-left: 3px solid var(--blue); background: #f5f8fd; }
.setup-guide-tip strong, .setup-guide-warning strong { display: block; margin-bottom: 3px; font-size: 12.5px; }
.setup-guide-tip p, .setup-guide-warning p { color: #536173; font-size: 12px; }
.setup-guide-instructions { display: grid; gap: 0; margin: 25px 0 22px; }
.setup-guide-instructions li { display: grid; grid-template-columns: 35px 1fr; gap: 15px; padding: 15px 0; border-top: 1px solid var(--border); }
.setup-guide-instructions li:last-child { border-bottom: 1px solid var(--border); }
.setup-guide-instructions span { color: var(--blue); font-size: 11px; font-weight: 800; }
.setup-guide-instructions p { color: #394655; font-size: 13.5px; }
.setup-guide-test-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 25px; background: var(--border); border: 1px solid var(--border); }
.setup-guide-test-grid div { padding: 20px; background: var(--white); }
.setup-guide-test-grid strong { font-size: 13px; }
.setup-guide-test-grid p { margin-top: 5px; color: var(--muted); font-size: 11.5px; }
.setup-guide-warning { border-left-color: #db7c20; background: #fff8ef; }
.setup-guide-warning strong { color: #8f4a0b; }
.setup-guide-help { border-top: 1px solid var(--border); }
.setup-guide-section-heading { max-width: 650px; margin-bottom: 48px; }
.setup-guide-section-heading h2 { margin-top: 12px; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -0.05em; }
.setup-guide-help-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid #dbe0e7; }
.setup-guide-help-grid article { min-height: 225px; padding: 25px 25px 0 0; border-right: 1px solid #dbe0e7; }
.setup-guide-help-grid article + article { padding-left: 25px; }
.setup-guide-help-grid article:last-child { border-right: 0; }
.setup-guide-help-grid span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; }
.setup-guide-help-grid h3 { margin: 35px 0 9px; font-size: 18px; }
.setup-guide-help-grid p { color: var(--muted); font-size: 12.5px; }
.setup-guide-support { padding: 88px 0; background: var(--black); color: var(--white); }
.setup-guide-support-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; }
.setup-guide-support .eyebrow { color: #87b5ff; }
.setup-guide-support h2 { margin: 12px 0; font-size: clamp(34px, 4.8vw, 58px); line-height: 1.03; letter-spacing: -0.05em; }
.setup-guide-support p:not(.eyebrow) { max-width: 690px; color: #aeb7c5; font-size: 14px; }
.setup-guide-support .btn { flex: 0 0 auto; }

@media (max-width: 960px) {
  .setup-guide-hero-grid { grid-template-columns: 1fr; }
  .setup-guide-visual { width: min(440px, 100%); margin-inline: auto; }
  .setup-guide-content-grid { grid-template-columns: 1fr; gap: 55px; }
  .setup-guide-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 45px; }
  .setup-guide-sidebar .eyebrow, .setup-guide-sidebar h2 { grid-column: 1 / -1; }
  .setup-guide-download { margin-top: 0; }
  .setup-guide-help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .setup-guide-help-grid article:nth-child(2) { border-right: 0; }
  .setup-guide-help-grid article:nth-child(n+3) { border-top: 1px solid #dbe0e7; }
}

@media (max-width: 680px) {
  .product-setup-options { grid-template-columns: 1fr; }
  .product-setup-heading { align-items: center; }
  .cart-setup-notice { margin-top: -16px; }
  .guide-print-button { display: none; }
  .setup-guide-hero { padding: 135px 0 60px; }
  .setup-guide-hero-copy h1 { font-size: clamp(42px, 13vw, 61px); }
  .setup-guide-hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .setup-guide-actions { display: grid; }
  .setup-guide-visual { min-height: 350px; transform: scale(0.84); transform-origin: center top; margin-bottom: -55px; }
  .setup-guide-notice { grid-template-columns: 35px 1fr; gap: 14px; padding: 20px; }
  .setup-guide-notice-icon { width: 32px; height: 32px; }
  .setup-guide-sidebar { grid-template-columns: 1fr; }
  .setup-guide-sidebar .eyebrow, .setup-guide-sidebar h2 { grid-column: auto; }
  .setup-guide-download { margin-top: 25px; }
  .setup-guide-step { grid-template-columns: 1fr; gap: 12px; padding: 45px 0; }
  .setup-guide-step-number { padding: 0; }
  .setup-guide-test-grid { grid-template-columns: 1fr; }
  .setup-guide-help-grid { grid-template-columns: 1fr; }
  .setup-guide-help-grid article, .setup-guide-help-grid article + article { min-height: 0; padding: 24px 0; border-right: 0; border-top: 1px solid #dbe0e7; }
  .setup-guide-help-grid article:first-child { border-top: 0; }
  .setup-guide-help-grid h3 { margin-top: 18px; }
  .setup-guide-support { padding: 65px 0; }
  .setup-guide-support-inner { align-items: stretch; flex-direction: column; }
}

@media print {
  @page { size: A4; margin: 14mm; }
  body.setup-guide-body { color: #000; background: #fff; font-size: 10pt; }
  .setup-guide-body .loader,
  .setup-guide-body .nav-wrap,
  .setup-guide-body .footer,
  .setup-guide-body .setup-guide-visual,
  .setup-guide-body .setup-guide-actions,
  .setup-guide-body .setup-guide-support,
  .setup-guide-body .setup-guide-source { display: none !important; }
  .setup-guide-body .container { width: 100%; }
  .setup-guide-hero { padding: 0 0 10mm; }
  .setup-guide-hero-grid, .setup-guide-content-grid { display: block; }
  .setup-guide-hero-copy h1 { margin: 4mm 0; font-size: 29pt; }
  .setup-guide-hero-copy > p:not(.eyebrow) { font-size: 10pt; }
  .setup-guide-notice-section { padding-bottom: 4mm; }
  .setup-guide-notice { padding: 4mm; }
  .setup-guide-prep, .setup-guide-help { padding: 7mm 0; }
  .setup-guide-sidebar { position: static; display: block; margin-bottom: 7mm; }
  .setup-guide-sidebar h2 { margin: 2mm 0 4mm; font-size: 18pt; }
  .setup-guide-checklist { grid-template-columns: repeat(2, 1fr); gap: 2mm 8mm; }
  .setup-guide-download { display: none; }
  .setup-guide-step { grid-template-columns: 10mm 1fr; gap: 4mm; padding: 7mm 0; break-inside: avoid; }
  .setup-guide-step h2 { margin: 2mm 0 3mm; font-size: 20pt; }
  .setup-guide-tip, .setup-guide-warning { margin: 4mm 0; padding: 3mm 4mm; }
  .setup-guide-help { break-before: page; }
  .setup-guide-section-heading { margin-bottom: 5mm; }
  .setup-guide-section-heading h2 { font-size: 23pt; }
  .setup-guide-help-grid { grid-template-columns: repeat(2, 1fr); }
  .setup-guide-help-grid article, .setup-guide-help-grid article + article { min-height: 0; padding: 4mm; border: 1px solid #ddd; }
  * { animation: none !important; transition: none !important; box-shadow: none !important; }
}

/* ---------------- Footer legal disclosure ---------------- */
.footer-bottom {
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
}
.footer-bottom .footer-copyright { color: #687282; font-size: 12.5px; font-weight: 650; }
.footer-rights { position: relative; margin-left: auto; }
.footer-rights summary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 154px;
  padding: 8px 0 8px 12px;
  color: #687282;
  font-size: 12.5px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.footer-rights summary::-webkit-details-marker { display: none; }
.footer-rights summary:hover,
.footer-rights summary:focus-visible,
.footer-rights[open] summary { color: var(--blue); }
.footer-rights summary svg { flex: 0 0 auto; transition: transform 0.25s var(--ease); }
.footer-rights[open] summary svg { transform: rotate(180deg); }
.footer-rights-menu {
  position: absolute;
  z-index: 80;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(330px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(8, 9, 11, 0.14);
  transform-origin: right bottom;
  animation: footerLegalIn 0.22s var(--ease) both;
}
.footer-rights-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 3px 13px;
  border-bottom: 1px solid var(--border);
}
.footer-rights-heading span { color: var(--black); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-rights-heading a { color: var(--blue); font-size: 10.5px; font-weight: 800; text-decoration: none; }
.footer-rights-menu nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px 16px; padding-top: 11px; }
.footer-rights-menu nav a {
  display: flex;
  align-items: center;
  min-height: 35px;
  padding: 7px 3px;
  border-bottom: 1px solid #eef0f3;
  color: #303b49;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer-rights-menu nav a:hover,
.footer-rights-menu nav a:focus-visible { padding-left: 7px; color: var(--blue); }
@keyframes footerLegalIn { from { opacity: 0; transform: translateY(6px) scale(0.985); } to { opacity: 1; transform: none; } }

/* ---------------- Legal centre ---------------- */
.legal-page-body { background: var(--white); }
.legal-hero { padding: 176px 0 82px; border-bottom: 1px solid var(--border); }
.legal-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 70px; align-items: end; }
.legal-hero h1 { margin: 14px 0 18px; font-size: clamp(54px, 7vw, 88px); line-height: 0.98; letter-spacing: -0.06em; }
.legal-hero div > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 17px; }
.legal-hero dl { display: grid; gap: 0; border-top: 1px solid var(--border); }
.legal-hero dl div { display: grid; grid-template-columns: 95px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.legal-hero dt { color: #7b8593; font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.legal-hero dd { color: #313c49; font-size: 12px; font-weight: 700; }
.legal-hero dd a { color: var(--blue); }
.legal-layout-section { padding: 72px 0 110px; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 820px); justify-content: space-between; gap: clamp(60px, 10vw, 130px); align-items: start; }
.legal-sidebar { position: sticky; top: 118px; }
.legal-sidebar > strong { display: block; margin-bottom: 15px; color: #7d8795; font-size: 10.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.legal-sidebar nav { display: grid; border-top: 1px solid var(--border); }
.legal-sidebar a { padding: 9px 0; border-bottom: 1px solid var(--border); color: #4c5969; font-size: 11.5px; font-weight: 700; text-decoration: none; transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.legal-sidebar a:hover { padding-left: 5px; color: var(--blue); }
.legal-content { min-width: 0; }
.legal-launch-notice {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 22px;
  margin-bottom: 42px;
  padding: 22px 0;
  border-block: 1px solid #e5b984;
}
.legal-launch-notice > span { color: #a45b12; font-size: 9.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.legal-launch-notice strong { display: block; margin-bottom: 4px; font-size: 13px; }
.legal-launch-notice p { color: #6d5944; font-size: 12px; }
.legal-section { scroll-margin-top: 115px; padding: 70px 0 10px; border-top: 1px solid var(--border); }
.legal-launch-notice + .legal-section { padding-top: 20px; border-top: 0; }
.legal-section-number { margin-bottom: 14px; color: var(--blue); font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; }
.legal-section h2 { margin-bottom: 30px; font-size: clamp(36px, 4.8vw, 56px); line-height: 1.04; letter-spacing: -0.05em; }
.legal-section h3 { margin: 30px 0 9px; font-size: 14px; line-height: 1.35; }
.legal-section > p:not(.legal-section-number),
.legal-section li { color: #566273; font-size: 13.5px; line-height: 1.82; }
.legal-section > p + p { margin-top: 15px; }
.legal-section ul,
.legal-section ol { display: grid; gap: 8px; margin: 13px 0 20px 21px; }
.legal-section ul { list-style: disc; }
.legal-section ol { list-style: decimal; }
.legal-section a { color: var(--blue); font-weight: 700; text-underline-offset: 3px; }
.legal-section code { padding: 2px 5px; background: #f0f3f7; color: #2c3846; font: 0.92em ui-monospace, SFMono-Regular, Consolas, monospace; }
.legal-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.legal-details div { min-height: 88px; padding: 18px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.legal-details dt { margin-bottom: 6px; color: #7b8593; font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.legal-details dd { color: #354150; font-size: 12.5px; font-weight: 700; }
.legal-source-note { margin-top: 35px; padding: 22px; border-left: 3px solid var(--blue); background: #f5f8fd; }
.legal-source-note strong { display: block; margin-bottom: 5px; font-size: 12px; }
.legal-source-note p { color: #586677; font-size: 11.5px; line-height: 1.75; }

@media (max-width: 960px) {
  .legal-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .legal-hero dl { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .legal-hero dl div { display: block; padding-right: 18px; }
  .legal-hero dt { margin-bottom: 4px; }
  .legal-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 55px; }
}

@media (max-width: 680px) {
  .footer-bottom { flex-direction: row; align-items: center; gap: 10px; padding-top: 22px; }
  .footer-rights summary { min-width: 0; padding-left: 8px; font-size: 11.5px; }
  .footer-bottom .footer-copyright { font-size: 11.5px; }
  .footer-rights-menu { width: min(330px, calc(100vw - 40px)); }
  .footer-rights-menu nav { grid-template-columns: 1fr; }
  .legal-hero { padding: 138px 0 58px; }
  .legal-hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .legal-hero div > p:not(.eyebrow) { font-size: 15px; }
  .legal-hero dl { grid-template-columns: 1fr; }
  .legal-hero dl div { display: grid; }
  .legal-layout-section { padding: 45px 0 75px; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; }
  .legal-sidebar { position: static; }
  .legal-sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
  .legal-launch-notice { grid-template-columns: 1fr; gap: 8px; }
  .legal-section { padding-top: 55px; }
  .legal-details { grid-template-columns: 1fr; }
}

@media print {
  .legal-page-body .loader,
  .legal-page-body .nav-wrap,
  .legal-page-body .footer,
  .legal-page-body .legal-sidebar { display: none !important; }
  .legal-hero { padding: 0 0 8mm; }
  .legal-hero-inner,
  .legal-layout { display: block; }
  .legal-layout-section { padding: 0; }
  .legal-section { break-before: page; padding-top: 10mm; }
  .legal-launch-notice + .legal-section { break-before: auto; }
  .legal-section h2 { font-size: 25pt; }
  .legal-section h3 { break-after: avoid; }
  .legal-section p,
  .legal-section li { orphans: 3; widows: 3; }
}

/* ---------------- Smart Feedback coming soon ---------------- */
.smart-feedback-section { overflow: hidden; border-block: 1px solid var(--border); }
.smart-feedback-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr); gap: clamp(60px, 9vw, 125px); align-items: center; }
.smart-feedback-copy h2 { margin: 15px 0 22px; font-size: clamp(42px, 5.8vw, 72px); line-height: 1.01; letter-spacing: -0.055em; }
.smart-feedback-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 16px; }
.smart-feedback-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; margin: 28px 0 34px; }
.smart-feedback-points li { padding-left: 21px; color: #465365; font-size: 12px; font-weight: 700; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23126BFF' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") no-repeat left 3px / 13px; }
.smart-feedback-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.smart-feedback-waitlist { color: var(--blue); font-size: 12px; font-weight: 800; text-underline-offset: 4px; }
.smart-feedback-preview { min-width: 0; padding: 38px; border: 1px solid var(--border); background: #f4f6f9; }
.smart-feedback-browser { overflow: hidden; width: min(100%, 450px); margin-inline: auto; border: 1px solid #d8dde5; background: var(--white); box-shadow: 0 24px 55px rgba(8, 9, 11, 0.1); }
.smart-feedback-browser-bar { display: flex; align-items: center; gap: 5px; min-height: 39px; padding: 0 13px; border-bottom: 1px solid var(--border); background: #f8f9fb; }
.smart-feedback-browser-bar > span { width: 6px; height: 6px; border-radius: 50%; background: #c7ccd4; }
.smart-feedback-browser-bar small { margin-left: 8px; color: #929aa6; font-size: 8px; }
.smart-feedback-brand { display: grid; justify-items: center; padding: 31px 28px 14px; text-align: center; }
.smart-feedback-brand i { display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 12px; border: 1px solid #cfd6e0; color: var(--blue); font-size: 11px; font-style: normal; font-weight: 800; }
.smart-feedback-brand strong { font-size: 17px; }
.smart-feedback-brand small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.smart-feedback-stars { color: #f4b400; font-size: 30px; text-align: center; letter-spacing: 2px; }
.smart-feedback-browser > p { margin: 10px 25px 19px; color: #788291; font-size: 10.5px; text-align: center; }
.smart-feedback-choice { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 20px 24px; }
.smart-feedback-choice span { display: grid; gap: 3px; padding: 14px; border: 1px solid #dce1e8; }
.smart-feedback-choice span:first-child { border-color: var(--blue); }
.smart-feedback-choice b { font-size: 10px; }
.smart-feedback-choice small { color: #7b8592; font-size: 8.5px; line-height: 1.45; }
.smart-feedback-browser > em { display: block; padding: 11px; border-top: 1px solid var(--border); color: #929aa5; font-size: 8px; font-style: normal; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: 0.11em; }

.smart-product-hero { padding: 175px 0 90px; overflow: hidden; }
.smart-product-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.75fr); align-items: center; gap: clamp(60px, 9vw, 120px); }
.smart-product-hero h1 { margin: 17px 0 24px; font-size: clamp(52px, 7vw, 88px); line-height: 0.98; letter-spacing: -0.06em; }
.smart-product-hero-grid > div:first-child > p:not(.eyebrow):not(.smart-product-status) { max-width: 720px; color: var(--muted); font-size: 17px; }
.smart-product-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.smart-product-status { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: #687484; font-size: 11px; font-weight: 700; }
.smart-product-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(18,107,255,.1); }
.smart-product-preview { padding: 30px; }
.smart-product-principles { border-block: 1px solid var(--border); }
.smart-product-principles header { display: grid; grid-template-columns: minmax(0, .8fr) minmax(300px, .5fr); gap: 50px; align-items: end; margin-bottom: 55px; }
.smart-product-principles header h2 { margin-top: 13px; font-size: clamp(40px, 5.5vw, 66px); line-height: 1.02; letter-spacing: -0.05em; }
.smart-product-principles header > p:last-child { color: var(--muted); font-size: 14px; }
.smart-product-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d9dee5; }
.smart-product-step-grid article { min-height: 220px; padding: 25px 34px 0 0; border-right: 1px solid #d9dee5; }
.smart-product-step-grid article + article { padding-left: 34px; }
.smart-product-step-grid article:last-child { border-right: 0; }
.smart-product-step-grid span { color: var(--blue); font-size: 10px; font-weight: 800; }
.smart-product-step-grid h3 { margin: 42px 0 10px; font-size: 19px; }
.smart-product-step-grid p { color: var(--muted); font-size: 12.5px; }
.smart-product-feature-grid { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 130px); }
.smart-product-feature-grid > div:first-child { position: sticky; top: 120px; align-self: start; }
.smart-product-feature-grid > div:first-child h2 { margin-top: 14px; font-size: clamp(38px, 5vw, 62px); line-height: 1.03; letter-spacing: -0.05em; }
.smart-product-feature-grid > div:last-child { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--border); }
.smart-product-feature-grid article { min-height: 195px; padding: 26px 25px 20px 0; border-bottom: 1px solid var(--border); }
.smart-product-feature-grid article:nth-child(even) { padding-left: 25px; border-left: 1px solid var(--border); }
.smart-product-feature-grid h3 { margin-bottom: 9px; font-size: 15px; }
.smart-product-feature-grid p { color: var(--muted); font-size: 12.5px; }
.smart-policy-section { padding: 90px 0; background: var(--black); color: var(--white); }
.smart-policy-inner { display: grid; grid-template-columns: 68px minmax(0, 760px); justify-content: center; gap: 35px; }
.smart-policy-inner > span { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid #315078; color: #83b2ff; font-size: 22px; }
.smart-policy-inner h2 { margin: 13px 0 17px; font-size: clamp(38px, 5vw, 60px); line-height: 1.03; letter-spacing: -0.05em; }
.smart-policy-inner p:not(.eyebrow) { color: #aab5c5; font-size: 14px; }
.smart-policy-inner a { display: inline-block; margin-top: 18px; color: #8bb7ff; font-size: 12px; font-weight: 800; }
.smart-product-cta { padding: 100px 0; text-align: center; }
.smart-product-cta .container { max-width: 760px; }
.smart-product-cta h2 { margin: 13px 0; font-size: clamp(42px, 6vw, 70px); letter-spacing: -0.055em; }
.smart-product-cta p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }

/* Keep the standalone Coming Soon page quieter than the homepage preview. */
.smart-feedback-page-body .smart-product-hero { padding: 165px 0 74px; }
.smart-feedback-page-body .smart-product-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr); gap: clamp(42px, 7vw, 88px); }
.smart-feedback-page-body .smart-product-hero h1 { max-width: 820px; font-size: clamp(48px, 6vw, 78px); }
.smart-feedback-page-body .smart-product-principles { border-block: 0; }
.smart-feedback-page-body .smart-product-principles header { grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.52fr); margin-bottom: 36px; }
.smart-feedback-page-body .smart-product-step-grid { border-top: 0; gap: 18px; }
.smart-feedback-page-body .smart-product-step-grid article { min-height: 0; padding: 22px 0 0; border: 0; border-top: 1px solid var(--border); }
.smart-feedback-page-body .smart-product-step-grid article + article { padding-left: 0; }
.smart-feedback-page-body .smart-product-cta { padding: 82px 0 95px; }
.smart-soon-card { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; min-height: 420px; padding: clamp(26px, 4vw, 42px); border: 1px solid var(--border); background: var(--white); }
.smart-soon-card > span { width: fit-content; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.smart-soon-card h2 { max-width: 360px; margin: 34px 0 auto; font-size: clamp(28px, 3vw, 42px); line-height: 1.05; letter-spacing: -0.04em; }
.smart-soon-card dl { display: grid; gap: 0; margin-top: 38px; border-top: 1px solid var(--border); }
.smart-soon-card div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.smart-soon-card dt { color: #7b8592; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.smart-soon-card dd { color: var(--black); font-size: 12px; font-weight: 800; text-align: right; }

/* ---------------- Blog and articles ---------------- */
.blog-preview-section { border-top: 1px solid var(--border); }
.blog-preview-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 45px; }
.blog-preview-heading h2 { max-width: 760px; margin-top: 13px; font-size: clamp(40px, 5.7vw, 68px); line-height: 1.02; letter-spacing: -0.055em; }
.blog-preview-heading > a { flex: 0 0 auto; padding-bottom: 8px; color: var(--blue); font-size: 12px; font-weight: 800; text-decoration: none; }
.blog-preview-grid, .blog-index-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.blog-card { border-top: 1px solid var(--border); }
.blog-card-image { display: block; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 22px; background: #eef1f5; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.025); }
.blog-card-copy > p:first-child { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 13px; }
.blog-card-copy > p:first-child span { color: var(--blue); font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-card-copy time { color: #8a94a1; font-size: 9.5px; }
.blog-card-copy h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.25; letter-spacing: -0.025em; }
.blog-card-copy h3 a { text-decoration: none; }
.blog-card-copy h3 a:hover { color: var(--blue); }
.blog-card-copy > p:not(:first-child) { min-height: 58px; color: var(--muted); font-size: 12.5px; }
.blog-card-copy > a { display: inline-block; margin-top: 15px; color: var(--blue); font-size: 11px; font-weight: 800; text-decoration: none; }
.blog-hero { padding: 175px 0 82px; border-bottom: 1px solid var(--border); }
.blog-hero h1 { max-width: 930px; margin: 15px 0 22px; font-size: clamp(54px, 7.5vw, 92px); line-height: .97; letter-spacing: -0.062em; }
.blog-hero p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 17px; }
.blog-featured-section { padding: 70px 0 0; }
.blog-featured { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr); gap: clamp(45px, 8vw, 100px); align-items: center; padding-bottom: 70px; border-bottom: 1px solid var(--border); }
.blog-featured > a { display: block; overflow: hidden; height: 520px; }
.blog-featured > a img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; transition: transform .6s var(--ease); }
.blog-featured:hover > a img { transform: scale(1.02); }
.blog-kicker { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-bottom: 20px; color: #8a94a1; font-size: 10px; }
.blog-kicker span { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.blog-kicker b { font-weight: 700; }
.blog-featured h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.05em; }
.blog-featured h2 a { text-decoration: none; }
.blog-featured h2 a:hover { color: var(--blue); }
.blog-featured div > p:not(.blog-kicker) { color: var(--muted); font-size: 14px; }
.blog-read-link { display: inline-block; margin-top: 25px; color: var(--blue); font-size: 12px; font-weight: 800; text-decoration: none; }
.blog-index-heading { margin-bottom: 42px; }
.blog-index-heading h2 { margin-top: 13px; font-size: clamp(38px, 5vw, 60px); letter-spacing: -0.05em; }
.blog-principles { padding: 80px 0; border-block: 1px solid var(--border); background: #f5f7fa; }
.blog-principles .container { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr); gap: 80px; align-items: end; }
.blog-principles h2 { margin-top: 12px; font-size: clamp(38px, 5vw, 60px); line-height: 1.02; letter-spacing: -0.05em; }
.blog-principles .container > p { color: var(--muted); font-size: 14px; }
.blog-cta { padding: 85px 0; }
.blog-cta .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.blog-cta h2 { margin: 12px 0 8px; font-size: clamp(38px, 5vw, 58px); letter-spacing: -0.05em; }
.blog-cta p:not(.eyebrow) { color: var(--muted); font-size: 13.5px; }

.article-hero { padding: 165px 0 72px; }
.article-hero-inner { max-width: 940px; }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 36px; color: #7e8896; font-size: 10.5px; }
.article-breadcrumb a { text-decoration: none; }
.article-breadcrumb a:hover { color: var(--blue); }
.article-hero h1 { margin: 15px 0 25px; font-size: clamp(52px, 7vw, 86px); line-height: .99; letter-spacing: -0.06em; }
.article-deck { max-width: 800px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.article-meta { display: flex; flex-wrap: wrap; gap: 11px 25px; margin-top: 28px; color: #7f8996; font-size: 10.5px; font-weight: 700; }
.article-lead-image .container { max-width: 1080px; }
.article-lead-image img { width: 100%; height: min(68vw, 650px); object-fit: cover; object-position: center 45%; }
.article-lead-image figcaption { margin-top: 10px; color: #8b94a0; font-size: 10.5px; }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, 730px); justify-content: center; gap: clamp(55px, 9vw, 110px); align-items: start; padding-top: 80px; padding-bottom: 100px; }
.article-toc { position: sticky; top: 115px; }
.article-toc > strong { display: block; margin-bottom: 13px; color: #7e8793; font-size: 9.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-toc nav { display: grid; border-top: 1px solid var(--border); }
.article-toc a { padding: 8px 0; border-bottom: 1px solid var(--border); color: #536071; font-size: 10.5px; font-weight: 700; text-decoration: none; }
.article-toc a:hover { color: var(--blue); }
.article-content { min-width: 0; }
.article-intro { padding-bottom: 38px; border-bottom: 1px solid var(--border); color: #303c4a; font-size: 19px; font-weight: 600; line-height: 1.75; }
.article-content section { scroll-margin-top: 115px; padding: 47px 0 6px; }
.article-content h2 { margin-bottom: 18px; font-size: clamp(31px, 4vw, 44px); line-height: 1.12; letter-spacing: -0.04em; }
.article-content section > p, .article-content li { color: #566273; font-size: 14px; line-height: 1.86; }
.article-content section > p + p { margin-top: 16px; }
.article-content ul, .article-content ol { display: grid; gap: 10px; margin: 19px 0 18px 22px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content a { color: var(--blue); font-weight: 700; text-underline-offset: 3px; }
.article-content blockquote { margin: 25px 0; padding: 22px 25px; border-left: 3px solid var(--blue); background: #f5f8fd; color: #263444; font-size: 18px; font-weight: 700; line-height: 1.55; }
.article-callout, .article-warning { margin: 27px 0; padding: 20px 22px; border-left: 3px solid var(--blue); background: #f5f8fd; }
.article-warning { border-color: #d8791a; background: #fff8ef; }
.article-callout strong, .article-warning strong { display: block; margin-bottom: 4px; font-size: 12.5px; }
.article-callout p, .article-warning p { color: #586678; font-size: 12px; line-height: 1.7; }
.article-end-cta { margin-top: 65px; padding: 42px 0; border-block: 1px solid var(--border); }
.article-end-cta h2 { margin: 13px 0 24px; font-size: clamp(34px, 5vw, 50px); line-height: 1.06; letter-spacing: -0.05em; }
.article-related { padding: 80px 0; border-top: 1px solid var(--border); background: #f5f7fa; }
.article-related header { margin-bottom: 35px; }
.article-related h2 { margin-top: 10px; font-size: 40px; letter-spacing: -0.04em; }
.article-related .container > div { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #d7dce3; }
.article-related .container > div a { display: grid; gap: 18px; padding: 28px 30px 28px 0; border-right: 1px solid #d7dce3; text-decoration: none; }
.article-related .container > div a + a { padding-left: 30px; border-right: 0; }
.article-related a span { color: var(--blue); font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.article-related a strong { max-width: 450px; font-size: 19px; }
.article-related a:hover strong { color: var(--blue); }

/* ---------------- Navbar shop update ---------------- */
.nav-order-alert { position: relative; display: flex; align-items: center; }
.nav-order-alert-trigger { position: relative; }
.nav-order-alert-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  box-sizing: content-box;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  animation: navOrderAlertPulse 2.4s ease-out infinite;
}
.nav-order-alert-popover {
  position: absolute;
  z-index: 220;
  top: calc(100% + 17px);
  right: -51px;
  width: 350px;
  padding: 22px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 24px 65px rgba(16, 30, 49, .16);
  opacity: 0;
  transform: translateY(-7px) scale(.985);
  transform-origin: 82% top;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s var(--ease);
}
.nav-order-alert-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 66px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: #fff;
  transform: rotate(45deg);
}
.nav-order-alert-popover.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-order-alert-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #778291;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.nav-order-alert-close:hover { background: #f2f5f8; color: var(--ink); }
.nav-order-alert-index { display: block; margin-bottom: 14px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.nav-order-alert-copy { padding-right: 22px; }
.nav-order-alert-copy small { display: block; margin-bottom: 6px; color: #7a8593; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.nav-order-alert-copy strong { display: block; color: var(--ink); font-size: 20px; line-height: 1.2; letter-spacing: -.025em; }
.nav-order-alert-copy p { margin: 8px 0 14px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.nav-order-alert-copy a { color: var(--blue); font-size: 10.5px; font-weight: 800; text-decoration: none; }
.nav-order-alert-copy a span { display: inline-block; transition: transform .2s ease; }
.nav-order-alert-copy a:hover span { transform: translateX(3px); }
.nav-order-alert-proof { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 13px; border-top: 1px solid var(--border); color: #778291; font-size: 9px; font-weight: 700; }
.nav-order-alert-proof i { width: 6px; height: 6px; border-radius: 50%; background: #43a56d; box-shadow: 0 0 0 3px #e4f4ea; }

@keyframes navOrderAlertPulse {
  0%, 55%, 100% { box-shadow: 0 0 0 0 rgba(28, 105, 213, 0); }
  70% { box-shadow: 0 0 0 5px rgba(28, 105, 213, .16); }
}

@media (max-width: 960px) {
  .smart-feedback-grid, .smart-product-hero-grid { grid-template-columns: 1fr; }
  .smart-feedback-preview { width: min(590px, 100%); margin-inline: auto; }
  .smart-product-principles header, .smart-product-feature-grid { grid-template-columns: 1fr; }
  .smart-product-feature-grid > div:first-child { position: static; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured > a { height: 500px; }
  .article-layout { grid-template-columns: 160px minmax(0, 1fr); gap: 55px; }
}

@media (max-width: 680px) {
  .nav-order-alert-popover {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 21px;
    transform-origin: center top;
  }
  .nav-order-alert-popover::before { display: none; }
  .smart-feedback-points, .smart-product-feature-grid > div:last-child { grid-template-columns: 1fr; }
  .smart-feedback-preview, .smart-product-preview { padding: 14px; }
  .smart-feedback-choice { grid-template-columns: 1fr; }
  .smart-product-hero { padding: 135px 0 60px; }
  .smart-product-hero h1 { font-size: clamp(47px, 14vw, 65px); }
  .smart-product-principles header { gap: 20px; }
  .smart-product-step-grid { grid-template-columns: 1fr; }
  .smart-product-step-grid article, .smart-product-step-grid article + article { min-height: 0; padding: 25px 0; border-right: 0; border-bottom: 1px solid #d9dee5; }
  .smart-product-step-grid h3 { margin-top: 22px; }
  .smart-product-feature-grid article, .smart-product-feature-grid article:nth-child(even) { min-height: 0; padding: 24px 0; border-left: 0; }
  .smart-policy-inner { grid-template-columns: 1fr; }
  .blog-preview-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .blog-preview-grid, .blog-index-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-card-copy > p:not(:first-child) { min-height: 0; }
  .blog-hero { padding: 138px 0 58px; }
  .blog-featured-section { padding-top: 40px; }
  .blog-featured { gap: 30px; padding-bottom: 50px; }
  .blog-featured > a { height: 370px; }
  .blog-principles .container { grid-template-columns: 1fr; gap: 25px; }
  .blog-cta .container { align-items: stretch; flex-direction: column; }
  .article-hero { padding: 135px 0 55px; }
  .article-hero h1 { font-size: clamp(45px, 13vw, 64px); }
  .article-deck { font-size: 16px; }
  .article-lead-image img { height: 390px; }
  .article-layout { grid-template-columns: 1fr; gap: 45px; padding-top: 55px; }
  .article-toc { position: static; }
  .article-toc nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
  .article-intro { font-size: 17px; }
  .article-related .container > div { grid-template-columns: 1fr; }
  .article-related .container > div a, .article-related .container > div a + a { padding: 25px 0; border-right: 0; border-bottom: 1px solid #d7dce3; }
  .smart-feedback-page-body .smart-product-hero { padding: 132px 0 52px; }
  .smart-feedback-page-body .smart-product-principles header { grid-template-columns: 1fr; gap: 18px; }
  .smart-soon-card { min-height: 320px; }
  .smart-soon-card div { display: grid; gap: 5px; }
  .smart-soon-card dd { text-align: left; }
}

@media (max-width: 360px) {
  .nav-order-alert-popover { top: 88px; right: 12px; left: 12px; }
  .nav-order-alert-copy strong { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-order-alert-dot { animation: none; }
  .nav-order-alert-popover, .nav-order-alert-copy a span { transition: none; }
}

/* ---------------- Unified section canvas ---------------- */
/* Section rhythm comes from spacing; light page bands share one exact white. */
main > section {
  border-top: 0;
  border-bottom: 0;
  border-block: 0;
}
main > section:not(.product-reviews-section):not(.smart-policy-section):not(.setup-guide-support) {
  background: var(--white);
}
.section-grey,
.tap-demo-section,
.smart-feedback-section,
.smart-product-principles,
.product-upsells-section,
.cart-page-section,
.blog-principles,
.article-related {
  background: var(--white);
}
.blog-featured,
.article-end-cta {
  border-top: 0;
  border-bottom: 0;
  border-block: 0;
}

@media (max-width: 680px) {
  .hero { padding-bottom: 88px; }
  .hero-scroll-cue { bottom: 18px; transform: translateX(-50%) scale(.88); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { display: none; }
}
