/* ================================================================
   Pour Ceux — Premium interface system
   Static, dependency-free, accessible and performance-conscious.
   ================================================================ */

:root {
  color-scheme: dark;

  --primary: #08182a;
  --primary-dark: #030811;
  --primary-light: #dffbef;
  --secondary: #a9efc8;
  --secondary-strong: #7be8ad;
  --accent: #7fb8ff;
  --accent-soft: #b9d5ff;

  --text-on-dark: #f7fbff;
  --text-on-dark-secondary: rgba(224, 236, 247, 0.76);
  --text-on-dark-faint: rgba(207, 222, 235, 0.5);

  --surface: rgba(10, 24, 40, 0.68);
  --surface-strong: rgba(12, 29, 48, 0.9);
  --glass-bg: rgba(223, 239, 252, 0.055);
  --glass-bg-strong: rgba(223, 239, 252, 0.085);
  --glass-border: rgba(218, 236, 250, 0.13);
  --glass-border-hover: rgba(190, 241, 215, 0.3);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-full: 999px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 36px;
  --space-2xl: 64px;
  --space-3xl: 112px;

  --shadow-card: 0 24px 80px rgba(0, 5, 14, 0.22), 0 2px 8px rgba(0, 5, 14, 0.18);
  --shadow-elevated: 0 32px 110px rgba(0, 5, 14, 0.42), 0 8px 24px rgba(0, 5, 14, 0.28);
  --shadow-glow: 0 0 0 1px rgba(169, 239, 200, 0.06), 0 18px 54px rgba(66, 202, 137, 0.12);

  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-on-dark);
  background: var(--primary-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(164, 206, 240, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 206, 240, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body.nav-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

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

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

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

button {
  font: inherit;
}

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

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

::selection {
  color: #04120b;
  background: var(--secondary);
}

:focus-visible {
  outline: 3px solid rgba(169, 239, 200, 0.9);
  outline-offset: 4px;
}

/* ---------- Ambient background ---------- */

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: clip;
  pointer-events: none;
  background: #030811;
  contain: strict;
}

.bg-gradient__layer {
  position: absolute;
  inset: 0;
  will-change: opacity;
}

.bg-gradient__layer--1 {
  opacity: 1;
  background:
    radial-gradient(circle at 72% 7%, rgba(79, 132, 205, 0.18), transparent 34%),
    radial-gradient(circle at 16% 68%, rgba(77, 211, 143, 0.09), transparent 28%),
    linear-gradient(145deg, #06101d 0%, #071728 48%, #030811 100%);
}

.bg-gradient__layer--2 {
  opacity: 0.65;
  background:
    radial-gradient(circle at 82% 34%, rgba(127, 184, 255, 0.16), transparent 25%),
    radial-gradient(circle at 28% 14%, rgba(169, 239, 200, 0.11), transparent 24%);
  animation: ambient-breathe 18s var(--ease-smooth) infinite alternate;
}

.bg-gradient__layer--3 {
  opacity: 0.5;
  background: radial-gradient(ellipse at 50% 110%, rgba(40, 91, 132, 0.2), transparent 45%);
  animation: ambient-drift 24s ease-in-out infinite alternate;
}

@keyframes ambient-breathe {
  from { opacity: 0.44; }
  to { opacity: 0.72; }
}

@keyframes ambient-drift {
  from { opacity: 0.34; }
  to { opacity: 0.58; }
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: clip;
  pointer-events: none;
  contain: strict;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  transform: translate3d(0, var(--orb-shift, 0), 0);
  opacity: 0.2;
}

.bg-orb--1 {
  top: 0;
  right: 0;
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  border-radius: 0;
  background: radial-gradient(circle at 100% 0%, #82efb5, transparent 68%);
}

.bg-orb--2 {
  bottom: 0;
  left: 0;
  width: min(52vw, 620px);
  height: min(52vw, 620px);
  border-radius: 0;
  background: radial-gradient(circle at 0% 100%, #5999eb, transparent 68%);
  opacity: 0.15;
}

/* ---------- Core layout and type ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(22px, 4vw, 40px);
}

.section {
  position: relative;
  padding-block: clamp(82px, 9vw, var(--space-3xl));
}

.section--tight {
  padding-block: clamp(58px, 7vw, 86px);
}

main > .section:not(.stats)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), 980px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(201, 225, 243, 0.1), transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(169, 239, 200, 0.09), 0 0 20px rgba(123, 232, 173, 0.65);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(42px, 6vw, 68px);
  text-align: center;
}

.section-head.is-left {
  max-width: 870px;
  margin-left: 0;
  text-align: left;
}

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

h1,
.h1 {
  max-width: 19ch;
  color: var(--text-on-dark);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 780;
  line-height: 0.99;
  letter-spacing: -0.055em;
  background: linear-gradient(118deg, #ffffff 14%, #dceaff 51%, #a9efc8 112%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2,
.h2 {
  color: #f5f9fd;
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  font-weight: 740;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

h3,
.h3 {
  color: #f4f9fd;
  font-size: clamp(1.16rem, 1.7vw, 1.35rem);
  font-weight: 680;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.lede {
  max-width: 66ch;
  margin-top: 24px;
  color: var(--text-on-dark-secondary);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.body-text,
.glass-card p,
.step p {
  color: var(--text-on-dark-secondary);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.body-text + .body-text {
  margin-top: 18px;
}

/* ---------- Floating navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px clamp(14px, 2vw, 24px) 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s var(--ease-out);
}

.site-header.is-hidden {
  transform: translate3d(0, calc(-100% - 20px), 0);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: calc(var(--container) - 32px);
  min-height: 64px;
  margin-inline: auto;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(218, 236, 250, 0.12);
  border-radius: 20px;
  background: rgba(4, 12, 22, 0.62);
  box-shadow: 0 12px 45px rgba(0, 4, 12, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled .nav {
  border-color: rgba(218, 236, 250, 0.17);
  background: rgba(4, 12, 22, 0.86);
  box-shadow: 0 18px 60px rgba(0, 4, 12, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.nav__brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #f7fbff;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.nav__brand {
  font-size: 1.03rem;
}

.nav__brand img {
  width: auto;
  height: 36px;
  transition: filter 0.3s ease, transform 0.3s var(--ease-out);
}

.nav__brand:hover img {
  filter: drop-shadow(0 0 12px rgba(169, 239, 200, 0.26));
  transform: scale(1.04) rotate(-2deg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links li {
  display: flex;
}

.nav__links a {
  position: relative;
  padding: 11px 14px;
  border-radius: 11px;
  color: rgba(224, 236, 247, 0.7);
  font-size: 0.9rem;
  font-weight: 560;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: #ffffff;
  background: rgba(226, 241, 252, 0.065);
}

.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 1px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  box-shadow: 0 0 10px rgba(169, 239, 200, 0.45);
}

.nav__links .nav__cta {
  margin-left: 8px;
  padding: 11px 15px;
  color: #04140c;
  background: linear-gradient(135deg, #c7f8dc, #8cebb7);
  box-shadow: 0 7px 24px rgba(74, 207, 139, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__links .nav__cta:hover {
  color: #020b06;
  background: linear-gradient(135deg, #d8ffe8, #a4f4c8);
  box-shadow: 0 12px 34px rgba(74, 207, 139, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
}

.nav__links .nav__cta::after {
  display: none;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 13px;
  color: var(--text-on-dark);
  background: rgba(223, 239, 252, 0.06);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav__toggle svg {
  width: 22px;
  height: 22px;
}

.nav__toggle line {
  transform-origin: center;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.nav__toggle[aria-expanded="true"] line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] line:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 25px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58%);
  transform: translate3d(-34%, 0, 0);
  transition: transform 0.75s var(--ease-out), opacity 0.2s ease;
}

.btn:hover::after {
  opacity: 0.6;
  transform: translate3d(34%, 0, 0);
}

.btn:hover {
  transform: translateY(-3px) scale(1.012);
}

.btn:active {
  transform: translateY(0) scale(0.975);
  transition-duration: 0.12s;
}

.btn--primary {
  color: #03110a;
  border-color: rgba(210, 255, 230, 0.4);
  background: linear-gradient(135deg, #c8f8dc 0%, #8debb8 100%);
  box-shadow: 0 12px 34px rgba(68, 204, 134, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.btn--primary:hover {
  box-shadow: 0 19px 46px rgba(68, 204, 134, 0.3), 0 0 0 5px rgba(141, 235, 184, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn--ghost {
  color: #eff8ff;
  border-color: rgba(218, 236, 250, 0.17);
  background: rgba(221, 238, 251, 0.055);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  border-color: rgba(218, 236, 250, 0.32);
  background: rgba(221, 238, 251, 0.095);
  box-shadow: 0 16px 38px rgba(0, 5, 14, 0.22);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

/* ---------- Reveals ---------- */

.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.988);
  transition:
    opacity 0.75s var(--ease-out) var(--reveal-delay, 0ms),
    transform 0.75s var(--ease-out) var(--reveal-delay, 0ms);
}

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

/* ---------- Grids and premium surfaces ---------- */

.grid {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}

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

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

.tilt {
  min-width: 0;
  perspective: 1100px;
}

.glass-card {
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  isolation: isolate;
  min-height: 100%;
  padding: clamp(25px, 3.2vw, 36px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(17, 37, 59, 0.78), rgba(7, 19, 33, 0.7)) padding-box,
    linear-gradient(140deg, rgba(236, 247, 255, 0.19), rgba(169, 239, 200, 0.09) 45%, rgba(127, 184, 255, 0.08)) border-box;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
  transform-style: preserve-3d;
  transition: transform 0.42s var(--ease-out), border-color 0.35s ease, box-shadow 0.42s ease, background 0.35s ease;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(380px circle at var(--card-x) var(--card-y), rgba(169, 239, 200, 0.13), transparent 52%);
  transition: opacity 0.35s ease;
}

.glass-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -75px;
  z-index: -1;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(80, 153, 215, 0.07);
  filter: blur(28px);
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  border-color: rgba(206, 245, 226, 0.08);
  box-shadow: var(--shadow-elevated), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card.reveal:hover {
  transform: translate3d(0, -5px, 0);
}

.tilt .glass-card {
  transform: perspective(1100px) translate3d(0, var(--card-lift, 0), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.tilt .glass-card:hover {
  --card-lift: -6px;
}

.glass-card h3 {
  margin-bottom: 10px;
  transform: translateZ(18px);
}

.glass-card p {
  transform: translateZ(10px);
}

.glass-card__icon,
.contact-card__icon,
.app-mention__icon {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(183, 245, 214, 0.18);
  background: linear-gradient(145deg, rgba(169, 239, 200, 0.15), rgba(127, 184, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 30px rgba(0, 7, 17, 0.16);
  color: var(--secondary);
}

.glass-card__icon::after,
.contact-card__icon::after,
.app-mention__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 52%);
}

.glass-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 27px;
  border-radius: 18px;
  transform: translateZ(28px);
}

.glass-card__icon svg {
  width: 27px;
  height: 27px;
  filter: drop-shadow(0 0 10px rgba(169, 239, 200, 0.25));
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(92px, 12vw, 158px) 0 clamp(80px, 10vw, 124px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 50%;
  width: min(86vw, 1050px);
  height: min(54vw, 570px);
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(102, 159, 221, 0.08), transparent 65%);
  transform: translateX(-50%);
  filter: blur(10px);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(48px, 8vw, 96px);
  min-height: min(700px, calc(100svh - 112px));
}

.hero__text {
  position: relative;
  z-index: 2;
}

.hero__text .eyebrow {
  display: flex;
  width: fit-content;
}

.hero__text h1 {
  font-size: clamp(3.25rem, 6.5vw, 5.55rem);
}

.hero > .container > .section-head.is-left {
  max-width: 1080px;
}

.hero > .container > .section-head.is-left h1 {
  max-width: 100%;
  font-size: clamp(3rem, 5.1vw, 4.25rem);
}

.hero__text .lede {
  max-width: 62ch;
}

.hero .btn-row {
  margin-top: 36px;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1300px;
}

.hero__visual-card {
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  aspect-ratio: 1;
  overflow: visible;
  border: 1px solid transparent;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(18, 39, 62, 0.78), rgba(5, 16, 29, 0.82)) padding-box,
    conic-gradient(from 210deg, rgba(169, 239, 200, 0.35), rgba(127, 184, 255, 0.18), rgba(255, 255, 255, 0.06), rgba(169, 239, 200, 0.35)) border-box;
  box-shadow: 0 45px 120px rgba(0, 5, 14, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 80px rgba(83, 190, 138, 0.07);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
  transform: perspective(1300px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.42s var(--ease-out), box-shadow 0.42s ease;
}

.hero__visual-card::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  border: 1px solid rgba(174, 214, 243, 0.08);
  border-radius: 43%;
  transform: rotate(-12deg) translateZ(-1px);
  animation: orbit-float 9s ease-in-out infinite alternate;
}

.hero__visual-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(360px circle at var(--card-x) var(--card-y), rgba(184, 250, 215, 0.17), transparent 48%),
    radial-gradient(circle at 50% 44%, rgba(169, 239, 200, 0.09), transparent 42%);
}

@keyframes orbit-float {
  from { transform: rotate(-12deg) scale(0.985); }
  to { transform: rotate(-8deg) scale(1.025); }
}

.hero__visual-card img {
  position: relative;
  z-index: 2;
  width: 70%;
  transform: translateZ(70px);
  filter: drop-shadow(0 24px 36px rgba(0, 5, 12, 0.44)) drop-shadow(0 0 28px rgba(169, 239, 200, 0.1));
}

.hero__badge {
  position: absolute;
  z-index: 4;
  padding: 11px 16px;
  border: 1px solid rgba(221, 239, 251, 0.16);
  border-radius: var(--radius-full);
  color: rgba(244, 250, 255, 0.92);
  background: rgba(7, 20, 34, 0.75);
  box-shadow: 0 14px 36px rgba(0, 6, 15, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transform: translateZ(86px);
  animation: badge-float 6s var(--ease-smooth) infinite;
}

.hero__badge--1 {
  top: 7%;
  left: -8%;
}

.hero__badge--2 {
  right: -10%;
  bottom: 10%;
  animation-delay: -2.3s;
}

@keyframes badge-float {
  0%, 100% { transform: translateZ(86px) translate3d(0, 0, 0); }
  50% { transform: translateZ(86px) translate3d(0, -10px, 0); }
}

/* ---------- Stats ---------- */

.stats {
  position: relative;
  width: min(calc(100% - 48px), calc(var(--container) - 32px));
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(15, 34, 55, 0.72), rgba(7, 19, 33, 0.76)),
    radial-gradient(circle at 50% 0%, rgba(169, 239, 200, 0.08), transparent 48%);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 239, 200, 0.5), transparent);
  box-shadow: 0 0 24px rgba(169, 239, 200, 0.3);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  padding: clamp(33px, 5vw, 52px) clamp(22px, 4vw, 40px);
}

.stat {
  position: relative;
  padding-inline: clamp(12px, 2vw, 26px);
  text-align: center;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: linear-gradient(transparent, rgba(211, 232, 247, 0.14), transparent);
}

.stat__value {
  color: var(--secondary);
  font-size: clamp(2.15rem, 4vw, 3.05rem);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.045em;
  text-shadow: 0 0 32px rgba(169, 239, 200, 0.16);
}

.stat__label {
  max-width: 28ch;
  margin: 13px auto 0;
  color: var(--text-on-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---------- Steps ---------- */

.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 33px;
  width: 1px;
  background: linear-gradient(var(--secondary), rgba(127, 184, 255, 0.45), transparent);
  box-shadow: 0 0 16px rgba(169, 239, 200, 0.16);
}

.step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 26px 24px 22px;
  border: 1px solid rgba(218, 236, 250, 0.11);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 34, 55, 0.7), rgba(7, 19, 33, 0.62));
  box-shadow: 0 14px 50px rgba(0, 5, 14, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.38s var(--ease-out), border-color 0.32s ease, box-shadow 0.38s ease;
}

.step:hover {
  border-color: rgba(169, 239, 200, 0.22);
  box-shadow: 0 24px 70px rgba(0, 5, 14, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translate3d(5px, -2px, 0);
}

.step__index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(183, 245, 214, 0.2);
  border-radius: 19px;
  color: var(--secondary);
  background: linear-gradient(145deg, rgba(169, 239, 200, 0.15), rgba(127, 184, 255, 0.07));
  box-shadow: 0 12px 28px rgba(0, 6, 15, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 1.13rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.step__body {
  padding-top: 4px;
}

.step__body h3 {
  margin-bottom: 7px;
}

/* ---------- Quote and call to action ---------- */

.quote {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(218, 236, 250, 0.11);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(15, 34, 55, 0.64), rgba(7, 19, 33, 0.58));
  box-shadow: var(--shadow-card);
  text-align: center;
}

.quote::before {
  content: "“";
  position: absolute;
  top: -32px;
  left: 24px;
  color: rgba(169, 239, 200, 0.08);
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: 1;
  pointer-events: none;
}

.quote__text {
  position: relative;
  color: #f4f9fd;
  font-size: clamp(1.35rem, 2.7vw, 2.05rem);
  font-weight: 580;
  line-height: 1.5;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.quote__source {
  margin-top: 25px;
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.cta-band {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 8vw, 90px) clamp(24px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(17, 39, 60, 0.86), rgba(7, 21, 34, 0.9)) padding-box,
    linear-gradient(120deg, rgba(169, 239, 200, 0.38), rgba(127, 184, 255, 0.2), rgba(255, 255, 255, 0.05)) border-box;
  box-shadow: 0 36px 110px rgba(0, 5, 14, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.cta-band::before {
  top: -180px;
  left: -90px;
  width: 390px;
  height: 390px;
  background: rgba(102, 226, 161, 0.12);
}

.cta-band::after {
  right: -120px;
  bottom: -220px;
  width: 440px;
  height: 440px;
  background: rgba(93, 153, 226, 0.11);
}

.cta-band h2 {
  position: relative;
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band .lede {
  position: relative;
  max-width: 56ch;
  margin-inline: auto;
}

.cta-band .btn-row {
  position: relative;
  justify-content: center;
  margin-top: 32px;
}

/* ---------- Contact and app notice ---------- */

.contact-card,
.app-mention {
  display: flex;
  align-items: center;
  gap: 22px;
}

.contact-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 19px;
}

.contact-card__icon svg {
  width: 29px;
  height: 29px;
}

.contact-card > div:last-child,
.app-mention > div:last-child {
  min-width: 0;
  flex: 1;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.contact-links a {
  position: relative;
  min-height: 126px;
  padding: 25px 54px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(218, 236, 250, 0.11);
  border-radius: 20px;
  color: #f4f9fd;
  background: linear-gradient(145deg, rgba(15, 34, 55, 0.72), rgba(7, 19, 33, 0.68));
  box-shadow: 0 14px 44px rgba(0, 5, 14, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  font-weight: 680;
  transition: transform 0.38s var(--ease-out), border-color 0.32s ease, box-shadow 0.38s ease;
  scroll-margin-top: 120px;
}

.contact-links a::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 18px;
  height: 18px;
  border-top: 1.5px solid var(--secondary);
  border-right: 1.5px solid var(--secondary);
  opacity: 0.72;
  transform: scale(0.7);
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease;
}

.contact-links a::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 24px;
  width: 24px;
  height: 1.5px;
  background: var(--secondary);
  opacity: 0.72;
  transform: rotate(-45deg) scaleX(0.7);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease;
}

.contact-links a:hover {
  border-color: rgba(169, 239, 200, 0.26);
  box-shadow: 0 25px 70px rgba(0, 5, 14, 0.3), var(--shadow-glow);
  transform: translateY(-6px);
}

.contact-links a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.contact-links a:hover::after {
  opacity: 1;
  transform: rotate(-45deg) scaleX(1);
}

.contact-links span {
  display: block;
  margin-top: 8px;
  color: var(--text-on-dark-secondary);
  font-size: 0.86rem;
  font-weight: 450;
  line-height: 1.5;
}

.app-mention__icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
}

.app-mention__icon svg {
  width: 26px;
  height: 26px;
}

/* ---------- Campaigns and association life ---------- */

#campagnes {
  scroll-margin-top: 104px;
}

.campaign-feature,
.campaign-card,
.instagram-follow,
.campaign-preview__item {
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(16, 36, 57, 0.82), rgba(6, 18, 31, 0.86)) padding-box,
    linear-gradient(135deg, rgba(226, 242, 252, 0.17), rgba(169, 239, 200, 0.08), rgba(127, 184, 255, 0.08)) border-box;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.campaign-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: border-color 0.38s ease, box-shadow 0.45s ease, transform 0.45s var(--ease-out);
}

.campaign-feature:hover {
  border-color: rgba(169, 239, 200, 0.12);
  box-shadow: var(--shadow-elevated), 0 0 0 1px rgba(169, 239, 200, 0.04);
  transform: translate3d(0, -4px, 0);
}

.campaign-feature__art,
.campaign-card__art {
  min-width: 0;
}

.campaign-feature__media,
.campaign-card__media {
  position: relative;
  isolation: isolate;
  display: block;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #071622;
}

.campaign-feature__media::after,
.campaign-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 10, 18, 0.06), transparent 48%, rgba(2, 10, 18, 0.74)),
    linear-gradient(115deg, rgba(7, 29, 43, 0.18), transparent 54%);
}

.campaign-feature__media img,
.campaign-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.002);
  transition: transform 0.75s var(--ease-out), filter 0.55s ease;
}

.campaign-feature__media img {
  object-position: 50% 45%;
}

.campaign-feature:hover .campaign-feature__media img,
.campaign-card:hover .campaign-card__media img {
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.055);
}

.campaign-media__badge,
.campaign-media__mark {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(236, 249, 255, 0.18);
  color: #f4fbff;
  background: rgba(3, 14, 24, 0.62);
  box-shadow: 0 12px 32px rgba(0, 5, 13, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
}

.campaign-media__badge {
  top: 20px;
  left: 20px;
  padding: 9px 13px;
  border-radius: 18px 7px 18px 7px;
  font-size: 0.64rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-media__mark {
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  color: #07150e;
  background: rgba(169, 239, 200, 0.94);
  font-size: 1.05rem;
  font-weight: 800;
  transition: transform 0.35s var(--ease-out);
}

.campaign-feature__media:hover .campaign-media__mark,
.campaign-card__media:hover .campaign-media__mark {
  transform: translate3d(2px, -2px, 0) rotate(5deg);
}

.campaign-art {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #c8f8dc;
  background:
    radial-gradient(circle at 26% 18%, rgba(169, 239, 200, 0.2), transparent 32%),
    radial-gradient(circle at 82% 84%, rgba(127, 184, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #123b3c, #071927 72%);
}

.campaign-art > * {
  position: relative;
  z-index: 2;
}

.campaign-art svg {
  width: clamp(94px, 12vw, 146px);
  color: rgba(232, 255, 243, 0.92);
  filter: drop-shadow(0 16px 28px rgba(0, 6, 15, 0.34)) drop-shadow(0 0 22px rgba(169, 239, 200, 0.18));
  transition: transform 0.5s var(--ease-out), filter 0.4s ease;
}

.campaign-feature:hover .campaign-art svg,
.campaign-card:hover .campaign-art svg {
  filter: drop-shadow(0 20px 34px rgba(0, 6, 15, 0.4)) drop-shadow(0 0 30px rgba(169, 239, 200, 0.28));
  transform: translate3d(0, -5px, 0) rotate(-2deg) scale(1.035);
}

.campaign-art__kicker,
.campaign-art__location {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(235, 249, 255, 0.15);
  border-radius: var(--radius-full);
  color: rgba(246, 252, 255, 0.84);
  background: rgba(3, 12, 20, 0.38);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-art__kicker {
  top: 24px;
  left: 24px;
}

.campaign-art__location {
  right: 24px;
  bottom: 24px;
}

.campaign-art__year {
  position: absolute;
  right: -10px;
  bottom: -31px;
  z-index: 1;
  color: rgba(238, 251, 255, 0.075);
  font-size: clamp(5.3rem, 10vw, 8.8rem);
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.campaign-art--football::before {
  content: "";
  position: absolute;
  inset: 32px;
  z-index: 1;
  border: 1px solid rgba(224, 255, 239, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(224, 255, 239, 0.11) 50%, transparent calc(50% + 0.5px));
}

.campaign-art--football::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 36%;
  aspect-ratio: 1;
  border: 1px solid rgba(224, 255, 239, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.campaign-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
}

.campaign-feature__content h3 {
  margin-top: 19px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.campaign-feature__content > p,
.campaign-card__content > p {
  color: var(--text-on-dark-secondary);
  text-wrap: pretty;
}

.campaign-feature__content > p {
  max-width: 56ch;
  margin-top: 18px;
  font-size: 1.03rem;
  line-height: 1.75;
}

.campaign-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  color: var(--text-on-dark-faint);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.campaign-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
}

.campaign-card__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.campaign-feature__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 31px;
}

.campaign-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #e9f7ff;
  font-size: 0.9rem;
  font-weight: 680;
  transition: color 0.28s ease, transform 0.32s var(--ease-out);
}

.campaign-text-link svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  transition: transform 0.32s var(--ease-out);
}

.campaign-text-link:hover {
  color: var(--secondary);
  transform: translateX(2px);
}

.campaign-text-link:hover svg {
  transform: translate3d(2px, -2px, 0);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(18px, 2.5vw, 28px);
}

.campaign-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: border-color 0.35s ease, box-shadow 0.42s ease, transform 0.42s var(--ease-out);
}

.campaign-card:hover {
  border-color: rgba(215, 241, 255, 0.12);
  box-shadow: var(--shadow-elevated), 0 0 0 1px rgba(169, 239, 200, 0.035);
  transform: translate3d(0, -5px, 0);
}

.campaign-card__art,
.campaign-card__media {
  min-height: 220px;
}

.campaign-card__art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(235, 249, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 249, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(145deg, black, transparent 78%);
  mask-image: linear-gradient(145deg, black, transparent 78%);
}

.campaign-card__art svg {
  width: clamp(72px, 8vw, 98px);
}

.campaign-card__art .campaign-art__year {
  right: -4px;
  bottom: -14px;
  font-size: clamp(3.5rem, 6vw, 5.7rem);
}

.campaign-card__art .campaign-art__kicker {
  top: 17px;
  left: 17px;
  padding: 7px 10px;
  font-size: 0.59rem;
}

.campaign-card__content {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
}

.campaign-card__content h3 {
  margin-top: 15px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.campaign-card__content > p {
  margin-top: 11px;
  font-size: 0.91rem;
  line-height: 1.68;
}

.campaign-card__content .campaign-text-link {
  margin-top: auto;
  padding-top: 25px;
}

.campaign-card--outing .campaign-art {
  color: #b8dcff;
  background:
    radial-gradient(circle at 28% 20%, rgba(127, 184, 255, 0.28), transparent 33%),
    radial-gradient(circle at 78% 80%, rgba(169, 239, 200, 0.12), transparent 34%),
    linear-gradient(145deg, #153053, #081727 75%);
}

.campaign-card--champions .campaign-art {
  color: #e5d2ff;
  background:
    radial-gradient(circle at 26% 20%, rgba(187, 133, 255, 0.26), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(127, 184, 255, 0.12), transparent 34%),
    linear-gradient(145deg, #302150, #101326 74%);
}

.campaign-card--halloween .campaign-art {
  color: #ffd0a3;
  background:
    radial-gradient(circle at 27% 18%, rgba(255, 163, 83, 0.28), transparent 33%),
    radial-gradient(circle at 80% 82%, rgba(255, 209, 136, 0.1), transparent 34%),
    linear-gradient(145deg, #46261c, #14131d 74%);
}

.campaign-card--culture .campaign-art {
  color: #b7f4ec;
  background:
    radial-gradient(circle at 26% 18%, rgba(86, 222, 205, 0.24), transparent 34%),
    radial-gradient(circle at 82% 84%, rgba(156, 129, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #123f46, #101528 74%);
}

.instagram-follow {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: clamp(28px, 4vw, 42px);
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-lg);
}

.instagram-follow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(234, 220, 255, 0.17);
  border-radius: 18px;
  color: #f5e9ff;
  background: linear-gradient(145deg, rgba(191, 115, 255, 0.18), rgba(255, 125, 112, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 28px rgba(0, 5, 14, 0.18);
}

.instagram-follow__icon svg {
  width: 28px;
  height: 28px;
}

.instagram-follow__copy {
  min-width: 0;
}

.instagram-follow__copy > span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-on-dark-faint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.instagram-follow__copy h3 {
  font-size: 1.22rem;
}

.instagram-follow__copy p {
  margin-top: 4px;
  color: var(--text-on-dark-secondary);
  font-size: 0.87rem;
  line-height: 1.55;
}

.campaign-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.campaign-preview__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 132px;
  padding: 22px;
  overflow: hidden;
  border-radius: 21px;
  transition: border-color 0.34s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out);
}

.campaign-preview__item::before {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--preview-glow, rgba(169, 239, 200, 0.09));
  filter: blur(25px);
}

.campaign-preview__item:hover {
  border-color: rgba(215, 241, 255, 0.14);
  box-shadow: 0 26px 74px rgba(0, 5, 14, 0.32), var(--shadow-glow);
  transform: translate3d(0, -5px, 0);
}

.campaign-preview__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(223, 244, 255, 0.14);
  border-radius: 16px;
  color: var(--preview-color, var(--secondary));
  background: rgba(224, 241, 252, 0.055);
}

.campaign-preview__icon svg {
  width: 27px;
  height: 27px;
}

.campaign-preview__copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.campaign-preview__copy small {
  margin-bottom: 5px;
  color: var(--preview-color, var(--secondary));
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.campaign-preview__copy strong {
  color: #f5faff;
  font-size: 1rem;
  line-height: 1.25;
}

.campaign-preview__copy > span {
  margin-top: 4px;
  color: var(--text-on-dark-secondary);
  font-size: 0.78rem;
  line-height: 1.4;
}

.campaign-preview__arrow {
  position: relative;
  z-index: 1;
  color: var(--preview-color, var(--secondary));
  font-size: 1.15rem;
  transition: transform 0.32s var(--ease-out);
}

.campaign-preview__item:hover .campaign-preview__arrow {
  transform: translate3d(2px, -2px, 0);
}

.campaign-preview__item--outing {
  --preview-color: #9bc9ff;
  --preview-glow: rgba(105, 166, 240, 0.11);
}

.campaign-preview__item--community {
  --preview-color: #b6eee7;
  --preview-glow: rgba(115, 224, 209, 0.1);
}

.campaign-preview__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(58px, 8vw, 100px);
  padding: clamp(62px, 8vw, 90px) 0 30px;
  border-top: 1px solid rgba(218, 236, 250, 0.09);
  background: linear-gradient(to bottom, rgba(3, 9, 17, 0.12), rgba(3, 9, 17, 0.72));
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(44vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 239, 200, 0.48), transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(169, 239, 200, 0.2);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 54px;
  padding-bottom: 52px;
}

.footer__brand {
  margin-bottom: 13px;
  font-size: 1.08rem;
}

.footer__brand img {
  width: auto;
  height: 34px;
}

.footer__tagline {
  max-width: 370px;
  color: var(--text-on-dark-secondary);
  font-size: 0.91rem;
  line-height: 1.72;
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(54px, 8vw, 100px);
}

.footer__col h4 {
  margin-bottom: 17px;
  color: var(--text-on-dark-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  position: relative;
  color: var(--text-on-dark-secondary);
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.footer__col a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.footer__col a:hover {
  color: #ffffff;
}

.footer__col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 30px;
  padding-top: 27px;
  border-top: 1px solid rgba(218, 236, 250, 0.09);
  color: var(--text-on-dark-faint);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* ---------- Responsive ---------- */

@media (max-width: 1279px) {
  .hero__visual-card::before {
    inset: -4%;
    animation: none;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.8fr);
    gap: 48px;
  }

  .hero__badge--1 { left: -3%; }
  .hero__badge--2 { right: -4%; }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__text {
    max-width: 760px;
  }

  .hero__visual-card {
    width: min(74vw, 430px);
    margin-top: 12px;
  }

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

  .campaign-feature__art,
  .campaign-feature__media {
    min-height: 360px;
  }
}

@media (max-width: 1060px) {
  .site-header {
    padding-top: 9px;
  }

  .hero > .container > .section-head.is-left h1 {
    font-size: clamp(2.25rem, 11.3vw, 2.75rem);
  }

  .nav {
    min-height: 60px;
    padding: 7px 8px 7px 15px;
    border-radius: 18px;
  }

  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100svh - 94px);
    padding: 9px;
    overflow-y: auto;
    border: 1px solid rgba(218, 236, 250, 0.14);
    border-radius: 18px;
    background: rgba(4, 12, 22, 0.96);
    box-shadow: 0 26px 70px rgba(0, 4, 12, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    backdrop-filter: blur(24px) saturate(130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -10px, 0) scale(0.985);
    transform-origin: top;
    transition: opacity 0.25s ease, transform 0.35s var(--ease-out), visibility 0.25s;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    width: 100%;
    padding: 14px 15px;
  }

  .nav__links .nav__cta {
    justify-content: center;
    margin: 6px 0 0;
    text-align: center;
  }
}

@media (max-width: 780px) {
  :root {
    --space-2xl: 54px;
    --space-3xl: 90px;
  }

  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

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

  .stat {
    padding-block: 22px;
  }

  .stat:not(:last-child)::after {
    top: auto;
    right: 12%;
    bottom: 0;
    left: 12%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 232, 247, 0.14), transparent);
  }

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

  .contact-links a {
    min-height: 108px;
  }

  .campaign-grid,
  .campaign-preview__grid {
    grid-template-columns: 1fr;
  }

  .campaign-preview__item {
    min-height: 116px;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 22px;
    --radius-xl: 26px;
  }

  body::before {
    background-size: 48px 48px;
    opacity: 0.1;
  }

  .container {
    padding-inline: 20px;
  }

  .section {
    padding-block: 72px;
  }

  .section--tight {
    padding-block: 54px;
  }

  main > .section:not(.stats)::before {
    width: calc(100% - 40px);
  }

  h1,
  .h1 {
    font-size: clamp(2.7rem, 13vw, 3.65rem);
    line-height: 1.01;
  }

  h2,
  .h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .hero {
    padding-top: 86px;
    padding-bottom: 80px;
  }

  .hero__grid {
    gap: 58px;
  }

  .hero__text h1 {
    font-size: clamp(2.85rem, 13.5vw, 4rem);
  }

  .hero__visual-card {
    width: min(82vw, 380px);
    border-radius: 29px;
  }

  .hero__badge {
    padding: 9px 12px;
    font-size: 0.7rem;
  }

  .hero__badge--1 {
    left: -2%;
  }

  .hero__badge--2 {
    right: -2%;
  }

  .stats {
    width: calc(100% - 32px);
  }

  .stats__grid {
    padding: 18px;
  }

  .glass-card {
    padding: 26px;
  }

  .step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 17px;
    padding: 21px 20px 21px 17px;
  }

  .steps::before {
    left: 26px;
  }

  .step__index {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 0.98rem;
  }

  .contact-card,
  .app-mention {
    align-items: flex-start;
  }

  .campaign-feature__content {
    padding: 34px 28px 38px;
  }

  .campaign-feature__art,
  .campaign-feature__media {
    min-height: 320px;
  }

  .campaign-art--football::before {
    inset: 24px;
  }

  .campaign-card {
    grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1.38fr);
  }

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

  .instagram-follow .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .quote {
    padding: 39px 25px;
  }

  .cta-band {
    padding: 50px 22px;
  }

  .footer__top {
    gap: 42px;
  }

  .footer__cols {
    width: 100%;
    justify-content: space-between;
    gap: 36px;
  }
}

@media (max-width: 460px) {
  .nav__brand img {
    height: 32px;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn-row .btn {
    width: 100%;
  }

  .hero__visual-card {
    width: min(80vw, 330px);
  }

  .hero__badge--1 {
    top: 3%;
    left: -5%;
  }

  .hero__badge--2 {
    right: -5%;
    bottom: 5%;
  }

  .contact-card,
  .app-mention {
    flex-direction: column;
  }

  .campaign-feature__art,
  .campaign-feature__media {
    min-height: 290px;
  }

  .campaign-art__kicker {
    top: 17px;
    left: 17px;
  }

  .campaign-art__location {
    right: 17px;
    bottom: 17px;
  }

  .campaign-card {
    grid-template-columns: 1fr;
  }

  .campaign-card__art,
  .campaign-card__media {
    min-height: 205px;
  }

  .campaign-feature__links {
    align-items: stretch;
    flex-direction: column;
  }

  .campaign-feature__links .btn,
  .campaign-feature__links .campaign-text-link {
    justify-content: center;
    width: 100%;
  }

  .instagram-follow {
    grid-template-columns: 1fr;
  }

  .instagram-follow__icon {
    width: 52px;
    height: 52px;
  }

  .campaign-preview__item {
    gap: 13px;
    padding: 19px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (hover: none), (pointer: coarse) {
  .tilt .glass-card,
  .hero__visual-card {
    transform: none;
  }

  .glass-card:hover,
  .glass-card.reveal:hover,
  .contact-links a:hover,
  .step:hover,
  .campaign-feature:hover,
  .campaign-card:hover,
  .campaign-preview__item:hover,
  .btn:hover {
    transform: none;
  }

  .campaign-feature:hover .campaign-art svg,
  .campaign-card:hover .campaign-art svg {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .bg-orb,
  .tilt .glass-card,
  .hero__visual-card,
  .hero__badge {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  h1,
  .h1 {
    background: none;
    -webkit-text-fill-color: currentColor;
  }

  .glass-card,
  .hero__visual-card,
  .cta-band,
  .stats,
  .step,
  .campaign-feature,
  .campaign-card,
  .instagram-follow,
  .campaign-preview__item,
  .contact-links a,
  .nav {
    border: 1px solid CanvasText;
  }
}

/* ================================================================
   Boutique — single-product immersive experience
   ================================================================ */

.shop-page {
  --shop-blue: #071b30;
  --shop-blue-light: #0d2b49;
  --shop-mint: #9cf0c2;
}

.shop-hero {
  position: relative;
  padding: clamp(74px, 8vw, 112px) 0 clamp(92px, 10vw, 136px);
}

.shop-hero::before {
  content: "";
  position: absolute;
  top: 3%;
  left: 50%;
  z-index: -1;
  width: min(94vw, 1180px);
  height: 650px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(62, 127, 190, 0.13), transparent 68%);
  filter: blur(24px);
  transform: translateX(-50%);
}

.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(38px, 7vw, 92px);
  margin-bottom: clamp(46px, 7vw, 78px);
}

.shop-intro h1 {
  max-width: 15ch;
  font-size: clamp(3.3rem, 5.5vw, 5.2rem);
}

.shop-intro .lede {
  margin: 0 0 7px;
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
}

.shop-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(330px, 0.72fr);
  align-items: start;
  gap: clamp(22px, 3vw, 34px);
}

/* ---------- Interactive 3D stage ---------- */

.product-stage {
  --shop-rotate-x: 0deg;
  --shop-rotate-y: 0deg;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(530px, 1fr) auto auto;
  min-width: 0;
  min-height: 760px;
  padding: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(201, 229, 249, 0.15);
  border-radius: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 50% 45%, rgba(39, 104, 158, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(13, 39, 64, 0.91), rgba(4, 16, 29, 0.94));
  box-shadow:
    0 36px 110px rgba(0, 4, 13, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -90px 120px rgba(0, 4, 12, 0.19);
  contain: layout paint;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.43;
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.035) 50%, transparent 58%),
    radial-gradient(circle at 16% 16%, rgba(169, 239, 200, 0.09), transparent 25%);
}

.product-stage::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 17%;
  left: 9%;
  z-index: 0;
  height: 54px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.72;
  background: rgba(0, 5, 12, 0.58);
  filter: blur(26px);
  transform: perspective(300px) rotateX(66deg);
  animation: shop-shadow-breathe 5.8s ease-in-out infinite;
}

.product-stage__aurora {
  position: absolute;
  top: 18%;
  left: 50%;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 38% 35%, rgba(156, 240, 194, 0.2), transparent 26%),
    conic-gradient(from 210deg, rgba(76, 164, 229, 0.16), rgba(124, 237, 179, 0.12), rgba(60, 113, 184, 0.18), rgba(76, 164, 229, 0.16));
  filter: blur(45px);
  transform: translateX(-50%);
  animation: shop-aurora 12s ease-in-out infinite alternate;
}

.product-stage__grid {
  position: absolute;
  right: -15%;
  bottom: -31%;
  left: -15%;
  z-index: -1;
  height: 58%;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(164, 206, 240, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 206, 240, 0.16) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(430px) rotateX(64deg);
  transform-origin: center top;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.product-stage__top,
.product-stage__footer {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-stage__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(229, 241, 250, 0.7);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-stage__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shop-mint);
  box-shadow: 0 0 0 5px rgba(156, 240, 194, 0.08), 0 0 16px rgba(156, 240, 194, 0.65);
  animation: shop-status 2.2s ease-in-out infinite;
}

.inspection-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(210, 233, 249, 0.14);
  border-radius: var(--radius-full);
  color: rgba(235, 246, 253, 0.82);
  background: rgba(226, 240, 250, 0.055);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 680;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}

.inspection-switch svg {
  width: 17px;
  height: 17px;
}

.inspection-switch:hover,
.inspection-switch[aria-pressed="true"] {
  color: #07150e;
  border-color: rgba(196, 249, 221, 0.45);
  background: var(--shop-mint);
  transform: translateY(-1px);
}

.inspection-switch:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.shop-model-wrap {
  position: relative;
  z-index: 2;
  min-height: 530px;
  perspective: 1400px;
}

.shop-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  border: 1px solid rgba(174, 220, 250, 0.12);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotateX(67deg);
}

.shop-orbit::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--shop-mint);
  box-shadow: 0 0 20px rgba(156, 240, 194, 0.72);
}

.shop-orbit--outer {
  width: min(92%, 620px);
  aspect-ratio: 1;
  animation: shop-orbit 20s linear infinite;
}

.shop-orbit--inner {
  width: min(68%, 440px);
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.56;
  animation: shop-orbit-reverse 15s linear infinite;
}

.shop-model {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  width: 100%;
  padding: 0;
  border: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  cursor: grab;
  touch-action: pan-y;
}

.shop-model:active {
  cursor: grabbing;
}

.shop-model:focus-visible {
  outline-offset: -8px;
}

.shop-model__tilt,
.shop-model__float,
.shop-model__wind {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  transform-style: preserve-3d;
}

.shop-model__tilt {
  transform: perspective(1200px) rotateX(var(--shop-rotate-x)) rotateY(var(--shop-rotate-y));
  transition: transform 0.2s ease-out;
}

.shop-model__float {
  animation: shop-shirt-float 5.8s ease-in-out infinite;
}

.shop-model__wind {
  transform-origin: 48% 18%;
  animation: shop-shirt-wind 4.7s ease-in-out infinite;
}

.shop-model__image {
  width: auto;
  height: min(70vw, 600px);
  max-width: 92%;
  object-fit: contain;
  user-select: none;
  filter:
    drop-shadow(0 42px 38px rgba(0, 3, 9, 0.48))
    drop-shadow(0 0 26px rgba(104, 195, 235, 0.07));
  transform: translateZ(36px);
  transition: width 0.6s var(--ease-out), height 0.6s var(--ease-out), max-width 0.6s var(--ease-out), filter 0.45s ease, opacity 0.3s ease;
  -webkit-user-drag: none;
}

.product-stage.is-marking-view .shop-model__image {
  width: min(58%, 410px);
  height: auto;
  max-height: 390px;
  filter:
    drop-shadow(0 35px 48px rgba(0, 3, 9, 0.5))
    drop-shadow(0 0 34px rgba(156, 240, 194, 0.17));
}

.product-stage.is-worn-view .shop-model__image {
  width: auto;
  height: min(60vw, 500px);
  max-width: 72%;
  border: 1px solid rgba(210, 235, 249, 0.18);
  border-radius: 24px;
  box-shadow:
    0 30px 70px rgba(0, 3, 10, 0.45),
    0 0 0 8px rgba(214, 237, 250, 0.025);
  filter: saturate(0.9) contrast(1.04);
}

.product-stage.is-marking-view .shop-model__wind {
  animation-name: shop-marking-float;
}

.product-stage.is-worn-view .shop-model__wind {
  animation-name: shop-marking-float;
}

.shop-hotspots {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.shop-hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: #eaf6fd;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 65px) scale(0.88);
  transition: opacity 0.35s ease, transform 0.45s var(--ease-out);
}

.product-stage.is-inspecting:not(.is-marking-view):not(.is-worn-view) .shop-hotspot {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 65px) scale(1);
}

.product-stage.is-inspecting .shop-hotspot:nth-child(2) { transition-delay: 45ms; }
.product-stage.is-inspecting .shop-hotspot:nth-child(3) { transition-delay: 90ms; }
.product-stage.is-inspecting .shop-hotspot:nth-child(4) { transition-delay: 135ms; }

.shop-hotspot::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 5px);
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 240, 220, 0.7));
  transform-origin: right;
}

.shop-hotspot span {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(218, 255, 235, 0.55);
  border-radius: 50%;
  place-items: center;
  color: #06140d;
  background: rgba(176, 246, 208, 0.94);
  box-shadow: 0 0 0 6px rgba(156, 240, 194, 0.08), 0 0 25px rgba(156, 240, 194, 0.42);
  font-size: 0.69rem;
  font-style: normal;
  font-weight: 800;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.shop-hotspot span::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(156, 240, 194, 0.22);
  border-radius: 50%;
  animation: shop-hotspot-pulse 2.3s ease-out infinite;
}

.shop-hotspot em {
  padding: 8px 12px;
  border: 1px solid rgba(219, 237, 249, 0.12);
  border-radius: 19px 7px 19px 7px;
  background: linear-gradient(135deg, rgba(10, 29, 45, 0.88), rgba(3, 13, 24, 0.72));
  box-shadow: 0 12px 28px rgba(0, 4, 12, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 680;
}

.shop-hotspot:hover span,
.shop-hotspot:focus-visible span {
  box-shadow: 0 0 0 8px rgba(156, 240, 194, 0.11), 0 0 32px rgba(156, 240, 194, 0.58);
  transform: scale(1.09);
}

.shop-hotspot--fabric { top: 37%; left: 17%; }
.shop-hotspot--collar { top: 14%; left: 68%; }
.shop-hotspot--marking { top: 49%; left: 75%; }
.shop-hotspot--stitching { top: 67%; left: 76%; }
.shop-hotspot--cut { top: 75%; left: 22%; }

.product-stage__detail {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(100%, 540px);
  min-height: 68px;
  margin: -3px auto 20px;
  padding: 11px 18px 11px 11px;
  border: 1px solid rgba(209, 234, 250, 0.12);
  border-radius: 35px 14px 35px 14px;
  background: linear-gradient(135deg, rgba(7, 27, 43, 0.8), rgba(3, 14, 25, 0.58));
  box-shadow: 0 18px 48px rgba(0, 4, 12, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.35s ease, transform 0.45s var(--ease-out);
}

.product-stage.is-inspecting .product-stage__detail {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.product-stage__detail-index {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  color: #06140d;
  background: var(--shop-mint);
  font-size: 0.72rem;
  font-weight: 820;
}

.product-stage__detail strong {
  display: block;
  margin-bottom: 3px;
  color: #f7fbff;
  font-size: 0.82rem;
}

.product-stage__detail p {
  color: var(--text-on-dark-secondary);
  font-size: 0.73rem;
  line-height: 1.45;
}

.product-stage__footer {
  padding-top: 18px;
  border-top: 1px solid rgba(210, 233, 249, 0.09);
}

.product-stage__footer > p {
  color: var(--text-on-dark-faint);
  font-size: 0.7rem;
}

.view-tabs {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(213, 236, 250, 0.1);
  border-radius: var(--radius-full);
  background: rgba(3, 13, 24, 0.52);
}

.view-tab {
  min-height: 35px;
  padding: 8px 13px;
  border: 0;
  border-radius: var(--radius-full);
  color: rgba(225, 239, 249, 0.58);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 680;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.view-tab:hover {
  color: #fff;
}

.view-tab.is-active {
  color: #06140d;
  background: var(--shop-mint);
  box-shadow: 0 7px 21px rgba(92, 218, 151, 0.19);
}

/* ---------- Purchase card ---------- */

.purchase-card {
  position: sticky;
  top: 104px;
  min-width: 0;
  padding: clamp(26px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(211, 235, 250, 0.14);
  border-radius: clamp(24px, 2.7vw, 32px);
  background:
    linear-gradient(145deg, rgba(15, 36, 57, 0.94), rgba(5, 17, 30, 0.92));
  box-shadow:
    0 34px 90px rgba(0, 4, 12, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  backdrop-filter: blur(24px) saturate(120%);
}

.purchase-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(94, 210, 151, 0.09);
  filter: blur(35px);
}

.purchase-card__head,
.product-summary,
.shop-form,
.purchase-assurances {
  position: relative;
  z-index: 1;
}

.product-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--shop-mint);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.purchase-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.product-price strong {
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.045em;
}

.product-price span {
  color: var(--text-on-dark-faint);
  font-size: 0.78rem;
}

.product-summary {
  margin: 22px 0 27px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(214, 235, 249, 0.1);
  color: var(--text-on-dark-secondary);
  font-size: 0.91rem;
  line-height: 1.68;
}

.shop-form {
  display: grid;
  gap: 24px;
}

.option-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-group > legend:not(.option-group__legend),
.quantity-row > div:first-child > strong {
  display: block;
  margin-bottom: 11px;
  color: #eef7fd;
  font-size: 0.78rem;
  font-weight: 720;
}

.option-group__legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-bottom: 11px;
}

.option-group__legend strong {
  color: #eef7fd;
  font-size: 0.78rem;
  font-weight: 720;
}

.option-group__legend > span,
.quantity-row > div:first-child > span {
  color: var(--text-on-dark-faint);
  font-size: 0.7rem;
}

.color-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 13px;
  border: 1px solid rgba(197, 244, 219, 0.19);
  border-radius: 16px;
  background: rgba(169, 239, 200, 0.055);
}

.color-choice__swatch {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: linear-gradient(145deg, #1c1f22, #030405);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 7px 16px rgba(0, 0, 0, 0.28);
}

.color-choice strong,
.color-choice small {
  display: block;
}

.color-choice strong {
  color: #f5faff;
  font-size: 0.8rem;
}

.color-choice small {
  margin-top: 2px;
  color: var(--text-on-dark-faint);
  font-size: 0.67rem;
}

.color-choice svg {
  width: 18px;
  height: 18px;
  color: var(--shop-mint);
}

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

.size-picker label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.size-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.size-picker span {
  display: grid;
  min-height: 49px;
  border: 1px solid rgba(213, 235, 249, 0.12);
  border-radius: 14px;
  place-items: center;
  color: rgba(230, 241, 249, 0.68);
  background: rgba(224, 239, 250, 0.045);
  font-size: 0.78rem;
  font-weight: 720;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}

.size-picker label:hover span {
  color: #fff;
  border-color: rgba(213, 235, 249, 0.24);
  transform: translateY(-1px);
}

.size-picker input:checked + span {
  color: #06140d;
  border-color: rgba(205, 255, 228, 0.58);
  background: var(--shop-mint);
  box-shadow: 0 10px 24px rgba(80, 210, 143, 0.18);
}

.size-picker input:focus-visible + span {
  outline: 3px solid rgba(169, 239, 200, 0.9);
  outline-offset: 3px;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.quantity-row > div:first-child > strong {
  margin-bottom: 3px;
}

.quantity-picker {
  display: grid;
  grid-template-columns: 38px 38px 38px;
  align-items: center;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid rgba(213, 235, 249, 0.12);
  border-radius: 14px;
  background: rgba(224, 239, 250, 0.045);
}

.quantity-picker button {
  align-self: stretch;
  padding: 0;
  border: 0;
  color: rgba(235, 245, 252, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.quantity-picker button:hover:not(:disabled) {
  color: #fff;
  background: rgba(220, 239, 251, 0.07);
}

.quantity-picker button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

.quantity-picker output {
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 720;
}

.checkout-button {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  padding-inline: 22px;
}

.checkout-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.32s var(--ease-out);
}

.checkout-button:hover svg {
  transform: translateX(4px);
}

.checkout-button.is-loading {
  cursor: wait;
  opacity: 0.78;
}

.checkout-button.is-loading svg {
  animation: shop-button-loading 0.85s linear infinite;
}

.checkout-message {
  display: none;
  margin-top: -12px;
  color: #ffc5c5;
  font-size: 0.76rem;
  line-height: 1.48;
}

.checkout-message:not(:empty) {
  display: block;
}

.checkout-message.is-info {
  color: var(--shop-mint);
}

.purchase-assurances {
  display: grid;
  gap: 13px;
  margin-top: 27px;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 235, 249, 0.1);
}

.purchase-assurances > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}

.purchase-assurances svg {
  width: 20px;
  height: 20px;
  color: var(--shop-mint);
}

.purchase-assurances strong,
.purchase-assurances small {
  display: block;
}

.purchase-assurances strong {
  color: rgba(238, 247, 253, 0.83);
  font-size: 0.72rem;
}

.purchase-assurances small {
  margin-top: 2px;
  color: var(--text-on-dark-faint);
  font-size: 0.65rem;
}

/* ---------- Annotated product anatomy ---------- */

.shop-anatomy {
  overflow: hidden;
}

.anatomy-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
}

.anatomy-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  border: 1px solid rgba(210, 233, 249, 0.1);
  border-radius: clamp(25px, 3vw, 36px);
  background:
    radial-gradient(circle at 50% 48%, rgba(53, 117, 170, 0.17), transparent 44%),
    rgba(9, 25, 42, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 28px 80px rgba(0, 5, 14, 0.22);
}

.anatomy-visual__halo {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(156, 240, 194, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(111, 182, 227, 0.025),
    0 0 0 92px rgba(111, 182, 227, 0.018);
  animation: shop-halo 5s ease-in-out infinite;
}

.anatomy-visual img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 540px;
  max-width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgba(0, 3, 9, 0.48));
}

.anatomy-line {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  border: 2px solid var(--shop-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(156, 240, 194, 0.08), 0 0 20px rgba(156, 240, 194, 0.35);
}

.anatomy-line::after {
  content: "";
  position: absolute;
  top: 3px;
  width: clamp(50px, 8vw, 105px);
  height: 1px;
  background: linear-gradient(90deg, var(--shop-mint), transparent);
}

.anatomy-line--1 { top: 39%; left: 31%; }
.anatomy-line--2 { top: 17%; left: 50%; }
.anatomy-line--3 { top: 52%; left: 60%; }
.anatomy-line--4 { top: 75%; left: 68%; }
.anatomy-line--5 { top: 73%; left: 34%; }
.anatomy-line--1::after,
.anatomy-line--3::after,
.anatomy-line--4::after { left: 8px; }
.anatomy-line--2::after,
.anatomy-line--5::after {
  right: 8px;
  background: linear-gradient(270deg, var(--shop-mint), transparent);
}

.anatomy-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: anatomy;
}

.anatomy-list li:nth-child(odd) {
  margin-right: 22px;
}

.anatomy-list li:nth-child(even) {
  margin-left: 22px;
}

.anatomy-list button {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 78px;
  padding: 10px 17px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(211, 234, 249, 0.1);
  border-radius: 999px;
  color: inherit;
  text-align: left;
  background: linear-gradient(110deg, rgba(169, 239, 200, 0.055), rgba(217, 236, 249, 0.025) 42%, rgba(8, 23, 39, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}

.anatomy-list button:hover,
.anatomy-list button.is-active {
  border-color: rgba(188, 244, 214, 0.23);
  background: linear-gradient(110deg, rgba(169, 239, 200, 0.12), rgba(118, 195, 234, 0.055) 58%, rgba(8, 23, 39, 0.24));
  box-shadow: 0 18px 46px rgba(0, 5, 14, 0.2);
  transform: translateX(7px) scale(1.008);
}

.anatomy-list button > span:first-child {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(156, 240, 194, 0.2);
  border-radius: 50%;
  place-items: center;
  color: var(--shop-mint);
  background: radial-gradient(circle at 35% 28%, rgba(196, 249, 221, 0.16), rgba(156, 240, 194, 0.055));
  box-shadow: 0 0 0 7px rgba(156, 240, 194, 0.025);
  font-size: 0.72rem;
  font-weight: 800;
}

.anatomy-list strong,
.anatomy-list small {
  display: block;
}

.anatomy-list strong {
  margin-bottom: 4px;
  color: #f3f9fd;
  font-size: 0.93rem;
}

.anatomy-list small {
  color: var(--text-on-dark-secondary);
  font-size: 0.75rem;
  line-height: 1.45;
}

.anatomy-list i {
  color: var(--shop-mint);
  font-size: 1rem;
  font-style: normal;
  transition: transform 0.3s var(--ease-out);
}

.anatomy-list button:hover i,
.anatomy-list button.is-active i {
  transform: translate3d(2px, -2px, 0);
}

.material-sheet {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 35px);
  margin-top: clamp(34px, 5vw, 60px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(198, 244, 220, 0.15);
  overflow: hidden;
  border-radius: clamp(34px, 5vw, 48px) 16px clamp(34px, 5vw, 48px) 16px;
  background:
    linear-gradient(130deg, rgba(156, 240, 194, 0.09), rgba(12, 30, 49, 0.68) 42%, rgba(8, 21, 36, 0.72));
  box-shadow: 0 25px 80px rgba(0, 5, 14, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.material-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 239, 200, 0.82), transparent);
  box-shadow: 0 0 18px rgba(169, 239, 200, 0.48);
}

.material-sheet__number {
  color: rgba(156, 240, 194, 0.32);
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  font-weight: 790;
  line-height: 1;
  letter-spacing: -0.06em;
}

.material-sheet__copy > span {
  color: var(--shop-mint);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.material-sheet__copy h3 {
  margin: 7px 0 7px;
}

.material-sheet__copy p {
  max-width: 67ch;
  color: var(--text-on-dark-secondary);
  font-size: 0.88rem;
  line-height: 1.67;
}

.material-sheet__meter {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 38px;
}

.material-sheet__meter span {
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to top, rgba(156, 240, 194, 0.2), var(--shop-mint));
  animation: shop-meter 1.8s ease-in-out infinite alternate;
}

.material-sheet__meter span:nth-child(1) { height: 38%; }
.material-sheet__meter span:nth-child(2) { height: 68%; animation-delay: -0.4s; }
.material-sheet__meter span:nth-child(3) { height: 100%; animation-delay: -0.8s; }
.material-sheet__meter span:nth-child(4) { height: 55%; animation-delay: -1.1s; }
.material-sheet__meter span:nth-child(5) { height: 82%; animation-delay: -0.2s; }

.product-spec-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--text-on-dark-faint);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

/* ---------- Checkout result ---------- */

.checkout-result-main {
  display: grid;
  min-height: calc(100vh - 95px);
  place-items: center;
}

.checkout-result {
  width: 100%;
  padding: clamp(72px, 10vw, 130px) 0;
}

.checkout-result__card {
  position: relative;
  isolation: isolate;
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(35px, 7vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(204, 236, 219, 0.18);
  border-radius: clamp(26px, 4vw, 40px);
  text-align: center;
  background: linear-gradient(145deg, rgba(17, 40, 63, 0.9), rgba(5, 17, 30, 0.92));
  box-shadow: 0 40px 120px rgba(0, 4, 12, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.checkout-result__glow {
  position: absolute;
  top: -45%;
  left: 50%;
  z-index: -1;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(126, 238, 178, 0.16), transparent 67%);
  transform: translateX(-50%);
}

.checkout-result__icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 30px;
  border: 1px solid rgba(199, 252, 224, 0.34);
  border-radius: 25px;
  place-items: center;
  color: #06140d;
  background: linear-gradient(145deg, #c9f8de, #8beab6);
  box-shadow: 0 22px 55px rgba(74, 207, 139, 0.25), 0 0 0 9px rgba(156, 240, 194, 0.055);
}

.checkout-result__icon svg {
  width: 42px;
  height: 42px;
}

.checkout-result__card .eyebrow {
  margin-bottom: 18px;
}

.checkout-result__card h1 {
  max-width: none;
  font-size: clamp(2.55rem, 6vw, 4.7rem);
}

.checkout-result__card .lede {
  max-width: 54ch;
  margin: 23px auto 0;
}

.checkout-result__card .btn-row {
  justify-content: center;
  margin-top: 34px;
}

.order-recap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(212, 235, 249, 0.11);
  border-radius: 19px;
  background: rgba(212, 235, 249, 0.08);
}

.order-recap[hidden] {
  display: none;
}

.order-recap div {
  padding: 16px 10px;
  background: rgba(5, 17, 30, 0.82);
}

.order-recap dt {
  margin-bottom: 5px;
  color: var(--text-on-dark-faint);
  font-size: 0.65rem;
}

.order-recap dd {
  margin: 0;
  color: #f3f9fd;
  font-size: 0.78rem;
  font-weight: 680;
}

.checkout-reference {
  margin-top: 18px;
  color: var(--text-on-dark-faint);
  font-size: 0.7rem;
}

/* ---------- Shop motion ---------- */

@keyframes shop-shirt-float {
  0%, 100% { transform: translate3d(0, 3px, 0); }
  45% { transform: translate3d(0, -12px, 0); }
  70% { transform: translate3d(0, -7px, 0); }
}

@keyframes shop-shirt-wind {
  0%, 100% { transform: rotateY(-0.8deg) rotateZ(-0.35deg) skewX(-0.45deg) scale3d(1, 1, 1); }
  28% { transform: rotateY(1.4deg) rotateZ(0.72deg) skewX(0.7deg) scale3d(1.008, 0.997, 1); }
  58% { transform: rotateY(-1.2deg) rotateZ(-0.68deg) skewX(-0.78deg) scale3d(0.996, 1.005, 1); }
  80% { transform: rotateY(0.65deg) rotateZ(0.34deg) skewX(0.3deg) scale3d(1.004, 0.999, 1); }
}

@keyframes shop-marking-float {
  0%, 100% { transform: rotateZ(-1deg) scale3d(0.985, 0.985, 1); }
  50% { transform: rotateZ(1deg) scale3d(1.025, 1.025, 1); }
}

@keyframes shop-shadow-breathe {
  0%, 100% { opacity: 0.57; transform: perspective(300px) rotateX(66deg) scaleX(0.9); }
  50% { opacity: 0.76; transform: perspective(300px) rotateX(66deg) scaleX(1.03); }
}

@keyframes shop-aurora {
  from { opacity: 0.5; transform: translate3d(-53%, -2%, 0) rotate(-8deg) scale(0.92); }
  to { opacity: 0.88; transform: translate3d(-47%, 3%, 0) rotate(12deg) scale(1.07); }
}

@keyframes shop-orbit {
  from { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(360deg); }
}

@keyframes shop-orbit-reverse {
  from { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(360deg); }
  to { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(0deg); }
}

@keyframes shop-hotspot-pulse {
  0% { opacity: 0.8; transform: scale(0.78); }
  75%, 100% { opacity: 0; transform: scale(1.2); }
}

@keyframes shop-status {
  0%, 100% { opacity: 0.72; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes shop-button-loading {
  to { transform: rotate(360deg); }
}

@keyframes shop-halo {
  0%, 100% { opacity: 0.58; transform: scale(0.95); }
  50% { opacity: 0.92; transform: scale(1.03); }
}

@keyframes shop-meter {
  from { transform: scaleY(0.62); transform-origin: bottom; opacity: 0.55; }
  to { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

/* ---------- Shop responsive ---------- */

@media (max-width: 1080px) {
  .shop-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .shop-intro .lede {
    max-width: 720px;
  }

  .shop-product-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(315px, 0.75fr);
  }

  .product-stage {
    min-height: 710px;
  }

  .shop-hotspot--fabric { left: 10%; }
  .shop-hotspot--collar { left: 67%; }
  .shop-hotspot--marking { left: 72%; }
  .shop-hotspot--stitching { left: 72%; }
  .shop-hotspot--cut { left: 15%; }
}

@media (max-width: 900px) {
  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 740px;
  }

  .purchase-card {
    position: relative;
    top: auto;
  }

  .anatomy-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
  }

  .anatomy-visual {
    min-height: 500px;
  }

  .anatomy-visual img {
    height: 450px;
  }
}

@media (max-width: 760px) {
  .shop-hero {
    padding-top: 70px;
  }

  .shop-intro h1 {
    font-size: clamp(3rem, 12vw, 4.65rem);
  }

  .product-stage {
    grid-template-rows: auto minmax(475px, 1fr) auto auto;
    min-height: 690px;
  }

  .shop-model-wrap {
    min-height: 475px;
  }

  .shop-model__image {
    height: min(82vw, 520px);
  }

  .product-stage__footer > p {
    display: none;
  }

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

  .anatomy-visual {
    min-height: 560px;
  }

  .anatomy-visual img {
    height: 520px;
  }

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

  .anatomy-list li:nth-child(odd),
  .anatomy-list li:nth-child(even) {
    margin: 0;
  }

  .anatomy-list button {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 98px;
    border-radius: 30px 12px 30px 12px;
  }

  .anatomy-list i {
    display: none;
  }

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

  .material-sheet__meter {
    display: none;
  }

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

@media (max-width: 560px) {
  .product-stage {
    grid-template-rows: auto minmax(420px, 1fr) auto auto;
    min-height: 628px;
    padding: 17px;
    border-radius: 25px;
  }

  .shop-model-wrap {
    min-height: 420px;
  }

  .shop-model__image {
    height: min(105vw, 460px);
    max-width: 96%;
  }

  .product-stage__top {
    gap: 9px;
  }

  .product-stage__status {
    font-size: 0.61rem;
  }

  .inspection-switch {
    min-height: 37px;
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .shop-orbit--outer {
    width: 110%;
  }

  .shop-hotspot em,
  .shop-hotspot::after {
    display: none;
  }

  .shop-hotspot--fabric { top: 38%; left: 16%; }
  .shop-hotspot--collar { top: 15%; left: 66%; }
  .shop-hotspot--marking { top: 49%; left: 75%; }
  .shop-hotspot--stitching { top: 67%; left: 74%; }
  .shop-hotspot--cut { top: 75%; left: 21%; }

  .product-stage__detail {
    margin-bottom: 14px;
    padding: 10px 12px;
  }

  .product-stage__detail p {
    display: none;
  }

  .product-stage__footer {
    justify-content: center;
    padding-top: 14px;
  }

  .view-tabs {
    width: 100%;
  }

  .view-tab {
    flex: 1;
    padding-inline: 7px;
    font-size: 0.66rem;
    white-space: nowrap;
  }

  .purchase-card {
    padding: 27px 22px;
  }

  .anatomy-visual {
    min-height: 470px;
  }

  .anatomy-visual img {
    height: 435px;
  }

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

  .anatomy-list button {
    min-height: 84px;
    border-radius: 999px;
  }

  .material-sheet {
    grid-template-columns: 1fr;
  }

  .material-sheet__number {
    font-size: 3.4rem;
  }
}

@media (max-width: 400px) {
  .product-stage {
    grid-template-rows: auto minmax(380px, 1fr) auto auto;
    min-height: 590px;
  }

  .shop-model-wrap {
    min-height: 380px;
  }

  .shop-model__image {
    height: 102vw;
  }

  .size-picker {
    gap: 6px;
  }

  .size-picker span {
    min-height: 46px;
  }

  .anatomy-visual {
    min-height: 420px;
  }

  .anatomy-visual img {
    height: 385px;
  }

  .checkout-result__card .btn-row {
    flex-direction: column;
  }

  .checkout-result__card .btn {
    width: 100%;
  }
}

@media (hover: none), (pointer: coarse) {
  .shop-model__tilt {
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
  }

  .anatomy-list button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-model__tilt,
  .shop-model__float,
  .shop-model__wind,
  .shop-orbit,
  .product-stage::after,
  .product-stage__aurora,
  .product-stage__status i,
  .shop-hotspot span::before,
  .anatomy-visual__halo,
  .material-sheet__meter span {
    animation: none !important;
    transform: none;
  }
}

@media (forced-colors: active) {
  .product-stage,
  .purchase-card,
  .anatomy-visual,
  .anatomy-list button,
  .material-sheet,
  .checkout-result__card {
    border: 1px solid CanvasText;
  }

  .shop-model__image,
  .anatomy-visual img {
    filter: none;
  }
}
