:root {
  --bg: #ffffff;
  --surface: #f7f7f8;
  --surface-strong: #efeff1;
  --text: #0b0b0d;
  --muted: #696970;
  --line: #e5e5e8;
  --dark: #0d0e10;
  --dark-2: #17181b;
  --success: #73d695;
  --accent: #6b30eb;
  --shadow-sm: 0 10px 30px rgb(12 12 14 / 6%);
  --shadow-md: 0 24px 70px rgb(12 12 14 / 10%);
  --shadow-lg: 0 42px 100px rgb(12 12 14 / 16%);
  --container: min(1180px, calc(100% - 40px));
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

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

.section-heading h2,
.stats-heading h2 {
  margin: 6px 0 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading p,
.stats-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #49494f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform .2s ease;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgb(115 214 149 / 55%);
  outline-offset: 3px;
}

.button-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 14px 34px rgb(13 14 16 / 18%);
}

.button-dark:hover {
  background: #25262a;
  box-shadow: 0 18px 40px rgb(13 14 16 / 24%);
}

.button-ghost {
  border-color: var(--line);
  background: rgb(255 255 255 / 72%);
}

.button-ghost:hover {
  background: var(--surface);
}

.button-sm {
  min-height: 44px;
  padding: 10px 17px;
  font-size: .9rem;
}


/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 84%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  border-color: rgb(229 229 232 / 90%);
  box-shadow: 0 14px 42px rgb(10 10 12 / 6%);
  background: rgb(255 255 255 / 94%);
}

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

.brand img {
  width: 178px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #35353a;
  font-size: .92rem;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
  transition: right .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  padding-bottom: 24px;
}

.mobile-nav>a:not(.button) {
  padding: 12px 6px;
  font-size: 1.05rem;
  font-weight: 700;
}


/* Hero */

.hero {
  min-height: 760px;
  padding-top: calc(var(--header-height) + 82px);
  padding-bottom: 86px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image: radial-gradient(circle at 9% 15%, rgb(115 214 149 / 10%), transparent 18%), radial-gradient(circle at 84% 34%, rgb(140 133 255 / 12%), transparent 24%), repeating-radial-gradient(ellipse at 8% 16%, transparent 0 36px, rgb(18 18 20 / 2.6%) 37px 38px, transparent 39px 63px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 72%);
  box-shadow: var(--shadow-sm);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow svg {
  color: var(--accent);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 5rem);
  line-height: .98;
  letter-spacing: -0.068em;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  min-width: 190px;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  border-color: #cfcfd4;
  box-shadow: var(--shadow-sm);
}

.store-button svg {
  width: 29px;
  height: 29px;
}

.store-button span {
  display: grid;
  line-height: 1.15;
  text-align: left;
}

.store-button small {
  color: inherit;
  font-size: .69rem;
  opacity: .68;
}

.store-button strong {
  margin-top: 2px;
  font-size: 1.08rem;
}

.store-button-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8e8eb, #fafafa);
  color: #232328;
  font-size: .72rem;
  font-weight: 850;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.stars {
  color: var(--accent);
  letter-spacing: .08em;
  line-height: 1;
}

.hero-proof p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.hero-proof strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-left {
  width: 260px;
  height: 260px;
  left: -120px;
  top: 160px;
  background: rgb(115 214 149 / 8%);
}

.hero-glow-right {
  width: 430px;
  height: 430px;
  right: -110px;
  top: 120px;
  background: rgb(147 132 255 / 10%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgb(22 22 24 / 8%);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.orbit-one {
  width: 520px;
  height: 340px;
  top: 100px;
  left: 28px;
}

.orbit-two {
  width: 380px;
  height: 260px;
  top: 145px;
  left: 96px;
}

.device-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 10px;
}

.hero-showcase-image {
  display: block;
  width: auto;
  max-width: min(100%, 760px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 48px rgb(15 15 19 / 18%));
}

.device {
  position: absolute;
  overflow: hidden;
  border: 8px solid #0b0b0d;
  background: #0b0b0d;
  box-shadow: var(--shadow-lg);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.device-ios {
  width: 286px;
  height: 585px;
  left: 72px;
  top: 10px;
  border-radius: 47px;
  transform: rotate(-3deg);
}

.device-android {
  width: 250px;
  height: 548px;
  left: 300px;
  top: 58px;
  border-radius: 38px;
  transform: rotate(4deg);
}

.device-notch {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 85px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #0b0b0d;
}

.camera-dot {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 11px;
  height: 11px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #0b0b0d;
}

.device-pedestal {
  position: absolute;
  z-index: 1;
  width: 590px;
  height: 112px;
  left: 8px;
  bottom: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #e9e9ec);
  box-shadow: 0 36px 55px rgb(12 12 14 / 13%);
}

.device-pedestal::before {
  content: "";
  position: absolute;
  inset: -40px 70px 44px;
  border-radius: 50%;
  background: rgb(151 133 255 / 18%);
  filter: blur(28px);
}

.benefit-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgb(229 229 232 / 90%);
  border-radius: 16px;
  background: rgb(255 255 255 / 90%);
  box-shadow: var(--shadow-md);
  font-size: .8rem;
  font-weight: 750;
  line-height: 1.2;
  animation: float-chip 4.5s ease-in-out infinite;
}

.chip-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
}

.chip-icon svg {
  width: 19px;
  height: 19px;
}

.chip-top {
  right: -8px;
  top: 76px;
}

.chip-right {
  right: -24px;
  top: 250px;
  animation-delay: -1.6s;
}

.chip-bottom {
  right: 18px;
  bottom: 56px;
  animation-delay: -2.8s;
}

@keyframes float-chip {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}


/* Product cards */

.products-section {
  background: linear-gradient(180deg, #fff, #fbfbfc 62%, #fff);
}

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

.product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(168px, 50vw);
  height: 82px;
  padding: 8px;
  box-shadow: 0 10px 28px rgb(12 12 14 / 4%);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  display: block;
  max-width: 154px;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1.12;
  border-radius: 20px;
  background: #f3f3f4;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 6px 18px rgb(10 10 12 / 8%);
  font-size: .72rem;
  font-weight: 800;
}

.product-badge-dark {
  background: var(--dark);
  color: #fff;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.favorite-button {
  position: absolute;
  z-index: 2;
  right: 11px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255 255 255 / 85%);
  box-shadow: 0 5px 16px rgb(13 14 16 / 8%);
}

.favorite-button svg {
  width: 19px;
  height: 19px;
}

.favorite-button.is-favorite {
  color: #fff;
  background: var(--dark);
}

.favorite-button.is-favorite svg {
  fill: currentColor;
}

.product-content {
  padding: 16px 8px 10px;
}

.product-content h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.rating {
  color: #3d3d43;
  font-size: .85rem;
}

.rating span {
  color: var(--accent);
}

.rating small {
  color: #97979e;
}

.product-price {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.15rem;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
}

.price-line del {
  color: #aaaab0;
  font-size: .84rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .89rem;
}


/* Brands */

.brands-section {
  padding-top: 98px;
  padding-bottom: 98px;
}

.brand-marquee {
  overflow: hidden;
  padding-block: 2px;
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: brand-marquee 24s linear infinite;
  will-change: transform;
}

.brand-track-inner {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(140px, 40vw);
  height: 58px;
  padding: 6px;
}

.brand-card img {
  display: block;
  width: auto;
  height: 40px;
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
  }
}

.legal-note {
  max-width: 860px;
  margin: 22px auto 0;
  color: #8b8b92;
  font-size: .75rem;
  text-align: center;
}


/* Shipping */

.shipping-section {
  background: var(--surface);
}

.shipping-layout {
  display: grid;
  grid-template-columns: .82fr 1.68fr;
  gap: 24px;
  align-items: stretch;
}

.shipping-map {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 10px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .08);
}

.shipping-map-preview {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
}

.shipping-map-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 32px 32px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .72) 100%);
  border-radius: 0 0 30px 30px;
}

.shipping-flag {
  font-size: 2rem;
}

.shipping-map h3 {
  margin: 8px 0 8px;
  font-size: 1.35rem;
}

.shipping-map p {
  margin: 0;
  color: var(--muted);
}

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

.courier-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
  transition: transform .24s ease, box-shadow .24s ease;
}

.courier-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 72px rgba(15, 23, 42, .12);
}

.courier-mark {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 66px;
  margin-bottom: 18px;
}

.courier-mark img {
  max-height: 48px;
  width: auto;
  display: block;
}


/* Responsive adjustments for shipping map and courier marks */

@media (max-width: 1024px) {

  /* Tablet landscape and smaller: map left, copy right. Wider right column for 1024px */
  .shipping-map {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    min-height: 340px;
    padding: 18px;
    border-radius: 20px;
  }

  .shipping-map-preview {
    grid-column: 1 / 2;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    position: relative;
  }

  .shipping-map-copy {
    position: static;
    grid-column: 2 / 3;
    align-self: center;
    padding: 8px 12px;
    background: transparent;
    border-radius: 8px;
    inset: auto;
  }
}

@media (max-width: 768px) {

  /* Tablet portrait: slightly narrower right column to increase map prominence */
  .shipping-map {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 14px;
    min-height: 300px;
    padding: 16px;
    border-radius: 18px;
  }

  .shipping-map-preview {
    grid-column: 1 / 2;
    border-radius: 12px;
  }

  .shipping-map-copy {
    grid-column: 2 / 3;
    padding: 10px;
  }
}

@media (max-width: 425px) {

  /* Mobile: stack map above text, center everything */
  .shipping-map {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
    padding: 14px;
    min-height: auto;
    border-radius: 16px;
  }

  .shipping-map-preview {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }

  .shipping-map-copy {
    position: static;
    grid-column: 1 / -1;
    text-align: center;
    padding: 8px 12px;
    background: transparent;
    border-radius: 8px;
  }

  /* Center courier logos on mobile */
  .courier-mark {
    justify-content: center;
  }

  .courier-mark img {
    margin: 0 auto;
    max-height: 65px;
  }
}

.courier-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.courier-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .86rem;
}

.courier-card li {
  position: relative;
  padding-left: 18px;
}

.courier-card li+li {
  margin-top: 4px;
}

.courier-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #138d4f;
  font-weight: 900;
}

.courier-tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
  color: #5c5c63;
  font-size: .72rem;
  font-weight: 700;
}


/* Stats */

.stats-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.stats-panel {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: 36px;
  background: repeating-radial-gradient(ellipse at 90% 25%, transparent 0 30px, rgb(255 255 255 / 4%) 31px 32px, transparent 33px 52px), linear-gradient(135deg, #0e0f11, #1b1c20);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.stats-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -170px;
  left: -70px;
  border-radius: 50%;
  background: rgb(107 48 235 / 12%);
  filter: blur(15px);
}

.stats-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.stats-heading h2 {
  margin-top: 10px;
}

.stats-heading p {
  color: rgb(255 255 255 / 62%);
}

.demo-badge {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 999px;
  background: rgb(255 255 255 / 6%);
  color: rgb(255 255 255 / 72%);
  font-size: .72rem;
  font-weight: 750;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.stat-card {
  position: relative;
  padding: 12px 28px;
  text-align: center;
}

.stat-card+.stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgb(255 255 255 / 20%);
}

.stat-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  background: rgb(255 255 255 / 6%);
}

.stat-icon svg {
  width: 25px;
  height: 25px;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.counter-suffix {
  margin-left: 1px;
}

.stat-card p {
  margin: 10px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: .9rem;
}


/* Contact */

.contact-section {
  background: linear-gradient(180deg, #fff, #fafafa);
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}

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

.contact-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-whatsapp {
  color: #159659;
  background: rgb(21 150 89 / 10%);
}

.contact-card span:last-child {
  min-width: 0;
  display: grid;
}

.contact-card small {
  color: var(--muted);
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: .93rem;
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #3f3f45;
  font-size: .82rem;
  font-weight: 700;
}

.contact-form>label {
  margin-top: 18px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}

input {
  min-height: 50px;
  padding: 0 15px;
}

textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #aaaab1;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #d14545;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  max-width: 280px;
}

.form-status.is-success {
  color: #187844;
}

.form-status.is-error {
  color: #b63737;
}


/* Footer */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 74px 0 24px;
  background: repeating-radial-gradient(ellipse at 12% 12%, transparent 0 35px, rgb(255 255 255 / 4%) 36px 37px, transparent 38px 61px), #111214;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .72fr 1fr;
  gap: 50px;
}

.footer-brand img {
  filter: invert(1) grayscale(1) brightness(4);
  width: 188px;
}

.footer-brand p,
.footer-newsletter p {
  color: rgb(255 255 255 / 62%);
}

.footer-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-store {
  min-width: 150px;
  min-height: 54px;
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 7%);
  color: #fff;
}

.footer-store:hover {
  border-color: rgb(255 255 255 / 32%);
  box-shadow: none;
}

.footer-store svg {
  width: 24px;
  height: 24px;
}

.footer-store strong {
  font-size: .9rem;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  background: rgb(255 255 255 / 5%);
  transition: background .2s ease, transform .2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgb(255 255 255 / 12%);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h2,
.footer-newsletter h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-column a {
  color: rgb(255 255 255 / 62%);
  font-size: .9rem;
}

.footer-column a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  margin-top: 18px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 999px;
  background: rgb(255 255 255 / 5%);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
}

.newsletter-form input:focus-visible {
  outline: 0;
}

.newsletter-form button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 3px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  cursor: pointer;
}

.newsletter-status {
  min-height: 22px;
  margin: 10px 0 0 !important;
  font-size: .8rem;
}

.footer-newsletter small {
  color: rgb(255 255 255 / 42%);
}

.footer-trust-badges {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}

.footer-trust-badges img {
  max-width: 140px;
  max-height: 40px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 50%);
  font-size: .8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}


/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}

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


/* =========================================================
   DAILY DISCOUNTS
   ========================================================= */

.discounts-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgb(255 215 92 / 10%), transparent 28%), radial-gradient(circle at 92% 42%, rgb(145 126 255 / 9%), transparent 30%), linear-gradient(180deg, #ffffff 0%, #fafafa 52%, #ffffff 100%);
}

.discounts-section .container {
  position: relative;
  z-index: 2;
}

.discounts-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.discounts-decoration-left {
  width: 340px;
  height: 340px;
  top: 180px;
  left: -230px;
  border: 1px solid rgb(18 18 20 / 7%);
}

.discounts-decoration-right {
  width: 440px;
  height: 440px;
  right: -310px;
  bottom: 150px;
  border: 1px solid rgb(18 18 20 / 6%);
}


/* Main layout */

.discounts-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}


/* Main dark card */

.discounts-feature {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 34px;
  background: radial-gradient(circle at 76% 28%, rgb(107 48 235 / 17%), transparent 24%), linear-gradient(145deg, #171719 0%, #09090b 100%);
  color: #fff;
  box-shadow: 0 35px 80px rgb(10 10 12 / 18%), inset 0 1px 0 rgb(255 255 255 / 8%);
}

.discounts-feature-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 20% 10%, transparent 0 45px, rgb(255 255 255 / 5%) 46px 47px, transparent 48px), radial-gradient(circle at 75% 65%, transparent 0 80px, rgb(255 255 255 / 5%) 81px 82px, transparent 83px), radial-gradient(circle at 45% 110%, transparent 0 120px, rgb(255 255 255 / 4%) 121px 122px, transparent 123px);
  background-size: 270px 220px, 390px 340px, 470px 400px;
}

.discounts-feature::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 270px;
  height: 270px;
  right: -110px;
  bottom: -110px;
  border-radius: 50%;
  background: rgb(107 48 235 / 12%);
  filter: blur(2px);
}

.discounts-feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.discounts-feature-kicker,
.discounts-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.discounts-feature-kicker {
  color: rgb(255 255 255 / 72%);
}

.discounts-feature-kicker svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.discounts-live-badge {
  padding: 8px 11px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 999px;
  background: rgb(255 255 255 / 7%);
  color: rgb(255 255 255 / 78%);
  letter-spacing: 0;
  text-transform: none;
}

.discounts-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70df91;
  box-shadow: 0 0 0 5px rgb(112 223 145 / 12%);
}

.discounts-feature-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-top: auto;
  padding-top: 80px;
}

.discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  font-size: 0.82rem;
  font-weight: 750;
}

.discount-tag-dot {
  width: 12px;
  height: 12px;
  border: 3px solid rgb(255 255 255 / 32%);
  border-radius: 50%;
}

.discount-tag-yellow .discount-tag-dot {
  background: #ffd33d;
}

.discounts-feature h3 {
  max-width: 690px;
  margin: 24px 0 18px;
  font-size: clamp(2.25rem, 4.2vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.discounts-feature h3 strong {
  color: #6b30eb;
  font-weight: 850;
}

.discounts-feature-content>p {
  max-width: 570px;
  margin: 0;
  color: rgb(255 255 255 / 63%);
  font-size: 1rem;
}

.discounts-feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.button-light {
  background: #fff;
  color: #111113;
  border-color: #fff;
}

.button-light:hover {
  background: #f1f1f3;
  border-color: #f1f1f3;
}

.discounts-text-link {
  color: rgb(255 255 255 / 76%);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 28%);
  text-underline-offset: 5px;
}

.discounts-text-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.discounts-feature-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.discounts-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.discounts-summary-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 13px;
  background: rgb(255 255 255 / 8%);
}

.discounts-summary-icon svg {
  width: 19px;
  height: 19px;
}

.discounts-summary-item div {
  display: grid;
  gap: 3px;
}

.discounts-summary-item strong {
  font-size: 0.86rem;
}

.discounts-summary-item span {
  color: rgb(255 255 255 / 50%);
  font-size: 0.76rem;
  line-height: 1.4;
}

.discounts-percentage {
  position: absolute;
  top: 94px;
  right: clamp(25px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  transform: rotate(4deg);
  color: rgb(255 255 255 / 8%);
  line-height: 0.72;
  user-select: none;
}

.discounts-percentage span {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  color: rgb(255 255 255 / 28%);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discounts-percentage strong {
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.1em;
}

.discounts-percentage small {
  margin-left: 8px;
  color: rgb(255 255 255 / 13%);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
}


/* Weekly calendar */

.discounts-calendar {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line, #e8e8eb);
  border-radius: 34px;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow-sm, 0 12px 30px rgb(12 12 14 / 6%));
  backdrop-filter: blur(15px);
}

.discounts-calendar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.discounts-calendar-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted, #74747c);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discounts-calendar h3 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.discounts-calendar-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border-radius: 16px;
  background: #f5f5f6;
}

.discounts-calendar-icon svg {
  width: 23px;
  height: 23px;
}

.discounts-calendar-description {
  max-width: 540px;
  margin: 18px 0 25px;
  color: var(--muted, #74747c);
  font-size: 0.88rem;
}

.discounts-days {
  display: grid;
  gap: 10px;
}

.discount-day {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 13px;
  border: 1px solid #eeeeef;
  border-radius: 17px;
  background: #fafafa;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.discount-day:hover {
  transform: translateX(4px);
  border-color: #d9d9dd;
  background: #fff;
}

.discount-day-featured {
  border-color: #1c1c1f;
  background: #121214;
  color: #fff;
  box-shadow: 0 15px 30px rgb(10 10 12 / 12%);
}

.discount-day-featured:hover {
  border-color: #1c1c1f;
  background: #121214;
}

.discount-day-info {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.discount-day-info div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.discount-day-info span:not(.discount-color) {
  color: var(--muted, #74747c);
  font-size: 0.73rem;
}

.discount-day-featured .discount-day-info span:not(.discount-color) {
  color: rgb(255 255 255 / 53%);
}

.discount-day-info strong {
  overflow: hidden;
  font-size: 0.85rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discount-color {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #dedee2;
}

.discount-color-blue {
  background: #377df0;
}

.discount-color-green {
  background: #45b96f;
}

.discount-color-yellow {
  background: #ffd33d;
}

.discount-color-orange {
  background: #ff9138;
}

.discount-color-pink {
  background: #ed78ad;
}

.discount-color-red {
  background: #df4551;
}

.discount-color-white {
  background: #f7f7f8;
}

.discount-color-black {
  background: #171719;
}

.discount-day-value {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 900;
}

.discount-day-featured .discount-day-value {
  color: #ffd74f;
}


/* How it works */

.discounts-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.discount-process-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line, #e8e8eb);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 30px rgb(12 12 14 / 4%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discount-process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md, 0 20px 45px rgb(12 12 14 / 10%));
}

.discount-process-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #eeeeef;
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.discount-process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 17px;
  background: #111113;
  color: #fff;
}

.discount-process-icon svg {
  width: 23px;
  height: 23px;
}

.discount-process-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.discount-process-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted, #74747c);
  font-size: 0.9rem;
}


/* Bottom CTA */

.discounts-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line, #e8e8eb);
  border-radius: 24px;
  background: linear-gradient(100deg, rgb(107 48 235 / 12%), rgb(255 255 255 / 92%) 38%, #fff);
}

.discounts-notice-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: #6b30eb;
  color: #fcfcfc;
}

.discounts-notice-icon svg {
  width: 23px;
  height: 23px;
}

.discounts-notice div {
  display: grid;
  gap: 4px;
}

.discounts-notice strong {
  font-size: 0.98rem;
}

.discounts-notice p {
  margin: 0;
  color: var(--muted, #74747c);
  font-size: 0.85rem;
}

.discounts-notice .button {
  white-space: nowrap;
}


/* Responsive */

@media (max-width: 1100px) {
  .discounts-showcase {
    grid-template-columns: 1fr;
  }

  .discounts-feature {
    min-height: 560px;
  }

  .discounts-calendar {
    max-width: none;
  }

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

  .discount-day-featured {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .discounts-process {
    grid-template-columns: 1fr;
  }

  .discount-process-card {
    min-height: auto;
  }

  .discount-process-icon {
    margin-bottom: 28px;
  }

  .discounts-notice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .discounts-notice .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {

  .discounts-feature,
  .discounts-calendar {
    border-radius: 26px;
  }

  .discounts-feature {
    min-height: auto;
    padding: 24px;
  }

  .discounts-feature-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .discounts-percentage {
    top: 112px;
    right: 22px;
  }

  .discounts-percentage strong {
    font-size: 6rem;
  }

  .discounts-feature-content {
    padding-top: 140px;
  }

  .discounts-feature h3 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .discounts-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .discounts-feature-actions .button {
    justify-content: center;
  }

  .discounts-text-link {
    text-align: center;
  }

  .discounts-feature-summary {
    grid-template-columns: 1fr;
  }

  .discounts-days {
    grid-template-columns: 1fr;
  }

  .discount-day-featured {
    grid-column: auto;
  }

  .discount-day:hover {
    transform: translateY(-2px);
  }

  .discounts-notice {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .discounts-notice-icon {
    margin-inline: auto;
  }
}

@media (max-width: 420px) {

  .discounts-feature,
  .discounts-calendar,
  .discount-process-card {
    padding: 20px;
  }

  .discounts-feature-content {
    padding-top: 120px;
  }

  .discounts-percentage {
    top: 125px;
  }

  .discounts-percentage strong {
    font-size: 5rem;
  }

  .discounts-summary-item {
    align-items: center;
  }

  .discount-day {
    padding-inline: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .discount-day,
  .discount-process-card {
    transition: none;
  }

  .discount-day:hover,
  .discount-process-card:hover {
    transform: none;
  }
}


/* Responsive */

@media (max-width: 1160px) {
  :root {
    --container: min(100% - 36px, 1080px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-login {
    display: none;
  }

  .hero-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
  }

  .hero-visual {
    transform: scale(.9);
    transform-origin: center right;
  }

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

  .shipping-map {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    min-height: auto;
  }

  .map-shape {
    margin-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1.25fr .65fr .7fr;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    max-width: 680px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav,
  .header-actions>.button {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 66px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: min(680px, 100%);
    min-height: 600px;
    margin-inline: auto;
    transform: none;
  }

  .hero-showcase-image {
    width: min(100%, 620px);
  }

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

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

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

  .stats-panel {
    padding-inline: 30px;
  }

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

  .stat-card:nth-child(3)::before {
    display: none;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 700px);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .brand img {
    width: 156px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 50px);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.9rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 430px;
    margin-inline: auto;
    margin-top: 28px;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
    transform: scale(.86);
    transform-origin: top center;
    margin-bottom: 0;
  }

  .hero-showcase-image {
    max-width: min(100%, 520px);
    max-height: 100%;
  }

  .chip-top {
    right: 8px;
  }

  .chip-right {
    right: -2px;
  }

  .chip-bottom {
    right: 15px;
  }

  .shipping-map {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

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

  .stats-panel {
    padding: 38px 20px;
    border-radius: 28px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  :root {
    --container: min(100% - 22px, 520px);
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .eyebrow {
    font-size: .66rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .avatar-stack span {
    width: 35px;
    height: 35px;
  }

  .hero-visual {
    min-height: 460px;
    transform: scale(.71);
    margin-bottom: 0;
  }

  .hero-showcase-image {
    max-width: min(100%, 430px);
    max-height: 100%;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card {
    padding: 7px;
    border-radius: 20px;
  }

  .product-media {
    border-radius: 16px;
  }

  .product-content {
    padding: 12px 4px 8px;
  }

  .product-content h3 {
    font-size: .9rem;
  }

  .product-price {
    font-size: 1rem;
  }

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

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

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

  .stat-card {
    padding: 24px 12px;
  }

  .stat-card+.stat-card::before {
    top: 0;
    left: 18%;
    right: 18%;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .stat-card:nth-child(3)::before {
    display: block;
  }

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

  .contact-form {
    padding: 22px;
  }

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

  .form-footer .button {
    width: 100%;
  }

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

  .footer-brand,
  .footer-newsletter {
    grid-column: auto;
  }

  .footer-store-buttons {
    flex-direction: column;
  }

  .footer-store {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom div {
    flex-direction: row;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    min-height: 420px;
    transform: scale(.64);
    margin-bottom: 0;
  }

  .hero-showcase-image {
    max-width: min(100%, 360px);
    max-height: 100%;
  }

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

  .product-content h3 {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}