:root {
  --bg: #05090c;
  --carbon: #080d11;
  --panel: rgba(8, 15, 20, 0.74);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f9fb;
  --muted: #aeb8c1;
  --dim: #737f88;
  --blue: #2d8cff;
  --blue-soft: #3b82f6;
  --edge: clamp(1.25rem, 4.7vw, 5rem);
  --section: clamp(5rem, 8vw, 8rem);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: "Aptos", "Avenir Next", "Century Gothic", sans-serif;
  line-height: 1.62;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(5, 9, 12, 0.62), rgba(5, 9, 12, 0.48)),
    linear-gradient(180deg, rgba(5, 9, 12, 0.1), rgba(5, 9, 12, 0.9) 72%, #05090c),
    url("assets/blueprint-crystal-bg.png") center top / cover no-repeat fixed,
    radial-gradient(circle at 74% 8%, rgba(45, 140, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 12% 46%, rgba(59, 130, 246, 0.10), transparent 34rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(55deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 7px),
    linear-gradient(120deg, rgba(5, 9, 12, 0.62), rgba(8, 16, 23, 0.46) 48%, rgba(4, 7, 10, 0.68));
  background-size: 12px 12px, 11px 11px, auto;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(45, 140, 255, 0.035) 0 1px, transparent 1px 6rem),
    repeating-linear-gradient(0deg, rgba(45, 140, 255, 0.025) 0 1px, transparent 1px 6rem);
  mask-image: radial-gradient(circle at 50% 34%, #000, transparent 72%);
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.cursor-glow {
  --x: 50vw;
  --y: 50vh;
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: radial-gradient(circle at var(--x) var(--y), rgba(45, 140, 255, 0.12), transparent 16rem);
  mix-blend-mode: screen;
}

.loading-veil {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  background: var(--bg);
  animation: loadOut 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 9, 12, 0.16), rgba(5, 9, 12, 0.74) 58%, rgba(5, 9, 12, 0.92));
}

.dispatch-bar {
  display: grid;
  grid-template-columns: minmax(22rem, 1fr) auto auto;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 12, 0.72);
  backdrop-filter: blur(18px);
  text-transform: uppercase;
}

.dispatch-primary,
.dispatch-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-height: 5.5rem;
  padding: 1rem var(--edge);
}

.dispatch-primary {
  font-size: clamp(1.24rem, 2.15vw, 1.92rem);
  letter-spacing: 0.06em;
  text-shadow: 0 0 1.4rem rgba(45, 140, 255, 0.18);
}

.dispatch-primary span:not(.flag span) {
  color: var(--blue);
  text-shadow: 0 0 1.25rem rgba(45, 140, 255, 0.38);
}

.dispatch-item {
  border-left: 1px solid var(--line);
}

.dispatch-item svg {
  width: 2.15rem;
  height: 2.15rem;
  color: var(--blue);
}

.dispatch-item p {
  margin: 0;
  display: grid;
  gap: 0.05rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.dispatch-item small {
  color: var(--muted);
  font-size: 0.74rem;
}

.flag {
  position: relative;
  width: 3rem;
  height: 1.85rem;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(33deg, transparent 42%, #fff 43% 48%, #d7242e 49% 54%, #fff 55% 60%, transparent 61%),
    linear-gradient(147deg, transparent 42%, #fff 43% 48%, #d7242e 49% 54%, #fff 55% 60%, transparent 61%),
    linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 36%, #fff 36% 64%, transparent 64%),
    #103f90;
}

.flag span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 46%, #d7242e 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 40%, #d7242e 40% 60%, transparent 60%);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem var(--edge) 1rem;
}

.brand {
  width: fit-content;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  display: block;
  font-size: clamp(2.25rem, 3.3vw, 3.4rem);
  letter-spacing: 0.34em;
  line-height: 1;
  font-weight: 400;
  text-shadow:
    0 0 1.3rem rgba(45, 140, 255, 0.18),
    0 0 0.18rem rgba(255, 255, 255, 0.42);
  animation: titleGlow 4.8s ease-in-out infinite;
}

.brand small,
.kicker {
  color: var(--blue);
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 1.2rem rgba(45, 140, 255, 0.36);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 5.4rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: clamp(1.08rem, 1.05vw, 1.32rem);
}

.main-nav a {
  position: relative;
  text-decoration: none;
  text-shadow: 0 0 1.1rem rgba(45, 140, 255, 0.16);
  transition: color 220ms ease, text-shadow 220ms ease;
}

.main-nav a:hover {
  color: var(--blue);
  text-shadow:
    0 0 0.85rem rgba(45, 140, 255, 0.62),
    0 0 2.1rem rgba(45, 140, 255, 0.28);
}

.main-nav a.is-active {
  color: var(--blue);
  text-shadow:
    0 0 0.85rem rgba(45, 140, 255, 0.56),
    0 0 2rem rgba(45, 140, 255, 0.24);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.56rem;
  height: 1px;
  transform: scaleX(0);
  background: var(--blue);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
}

.header-actions button {
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 0;
  color: var(--text);
  background: transparent;
  transition: color 220ms ease, transform 220ms ease;
}

.header-actions button:hover {
  color: var(--blue);
  transform: translateY(-1px);
  filter: drop-shadow(0 0 0.8rem rgba(45, 140, 255, 0.45));
}

.header-actions svg {
  width: 100%;
  height: 100%;
}

.bag-button span {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.4rem;
  height: 1.4rem;
  display: grid;
  place-items: center;
  border-radius: 99rem;
  background: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100dvh - 10rem);
  display: grid;
  grid-template-columns: minmax(31rem, 0.92fr) minmax(31rem, 0.78fr);
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 5rem);
  padding: 1rem var(--edge) 4.8rem;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 9, 12, 0.18), rgba(5, 9, 12, 0.32) 45%, rgba(5, 9, 12, 0.68)),
    radial-gradient(circle at 24% 72%, rgba(45, 140, 255, 0.13), transparent 30rem);
}

.blueprint-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blueprint-layer span {
  position: absolute;
  display: block;
  border: 1px solid rgba(45, 140, 255, 0.16);
}

.blueprint-layer span:nth-child(1) {
  left: 7%;
  top: 16%;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  box-shadow: inset 0 0 6rem rgba(45, 140, 255, 0.05);
  animation: blueprintDrift 12s ease-in-out infinite;
}

.blueprint-layer span:nth-child(2) {
  left: 42%;
  bottom: 14%;
  width: 38rem;
  height: 13rem;
  transform: skewY(-7deg);
  opacity: 0.55;
  animation: blueprintSlide 14s ease-in-out infinite;
}

.blueprint-layer span:nth-child(3) {
  right: 8%;
  top: 18%;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  border-style: dashed;
  opacity: 0.32;
}

.product-stage {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: min(60rem, calc(100dvh - 11rem));
}

.product-stage::before {
  content: "";
  position: absolute;
  left: -10vw;
  right: -4vw;
  bottom: 3%;
  height: 28%;
  background:
    radial-gradient(closest-side at 38% 46%, rgba(255, 255, 255, 0.34), transparent 68%),
    radial-gradient(closest-side at 48% 58%, rgba(45, 140, 255, 0.34), transparent 70%);
  filter: blur(28px);
  opacity: 0.5;
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: min(57vw, 61rem);
  max-width: none;
  height: min(64rem, calc(100dvh - 8rem));
  object-fit: cover;
  object-position: 50% 54%;
  transform: translateX(-1.5vw);
  filter: drop-shadow(0 3rem 5rem rgba(0, 0, 0, 0.62));
  animation: productFloat 7s ease-in-out infinite;
  transition: opacity 180ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-stage img.is-switching {
  opacity: 0;
  transform: translateX(-1.5vw) translateY(0.5rem) scale(0.985);
}

.product-stage img:hover {
  transform: translateX(-1.5vw) translateY(-3px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 42rem);
  max-width: 42rem;
  justify-self: start;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), transparent 35%),
    rgba(6, 12, 16, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2.4rem 5rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.kicker {
  margin: 0 0 1rem;
}

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

.hero h1 {
  max-width: 100%;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-size: clamp(3.9rem, 5.5vw, 6.35rem);
  line-height: 0.94;
  letter-spacing: 0.025em;
  font-weight: 300;
  overflow-wrap: normal;
  text-shadow: 0 0 2.4rem rgba(45, 140, 255, 0.08);
}

.hero h1 span,
.statement-section h2 span {
  color: var(--blue);
  text-shadow:
    0 0 1.4rem rgba(45, 140, 255, 0.42),
    0 0 3.2rem rgba(45, 140, 255, 0.18);
  animation: bluePulse 4.2s ease-in-out infinite;
}

.lead {
  max-width: 29rem;
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

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

.strength-card {
  position: relative;
  min-height: 6.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.35rem;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 280ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    background 280ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.strength-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(120deg, transparent, rgba(45, 140, 255, 0.7), transparent) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 280ms ease;
}

.strength-card:hover,
.strength-card.is-selected {
  border-color: rgba(45, 140, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(45, 140, 255, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1.2rem 2.8rem rgba(45, 140, 255, 0.12);
}

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

.strength-card:hover::before,
.strength-card.is-selected::before {
  opacity: 1;
}

.strength-card span,
.strength-card b {
  display: block;
  position: relative;
  z-index: 1;
}

.strength-card span {
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 800;
}

.strength-card b {
  margin-top: 0.3rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.strength-card em {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(45, 140, 255, 0.5);
  color: var(--blue);
  background: rgba(45, 140, 255, 0.08);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.add-button {
  position: relative;
  width: 100%;
  min-height: 5.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(104, 170, 255, 0.72);
  border-radius: 0.35rem;
  color: white;
  background:
    linear-gradient(135deg, rgba(45, 140, 255, 0.9), rgba(59, 130, 246, 0.72)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1.4rem 3.2rem rgba(45, 140, 255, 0.24);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 1.08rem;
  font-weight: 900;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease;
}

.add-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.28) 46%, transparent 62%);
  transform: translateX(-110%);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.add-button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 1.8rem 4rem rgba(45, 140, 255, 0.34);
}

.add-button:hover::before {
  transform: translateX(110%);
}

.add-button:active {
  transform: translateY(0) scale(0.99);
}

.add-button i {
  width: 1.2rem;
  height: 1px;
  background: currentColor;
}

.add-button span,
.add-button b,
.add-button i {
  position: relative;
  z-index: 1;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.1rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-assurance span {
  padding: 0.44rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 78rem;
  margin: clamp(1rem, 2vw, 2rem) auto 0;
  padding: 0 var(--edge);
}

.hero-metrics article {
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(7, 13, 17, 0.58);
  backdrop-filter: blur(14px);
}

.hero-metrics span,
.hero-metrics b {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-metrics span {
  color: var(--blue);
  font-size: 0.72rem;
  text-shadow: 0 0 1rem rgba(45, 140, 255, 0.34);
}

.hero-metrics b {
  margin-top: 0.26rem;
  color: var(--text);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
}

.statement-section,
.shipping-section,
.social-proof {
  margin-top: var(--section);
  padding: clamp(3.2rem, 6vw, 5.5rem) var(--edge);
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 10px),
    rgba(7, 13, 17, 0.74);
}

.statement-section h2,
.shipping-section h2,
.social-proof h2 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0.035em;
  font-weight: 300;
  text-shadow: 0 0 2rem rgba(45, 140, 255, 0.08);
}

.statement-section p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.85;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr 0.85fr;
  gap: 1px;
  margin-top: var(--section);
  padding-inline: var(--edge);
}

.feature-grid article {
  min-height: 17rem;
  padding: clamp(1.7rem, 3vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(8, 14, 18, 0.68);
  backdrop-filter: blur(14px);
}

.feature-grid svg {
  width: 3.8rem;
  height: 3.8rem;
  margin-bottom: 1.5rem;
  color: var(--blue);
}

.feature-grid h2 {
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.shipping-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 45%, rgba(45, 140, 255, 0.12), transparent 26rem),
    linear-gradient(90deg, rgba(6, 12, 16, 0.9), rgba(8, 15, 20, 0.42));
}

.shipping-list {
  display: grid;
  gap: 0.9rem;
}

.shipping-list span {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.social-proof {
  text-align: center;
}

.stars {
  margin-bottom: 1.3rem;
  color: var(--blue);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-shadow: 0 0 1.4rem rgba(45, 140, 255, 0.36);
}

.social-proof h2 {
  max-width: 55rem;
  margin-inline: auto;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
}

.social-proof div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.5rem;
}

.social-proof span {
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.visual-footer {
  position: relative;
  min-height: clamp(30rem, 74vh, 52rem);
  display: grid;
  align-items: end;
  margin-top: var(--section);
  padding: clamp(3rem, 7vw, 6rem) var(--edge);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 9, 12, 0.12), rgba(5, 9, 12, 0.34) 46%, rgba(5, 9, 12, 0.88)),
    linear-gradient(90deg, rgba(5, 9, 12, 0.22), rgba(5, 9, 12, 0.1) 42%, rgba(5, 9, 12, 0.58)),
    url("assets/blueprint-crystal-bg.png") center bottom / cover no-repeat;
}

.visual-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(45, 140, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 82% 78%, rgba(45, 140, 255, 0.15), transparent 22rem);
}

.visual-footer > div {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 38%),
    rgba(5, 10, 14, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2rem 5rem rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.visual-footer h2 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0.035em;
  font-weight: 300;
  text-shadow:
    0 0 1.5rem rgba(45, 140, 255, 0.18),
    0 0 4rem rgba(45, 140, 255, 0.12);
}

.visual-footer p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.content-hero {
  position: relative;
  max-width: 86rem;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) var(--edge) clamp(3rem, 6vw, 5.5rem);
  isolation: isolate;
}

.content-hero::before {
  content: "";
  position: absolute;
  inset: 18% var(--edge) auto;
  z-index: -1;
  height: 18rem;
  border: 1px solid rgba(45, 140, 255, 0.13);
  background:
    radial-gradient(circle at 16% 44%, rgba(45, 140, 255, 0.16), transparent 20rem),
    rgba(255, 255, 255, 0.018);
  transform: skewY(-3deg);
  opacity: 0.9;
}

.content-hero h1 {
  max-width: 74rem;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  font-size: clamp(4rem, 8vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0.028em;
  font-weight: 300;
  text-shadow: 0 0 2.4rem rgba(45, 140, 255, 0.08);
}

.content-hero h1 span {
  color: var(--blue);
  animation: bluePulse 4.2s ease-in-out infinite;
}

.content-hero p:last-child {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.82;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 94rem;
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  padding: 0 var(--edge);
}

.content-index {
  position: sticky;
  top: 2rem;
  align-self: start;
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(6, 12, 16, 0.48);
  backdrop-filter: blur(16px);
}

.content-index span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-card,
.faq-group {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 30%),
    rgba(7, 13, 17, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 2rem 5rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.article-card {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.article-card section + section {
  margin-top: clamp(2.5rem, 5vw, 4.2rem);
  padding-top: clamp(2rem, 4vw, 3.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-card h2,
.faq-group h2 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-shadow: 0 0 1.7rem rgba(45, 140, 255, 0.1);
}

.article-card p,
.faq-item p,
.article-card li,
.faq-item li {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.85;
}

.article-card p:last-child,
.faq-item p:last-child {
  margin-bottom: 0;
}

.evidence-list,
.reference-list,
.faq-item ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 1.5rem;
  padding-left: 1.15rem;
}

.evidence-list li::marker,
.reference-list li::marker,
.faq-item li::marker {
  color: var(--blue);
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 1.8rem);
  max-width: 96rem;
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  padding: 0 var(--edge);
}

.faq-group {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.faq-item {
  padding-block: 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
  margin: 0 0 0.7rem;
  color: var(--text);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  letter-spacing: 0.02em;
}

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

.routine-grid div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.routine-grid b {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.routine-grid span {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes productFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.7rem;
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow:
      0 0 1.1rem rgba(45, 140, 255, 0.14),
      0 0 0.18rem rgba(255, 255, 255, 0.38);
  }
  50% {
    text-shadow:
      0 0 1.8rem rgba(45, 140, 255, 0.34),
      0 0 3.6rem rgba(45, 140, 255, 0.14),
      0 0 0.22rem rgba(255, 255, 255, 0.52);
  }
}

@keyframes bluePulse {
  0%,
  100% {
    text-shadow:
      0 0 1.2rem rgba(45, 140, 255, 0.34),
      0 0 2.8rem rgba(45, 140, 255, 0.14);
  }
  50% {
    text-shadow:
      0 0 1.9rem rgba(45, 140, 255, 0.62),
      0 0 4.8rem rgba(45, 140, 255, 0.28);
  }
}

@keyframes blueprintDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(0.35rem, -0.45rem, 0);
    opacity: 0.9;
  }
}

@keyframes blueprintSlide {
  0%,
  100% {
    transform: skewY(-7deg) translate3d(0, 0, 0);
    opacity: 0.48;
  }
  50% {
    transform: skewY(-7deg) translate3d(-0.45rem, 0.25rem, 0);
    opacity: 0.68;
  }
}

@keyframes loadOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .dispatch-bar,
  .site-header,
  .hero,
  .statement-section,
  .shipping-section {
    grid-template-columns: 1fr;
  }

  .dispatch-primary,
  .dispatch-item {
    justify-content: center;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-header {
    justify-items: center;
  }

  .header-actions {
    justify-content: center;
  }

  .hero {
    padding-top: 1rem;
  }

  .product-stage {
    min-height: 38rem;
    justify-items: center;
  }

  .product-stage img {
    width: min(108%, 56rem);
    height: 43rem;
    transform: none;
  }

  .product-stage img.is-switching {
    transform: translateY(0.5rem) scale(0.985);
  }

  .product-stage img:hover {
    transform: translateY(-3px);
  }

  .hero-copy {
    justify-self: center;
    max-width: 42rem;
  }

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

  .content-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .content-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1121px) and (max-width: 1500px) {
  .hero {
    grid-template-columns: minmax(29rem, 0.86fr) minmax(30rem, 0.72fr);
    gap: clamp(1.5rem, 3vw, 3.5rem);
  }

  .product-stage img {
    width: min(52vw, 52rem);
    height: min(56rem, calc(100dvh - 8rem));
    transform: translateX(-1vw);
  }

  .product-stage img.is-switching {
    transform: translateX(-1vw) translateY(0.5rem) scale(0.985);
  }

  .product-stage img:hover {
    transform: translateX(-1vw) translateY(-3px);
  }

  .hero-copy {
    width: min(100%, 38rem);
    padding: clamp(1.35rem, 2.7vw, 2.45rem);
  }

  .hero h1 {
    font-size: clamp(3.5rem, 5.15vw, 5.55rem);
  }
}

@media (max-width: 680px) {
  :root {
    --edge: 1rem;
    --section: 4.2rem;
  }

  .cursor-glow {
    display: none;
  }

  .dispatch-primary,
  .dispatch-item {
    min-height: auto;
    padding-block: 0.6rem;
  }

  .dispatch-bar {
    display: block;
  }

  .dispatch-primary {
    justify-content: flex-start;
    align-items: center;
    gap: 0.7rem;
    font-size: clamp(0.82rem, 4vw, 0.98rem);
    line-height: 1.25;
  }

  .dispatch-primary strong {
    max-width: none;
    display: inline;
  }

  .dispatch-item {
    display: none;
  }

  .flag {
    width: 2.15rem;
    height: 1.35rem;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    justify-items: start;
    row-gap: 0.85rem;
    padding-top: 1.05rem;
    padding-bottom: 0.95rem;
  }

  .header-actions {
    position: absolute;
    top: 1.2rem;
    right: var(--edge);
    justify-content: flex-end;
    gap: 0.25rem;
  }

  .header-actions button {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand span {
    letter-spacing: 0.2em;
    font-size: clamp(1.68rem, 8.4vw, 2.25rem);
  }

  .brand small {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(0.9rem, 3.8vw, 1rem);
    letter-spacing: 0.11em;
  }

  .hero {
    min-height: 0;
    gap: 1.25rem;
    padding-top: 0;
    padding-bottom: 2.4rem;
  }

  body {
    background:
      linear-gradient(180deg, rgba(5, 9, 12, 0.34), rgba(5, 9, 12, 0.88) 64%, #05090c),
      url("assets/blueprint-crystal-bg.png") center top / auto 100vh no-repeat,
      var(--bg);
  }

  .product-stage {
    min-height: clamp(22rem, 66vh, 30rem);
    overflow: hidden;
  }

  .product-stage img {
    width: min(108vw, 34rem);
    height: clamp(23rem, 64vh, 30rem);
    object-position: 50% 58%;
  }

  .hero-copy {
    width: 100%;
    padding: 1.15rem;
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: 0.015em;
  }

  .lead {
    margin-bottom: 2rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .strength-grid {
    gap: 0.65rem;
  }

  .add-button {
    min-height: 4.7rem;
    font-size: 0.95rem;
  }

  .hero-assurance {
    gap: 0.45rem;
  }

  .hero-assurance span {
    font-size: 0.58rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .hero-metrics article {
    padding: 1rem;
  }

  .statement-section,
  .shipping-section,
  .social-proof,
  .visual-footer {
    margin-top: 3.8rem;
    padding-block: 3rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding-inline: var(--edge);
  }

  .feature-grid article {
    min-height: 0;
    padding: 1.4rem;
  }

  .statement-section h2,
  .shipping-section h2,
  .social-proof h2,
  .content-hero h1,
  .visual-footer h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1.02;
  }

  .content-index,
  .routine-grid {
    grid-template-columns: 1fr;
  }

  .content-hero {
    padding-top: 3.4rem;
    padding-bottom: 2.5rem;
  }

  .content-hero p:last-child,
  .statement-section p:last-child {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .content-layout,
  .faq-layout {
    padding-inline: var(--edge);
  }

  .article-card,
  .faq-group {
    padding: 1.25rem;
  }

  .visual-footer {
    min-height: 34rem;
    background:
      linear-gradient(180deg, rgba(5, 9, 12, 0.14), rgba(5, 9, 12, 0.42) 45%, rgba(5, 9, 12, 0.9)),
      url("assets/blueprint-crystal-bg.png") center bottom / cover no-repeat;
  }

  .visual-footer > div {
    padding: 1.2rem;
  }

  .article-card h2,
  .faq-group h2 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .article-card p,
  .faq-item p,
  .article-card li,
  .faq-item li {
    font-size: 0.96rem;
    line-height: 1.72;
  }

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

@media (max-width: 420px) {
  .brand span {
    font-size: clamp(1.5rem, 7.6vw, 1.9rem);
    letter-spacing: 0.17em;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .header-actions button {
    width: 2.2rem;
    height: 2.2rem;
  }

  .main-nav {
    font-size: 0.84rem;
    letter-spacing: 0.1em;
  }

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

  .product-stage {
    min-height: 22rem;
  }

  .product-stage img {
    width: 112vw;
    height: 23.5rem;
  }

  .add-button {
    gap: 0.85rem;
    letter-spacing: 0.1em;
  }
}
