:root {
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --bg-950: #06080d;
  --bg-900: #0b1017;
  --bg-850: #111824;

  --surface-a: rgba(20, 28, 40, 0.52);
  --surface-b: rgba(24, 32, 46, 0.56);
  --surface-card: rgba(20, 28, 40, 0.72);

  --text-100: #edf3ff;
  --text-200: #c9d6eb;
  --text-300: #91a1ba;

  --accent-500: #3f84ff;
  --accent-400: #6ca2ff;
  --accent-300: #9ec2ff;

  --line-ghost: rgba(255, 255, 255, 0.025);
  --line-soft: rgba(255, 255, 255, 0.05);
  --line-row: rgba(255, 255, 255, 0.08);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 140px;
  --card-pad: 24px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-sm: var(--shadow-soft);
  --shadow-md: var(--shadow-soft);

  --label-size: 0.72rem;
  --label-track: 0.1em;
  --label-color: rgba(201, 214, 235, 0.74);

  --dur-fast: 170ms;
  --dur-med: 280ms;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: rgba(158, 194, 255, 0.34) transparent;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text-100);
  line-height: 1.6;
  background: #070b12;
  overflow-x: clip;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: rgba(158, 194, 255, 0.24);
  border: 3px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: rgba(158, 194, 255, 0.42);
  border: 3px solid transparent;
  background-clip: padding-box;
}
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: transparent;
}
body::before {
  content: none;
}

body::after {
  content: none;
}

main {
  padding: 0 0 var(--space-5);
}

.container {
  width: min(1200px, calc(100% - 4rem));
  margin: 0 auto;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
.brand-text {
  font-family: var(--font-display);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(10px);
  transition: border-color var(--dur-med) var(--ease), background var(--dur-med) var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(7, 11, 18, 0.96);
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-text {
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translateY(1px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 9px;
  padding: 0.34rem 0.66rem;
  color: var(--text-200);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-100);
  background: rgba(108, 162, 255, 0.12);
  transform: translateY(-1px);
}

.section {
  margin-top: 0;
  padding-block: var(--space-6);
}

.hero {
  margin-top: 0;
  margin-bottom: clamp(4.5rem, 9vh, 7rem);
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-height: 48vh;
  padding: clamp(7rem, 18vh, 12rem) 0 clamp(5rem, 12vh, 8rem);
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.9rem;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: -0.4rem;
  width: 100vw;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(52, 77, 116, 0.34) 0%,
    rgba(36, 54, 82, 0.2) 48%,
    rgba(7, 11, 18, 0) 100%
  );
}

.hero::after {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 76ch;
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  row-gap: 1.45rem;
}

.hero .eyebrow {
  margin-bottom: 0.52rem;
  padding: 0.34rem 0.62rem;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(108, 162, 255, 0.34);
  background: rgba(108, 162, 255, 0.11);
  color: var(--label-color);
  text-transform: uppercase;
  padding: 0.42rem 0.72rem;
}

.eyebrow,
.badge,
.verified,
.compare-chip {
  color: var(--label-color);
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: var(--label-track);
}

.how-step-index {
  color: var(--label-color);
  font-size: var(--label-size);
  letter-spacing: var(--label-track);
  text-transform: uppercase;
}

.hero-brand {
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tagline {
  margin-top: 0;
  color: rgba(237, 243, 255, 0.86);
  font-size: clamp(1.02rem, 1.7vw, 1.34rem);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(18px);
}

.hero-proof {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.hero-proof strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
}

.hero-proof [data-delivered-count] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.hero-proof .sep {
  opacity: 0.35;
}

.hero-proof .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1f7aec;
  box-shadow: 0 0 0 3px rgba(31, 122, 236, 0.18);
}

.hero.reveal.is-visible .hero-brand {
  animation: hero-line-in 520ms var(--ease) 120ms forwards;
}

.hero.reveal.is-visible .hero-tagline {
  animation: hero-line-in 540ms var(--ease) 220ms forwards;
}

.hero.reveal.is-visible .hero-proof {
  animation: hero-line-in 560ms var(--ease) 320ms forwards;
}

@keyframes hero-line-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.how-delivery {
  padding-top: var(--space-5);
  padding-bottom: var(--space-6);
}

.how-steps {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  align-items: stretch;
}

.how-step {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 27, 39, 0.46);
  box-shadow: var(--shadow-soft);
  padding: var(--card-pad);
  display: grid;
  gap: var(--space-1);
}

.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: calc(var(--space-3) * -0.5);
  width: var(--space-3);
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.how-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(185, 221, 255, 0.88);
  position: relative;
}

.how-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 7px;
  height: 10px;
  border-right: 1.5px solid rgba(185, 221, 255, 0.88);
  border-bottom: 1.5px solid rgba(185, 221, 255, 0.88);
  transform: rotate(40deg);
}

.how-step-index {
  font-weight: 600;
}

.how-step h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.how-step p {
  color: rgba(188, 202, 222, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

#before-after,
#testimonials {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  padding: var(--space-4);
}

#testimonials {
  background: linear-gradient(180deg, var(--surface-b), rgba(22, 30, 42, 0.58));
}

#before-after {
  background: linear-gradient(180deg, var(--surface-a), rgba(18, 25, 36, 0.56));
}

#products {
  scroll-margin-top: 96px;
}

#products.section-open {
  position: relative;
  isolation: isolate;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

#products.section-open::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: 84px;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(92, 142, 224, 0.12) 0%, rgba(92, 142, 224, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

#products.section-open > * {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 60ch;
}

.section-head h2 {
  margin-top: 0.22rem;
  font-size: clamp(1.62rem, 3.1vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

#products .section-head h2 {
  font-size: clamp(1.18rem, 1.82vw, 1.62rem);
  font-weight: 680;
  line-height: 1.04;
  white-space: nowrap;
}

.section-copy {
  margin-top: 0.44rem;
  color: rgba(201, 214, 235, 0.76);
  font-size: 1rem;
  max-width: 60ch;
  line-height: 1.6;
}

.product-grid {
  margin-top: 1.82rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.products-section.reveal .section-head,
.products-section.reveal .product-card-link {
  opacity: 0;
  will-change: opacity, transform;
}

.products-section.reveal .section-head {
  transform: translateY(18px);
}

.product-card-link {
  --product-enter-delay: 0ms;
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.products-section.reveal .product-card-link {
  transform: translateY(34px) scale(0.985);
  pointer-events: none;
}

.products-section.reveal.is-visible .section-head {
  animation: product-section-head-in 440ms var(--ease) 60ms forwards;
}

.products-section.reveal.is-visible .product-card-link {
  pointer-events: auto;
  animation: product-card-in 560ms var(--ease) var(--product-enter-delay) forwards;
}

.products-section.reveal.is-visible .product-card-link:nth-child(1) {
  --product-enter-delay: 140ms;
}

.products-section.reveal.is-visible .product-card-link:nth-child(2) {
  --product-enter-delay: 260ms;
}

.products-section.reveal.is-visible .product-card-link:nth-child(3) {
  --product-enter-delay: 380ms;
}

@keyframes product-section-head-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-card-in {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card {
  height: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(22, 29, 42, 0.9), rgba(12, 18, 28, 0.96));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.product-card.is-recommended {
  border-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(22, 29, 42, 0.9), rgba(12, 18, 28, 0.96));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.product-card.is-secondary {
  border-color: rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(22, 29, 42, 0.9), rgba(12, 18, 28, 0.96));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.product-card::before {
  content: none;
}

.product-card-link:hover .product-card,
.product-card-link:focus-visible .product-card {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.product-card-link:focus-visible {
  outline: none;
}

.product-card-link:focus-visible .product-card {
  box-shadow:
    0 0 0 2px rgba(183, 203, 230, 0.2),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

.product-card-link:hover .product-card::after,
.product-card-link:focus-visible .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(122, 183, 255, 0.35);
  pointer-events: none;
}

.product-image {
  position: relative;
  aspect-ratio: 16 / 10.8;
  background: #152032;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.48) 62%,
    rgba(0, 0, 0, 0.74) 100%
  );
}

.thumb-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 12px;
  border: 0;
  box-shadow: none;
}

.thumb-frame::after {
  content: none;
}

.thumb-frame::before {
  content: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: saturate(0.78) contrast(0.92) brightness(0.93);
  transition: filter 180ms var(--ease), transform 180ms var(--ease);
}

.product-card-link:hover .product-image img,
.product-card-link:focus-visible .product-image img {
  transform: scale(1.08);
  filter: saturate(0.82) contrast(0.94) brightness(0.98);
}

.product-body {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(24, 33, 48, 0.86), rgba(16, 23, 35, 0.96));
  padding: 1.55rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.72rem;
  flex: 1;
}

.product-head {
  display: grid;
  gap: 0.74rem;
}

.product-reason {
  display: grid;
  gap: 0.12rem;
  justify-items: start;
}

.badge {
  width: fit-content;
  line-height: 1;
  padding: 3px 9px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(214, 228, 247, 0.72);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
}

.product-title {
  color: #f8fcff;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 710;
  margin-top: 0.12rem;
}

.product-subline {
  color: rgba(201, 214, 235, 0.58);
  font-size: 0.72rem;
  line-height: 1.45;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.72rem;
  margin-top: 0.16rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.price-old {
  color: rgba(188, 202, 222, 0.48);
  font-size: 0.8rem;
  font-weight: 520;
  letter-spacing: 0.01em;
  text-decoration: line-through;
  text-decoration-color: rgba(219, 231, 247, 0.5);
  text-decoration-thickness: 1px;
}

.price-note {
  color: rgba(181, 199, 222, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  margin-top: -0.08rem;
}

.price {
  color: #2d8cff;
  font-size: 1.42rem;
  font-weight: 730;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  min-width: 0;
  text-align: left;
}

.discount-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.62rem;
  padding: 0.22rem 0.52rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(214, 228, 247, 0.78);
  font-size: 0.62rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.product-copy {
  color: rgba(188, 202, 222, 0.72);
  font-size: 0.84rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  margin-top: auto;
  padding-top: 0.68rem;
  display: flex;
  align-items: center;
  gap: 0.68rem;
}

.product-actions .btn {
  min-height: 2.46rem;
  padding: 0.54rem 0.9rem;
  width: 100%;
}

.product-actions .btn-primary {
  background: #2a86f8;
  border-color: rgba(122, 183, 255, 0.72);
  color: #f3f8ff;
  box-shadow: none;
  font-weight: 700;
}

.product-card-link:hover .product-actions .btn-primary,
.product-card-link:focus-visible .product-actions .btn-primary {
  background: #3592ff;
  border-color: rgba(153, 202, 255, 0.88);
  box-shadow: none;
}




.product-actions .btn-secondary {
  min-height: auto;
  padding: 0;
  color: rgba(201, 214, 235, 0.78);
  border: 0;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 560;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.26em;
}

.product-actions .btn-secondary:hover,
.product-actions .btn-secondary:focus-visible {
  color: #e8f2ff;
  background: transparent;
  transform: none;
  text-decoration-color: rgba(232, 242, 255, 0.75);
  box-shadow: none;
}

.product-actions .btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(145, 191, 241, 0.26),
    0 8px 14px rgba(2, 8, 20, 0.34);
}

.product-actions .btn-secondary:focus-visible {
  box-shadow: 0 0 0 2px rgba(145, 191, 241, 0.22);
}

.product-trust-line {
  margin-top: var(--space-3);
  color: rgba(188, 202, 222, 0.9);
  font-size: 0.92rem;
  line-height: 1.6;
}

.trust-strip {
  margin-top: var(--space-4);
  padding: var(--space-3) 0 var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.trust-list li {
  color: rgba(222, 233, 248, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  opacity: 0;
  transform: translateY(12px);
}

.trust-list li::before {
  content: "\2713";
  color: rgba(124, 183, 255, 0.88);
  font-size: 0.76rem;
  line-height: 1;
}

.trust-strip.reveal.is-visible .trust-list li:nth-child(1) {
  animation: trust-in 440ms var(--ease) 80ms forwards;
}

.trust-strip.reveal.is-visible .trust-list li:nth-child(2) {
  animation: trust-in 440ms var(--ease) 180ms forwards;
}

.trust-strip.reveal.is-visible .trust-list li:nth-child(3) {
  animation: trust-in 440ms var(--ease) 280ms forwards;
}

@keyframes trust-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.46rem;
  border-radius: 8px;
  border: 0;
  padding: 0.52rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 620;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #f3f8ff;
  border: 1px solid rgba(106, 173, 255, 0.72);
  background: #1b78ee;
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #2a86f8;
  border-color: rgba(144, 197, 255, 0.9);
  box-shadow: none;
}

.btn-primary:active {
  transform: translateY(0);
  background: #1468d2;
  box-shadow: none;
}

.btn-secondary {
  color: rgba(213, 227, 244, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: #e8f1ff;
  border-color: rgba(203, 221, 242, 0.28);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.btn-ghost {
  color: rgba(210, 224, 245, 0.9);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.table-wrap {
  margin-top: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(16, 23, 34, 0.44);
  box-shadow: var(--shadow-soft);
  overflow: auto;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.comparison-table thead th {
  color: var(--text-100);
  background: rgba(9, 13, 20, 0.28);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 12px;
  padding-bottom: 12px;
}

.comparison-table thead th:first-child,
.comparison-table tbody th:first-child,
.comparison-table tbody td:first-child {
  padding-left: var(--space-3);
}

.comparison-table thead th:last-child,
.comparison-table tbody td:last-child {
  padding-right: var(--space-3);
}

.comparison-table tbody th {
  color: rgba(220, 233, 251, 0.92);
  width: 22%;
  font-weight: 560;
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.comparison-table td {
  color: rgba(181, 199, 222, 0.82);
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.comparison-table thead .col-recommended,
.comparison-table tbody td:nth-child(3) {
  background: linear-gradient(180deg, rgba(0, 140, 255, 0.06), rgba(0, 140, 255, 0.015));
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.06), inset -1px 0 0 rgba(255, 255, 255, 0.06);
}

.comparison-table thead .col-recommended {
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.compare-chip {
  display: block;
  width: fit-content;
  margin-bottom: 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 207, 247, 0.22);
  background: rgba(123, 172, 230, 0.1);
  color: var(--label-color);
  line-height: 1.2;
  padding: 0.2rem 0.46rem;
}

.comparison-table tbody tr:hover th,
.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.comparison-table tbody tr.row-price th {
  color: #dce9fb;
}

.comparison-table tbody tr.row-price td {
  color: #e9f4ff;
  font-size: 1.02rem;
  font-weight: 680;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.check-item {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
}

.check-item::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 1.5px solid rgba(177, 218, 255, 0.9);
  border-bottom: 1.5px solid rgba(177, 218, 255, 0.9);
  transform: rotate(-45deg);
  margin-top: -1px;
}

.comparison-table tbody tr:last-child td,
.comparison-table tbody tr:last-child th {
  border-bottom: 0;
}

.state-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.state-card {
  border-radius: var(--radius-md);
  border: 0;
  background: linear-gradient(180deg, rgba(21, 30, 43, 0.78), rgba(14, 20, 31, 0.86));
  box-shadow: var(--shadow-sm);
  padding: var(--card-pad);
  position: relative;
}

.state-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 205, 255, 0.45), transparent);
}

.state-card h3 {
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.state-card ul {
  display: grid;
  gap: 0.55rem;
}

.state-card li {
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  background: rgba(9, 13, 20, 0.42);
  padding: 0.56rem 0.68rem;
}

.state-card span {
  color: var(--text-300);
}

.transformation .value {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #edf5ff;
}

.transformation .state-card strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}

.transformation .delta {
  color: rgba(158, 210, 255, 0.86);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.testimonials-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.delivery-ticker {
  margin-top: var(--space-3);
  display: grid;
  gap: 0.34rem;
  max-width: 66ch;
}

.delivery-ticker span {
  color: rgba(201, 214, 235, 0.74);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.delivery-ticker p {
  color: var(--text-200);
  font-size: 0.9rem;
}

.quote-card {
  border-radius: var(--radius-md);
  border: 0;
  background: linear-gradient(180deg, rgba(21, 30, 43, 0.78), rgba(14, 20, 31, 0.86));
  box-shadow: var(--shadow-sm);
  padding: var(--card-pad);
  position: relative;
}

.quote-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-2);
}

.avatar {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-100);
  background: rgba(108, 162, 255, 0.22);
}

.verified {
  border-radius: 999px;
  background: rgba(108, 162, 255, 0.14);
  color: var(--label-color);
  text-transform: uppercase;
  padding: 0.26rem 0.5rem;
}

.quote-stars {
  color: #f6d98d;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.quote-text {
  color: #e8f1ff;
  font-size: 1.08rem;
  line-height: 1.72;
}

.quote-author {
  margin-top: var(--space-2);
  color: rgba(201, 214, 235, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.trust-policy {
  padding-top: var(--space-5);
}

.policy-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.policy-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 26, 38, 0.64);
  box-shadow: var(--shadow-soft);
  padding: var(--card-pad);
}

.policy-card h3 {
  font-size: 1rem;
  line-height: 1.3;
}

.policy-card p {
  margin-top: var(--space-2);
  color: rgba(188, 202, 222, 0.84);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-list {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(16, 23, 34, 0.58);
  box-shadow: var(--shadow-soft);
  padding: var(--card-pad);
}

.faq-item h3 {
  font-size: 0.98rem;
  line-height: 1.35;
}

.faq-item p {
  margin-top: var(--space-2);
  color: rgba(188, 202, 222, 0.84);
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer {
  margin-top: calc(var(--space-4) + 0.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.footer-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-inner p {
  color: var(--text-300);
}

.footer-links {
  display: inline-flex;
  gap: 0.5rem;
}

.footer-link {
  color: var(--text-200);
  border-radius: 9px;
  padding: 0.36rem 0.62rem;
  background: transparent;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.gr-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
}

.gr-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.gr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.82);
  backdrop-filter: blur(5px);
}

.gr-panel {
  position: relative;
  width: min(960px, calc(100% - 2rem));
  height: min(88vh, 760px);
  margin: min(6vh, 48px) auto 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: #0b1220;
}

.gr-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-100);
  cursor: pointer;
  z-index: 2;
}

.gr-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.992);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

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

:focus-visible {
  outline: 2px solid var(--accent-300);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .container {
    width: min(1200px, calc(100% - 2.5rem));
  }

  .hero-copy {
    max-width: none;
  }

  .hero {
    gap: 0.56rem;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-step::after {
    content: none;
  }

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

  .product-body {
    padding: 1.25rem 1.15rem 1.15rem;
    gap: 1.2rem;
  }

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

}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(1200px, calc(100% - 2rem));
  }

  .header-inner {
    height: 100%;
    align-items: center;
    flex-direction: row;
    padding: 0;
  }

  .site-nav {
    width: auto;
  }

  .hero {
    margin-top: 0;
    margin-bottom: clamp(2.75rem, 6vh, 4rem);
    gap: 0.6rem;
    min-height: 44vh;
    padding: clamp(5.6rem, 14vh, 7.8rem) 0 clamp(3.6rem, 10vh, 5.4rem);
  }

  .hero::before {
    top: 0;
    bottom: -0.4rem;
  }

  .hero-brand {
    font-size: clamp(2.24rem, 10.6vw, 3.1rem);
    line-height: 1.08;
  }

  .hero-tagline {
    font-size: 1.08rem;
    line-height: 1.44;
  }

  .hero-proof {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .hero-copy {
    row-gap: 1.45rem;
  }

  .hero-proof .sep {
    display: none;
  }

  #products .section-head h2 {
    font-size: clamp(1.02rem, 4.2vw, 1.24rem);
    line-height: 1.1;
    white-space: normal;
  }

  .section-copy {
    margin-top: 0.32rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .section {
    padding-block: var(--space-4);
  }

  #before-after,
  #testimonials {
    padding: var(--space-3);
  }

  #products.section-open {
    padding: 0;
  }

  #products.section-open::before {
    top: 64px;
    height: 240px;
  }

  .product-grid,
  .state-grid,
  .testimonials-grid,
  .policy-grid,
  .trust-list,
  .faq-list {
    grid-template-columns: 1fr;
  }

  body.has-mobile-product-card-reveal .products-section.reveal.is-visible .product-card-link {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    animation: none;
    pointer-events: none;
  }

  body.has-mobile-product-card-reveal .products-section.reveal.is-visible .product-card-link.is-product-visible {
    animation: product-card-in 520ms var(--ease) forwards;
    pointer-events: auto;
  }

  .product-price-row {
    gap: 0.55rem;
  }

  .product-actions .btn {
    width: 100%;
  }

  .product-actions .btn-secondary {
    width: auto;
  }

  .product-body {
    padding: 0.9rem 0.88rem 0.9rem;
    gap: 0.82rem;
  }

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

  .price {
    font-size: 1.15rem;
  }

  .price-old {
    font-size: 0.7rem;
  }

  .product-copy {
    font-size: 0.76rem;
    line-height: 1.42;
  }

  .product-actions .btn {
    min-height: 2.2rem;
    font-size: 0.82rem;
  }

  .product-image {
    aspect-ratio: 16 / 9;
  }

  .product-image img {
    transform: scale(1.02);
  }

  .gr-panel {
    width: calc(100% - 0.9rem);
    margin-top: 0.45rem;
    height: calc(100vh - 0.9rem);
  }

}

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

  body:not(.force-motion) *,
  body:not(.force-motion) *::before,
  body:not(.force-motion) *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body:not(.force-motion) .reveal {
    opacity: 1;
    transform: none;
  }

  body:not(.force-motion)::before,
  body:not(.force-motion)::after {
    content: none !important;
    animation: none !important;
  }

  body:not(.force-motion) main {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body:not(.force-motion) .site-header,
  body:not(.force-motion) .hero-brand,
  body:not(.force-motion) .hero-tagline,
  body:not(.force-motion) .hero-proof,
  body:not(.force-motion) .trust-strip .trust-list li {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

}
