:root {
  --ink: #111318;
  --muted: #667085;
  --paper: #f7f7f2;
  --panel: #ffffff;
  --line: rgba(17, 19, 24, 0.12);
  --teal: #16c7b7;
  --lime: #d8ff57;
  --coral: #ff6b57;
  --violet: #6c5ce7;
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 255, 87, 0.35), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(22, 199, 183, 0.26), transparent 26rem),
    linear-gradient(180deg, #fafaf5 0%, #f0f2ec 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(247, 247, 242, 0.78);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.trust-strip,
.segmented,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.12);
}

.brand-logo-wide {
  width: clamp(8.8rem, 14vw, 12rem);
  height: 3rem;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

nav {
  gap: clamp(0.8rem, 3vw, 2rem);
  color: rgba(17, 19, 24, 0.72);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-button {
  min-height: 2.75rem;
  padding: 0.68rem 0.9rem;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: scale(1.045);
  background: #fff;
}

nav a,
.header-cta {
  transition: color 180ms ease, transform 180ms ease;
}

nav a:hover,
.header-cta:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.header-cta {
  padding: 0.7rem 1.05rem;
  color: #fff;
  font-weight: 750;
  background: var(--ink);
  border-radius: 999px;
}

.cart-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.68rem 0.9rem;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, border 180ms ease, background 180ms ease;
}

.cart-button:hover,
.cart-button:focus-visible {
  transform: scale(1.045);
  background: #fff;
}

.cart-button strong {
  display: grid;
  min-width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  color: #fff;
  font-size: 0.76rem;
  background: var(--ink);
  border-radius: 50%;
}

.cart-button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.cart-button strong.is-empty {
  background: rgba(17, 19, 24, 0.34);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  gap: clamp(3rem, 9vw, 7rem);
  align-items: center;
  min-height: calc(100vh - 4.6rem);
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 5vw, 5rem) 3rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #0c7f75;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(4.4rem, 10vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 38rem;
  color: rgba(17, 19, 24, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-proof span {
  display: grid;
  min-width: 8.4rem;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  color: rgba(17, 19, 24, 0.64);
  font-size: 0.82rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 1rem;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.tap-target:hover,
.tap-target:focus-visible,
.segment:hover,
.segment:focus-visible,
.tier-option:hover,
.tier-option:focus-visible {
  transform: scale(1.045);
}

.button:focus-visible,
.tap-target:focus-visible,
.segment:focus-visible,
.tier-option:focus-visible {
  outline: 3px solid rgba(22, 199, 183, 0.38);
  outline-offset: 4px;
}

.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(17, 19, 24, 0.18);
}

.primary:hover {
  box-shadow: 0 18px 34px rgba(17, 19, 24, 0.24);
}

.secondary,
.small {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.small {
  min-height: 2.7rem;
  padding: 0.75rem 1rem;
}

.full {
  width: 100%;
}

.hero-stage {
  position: relative;
  overflow: visible;
  margin-left: clamp(1rem, 3vw, 2.5rem);
  min-height: clamp(28rem, 58vw, 43rem);
  isolation: isolate;
  perspective: 1100px;
}

.signal-ring {
  position: absolute;
  inset: 14% 10% auto auto;
  width: 18rem;
  aspect-ratio: 1;
  border: 2px solid rgba(22, 199, 183, 0.22);
  border-radius: 50%;
  animation: pulse 3.2s ease-in-out infinite;
}

.ring-two {
  inset: 4% 0 auto auto;
  width: 26rem;
  border-color: rgba(108, 92, 231, 0.16);
  animation-delay: 0.45s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.product-card {
  position: relative;
  display: flex;
  width: min(25rem, 78vw);
  aspect-ratio: 1.58;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(142deg, #111318 0%, #26332f 50%, #16c7b7 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.product-card:hover {
  transform: rotateX(4deg) rotateY(-7deg) translateY(-0.3rem);
}

.hero-card {
  position: absolute;
  top: 9%;
  right: 2%;
  transform: rotate(-8deg) rotateY(-14deg);
}

.hero-card:hover {
  transform: rotate(-6deg) rotateY(-8deg) translateY(-0.35rem);
}

.product-card::after {
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: 13rem;
  aspect-ratio: 1;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.9;
}

.card-chip {
  width: 3rem;
  height: 2.35rem;
  background:
    linear-gradient(90deg, transparent 49%, rgba(17, 19, 24, 0.18) 50%, transparent 51%),
    linear-gradient(#e6f7c2, #a6d565);
  border-radius: 0.55rem;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.2);
}

.card-brand {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 0.8;
}

.card-line,
.card-line.short {
  position: relative;
  z-index: 1;
  display: block;
  width: 46%;
  height: 0.42rem;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.card-line.short {
  width: 30%;
}

.card-tap {
  position: absolute;
  right: 1.4rem;
  bottom: 1.35rem;
  z-index: 1;
  color: rgba(17, 19, 24, 0.82);
  font-size: 0.8rem;
  font-weight: 850;
}

.stand-mockup {
  width: min(18rem, 64vw);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.stand-mockup:hover {
  transform: translateY(-0.3rem) rotateX(4deg);
}

.hero-stand {
  position: absolute;
  right: 2%;
  bottom: 4%;
  transform: rotate(8deg);
}

.hero-stand:hover {
  transform: rotate(7deg) translateY(-0.35rem);
}

.stand-face {
  display: grid;
  min-height: 16rem;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(216, 255, 87, 0.58), transparent 38%),
    linear-gradient(160deg, #ffffff 0%, #e8f7f2 100%);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1.25rem 1.25rem 0.7rem 0.7rem;
  box-shadow: var(--shadow);
}

.stand-logo {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  background: var(--ink);
  border-radius: 50%;
}

.stand-face strong {
  font-size: 1.8rem;
}

.stand-face span:last-child {
  color: var(--muted);
  font-weight: 700;
}

.stand-base {
  width: 82%;
  height: 2rem;
  margin: -0.15rem auto 0;
  background: linear-gradient(90deg, #111318, #3a4642);
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 18px 30px rgba(17, 19, 24, 0.2);
}

.stand-photo-card {
  position: relative;
  width: min(19rem, 66vw);
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-photo-card {
  position: relative;
  width: min(25rem, 78vw);
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-photo-card:hover {
  box-shadow: 0 28px 72px rgba(17, 19, 24, 0.18);
}

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

.hero-card.product-photo-card {
  width: min(23rem, 44vw);
  aspect-ratio: 1.7;
}

.product-card-photo {
  width: min(18rem, 100%);
  aspect-ratio: 1.25;
}

.stand-photo-card:hover {
  transform: translateY(-0.35rem) rotateX(3deg);
  box-shadow: 0 28px 72px rgba(17, 19, 24, 0.18);
}

.stand-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stand.stand-photo-card {
  width: min(18rem, 36vw);
  aspect-ratio: 3 / 2.25;
}

.product-stand-photo {
  width: min(17rem, 100%);
  aspect-ratio: 4 / 5;
}

.trust-strip {
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 0 1rem 4rem;
}

.trust-strip span {
  padding: 0.72rem 1rem;
  color: rgba(17, 19, 24, 0.74);
  font-size: 0.9rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 999px;
}

.proof-section {
  display: grid;
  gap: 1rem;
  padding-top: clamp(1rem, 3vw, 2rem);
}

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

.proof-stats article,
.origin-trust-grid article,
.trusted-strip,
.comparison-card,
.video-card,
.guarantee-card,
.newsletter-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
}

.proof-stats article {
  display: grid;
  gap: 0.2rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.proof-stats strong {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.proof-stats span,
.trusted-strip span {
  color: rgba(17, 19, 24, 0.62);
  font-weight: 800;
}

.trusted-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
}

.trusted-strip span {
  padding: 0.7rem 0.9rem;
  background: rgba(247, 247, 242, 0.82);
  border-radius: 999px;
}

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

.origin-trust-grid article {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: clamp(1.1rem, 3vw, 1.55rem);
}

.origin-trust-grid span {
  color: #0c7f75;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.origin-trust-grid strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
}

.origin-trust-grid p {
  margin-bottom: 0;
  color: rgba(17, 19, 24, 0.66);
  line-height: 1.65;
}

.section,
.interactive-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  max-width: 60rem;
  gap: 0.2rem;
  margin-bottom: clamp(1.8rem, 5vw, 3rem);
}

.product-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.product-tile {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border 200ms ease;
}

.product-tile:hover,
.product-tile:focus-visible {
  transform: translateY(-0.3rem);
  border-color: rgba(22, 199, 183, 0.5);
  box-shadow: 0 24px 58px rgba(17, 19, 24, 0.13);
}

.product-tile:focus-visible {
  outline: 3px solid rgba(22, 199, 183, 0.38);
  outline-offset: 4px;
}

.product-tile img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  background: #fff;
  border-radius: 0.8rem;
}

.product-tile h3 {
  margin-bottom: 0.35rem;
}

.product-tile p {
  margin-bottom: 0;
  color: rgba(17, 19, 24, 0.68);
  line-height: 1.55;
}

.process-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

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

.process-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 16rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
}

.process-card > span {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--ink);
  border-radius: 50%;
}

.process-card p {
  margin-bottom: 0;
  color: rgba(17, 19, 24, 0.68);
  line-height: 1.65;
}

.tap-guide-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(20rem, 1.28fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.tap-guide-copy p {
  max-width: 38rem;
  color: rgba(17, 19, 24, 0.68);
  line-height: 1.7;
}

.tap-guide-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.tap-guide-points span {
  padding: 0.72rem 1rem;
  color: rgba(17, 19, 24, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 999px;
}

.tap-guide-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1.15rem;
  box-shadow: 0 24px 70px rgba(17, 19, 24, 0.12);
}

.tap-guide-visual::before {
  position: absolute;
  inset: -20% auto auto -18%;
  width: 42%;
  aspect-ratio: 1;
  content: "";
  background: rgba(22, 199, 183, 0.16);
  border-radius: 50%;
  filter: blur(8px);
  animation: guideAura 6s ease-in-out infinite;
}

.tap-guide-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  animation: guideFloat 5.5s ease-in-out infinite;
}

.tap-glow {
  position: absolute;
  z-index: 2;
  display: block;
  width: clamp(2.4rem, 6vw, 5rem);
  aspect-ratio: 1;
  pointer-events: none;
  background: rgba(22, 199, 183, 0.12);
  border: 2px solid rgba(22, 199, 183, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 199, 183, 0.3), 0 0 34px rgba(22, 199, 183, 0.35);
  animation: tapGuidePulse 2.2s ease-out infinite;
}

.tap-glow-one {
  top: 17%;
  left: 48%;
}

.tap-glow-two {
  right: 14%;
  bottom: 35%;
  animation-delay: 0.8s;
}

@keyframes guideFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.45rem);
  }
}

@keyframes guideAura {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes tapGuidePulse {
  0% {
    opacity: 0.9;
    transform: scale(0.82);
    box-shadow: 0 0 0 0 rgba(22, 199, 183, 0.35), 0 0 34px rgba(22, 199, 183, 0.35);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
    box-shadow: 0 0 0 1.7rem rgba(22, 199, 183, 0), 0 0 34px rgba(22, 199, 183, 0);
  }
}

.comparison-grid,
.conversion-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-card {
  min-height: 18rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.comparison-card > span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 999px;
}

.comparison-card.before > span {
  color: #7b332a;
  background: rgba(255, 107, 87, 0.14);
}

.comparison-card.after {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 255, 87, 0.28), transparent 16rem),
    linear-gradient(135deg, #111318, #1f2d2a);
}

.comparison-card.after > span {
  color: var(--ink);
  background: var(--lime);
}

.comparison-card p {
  max-width: 34rem;
  color: rgba(17, 19, 24, 0.68);
  line-height: 1.7;
}

.comparison-card.after p {
  color: rgba(255, 255, 255, 0.74);
}

.video-card {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.video-frame {
  display: grid;
  min-height: 18rem;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(216, 255, 87, 0.42), transparent 45%),
    linear-gradient(145deg, #111318, #24312e);
  border-radius: 0.9rem;
}

.play-button {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  background: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.play-button:hover,
.play-button:focus-visible {
  transform: scale(1.06);
}

.video-card p,
.guarantee-card p,
.newsletter-card p {
  color: rgba(17, 19, 24, 0.68);
  line-height: 1.7;
}

.guarantee-card,
.newsletter-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.newsletter-card label,
.tracking-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(17, 19, 24, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.newsletter-card input,
.tracking-form input {
  min-height: 3.15rem;
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 19, 24, 0.14);
  border-radius: 0.8rem;
}

.newsletter-card .button {
  margin-top: 0.9rem;
}

.stand-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.stand-gallery img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 0.85rem;
  box-shadow: 0 16px 38px rgba(17, 19, 24, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.stand-gallery img:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 22px 46px rgba(17, 19, 24, 0.13);
}

.product-panel,
.price-card,
.tap-demo {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 19, 24, 0.1);
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(12rem, 0.95fr) minmax(13rem, 1fr);
  gap: 1.2rem;
  align-items: center;
  min-height: 24rem;
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 1rem;
  transition: transform 200ms ease, border 200ms ease, background 200ms ease;
}

.product-panel.active {
  border-color: rgba(22, 199, 183, 0.55);
  background: rgba(255, 255, 255, 0.88);
}

.product-panel:hover {
  transform: translateY(-0.25rem);
}

.panel-visual {
  display: grid;
  min-width: 0;
  place-items: center;
}

.panel-visual .product-card {
  width: min(18rem, 100%);
}

.panel-copy p,
.demo-copy p,
.price-card p {
  color: rgba(17, 19, 24, 0.68);
  line-height: 1.65;
}

.interactive-section {
  background: #101217;
  color: #fff;
}

.interactive-section .eyebrow {
  color: var(--lime);
}

.tap-demo {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  max-width: 75rem;
  margin: 0 auto;
  padding: clamp(1.2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 199, 183, 0.28), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
}

.demo-device {
  position: relative;
  display: grid;
  min-height: 31rem;
  place-items: center;
}

.phone {
  width: min(18rem, 82vw);
  padding: 0.75rem;
  background: #050609;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2.25rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.phone-screen {
  display: flex;
  min-height: 31rem;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 25% 18%, rgba(216, 255, 87, 0.62), transparent 8rem),
    radial-gradient(circle at 88% 8%, rgba(255, 107, 87, 0.48), transparent 9rem),
    linear-gradient(180deg, #1c2422 0%, #111318 100%);
  border-radius: 1.65rem;
}

.screen-pill,
.screen-link {
  align-self: flex-start;
  padding: 0.5rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.phone-screen strong {
  font-size: 2.15rem;
  line-height: 1;
}

.phone-screen p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(247, 247, 242, 0.2)),
    rgba(247, 247, 242, 0.35);
}

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

.review-card {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.review-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 24px 58px rgba(17, 19, 24, 0.12);
}

.review-topline,
.review-person {
  display: flex;
  align-items: center;
}

.review-topline {
  justify-content: space-between;
  gap: 1rem;
}

.stars {
  color: #e7a800;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-card p {
  margin-bottom: 0;
  color: rgba(17, 19, 24, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.review-person {
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(17, 19, 24, 0.1);
}

.profile-dot {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  font-weight: 900;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(17, 19, 24, 0.12);
}

.profile-teal {
  background: linear-gradient(135deg, #16c7b7, #0d766d);
}

.profile-coral {
  background: linear-gradient(135deg, #ff6b57, #a13d31);
}

.profile-violet {
  background: linear-gradient(135deg, #6c5ce7, #26235f);
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person span {
  color: rgba(17, 19, 24, 0.58);
  font-size: 0.9rem;
  font-weight: 750;
}

.faq-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.faq-list {
  display: grid;
  max-width: 58rem;
  gap: 0.75rem;
}

.faq-list details {
  padding: clamp(1rem, 3vw, 1.35rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 0.95rem;
  box-shadow: 0 14px 36px rgba(17, 19, 24, 0.07);
}

.faq-list summary {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  max-width: 46rem;
  margin: 0.75rem 0 0;
  color: rgba(17, 19, 24, 0.68);
  line-height: 1.7;
}

.tap-target {
  position: absolute;
  right: 6%;
  bottom: 10%;
  display: grid;
  width: 5.6rem;
  height: 5.6rem;
  place-items: center;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  background: var(--lime);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(216, 255, 87, 0.42), 0 20px 40px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tap-target.is-tapped {
  animation: tapPulse 520ms ease;
}

@keyframes tapPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 255, 87, 0.65), 0 20px 40px rgba(0, 0, 0, 0.22);
  }
  100% {
    box-shadow: 0 0 0 2rem rgba(216, 255, 87, 0), 0 20px 40px rgba(0, 0, 0, 0.22);
  }
}

.demo-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.segmented {
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.segment {
  min-width: 6.2rem;
  padding: 0.82rem 1rem;
  color: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-weight: 850;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.segment.active {
  color: var(--ink);
  background: var(--lime);
}

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

.price-card {
  display: flex;
  min-height: 33rem;
  flex-direction: column;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border-radius: 1rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.price-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 24px 58px rgba(17, 19, 24, 0.13);
}

.price-card.featured {
  background:
    linear-gradient(135deg, rgba(216, 255, 87, 0.62), transparent 42%),
    #ffffff;
  border-color: rgba(17, 19, 24, 0.2);
}

.price-label {
  margin-bottom: 1.4rem;
  color: #0c7f75;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-photo {
  display: grid;
  min-height: 10rem;
  overflow: hidden;
  place-items: center;
  margin: 1rem 0 1.1rem;
  color: rgba(17, 19, 24, 0.52);
  font-size: 0.86rem;
  font-weight: 850;
  background:
    linear-gradient(135deg, rgba(22, 199, 183, 0.14), transparent 48%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(17, 19, 24, 0.06));
  border: 1px dashed rgba(17, 19, 24, 0.2);
  border-radius: 0.9rem;
}

.pricing-photo.has-photo {
  background: #fff;
  border-style: solid;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.pricing-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
}

.tier-list {
  display: grid;
  gap: 0.6rem;
  margin: 0.25rem 0 1rem;
}

.tier-option {
  display: flex;
  width: 100%;
  min-height: 3.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font: inherit;
  text-align: left;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 19, 24, 0.11);
  border-radius: 0.85rem;
  cursor: pointer;
  transition: transform 180ms ease, border 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tier-option span {
  color: rgba(17, 19, 24, 0.7);
  font-weight: 800;
}

.tier-option strong {
  font-size: 1.05rem;
}

.tier-option.active {
  background: #111318;
  border-color: #111318;
  box-shadow: 0 12px 26px rgba(17, 19, 24, 0.14);
}

.tier-option.active span,
.tier-option.active strong {
  color: #fff;
}

.checkout-note {
  min-height: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(17, 19, 24, 0.64);
  font-size: 0.92rem;
  font-weight: 750;
}

.price-card .button {
  margin-top: auto;
}

.checkout-link {
  margin-top: 0.7rem;
}

.programming-addon {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0.95rem;
  background: rgba(247, 247, 242, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 0.9rem;
}

.checkout-programming {
  margin-top: 0;
}

.addon-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  cursor: pointer;
}

.addon-toggle input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--ink);
}

.addon-toggle span,
.programming-fields {
  display: grid;
  gap: 0.25rem;
}

.addon-toggle strong {
  font-size: 0.98rem;
}

.addon-toggle small,
.programming-fields label {
  color: rgba(17, 19, 24, 0.66);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
}

.programming-fields {
  padding-top: 0.2rem;
}

.programming-fields input,
.programming-fields textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 0.75rem;
}

.programming-fields input.field-error {
  border-color: rgba(255, 107, 87, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 107, 87, 0.12);
}

.purchase-gallery {
  display: grid;
  gap: 0.9rem;
  margin: 1.35rem 0 1.4rem;
}

.gallery-main-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 22px 60px rgba(17, 19, 24, 0.12);
}

.gallery-main-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-auto-columns: minmax(4.8rem, 5.8rem);
  grid-auto-flow: column;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.05rem 0 0.35rem;
  scroll-snap-type: x mandatory;
}

.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 0.65rem;
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.09);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  transform: translateY(-0.15rem);
  border-color: rgba(22, 199, 183, 0.55);
}

.gallery-thumb.active {
  border-color: var(--ink);
  box-shadow: 0 14px 28px rgba(17, 19, 24, 0.14);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.55fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.detail-copy {
  max-width: 48rem;
}

.detail-copy h1 {
  max-width: 11ch;
}

.detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.detail-points span {
  padding: 0.72rem 1rem;
  color: rgba(17, 19, 24, 0.74);
  font-size: 0.9rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 999px;
}

.detail-order {
  position: sticky;
  top: 6rem;
  min-height: auto;
}

.product-info-sections {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(2.5rem, 7vw, 5rem);
}

.info-card,
.checkout-form,
.checkout-summary-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
}

.info-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.info-card h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
}

.info-card p,
.info-card li,
.info-card dd,
.info-card blockquote {
  color: rgba(17, 19, 24, 0.7);
  line-height: 1.7;
}

.spec-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.3rem 0 0;
}

.spec-list div {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(17, 19, 24, 0.1);
}

.spec-list dt {
  color: var(--ink);
  font-weight: 850;
}

.spec-list dd {
  margin: 0;
}

.benefit-list {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-badges span {
  padding: 0.65rem 0.85rem;
  color: #0b625c;
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(22, 199, 183, 0.12);
  border: 1px solid rgba(22, 199, 183, 0.24);
  border-radius: 999px;
}

.order-assurance {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 1rem;
}

.order-assurance span {
  color: rgba(17, 19, 24, 0.66);
  font-size: 0.88rem;
  font-weight: 800;
}

.frequently-bought .button {
  margin-top: 0.7rem;
}

.info-card details {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(17, 19, 24, 0.1);
}

.info-card details:first-of-type {
  border-top: 0;
}

.info-card summary {
  font-weight: 850;
  cursor: pointer;
}

.info-card blockquote {
  margin: 0 0 0.9rem;
  font-size: 1.08rem;
  font-weight: 650;
}

.info-card cite {
  color: rgba(17, 19, 24, 0.58);
  font-style: normal;
  font-weight: 800;
}

.product-reviews-card {
  grid-column: 1 / -1;
}

.product-reviews-card h2 {
  max-width: 15ch;
}

.product-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-mini-review {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  background: rgba(247, 247, 242, 0.72);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 0.9rem;
}

.product-mini-review p {
  margin-bottom: 0;
}

.review-person img {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(17, 19, 24, 0.12);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: rgba(17, 19, 24, 0);
  border: 0;
  opacity: 0;
  transition: opacity 180ms ease, background 180ms ease;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 21;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  width: min(26rem, 92vw);
  height: 100vh;
  padding: 1.2rem;
  background: #fff;
  box-shadow: -24px 0 70px rgba(17, 19, 24, 0.18);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.search-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 22;
  display: grid;
  align-content: start;
  gap: 1rem;
  width: min(28rem, 92vw);
  height: 100vh;
  padding: 1.2rem;
  background: #fff;
  box-shadow: -24px 0 70px rgba(17, 19, 24, 0.18);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.search-open .search-panel {
  transform: translateX(0);
}

.account-menu {
  position: fixed;
  top: 5.1rem;
  right: clamp(1rem, 4vw, 4rem);
  z-index: 19;
  display: grid;
  gap: 0.55rem;
  width: min(18rem, calc(100vw - 2rem));
  padding: 1rem;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 24px 58px rgba(17, 19, 24, 0.13);
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.account-open .account-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.account-menu p,
.account-menu a {
  margin: 0;
  color: rgba(17, 19, 24, 0.66);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.5;
}

.account-menu a {
  color: var(--ink);
}

.cart-open .cart-overlay {
  pointer-events: auto;
  background: rgba(17, 19, 24, 0.38);
  opacity: 1;
}

.cart-open .cart-panel {
  transform: translateX(0);
}

.cart-panel-header,
.cart-totals span,
.checkout-lines article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-panel-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17, 19, 24, 0.1);
}

.cart-panel-header strong {
  font-size: 1.35rem;
}

.cart-close,
.remove-item,
.cart-quantity button {
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-close,
.remove-item {
  color: rgba(17, 19, 24, 0.64);
  background: transparent;
  border: 0;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  overflow-y: auto;
  padding: 1rem 0;
}

.cart-extras {
  display: grid;
  gap: 0.8rem;
  padding-bottom: 1rem;
}

.shipping-progress,
.cart-upsell,
.coupon-box {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem;
  background: rgba(247, 247, 242, 0.82);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 0.9rem;
}

.shipping-progress span,
.cart-upsell span,
.coupon-box {
  color: rgba(17, 19, 24, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
}

.shipping-progress div {
  height: 0.55rem;
  overflow: hidden;
  background: rgba(17, 19, 24, 0.1);
  border-radius: 999px;
}

.shipping-progress i {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
}

.coupon-box input,
.search-box input {
  min-height: 2.85rem;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 0.7rem;
}

.cart-upsell a {
  color: var(--ink);
  font-weight: 900;
}

.search-box {
  display: grid;
  gap: 0.5rem;
  color: rgba(17, 19, 24, 0.64);
  font-weight: 850;
}

.search-results {
  display: grid;
  gap: 0.7rem;
}

.search-results a {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  background: rgba(247, 247, 242, 0.82);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 0.85rem;
}

.search-results span {
  color: rgba(17, 19, 24, 0.62);
  line-height: 1.5;
}

.cart-item {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  gap: 0.85rem;
  padding: 0.85rem;
  background: rgba(247, 247, 242, 0.82);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 0.9rem;
}

.cart-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.7rem;
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span,
.empty-cart {
  color: rgba(17, 19, 24, 0.62);
}

.cart-quantity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.cart-quantity button {
  min-width: 2rem;
  min-height: 2rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 999px;
}

.cart-quantity .remove-item {
  padding-inline: 0.5rem;
  color: #a13d31;
  background: rgba(255, 107, 87, 0.1);
  border-color: rgba(255, 107, 87, 0.2);
}

.cart-totals {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(17, 19, 24, 0.1);
}

.total-line {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.cart-checkout {
  margin-top: 0.2rem;
}

.checkout-hero {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.checkout-hero h1 {
  max-width: 11ch;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.45fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: start;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
}

.checkout-form,
.checkout-summary-card {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.checkout-summary-card {
  position: sticky;
  top: 6rem;
}

.form-section {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(17, 19, 24, 0.1);
}

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

.form-grid label {
  display: grid;
  gap: 0.45rem;
  color: rgba(17, 19, 24, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid input {
  min-height: 3.15rem;
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 19, 24, 0.14);
  border-radius: 0.8rem;
  outline: 0;
}

.form-grid input:focus {
  border-color: rgba(22, 199, 183, 0.72);
  box-shadow: 0 0 0 4px rgba(22, 199, 183, 0.13);
}

.form-grid input.field-error {
  border-color: rgba(255, 107, 87, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 107, 87, 0.12);
}

.form-grid textarea {
  width: 100%;
  resize: vertical;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 19, 24, 0.14);
  border-radius: 0.8rem;
  outline: 0;
}

.form-grid textarea:focus {
  border-color: rgba(22, 199, 183, 0.72);
  box-shadow: 0 0 0 4px rgba(22, 199, 183, 0.13);
}

.express-payments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.express-payments button {
  min-height: 3rem;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 0.85rem;
  cursor: pointer;
  transition: transform 180ms ease, border 180ms ease;
}

.express-payments button:hover,
.express-payments button:focus-visible {
  transform: translateY(-0.12rem);
  border-color: rgba(22, 199, 183, 0.55);
}

.express-payments button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.secure-note {
  margin: 0.8rem 0 0;
  color: rgba(17, 19, 24, 0.56);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.payment-placeholder {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  color: rgba(17, 19, 24, 0.66);
  background:
    linear-gradient(135deg, rgba(216, 255, 87, 0.24), transparent 54%),
    rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(17, 19, 24, 0.22);
  border-radius: 0.9rem;
}

.payment-placeholder strong {
  color: var(--ink);
}

.form-message {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: #0b625c;
  font-weight: 800;
}

.checkout-lines {
  display: grid;
  gap: 0.85rem;
}

.checkout-lines article {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(17, 19, 24, 0.1);
}

.checkout-lines small {
  color: rgba(17, 19, 24, 0.55);
  font-weight: 700;
}

.checkout-badges {
  margin-top: 1.2rem;
}

.detail-media-section {
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
}

.detail-gallery {
  display: grid;
  grid-auto-columns: minmax(18rem, 42vw);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.1);
  scroll-snap-align: start;
}

.site-footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  color: rgba(17, 19, 24, 0.62);
  font-weight: 750;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  width: clamp(7.5rem, 13vw, 10rem);
  height: 2.5rem;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: rgba(17, 19, 24, 0.64);
}

.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.policy-page {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.policy-card {
  max-width: 58rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
}

.policy-card h1 {
  max-width: 12ch;
}

.policy-card h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
}

.policy-card p {
  max-width: 48rem;
  color: rgba(17, 19, 24, 0.7);
  line-height: 1.75;
}

.policy-card ul,
.policy-card ol {
  max-width: 48rem;
  color: rgba(17, 19, 24, 0.7);
  line-height: 1.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
  gap: 1rem;
  align-items: start;
}

.tracking-form {
  display: grid;
  max-width: 34rem;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.sticky-buy-bar {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: 1rem;
  left: clamp(1rem, 4vw, 2rem);
  z-index: 18;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 58rem;
  margin: 0 auto;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  box-shadow: 0 22px 60px rgba(17, 19, 24, 0.16);
  backdrop-filter: blur(18px);
}

.sticky-buy-bar span {
  padding-left: 0.75rem;
  font-weight: 900;
}

.sticky-buy-bar .button {
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
}

@media (max-width: 980px) {
  .hero,
  .tap-demo,
  .product-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    margin-left: 0;
    min-height: 36rem;
  }

  .hero-card {
    right: 4%;
  }

  .hero-stand {
    right: 5%;
    left: auto;
  }

  .product-grid,
  .pricing-grid,
  .catalog-grid,
  .process-grid,
  .proof-stats,
  .origin-trust-grid,
  .tap-guide-section,
  .comparison-grid,
  .video-card,
  .conversion-section,
  .contact-layout,
  .reviews-grid,
  .product-detail,
  .product-info-sections,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .detail-order {
    position: static;
  }

  .checkout-summary-card {
    position: static;
  }

  .sticky-buy-bar {
    display: flex;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: static;
    gap: 0.55rem;
  }

  nav {
    display: none;
  }

  .nav-tools {
    gap: 0.3rem;
  }

  .header-cta,
  .cart-button,
  .icon-button {
    padding-inline: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .brand-logo-wide {
    width: 7.4rem;
    height: 2.55rem;
  }

  .cart-button span {
    display: none;
  }

  .icon-button {
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(4.2rem, 21vw, 7rem);
  }

  .hero-stage {
    min-height: 31rem;
  }

  .hero-card {
    top: 3%;
    right: 0;
  }

  .hero-stand {
    right: 4%;
    bottom: 0;
  }

  .signal-ring {
    width: 15rem;
  }

  .ring-two {
    width: 20rem;
  }

  .tap-demo {
    border-radius: 0.9rem;
  }

  .phone-screen {
    min-height: 27rem;
  }

  .segmented {
    align-items: stretch;
    border-radius: 1.2rem;
  }

  .segment {
    flex: 1 1 8rem;
  }

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

  .detail-gallery {
    grid-auto-columns: minmax(16rem, 82vw);
  }

  .product-info-sections {
    gap: 0.85rem;
  }

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

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

  .product-review-list {
    grid-template-columns: 1fr;
  }

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

  .cart-panel {
    width: 100vw;
  }

  .search-panel {
    width: 100vw;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-buy-bar {
    align-items: stretch;
    flex-direction: column;
    border-radius: 1rem;
  }

  .sticky-buy-bar span {
    padding-left: 0;
    text-align: center;
  }

  .tap-guide-section {
    gap: 1.3rem;
  }

  .tap-guide-visual {
    border-radius: 0.9rem;
  }

  .tap-glow-one {
    top: 16%;
    left: 48%;
  }

  .tap-glow-two {
    right: 13%;
    bottom: 35%;
  }
}
