/* ==========================================================================
   FutureDoc — Design system 2026
   Editorial grid · hairlines · tonal depth · restrained motion
   ========================================================================== */

:root {
  /* Brand */
  --blue: #1668FF;
  --blue-deep: #0B44C4;
  --blue-soft: #E9F0FF;
  --blue-mist: #F4F8FF;
  --navy: #061223;
  --navy-2: #0C1E38;
  --navy-3: #14294A;

  /* Neutrals */
  --ink: #061223;
  --ink-70: rgba(6, 18, 35, 0.7);
  --ink-55: rgba(6, 18, 35, 0.55);
  --ink-40: rgba(6, 18, 35, 0.4);
  --paper: #ffffff;
  --paper-2: #F7F8FA;
  --paper-3: #EFF2F6;
  --line: rgba(6, 18, 35, 0.12);
  --line-soft: rgba(6, 18, 35, 0.07);
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-dark-soft: rgba(255, 255, 255, 0.08);

  /* Status */
  --ok: #0E9F6E;
  --ok-soft: #E8F8F1;
  --sale: #D93A3A;
  --sale-soft: #FDF0F0;

  /* Geometry */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;

  /* Rhythm */
  --gutter: 32px;
  --shell: 1440px;
  --nav-h: 76px;

  /* Type */
  --sans: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  /* Motion */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-io: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 0.28s;
  --t-mid: 0.6s;
  --t-slow: 1.05s;
}

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

[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, figure, blockquote { margin: 0; }
::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: var(--r-xs);
}

.skip {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  transition: top var(--t-fast) var(--e-out);
}
.skip:focus { top: 16px; }

/* --------------------------------------------------------------- layout */

.shell {
  width: min(var(--shell), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}
.shell--narrow { width: min(980px, 100% - (var(--gutter) * 2)); margin-inline: auto; }
.bleed { width: 100%; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule--dark { background: var(--line-dark); }

.section { padding: clamp(72px, 9vw, 148px) 0; position: relative; }
.section--tight { padding: clamp(56px, 6vw, 96px) 0; }
.section--dark { background: var(--navy); color: #fff; }
.section--dark .lead, .section--dark .muted { color: rgba(255, 255, 255, 0.62); }
.section--paper { background: var(--paper-2); }

/* ----------------------------------------------------------- typography */

.display {
  font-size: clamp(44px, 8.6vw, 132px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 600;
  padding-bottom: 0.08em;
}
.h1 {
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 600;
  padding-bottom: 0.06em;
}
.h2 {
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.04em;
  font-weight: 600;
  padding-bottom: 0.04em;
}
.h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.lead {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
  color: var(--ink-70);
  letter-spacing: -0.015em;
}
.muted { color: var(--ink-55); }
.small { font-size: 13px; line-height: 1.5; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.label--blue { color: var(--blue); }
.label--light { color: rgba(255, 255, 255, 0.55); }
.label--plain::before { display: none; }

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 36px;
}
.sec-head__title { max-width: none; }
.sec-head .lead { max-width: 46ch; margin-top: 18px; }

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

[data-reveal] { will-change: transform, opacity; }

[data-reveal="up"] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-out);
}
[data-reveal="fade"] {
  opacity: 0;
  transition: opacity var(--t-slow) var(--e-out);
}
[data-reveal="media"] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--t-slow) var(--e-out);
}
[data-reveal="media"] > img,
[data-reveal="media"] > video {
  transform: scale(1.14);
  transition: transform 1.4s var(--e-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}
[data-reveal="media"].is-in {
  clip-path: inset(0 0 0 0);
}
[data-reveal="media"].is-in > img,
[data-reveal="media"].is-in > video { transform: scale(1); }

/* Masked line reveal. Vertical padding keeps accents (É) and descenders
   from being clipped by the overflow mask. */
.reveal-line {
  display: block;
  overflow: hidden;
  padding: 0.14em 0 0.16em;
  margin: -0.14em 0 -0.16em;
}
.reveal-line > span {
  display: block;
  transform: translate3d(0, 105%, 0);
  transition: transform 1s var(--e-out);
}
.reveal-line.is-in > span { transform: none; }

[data-stagger] > * { transition-delay: calc(var(--i, 0) * 70ms); }

.parallax { will-change: transform; }

html:not(.js) [data-reveal],
html:not(.js) .reveal-line > span,
html:not(.js) [data-reveal="media"] > img,
html:not(.js) [data-reveal="media"] > video {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .reveal-line > span { transform: none !important; }
  .why__reel {
    height: auto;
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }
  .why__list { animation: none; }
  .why__list li:nth-child(n+9) { display: none; }
  .voices {
    overflow: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .voices__track { animation: none; }
  .voices__card:nth-child(n+7) { display: none; }
}

/* ---------------------------------------------------- preloader + wipe */

.boot {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy);
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--e-out), visibility 0.7s;
}
.boot__mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  animation: bootMark 1.2s var(--e-out) forwards;
}
.boot__bar {
  position: absolute;
  left: 50%;
  bottom: 22%;
  transform: translateX(-50%);
  width: min(220px, 40vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
.boot__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  transition: width 0.5s var(--e-out);
}
.boot.is-done { opacity: 0; visibility: hidden; }
html:not(.js) .boot { display: none; }
@keyframes bootMark {
  from { opacity: 0; transform: scale(0.86); }
  to { opacity: 1; transform: none; }
}

.wipe {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--navy);
  transform: translate3d(0, 100%, 0);
  pointer-events: none;
}
.wipe.is-out {
  transform: translate3d(0, 0, 0);
  transition: transform 0.62s var(--e-io);
}
.wipe.is-in {
  transform: translate3d(0, -100%, 0);
  transition: transform 0.62s var(--e-io);
}

/* -------------------------------------------------------------- header */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  color: #fff;
  transition: background 0.45s var(--e-out), color 0.45s var(--e-out), height 0.45s var(--e-out), border-color 0.45s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: min(var(--shell), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav.is-solid {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  color: var(--ink);
  border-bottom-color: var(--line-soft);
  height: 66px;
}
.nav.is-hidden { transform: translate3d(0, -100%, 0); transition: transform 0.5s var(--e-out), background 0.45s; }
.nav--static { position: sticky; }

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.logo img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.logo b {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.logo--lockup { gap: 0; }
.logo--lockup img {
  width: auto;
  height: 42px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}
.logo-white { display: none; }
.nav:not(.is-solid) .logo-color { display: none; }
.nav:not(.is-solid) .logo-white { display: block; }

.nav__links { display: flex; align-items: center; gap: 2px; justify-self: center; }
.nav__link {
  position: relative;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.82;
  transition: opacity 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--e-out);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { opacity: 1; }
.nav__link .chev { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.3s; }
.nav__group:hover .chev { transform: rotate(180deg); }

.nav__tools { justify-self: end; display: flex; align-items: center; gap: 4px; }
.tool {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  transition: background 0.25s;
}
.tool:hover { background: rgba(255, 255, 255, 0.12); }
.nav.is-solid .tool:hover { background: var(--paper-3); }
.tool .icon { width: 19px; height: 19px; }
.tool__dot {
  position: absolute;
  top: 7px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}
.tool--burger { display: none; }

/* mega panel */
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -8px, 0);
  transition: opacity 0.35s var(--e-out), transform 0.35s var(--e-out), visibility 0.35s;
}
.nav__group:hover .mega, .nav__group:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mega__inner {
  width: min(var(--shell), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 56px;
  padding: 44px 0 52px;
}
.mega__promo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--paper-3);
}
.mega__promo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--e-out); }
.mega__promo:hover img { transform: scale(1.05); }
.mega__promo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(6, 18, 35, 0.82));
}
.mega__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px 32px; align-content: start; }
.mega__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s, padding 0.35s var(--e-out);
}
.mega__item span { font-size: 12px; color: var(--ink-40); }
.mega__item:hover { color: var(--blue); padding-left: 6px; }

/* mobile fullscreen nav */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--e-io);
  overflow-y: auto;
}
.mnav.is-open { clip-path: inset(0 0 0 0); }
.mnav__head {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  flex: none;
  border-bottom: 1px solid var(--line-dark-soft);
}
.mnav .logo--lockup img {
  height: 32px;
  width: auto;
  display: block;
}
.mnav__body {
  padding: 8px var(--gutter) 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mnav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark-soft);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 500;
  opacity: 0;
  transform: translateY(18px);
}
.mnav.is-open .mnav__link {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--e-out) calc(var(--i) * 60ms + 180ms), transform 0.6s var(--e-out) calc(var(--i) * 60ms + 180ms);
}
.mnav__link .icon {
  width: 14px;
  height: 14px;
  opacity: 0.35;
  flex: none;
}
.mnav__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.mnav__cat {
  padding: 9px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.mnav__foot {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}
.mnav__foot a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ------------------------------------------------------------- buttons */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 14.5px;
  font-weight: 550;
  letter-spacing: -0.01em;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--e-out), background 0.4s var(--e-out), border-color 0.4s;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--blue);
  transform: translate3d(0, 101%, 0);
  transition: transform 0.5s var(--e-out);
}
.btn:hover::before { transform: translate3d(0, 0, 0); }
.btn:hover { color: #fff; }
.btn .icon { width: 17px; height: 17px; }
.btn--blue { --btn-bg: var(--blue); }
.btn--blue::before { background: var(--navy); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost::before { background: var(--ink); }
.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1px solid var(--line-dark);
}
.btn--ghost-light::before { background: #fff; }
.btn--ghost-light:hover { color: var(--ink); }
.btn--wa { --btn-bg: #F1FAF5; --btn-fg: #0B6B52; border: 1px solid #C4E9D8; }
.btn--wa::before { background: #128C7E; }
.btn--sale { --btn-bg: var(--sale); --btn-fg: #fff; }
.btn--sale::before { background: #9B1C1C; }
.btn--sm { height: 44px; padding: 0 20px; font-size: 13.5px; }
.btn--lg { height: 60px; padding: 0 32px; font-size: 15.5px; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-busy { opacity: 0.55; pointer-events: none; }

.linkline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 550;
  padding-bottom: 3px;
  position: relative;
}
.linkline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.45s var(--e-out);
}
.linkline:hover::after { transform: scaleX(0); }
.linkline .icon { width: 15px; height: 15px; transition: transform 0.45s var(--e-out); }
.linkline:hover .icon { transform: translateX(4px); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 26px;
  padding: 0 11px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--paper-3);
  color: var(--ink-70);
}
.chip--sale { background: var(--sale-soft); color: var(--sale); }
.chip--new { background: var(--blue-soft); color: var(--blue-deep); }
.chip--ok { background: var(--ok-soft); color: var(--ok); }
.chip--ok::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.chip--light { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.8); }
.chip--outline { background: transparent; border: 1px solid var(--line); color: var(--ink-55); }

.stars { display: inline-flex; gap: 2px; }
.stars .icon { width: 12px; height: 12px; fill: currentColor; stroke: none; color: var(--line); }
.stars .is-on .icon { color: #F4B740; }

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-poster);
  background-size: cover;
  background-position: center;
}
.hero__reel { position: absolute; inset: 0; }
.hero__reel--phone { display: none; }
.hero__bg video, .hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  background: transparent;
  transform: scale(1.04) translateZ(0);
  backface-visibility: hidden;
  contain: layout style paint;
  transition: opacity 0.55s var(--e-out);
}
.hero__bg video.is-live, .hero__bg img.is-live { opacity: 1; }
@media (min-width: 1025px) {
  .hero__bg { background-image: var(--hero-poster-desk, var(--hero-poster)); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 72% 58% at 50% 48%, rgba(6, 18, 35, 0.62) 0%, rgba(6, 18, 35, 0.38) 46%, rgba(6, 18, 35, 0.22) 72%, rgba(6, 18, 35, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 18, 35, 0.42) 0%, transparent 28%, transparent 72%, rgba(6, 18, 35, 0.5) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__content {
  position: relative;
  z-index: 3;
  width: min(820px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 12px) 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 600;
  padding-bottom: 0.06em;
}
.hero__title .serif { letter-spacing: -0.03em; }
.hero__sub {
  max-width: 42ch;
  margin: 22px auto 0;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.hero__cta .btn::before { display: none; }
.hero__cta .btn {
  overflow: visible;
  transition: background 0.35s var(--e-out), border-color 0.35s var(--e-out), color 0.35s var(--e-out), transform 0.35s var(--e-out);
}
.hero__cta .btn .icon { transition: transform 0.35s var(--e-out); }
.hero__cta .btn--light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transform: translateY(-1px);
}
.hero__cta .btn--light:hover .icon { transform: translateX(3px); }
.hero__cta .btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: translateY(-1px);
}
.hero__scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
}
.hero__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}
.hero__dot {
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
  position: relative;
  overflow: hidden;
}
.hero__dot i {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.hero__dot.is-on i { animation: dotFill 7s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue i {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: cue 2.2s var(--e-io) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* ------------------------------------------------------------- marquee */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  padding: 18px 0;
  background: var(--paper);
}
.marquee--dark { background: var(--navy); border-color: var(--line-dark-soft); }
.marquee__track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-55);
  white-space: nowrap;
}
.marquee--dark .marquee__item { color: rgba(255, 255, 255, 0.55); }
.marquee__item .icon { width: 15px; height: 15px; color: var(--blue); }
@keyframes slide { to { transform: translate3d(-50%, 0, 0); } }

/* -------------------------------------------------- category index */

.index { position: relative; }
.index__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(32px, 6vw, 88px); }
.index__rows { border-top: 1px solid var(--line); }
.index__row {
  position: relative;
  display: grid;
  grid-template-columns: 46px 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.55s var(--e-out), border-color 0.4s;
}
.index__row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--e-out);
}
.index__row:hover { padding-left: 14px; }
.index__row:hover::after { transform: scaleX(1); }
.index__num {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-40);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.index__name {
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: -0.04em;
  font-weight: 550;
  line-height: 1.1;
}
.index__desc { font-size: 13px; color: var(--ink-40); margin-top: 4px; }
.index__thumb {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}
.index__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.index__go {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.4s var(--e-out), color 0.4s, border-color 0.4s, transform 0.5s var(--e-out);
}
.index__row:hover .index__go {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: rotate(-45deg);
}
.index__go .icon { width: 15px; height: 15px; }
.index__stage {
  position: sticky;
  top: 96px;
  height: clamp(420px, 62vh, 620px);
  overflow: hidden;
  border-radius: var(--r-sm);
  background: #fff;
}
.index__shot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.85s var(--e-out), transform 1.4s var(--e-out);
  pointer-events: none;
}
.index__shot.is-on { opacity: 1; transform: scale(1); }
.index__shot img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.index__shot figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 26px;
  color: #fff;
  background: linear-gradient(transparent, rgba(6, 18, 35, 0.8));
  font-size: 13px;
  letter-spacing: 0.03em;
}
.index__thumbs { display: none; }

/* ---------------------------------------------------------- product rail */

.rail-wrap { position: relative; }
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(266px, 1fr);
  gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail > * { scroll-snap-align: start; }
.rail-nav { display: flex; gap: 8px; }
.rail-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.35s, color 0.35s, border-color 0.35s, opacity 0.3s;
}
.rail-nav button:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.rail-nav button[disabled] { opacity: 0.3; pointer-events: none; }
.rail-nav .flip { transform: rotate(180deg); }
.rail-progress { height: 1px; background: var(--line); margin-top: 28px; position: relative; overflow: hidden; }
.rail-progress i { position: absolute; inset: 0; background: var(--ink); transform-origin: left; transform: scaleX(0.2); transition: transform 0.2s linear; }

/* --------------------------------------------------------- product card */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  padding: 22px 22px 20px;
  transition: background 0.5s var(--e-out);
}
.card:hover { background: var(--paper-2); }
.card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-2);
  margin-bottom: 20px;
}
.card__media a { position: absolute; inset: 0; }
.card:hover .card__media { background: transparent; }
.card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 1.1s var(--e-out), opacity 0.6s var(--e-out);
}
.card__media img + img { opacity: 0; }
.card:hover .card__media img { transform: scale(1.05); }
.card:hover .card__media img + img { opacity: 1; }
.card__flag { position: absolute; top: 0; left: 0; z-index: 2; }
.card__fav {
  position: absolute;
  top: 14px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink-40);
  opacity: 0;
  overflow: visible;
  transform: translateY(-6px);
  transition: opacity 0.4s var(--e-out), transform 0.4s var(--e-out), color 0.45s ease;
}
.card:hover .card__fav, .card__fav.is-on { opacity: 1; transform: none; }
.card__fav:hover { color: var(--ink); }
.card__fav.is-on,
.card__fav.is-on:hover { color: var(--sale); }
.card__fav .icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
  transform-origin: 50% 58%;
  fill: transparent;
  transition:
    fill 0.55s var(--e-out),
    stroke 0.55s var(--e-out),
    transform 0.5s var(--e-out);
}
.card__fav:hover .icon { transform: scale(1.06); }
.card__fav.is-on .icon { fill: currentColor; stroke: currentColor; }
.card__fav.is-pop .icon {
  animation: fav-soft 0.72s var(--e-out) both;
}
.card__fav.is-unpop .icon {
  animation: fav-soft-out 0.48s var(--e-out) both;
}
.card__fav.is-pop::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 58, 58, 0.2) 0%, transparent 70%);
  animation: fav-glow 0.8s var(--e-out) both;
  pointer-events: none;
}
@keyframes fav-soft {
  0% { transform: scale(1); }
  30% { transform: scale(0.86); }
  64% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
@keyframes fav-soft-out {
  0% { transform: scale(1); }
  45% { transform: scale(0.92); }
  100% { transform: scale(1); }
}
@keyframes fav-glow {
  0% { transform: scale(0.55); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .card__fav .icon { transition: fill 0.2s ease, stroke 0.2s ease; }
  .card__fav:hover .icon { transform: none; }
  .card__fav.is-pop .icon,
  .card__fav.is-unpop .icon,
  .card__fav.is-pop::after { animation: none; }
}
.card__quick {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 46px;
  background: rgba(6, 18, 35, 0.92);
  color: #fff;
  font-size: 12.5px;
  font-weight: 550;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.5s var(--e-out);
}
.card:hover .card__quick { transform: none; }
.card__quick .icon { width: 15px; height: 15px; }
.card__cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.card__name {
  font-size: 16px;
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.28;
  margin: 9px 0 10px;
}
.card__name a { background-image: linear-gradient(currentColor, currentColor); background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size 0.5s var(--e-out); }
.card:hover .card__name a { background-size: 100% 1px; }
.card__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price { font-size: 16px; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.price s { color: var(--ink-40); font-weight: 400; font-size: 0.82em; margin-left: 7px; }
.card__add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 550;
  color: var(--ink-55);
  transition: color 0.3s;
}
.card__add:hover { color: var(--blue); }
.card__add[disabled] {
  color: var(--ink-40);
  cursor: default;
  opacity: 0.7;
}
.card__add[disabled]:hover { color: var(--ink-40); }
.card.is-out .card__media { opacity: 0.72; }
.card__add .icon { width: 15px; height: 15px; }

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

/* ---------------------------------------------------------------- packs */

.packs-stage {
  position: relative;
  overflow: hidden;
}
.packs-stage__bg,
.packs-stage__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.packs-stage__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  background: transparent;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout style paint;
  transition: opacity 0.55s var(--e-out);
}
.packs-stage__bg video.is-on { opacity: 0.7; }
.packs-stage__scrim {
  background: linear-gradient(180deg, rgba(6, 18, 35, 0.48) 0%, rgba(6, 18, 35, 0.62) 100%);
}
.packs-stage .shell { position: relative; z-index: 1; }
.packs-stage .packs__grid {
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.packs-stage .packs__card {
  background: rgba(12, 30, 56, 0.52);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.packs__grid,
.packs__page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark-soft);
  margin-top: 8px;
}
.packs__page { background: var(--line); }
.packs__card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: clamp(28px, 3.2vw, 44px);
  background: var(--navy-2);
}
.packs__card--light { background: var(--paper); }
.packs__top { display: grid; gap: 12px; }
.packs__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}
.packs__card--light .packs__num { color: var(--ink-40); }
.packs__name {
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.045em;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}
.packs__sub {
  margin: 0;
  font-size: 14px;
  color: var(--ink-55);
  line-height: 1.4;
}
.packs__card:not(.packs__card--light) .packs__sub { color: rgba(255,255,255,.55); }
.packs__out {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sale);
}
.packs__card.is-out .packs__list,
.packs__card.is-out .packs__colors {
  opacity: 0.55;
  pointer-events: none;
}
.packs__card.is-out .btn[disabled] { opacity: 0.7; }
.packs__list {
  list-style: none;
  margin: 28px 0 auto;
  padding: 0;
  border-top: 1px solid var(--line-dark-soft);
}
.packs__card--light .packs__list { border-top-color: var(--line); }
.packs__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark-soft);
  transition: padding-left 0.55s var(--e-out);
}
.packs__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--e-out);
}
.packs__card--light .packs__item::after { background: var(--ink); }
.packs__item:hover { padding-left: 12px; }
.packs__item:hover::after { transform: scaleX(1); }
.packs__card--light .packs__item { border-bottom-color: var(--line-soft); }
.packs__item img,
.packs__item-ph {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  transition: transform 0.7s var(--e-out);
}
.packs__item:hover img { transform: scale(1.07); }
.packs__item-ph { display: block; border: 1px dashed var(--line-dark-soft); background: transparent; }
.packs__card--light .packs__item-ph { border-color: var(--line); background: var(--paper-2); }
.packs__item b {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform 0.55s var(--e-out);
}
.packs__item:hover b { transform: translateX(3px); }
.packs__extras {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark-soft);
}
.packs__card--light .packs__extras { border-top-color: var(--line); }
.packs__extras-lab {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
  margin: 0 0 4px;
}
.packs__card--light .packs__extras-lab { color: var(--ink-40); }
.packs__extra {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.packs__extra img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  background: var(--paper-2);
}
.packs__extra b {
  display: block;
  font-size: 13.5px;
  font-weight: 550;
}
.packs__extra small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.price-beat {
  display: inline-block;
  transform-origin: left center;
  animation: fd-heart 1.7s ease-in-out infinite;
  will-change: transform, opacity;
}
.packs__extra .price-beat {
  color: rgba(255, 255, 255, 0.92);
}
.price-beat s {
  animation: none;
}
@keyframes fd-heart {
  0%, 32%, 100% {
    opacity: 0.62;
    transform: scale(1);
  }
  8% {
    opacity: 1;
    transform: scale(1.045);
  }
  16% {
    opacity: 0.74;
    transform: scale(1.008);
  }
  24% {
    opacity: 1;
    transform: scale(1.055);
  }
}
@media (prefers-reduced-motion: reduce) {
  .price-beat {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.packs__extra small s,
.cart-extra small s {
  margin-left: 6px;
  opacity: 0.7;
  font-weight: 400;
}
.packs__card--light .packs__extra small { color: var(--ink-40); }
.packs__card--light .packs__extra .price-beat,
.cart-extra .price-beat {
  color: var(--ink-70);
}
.packs__extra-qty { height: 34px; }
.cart-extras {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.recap-extras {
  margin: 16px 0 4px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
}
.cart-extra,
.mini-extras .cart-extra {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}
.cart-extra:first-of-type { border-top: 0; }
.cart-extra__media {
  width: 48px;
  height: 48px;
  background: var(--paper-2);
  overflow: hidden;
}
.cart-extra__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-extra b { display: block; font-size: 14px; font-weight: 550; }
.cart-extra small { color: var(--ink-40); font-size: 12px; }
.cart-extra.is-out { opacity: 0.72; }
.cart-extra.is-out small { color: var(--sale); font-weight: 600; }
.cart-extra.is-out .qty button[disabled] { opacity: 0.35; cursor: not-allowed; }
.mini-extras {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.mini-extras > p {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  font-weight: 600;
  margin: 0 0 8px;
}
.pack-qty {
  width: 52px;
  height: 32px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 0 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}
.packs__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark-soft);
}
.packs__card--light .packs__foot { border-top-color: var(--line); }
.packs__price { display: flex; align-items: baseline; gap: 10px; }
.packs__price b { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.045em; font-weight: 600; }
.packs__price s { color: rgba(255, 255, 255, 0.38); font-size: 15px; }
.packs__price--dark s { color: var(--ink-40); }
.packs__colors {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark-soft);
}
.packs__card--light .packs__colors { border-top-color: var(--line); }
.packs__color-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.packs__color-head b {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
}
.packs__color-head span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
}
.packs__card--light .packs__color-head b { color: var(--ink-40); }
.packs__card--light .packs__color-head span { color: var(--ink-70); }
.packs__swatches { margin-bottom: 0; flex-wrap: wrap; }
.packs__swatches .swatch--pic { width: 36px; height: 50px; }
.packs__card:not(.packs__card--light) .swatch.is-on::after { border-color: #fff; }
.packs__card.is-need-color .packs__colors {
  outline: 1px solid rgba(255, 80, 80, 0.55);
  outline-offset: 8px;
  border-radius: 8px;
}
.packs__card--light.is-need-color .packs__colors {
  outline-color: rgba(200, 40, 40, 0.45);
}
.sec-head--light .h2 { color: #fff; }
.linkline--light { color: rgba(255, 255, 255, 0.7); }
.linkline--light:hover { color: #fff; }

.pack-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1.1fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.5s var(--e-out);
}
.pack-row:hover { background: var(--paper-2); }
.pack-row__media { aspect-ratio: 1; overflow: hidden; background: var(--paper-3); }
.pack-row__media img { width: 100%; height: 100%; object-fit: contain; background: #fff; transition: transform 1s var(--e-out); }
.pack-row:hover .pack-row__media img { transform: scale(1.07); }
.pack-row__inc { font-size: 13.5px; color: var(--ink-55); line-height: 1.7; }

/* ------------------------------------------------------------ why */

.why {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.why__title {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin-top: 22px;
  max-width: 14ch;
}
.why__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.why__lead {
  margin-top: 22px;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-55);
}
.why__reel {
  margin-top: 36px;
  height: 252px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: whyRoll 28s linear infinite;
}
.why__reel:hover .why__list { animation-play-state: paused; }
.why__list li {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  height: 84px;
  padding: 16px 0;
  box-sizing: border-box;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.55s var(--e-out);
}
.why__list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--e-out);
}
.why__list li:hover { padding-left: 14px; }
.why__list li:hover::after { transform: scaleX(1); }
.why__num {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue);
  transition: transform 0.55s var(--e-out);
}
.why__list li:hover .why__num { transform: translateX(-4px); }
.why__list b {
  font-size: 16px;
  font-weight: 550;
  letter-spacing: -0.03em;
  transition: color 0.35s var(--e-out);
}
.why__list li:hover b { color: var(--blue); }
.why__list span:not(.why__num) {
  font-size: 13.5px;
  color: var(--ink-55);
  line-height: 1.4;
  margin-top: 3px;
}
@keyframes whyRoll {
  to { transform: translate3d(0, -50%, 0); }
}
.why__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-3);
}
.why__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

/* ------------------------------------------------------------- campaign */

.campaign {
  position: relative;
  min-height: clamp(440px, 62vh, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.campaign__bg { position: absolute; inset: 0; }
.campaign__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  background: transparent;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout style paint;
  transition: opacity 0.7s var(--e-out);
}
.campaign__bg video.is-on { opacity: 0.55; }
.campaign__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 50%, rgba(6, 18, 35, 0.42) 0%, rgba(6, 18, 35, 0.82) 100%);
}
.campaign__inner {
  position: relative;
  width: min(var(--shell), 100% - (var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.campaign__title {
  font-size: clamp(34px, 5.4vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 600;
  max-width: 16ch;
}
.campaign__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --------------------------------------------------------- next gen */

.nextgen { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: end; }
.nextgen__title { grid-column: 1 / span 8; }
.nextgen__note { grid-column: 9 / span 4; }
.nextgen__grid {
  grid-column: 1 / -1;
  margin-top: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  perspective: 1400px;
}
.nextgen__cell {
  --mx: 50%;
  --my: 40%;
  position: relative;
  isolation: isolate;
  background: #fff;
  padding: clamp(28px, 3.2vw, 44px) clamp(22px, 2.2vw, 34px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid var(--line-soft);
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.85s var(--e-out), box-shadow 0.85s var(--e-out), border-color 0.5s;
}
.nextgen__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(22, 104, 255, 0.1), transparent 46%);
  opacity: 0;
  transition: opacity 0.6s var(--e-out);
}
.nextgen__cell.is-live {
  z-index: 2;
  border-color: rgba(6, 18, 35, 0.12);
  box-shadow:
    0 2px 6px rgba(6, 18, 35, 0.04),
    0 18px 40px rgba(6, 18, 35, 0.1);
  transition: box-shadow 0.45s var(--e-out), border-color 0.45s;
}
.nextgen__cell.is-live::after { opacity: 1; }
.nextgen__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateZ(18px);
}
.nextgen__n {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink-40);
  font-variant-numeric: tabular-nums;
}
.nextgen__ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
}
.nextgen__ico .icon { width: 18px; height: 18px; }
.nextgen__body { transform: translateZ(10px); }
.nextgen__cell h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  font-weight: 550;
  color: var(--ink);
}
.nextgen__cell p {
  font-size: 13.5px;
  color: var(--ink-55);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 28ch;
}

/* -------------------------------------------------------------- voices */

.voices {
  margin-top: clamp(36px, 4vw, 56px);
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.voices__track {
  display: flex;
  width: max-content;
  animation: voicesRoll 48s linear infinite;
}
.voices:hover .voices__track { animation-play-state: paused; }
.voices__card {
  position: relative;
  margin: 0;
  width: min(360px, 78vw);
  flex: none;
  padding: 32px 36px;
  border-right: 1px solid var(--line-soft);
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: transform 0.55s var(--e-out), background 0.45s var(--e-out);
}
.voices__card::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--e-out);
}
.voices__card:hover {
  transform: translateY(-8px);
  background: var(--paper-2);
  z-index: 2;
}
.voices__card:hover::after { transform: scaleX(1); }
.voices__card .icon {
  transition: transform 0.55s var(--e-out);
}
.voices__card:hover .icon { transform: translateY(-3px); }
.voices__card blockquote {
  transition: transform 0.55s var(--e-out);
}
.voices__card:hover blockquote { transform: translateY(-2px); }
.voices__card .icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  margin-bottom: 18px;
}
.voices__card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.voices__card figcaption { margin-top: auto; padding-top: 24px; }
.voices__card b {
  display: block;
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.02em;
}
.voices__card span { display: block; margin-top: 4px; font-size: 12.5px; color: var(--ink-40); }
@keyframes voicesRoll {
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------------------------------------------------------- ambassador */

.apply-cta {
  border-top: 1px solid var(--line);
}
.apply-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.apply {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.apply__points {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.apply__points li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.apply__points b {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--blue);
}
.apply__points span { font-size: 15px; color: var(--ink-70); letter-spacing: -0.02em; }
.apply__form {
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(28px, 3.6vw, 48px);
}
.apply__form-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 28px;
}
.apply__form .btn { margin-top: 8px; }
.apply__done { min-height: 320px; display: flex; flex-direction: column; justify-content: center; }

/* --------------------------------------------------------------- trust */

.trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.trust__cell {
  padding: 30px 24px 30px 0;
  border-right: 1px solid var(--line);
  padding-left: 24px;
}
.trust__cell:first-child { padding-left: 0; }
.trust__cell:last-child { border-right: 0; }
.trust__cell .icon { width: 20px; height: 20px; color: var(--blue); }
.trust__cell b { display: block; font-size: 14.5px; font-weight: 550; letter-spacing: -0.02em; margin: 18px 0 4px; }
.trust__cell span { font-size: 12.5px; color: var(--ink-55); }

/* -------------------------------------------------------------- footer */

.footer { background: var(--navy); color: rgba(255, 255, 255, 0.62); overflow: hidden; }
.footer__mark {
  display: inline-block;
  margin-bottom: 28px;
  padding: 0;
}
.footer__mark img {
  width: min(220px, 100%);
  height: auto;
  opacity: 0.95;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: clamp(56px, 6vw, 88px) 0 clamp(40px, 5vw, 72px);
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer a { display: inline-block; font-size: 14px; padding: 5px 0; color: rgba(255, 255, 255, 0.68); transition: color 0.3s, transform 0.4s var(--e-out); }
.footer a:hover { color: #fff; }
.footer__col a:hover { transform: translateX(4px); }
.footer__col { display: flex; flex-direction: column; align-items: flex-start; }
.footer p { font-size: 14px; line-height: 1.6; max-width: 34ch; }
.news { display: flex; align-items: center; gap: 0; margin-top: 18px; border-bottom: 1px solid var(--line-dark); }
.news input {
  flex: 1;
  height: 48px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 14px;
}
.news input::placeholder { color: rgba(255, 255, 255, 0.35); }
.news input:focus { outline: none; }
.news button { width: 44px; height: 48px; display: grid; place-items: center; color: #fff; transition: transform 0.4s var(--e-out); }
.news button:hover { transform: translateX(4px); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line-dark-soft);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.footer__base nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.socials { display: flex; gap: 14px; margin-top: 24px; }
.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.35s var(--e-out), transform 0.45s var(--e-out);
}
.socials a img { width: 26px; height: 26px; object-fit: contain; }
.socials a:hover { opacity: 1; transform: translateY(-2px); }

.footer__contact {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.footer__contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
.footer__contact img { width: 18px; height: 18px; object-fit: contain; }
.footer__contact a {
  padding: 0;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
}
.footer__contact a:hover { color: #fff; }
.footer__place { margin-top: 20px; color: rgba(255, 255, 255, 0.4); }

/* ------------------------------------------------------------ pagehead */

.pagehead {
  padding: calc(var(--nav-h) + clamp(48px, 7vw, 96px)) 0 clamp(30px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}
.pagehead--dark { background: var(--navy); color: #fff; border-color: var(--line-dark-soft); }
.pagehead--film {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  min-height: min(72vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(48px, 7vw, 88px);
}
.pagehead--film .packs-stage__bg,
.pagehead--film .packs-stage__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pagehead--film .shell { position: relative; z-index: 1; }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--ink-40); margin-bottom: 26px; }
.crumbs a:hover { color: var(--ink); }
.pagehead--dark .crumbs { color: rgba(255, 255, 255, 0.45); }
.pagehead--dark .crumbs a:hover { color: #fff; }
.pagehead__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: end; }

.hero--about {
  text-align: left;
  align-items: stretch;
  justify-content: flex-end;
}
.hero--about .hero__content {
  align-items: flex-start;
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 28px) 0 clamp(72px, 10vw, 120px);
}
.hero--about .hero__title { max-width: 14ch; }
.hero--about .hero__sub { margin-left: 0; max-width: 44ch; }
.hero--about .hero__cta { justify-content: flex-start; }
.hero--about .crumbs { color: rgba(255, 255, 255, 0.45); margin-bottom: 22px; }
.hero--about .crumbs a:hover { color: #fff; }
.hero--about .scroll-cue { left: var(--gutter); right: auto; transform: none; }

.about-film {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas: "copy media";
  min-height: min(92vh, 860px);
  background: var(--navy);
  color: #fff;
}
.about-film__copy { grid-area: copy; }
.about-film__media { grid-area: media; }
.about-film__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #0a1628;
}
.about-film__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  border: 0;
  box-shadow: none;
}
.about-film__media::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(42%, 220px);
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.about-film__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 88px) clamp(28px, 5vw, 72px);
}
.about-film__copy .h2 { margin-top: 18px; max-width: 22ch; }
.about-film__text { display: grid; gap: 16px; margin: 28px 0 32px; max-width: 52ch; color: rgba(255, 255, 255, 0.68); }
.about-film__copy .linkline { color: #fff; }

.about-film--left {
  grid-template-areas: "media copy";
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}
.about-film--left .about-film__media img { object-position: 50% 22%; }
.about-film--left .about-film__media::after {
  inset: 0 0 0 auto;
  background: linear-gradient(-90deg, var(--navy) 0%, transparent 100%);
}

.about-vow {
  background: #fff;
  color: var(--ink);
  padding: clamp(48px, 8vw, 110px) 0;
  border-top: 1px solid var(--line-soft);
}
.about-vow .h2 { margin-top: 16px; max-width: 16ch; }
.about-vow__head { margin-bottom: clamp(32px, 5vw, 56px); }
.about-vow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  perspective: 1400px;
}
.about-vow__item {
  background: transparent;
  min-height: 0;
  padding: 0;
  transform-style: preserve-3d;
}
.about-vow__item:hover { background: transparent; }
.about-vow__face {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  transform-style: preserve-3d;
  transition:
    transform 0.55s var(--e-out),
    box-shadow 0.55s var(--e-out),
    border-color 0.55s var(--e-out);
}
.about-vow__face::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.7s var(--e-out);
  z-index: 2;
}
.about-vow__face::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  transform: translateX(-140%);
  pointer-events: none;
  z-index: 2;
}
.about-vow__item.is-in .about-vow__face::after {
  animation: vowSheen 1.35s var(--e-out) 0.28s both;
}
.about-vow__item.is-in .about-vow__face::before { transform: scaleX(0.28); }
.about-vow__item:hover .about-vow__face,
.about-vow__item.is-hot .about-vow__face {
  border-color: rgba(22, 104, 255, 0.38);
  box-shadow:
    0 28px 60px rgba(6, 18, 35, 0.12),
    0 8px 18px rgba(22, 104, 255, 0.08),
    0 0 0 1px rgba(22, 104, 255, 0.06);
}
.about-vow__item:hover .about-vow__face::before,
.about-vow__item.is-hot .about-vow__face::before { transform: scaleX(1); }
.about-vow__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 20%), rgba(22, 104, 255, 0.18), transparent 58%);
  transition: opacity 0.45s var(--e-out);
  z-index: 0;
}
.about-vow__item:hover .about-vow__glow,
.about-vow__item.is-hot .about-vow__glow { opacity: 1; }
.about-vow__item em,
.about-vow__item b,
.about-vow__item p { position: relative; z-index: 1; }
.about-vow__item em {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  color: var(--blue);
  letter-spacing: -0.04em;
  display: inline-block;
  transform: translate3d(0, 18px, 0);
  opacity: 0.2;
  transition: transform 0.9s var(--e-out), opacity 0.9s var(--e-out), color 0.45s var(--e-out);
}
.about-vow__item.is-in em {
  transform: none;
  opacity: 1;
  transition-delay: calc(var(--i, 0) * 70ms + 80ms);
}
.about-vow__item:hover em,
.about-vow__item.is-hot em {
  color: var(--blue-deep);
  transform: translate3d(0, -4px, 12px);
}
.about-vow__item b {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 550;
  letter-spacing: -0.035em;
  margin-top: auto;
  transition: transform 0.5s var(--e-out);
}
.about-vow__item:hover b,
.about-vow__item.is-hot b { transform: translate3d(0, -2px, 8px); }
.about-vow__item p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-55);
  max-width: 28ch;
}
@keyframes vowSheen {
  to { transform: translateX(140%); }
}
@media (hover: hover) and (pointer: fine) {
  .about-vow__item:hover .about-vow__face {
    transform: translateY(-12px);
  }
}

.about-path-wrap { padding-top: clamp(56px, 8vw, 110px); padding-bottom: clamp(56px, 8vw, 110px); }
.about-path {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
.about-path__sticky {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
  display: grid;
  gap: 22px;
  justify-items: start;
  padding-bottom: 24px;
}
.about-path__sticky .h2 { max-width: 12ch; }
.about-path__sticky .lead { max-width: 36ch; }
.about-path__rail {
  position: relative;
  padding-left: 36px;
}
.about-path__rail::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--line);
}
.about-path__step {
  position: relative;
  min-height: 52vh;
  padding: 28px 0 64px;
  opacity: 0.28;
  transform: translateY(18px);
  transition: opacity 0.7s var(--e-out), transform 0.7s var(--e-out);
}
.about-path__step.is-on {
  opacity: 1;
  transform: none;
}
.about-path__step::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 38px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 0 0 6px #fff;
  transition: background 0.45s var(--e-out), box-shadow 0.45s var(--e-out);
}
.about-path__step.is-on::before {
  background: var(--blue);
  box-shadow: 0 0 0 6px var(--blue-soft);
}
.about-path__step em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--blue);
}
.about-path__step b {
  display: block;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 12px 0 16px;
  max-width: 16ch;
}
.about-path__step p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 42ch;
}

.about-reach {
  padding: clamp(56px, 8vw, 120px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
}
.about-reach__head { max-width: 38ch; margin-bottom: clamp(32px, 4vw, 52px); }
.about-reach__head .h2 { margin-top: 16px; }
.about-reach__head .lead { margin-top: 18px; }
.about-reach__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.about-reach__card {
  background: #fff;
  min-height: 280px;
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.45s var(--e-out), transform 0.45s var(--e-out);
}
.about-reach__card:hover { background: var(--blue-mist); }
.about-reach__ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.about-reach__ico .icon { width: 20px; height: 20px; color: var(--blue); }
.about-reach__card b {
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-top: auto;
}
.about-reach__card p { font-size: 14.5px; color: var(--ink-55); }
.about-reach__ship {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.about-reach__ship h3 {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 14px 0 14px;
  max-width: 16ch;
}
.about-reach__ship p { color: var(--ink-70); max-width: 42ch; font-size: 15.5px; line-height: 1.6; }
.about-reach__ship ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-reach__ship li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13.5px;
  letter-spacing: -0.01em;
}
.about-faces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.about-face {
  display: grid;
  gap: 12px;
  padding: 0 0 8px;
}
.about-face figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-3);
}
.about-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--e-out);
}
.about-face:hover img { transform: scale(1.04); }
.about-face h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 550;
  letter-spacing: -0.035em;
}
.about-face p:last-child {
  font-size: 15px;
  color: var(--ink-55);
  max-width: 36ch;
}

/* ------------------------------------------------------------- catalog */

.catalog { display: grid; grid-template-columns: 236px minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); padding: clamp(30px, 4vw, 56px) 0 clamp(64px, 8vw, 120px); }
.facets { position: sticky; top: 96px; align-self: start; }
.facet { border-top: 1px solid var(--line); padding: 20px 0; }
.facet:first-child { border-top: 0; padding-top: 0; }
.facet h3 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 14px; font-weight: 600; }
.facet label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink-70);
  transition: color 0.25s;
}
.facet label:hover { color: var(--ink); }
.facet input[type="radio"], .facet input[type="checkbox"] { accent-color: var(--blue); width: 15px; height: 15px; }
.facet__price { display: flex; gap: 10px; }
.input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-size: 14.5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.input:focus { outline: none; border-color: var(--ink); box-shadow: none; }
textarea.input { height: auto; min-height: 104px; padding: 13px 14px; resize: vertical; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23061223' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1px;
}
.toolbar__count { font-size: 13px; color: var(--ink-55); font-variant-numeric: tabular-nums; }
.toolbar__tools { display: flex; align-items: center; gap: 14px; }
.sortsel { position: relative; display: inline-flex; align-items: center; font-size: 13.5px; }
.sortsel__ui { display: none; }
html.js .sortsel__ui { display: block; }
html.js .sortsel__native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.sortsel__now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.sortsel__now span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.sortsel__now b { font-weight: 550; }
.sortsel__now .icon {
  width: 14px;
  height: 14px;
  opacity: 0.45;
  transition: transform 0.35s var(--e-out);
}
.sortsel.is-open .sortsel__now { border-color: var(--ink); }
.sortsel.is-open .sortsel__now .icon { transform: rotate(180deg); }
.sortsel__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: min(260px, calc(100vw - 32px));
  padding: 10px 8px 8px;
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: 0 18px 40px rgba(6, 18, 35, 0.12);
}
.sortsel__title {
  padding: 6px 10px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.sortsel__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 14.5px;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
}
.sortsel__opt:hover { background: var(--paper-2); }
.sortsel__opt.is-on {
  background: var(--blue-mist);
  font-weight: 600;
}
.sortsel__opt .icon { width: 16px; height: 16px; color: var(--blue); }
.facet-btn { display: none; }

/* ----------------------------------------------------------------- PDP */

.pdp { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(28px, 5vw, 80px); padding-top: calc(var(--nav-h) + 28px); }
.pdp-clip__film {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a1018;
}
.pdp__gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  width: 100%;
  background: transparent;
}
.pdp__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 440px;
  max-height: 360px;
  margin-inline: auto;
  background: #fff;
  overflow: hidden;
}
.pdp__stage img,
.pdp__stage iframe,
.pdp__stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  border: 0;
  display: block;
}
.pdp__stage img { background: #fff; }
.pdp__zoom {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 190%;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.pdp__stage:hover .pdp__zoom { opacity: 1; }
.pdp__thumbs-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
}
.pdp__nav {
  width: 28px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--ink-55);
  transition: color 0.25s;
}
.pdp__nav:hover { color: var(--ink); }
.pdp__nav .icon { width: 16px; height: 16px; }
.pdp__nav .icon.flip { transform: rotate(180deg); }
.pdp__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pdp__thumbs::-webkit-scrollbar { display: none; }
.pdp__thumb {
  position: relative;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  scroll-snap-align: start;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__thumb.is-on { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.pdp__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 18, 35, 0.35);
  color: #fff;
}
.pdp__play .icon { width: 18px; height: 18px; fill: currentColor; }
.pdp__panel { position: sticky; top: 96px; align-self: start; padding-bottom: 40px; }
.pdp__kick { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pdp__title { font-size: clamp(28px, 3.6vw, 50px); line-height: 1.02; letter-spacing: -0.045em; font-weight: 600; }
.pdp__rate { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 13px; color: var(--ink-55); }
.pdp__price { display: flex; align-items: baseline; gap: 14px; margin: 24px 0 6px; }
.pdp__price b { font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -0.045em; font-weight: 600; }
.pdp__price s { font-size: 17px; color: var(--ink-40); }
.pdp__excerpt { margin: 22px 0 30px; max-width: 48ch; color: var(--ink-70); font-size: 15.5px; line-height: 1.6; }
.optline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.optline b { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-40); font-weight: 600; }
.optline span { font-size: 13.5px; color: var(--ink-70); }
.swatches { display: flex; gap: 10px; margin-bottom: 28px; }
.swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.35s var(--e-out);
}
.swatch--pic {
  width: 40px;
  height: 56px;
  border-radius: 10px;
  background-color: #fff;
  background-size: 70% auto;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.1);
}
.swatch::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 0.3s;
}
.swatch--pic::after {
  inset: -4px;
  border-radius: 12px;
}
.swatch:hover { transform: scale(1.06); }
.swatch.is-on::after { border-color: var(--ink); }
.swatch[data-locked="1"] {
  opacity: 0.38;
  filter: grayscale(1);
}
.sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.size {
  min-width: 52px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 550;
  transition: border-color 0.3s, background 0.35s var(--e-out), color 0.3s;
}
.size:hover { border-color: var(--ink); }
.size.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.packopts { margin-bottom: 28px; }
.packopt {
  height: auto;
  min-height: 58px;
  flex: 1;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 12px 16px;
  text-align: left;
}
.packopt span { font-size: 13.5px; font-weight: 550; }
.packopt small {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.packopt.is-on small { color: #fff; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-pill); height: 54px; }
.qty button { width: 46px; height: 100%; display: grid; place-items: center; transition: color 0.25s; }
.qty button:hover { color: var(--blue); }
.qty input { width: 40px; height: 100%; border: 0; text-align: center; background: none; font-weight: 550; font-variant-numeric: tabular-nums; }
.qty input:focus { outline: none; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp__buy { display: flex; gap: 10px; margin-bottom: 12px; }
.pdp__buy .btn { flex: 1; }
.pdp__assure { margin-top: 34px; border-top: 1px solid var(--line); }
.assure {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.assure .icon { width: 19px; height: 19px; color: var(--ink-55); margin-top: 2px; }
.assure b { display: block; font-size: 14px; font-weight: 550; letter-spacing: -0.02em; }
.assure span { font-size: 13px; color: var(--ink-55); }

.acc__item { border-bottom: 1px solid var(--line); }
.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 550;
  letter-spacing: -0.025em;
}
.acc__head .icon { width: 18px; height: 18px; transition: transform 0.5s var(--e-out); flex: none; }
.acc__item.is-open .acc__head .icon { transform: rotate(45deg); }
.acc__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.55s var(--e-out); }
.acc__item.is-open .acc__body { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__pad { padding-bottom: 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.speclist li { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.speclist span { color: var(--ink-55); }
.checklist li { display: flex; gap: 12px; padding: 9px 0; font-size: 14.5px; color: var(--ink-70); }
.checklist .icon { width: 17px; height: 17px; color: var(--blue); flex: none; margin-top: 3px; }
.review { padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.review__top { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.review__top b { font-size: 14.5px; font-weight: 550; }
.review p { color: var(--ink-70); font-size: 14.5px; margin-top: 10px; max-width: 62ch; }

.buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.5s var(--e-out);
}
.buybar.is-up { transform: none; }
.buybar__info { min-width: 0; }
.buybar__info span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.buybar .btn { flex: 1; min-width: 0; }
.buybar b { font-size: 16px; letter-spacing: -0.03em; }

/* ---------------------------------------------------------- cart/check */

.cart { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.72fr); gap: clamp(28px, 5vw, 72px); padding: clamp(32px, 4vw, 56px) 0 clamp(64px, 8vw, 110px); }
.line-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.line-item__media { aspect-ratio: 1; background: var(--paper-2); overflow: hidden; }
.line-item__media img { width: 100%; height: 100%; object-fit: cover; }
.line-item--pack { grid-template-columns: minmax(0, 1fr) auto; }
.line-item--pack .line-item__inc { margin-top: 10px; }
.line-item h3 { font-size: 16px; font-weight: 550; letter-spacing: -0.025em; }
.line-item .meta { font-size: 12.5px; color: var(--ink-55); margin-top: 5px; }
.line-item__inc {
  list-style: none;
  margin: 10px 0 0;
  display: grid;
  gap: 7px;
}
.line-item__inc li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-55);
  line-height: 1.35;
}
.line-item__inc img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: #fff;
  flex: 0 0 28px;
}
.line-item .qty { height: 44px; margin-top: 16px; }
.line-item .qty button { width: 38px; }
.line-remove { font-size: 12.5px; color: var(--ink-40); margin-top: 14px; transition: color 0.25s; }
.line-remove:hover { color: var(--sale); }
.recap { position: sticky; top: 96px; align-self: start; border: 1px solid var(--line); padding: 28px; border-radius: var(--r-sm); }
.recap__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.recap__item:first-of-type { padding-top: 0; }
.recap__item-top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.recap__thumb {
  width: 48px;
  height: 48px;
  background: var(--paper-2);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.recap__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.recap__item-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.recap__item-copy b {
  font-size: 14.5px;
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.recap__item-copy small { font-size: 12.5px; color: var(--ink-40); }
.recap__sum {
  font-size: 14.5px;
  font-weight: 550;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.recap__item-top--pack { grid-template-columns: minmax(0, 1fr) auto; }
.recap__inc {
  list-style: none;
  margin: 12px 0 0;
  display: grid;
  gap: 7px;
}
.recap__inc li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-55);
  line-height: 1.3;
}
.recap__inc img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: #fff;
  flex: 0 0 22px;
}
.recap__meta {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--ink-55);
}
.recap__colors { margin-top: 10px; }
.recap__colors-name {
  display: block;
  font-size: 12.5px;
  color: var(--ink-55);
  margin-bottom: 8px;
}
.recap__swatches { margin: 0; gap: 8px; flex-wrap: wrap; }
.recap__swatches .swatch { width: 26px; height: 26px; }
.recap__swatches .swatch--pic { width: 30px; height: 42px; border-radius: 8px; }
.recap__swatches .swatch::after { inset: -4px; }
.recap__swatches .swatch--pic::after { inset: -3px; border-radius: 10px; }
.recap__swatches .swatch:disabled {
  opacity: 0.35;
  pointer-events: none;
  transform: none;
}
.recap__colors.is-busy { opacity: 0.55; pointer-events: none; }
.recap__wa {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 550;
  color: var(--ink);
}
.recap__wa img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: none;
}
.recap__wa:hover { color: var(--blue); }
.account-auth { max-width: 460px; }
.account-auth__tabs {
  display: flex;
  gap: 22px;
  margin-bottom: 22px;
}
.account-auth__tabs a {
  font-size: 14px;
  font-weight: 550;
  color: var(--ink-40);
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
}
.account-auth__tabs a.is-on {
  color: var(--ink);
  border-color: var(--ink);
}
.account-form .field { margin-bottom: 14px; }
.account-dash {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.account-orders { display: grid; gap: 10px; }
.account-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.account-order b { display: block; font-size: 15px; letter-spacing: -0.02em; }
.account-order span { display: block; margin-top: 4px; font-size: 12.5px; color: var(--ink-55); }
.account-order strong { font-size: 15px; letter-spacing: -0.03em; }
.account-order em { font-style: normal; font-size: 12.5px; color: var(--ink-55); }
.recap__row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; font-size: 14px; color: var(--ink-70); }
.recap__row b { color: var(--ink); font-weight: 550; font-variant-numeric: tabular-nums; }
.recap__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.recap__total b { font-size: 24px; letter-spacing: -0.04em; font-weight: 600; }
.ship-bar { height: 3px; background: var(--paper-3); margin: 14px 0 8px; overflow: hidden; border-radius: var(--r-pill); }
.ship-bar i { display: block; height: 100%; background: var(--blue); transform-origin: left; transition: width 0.8s var(--e-out); }

.checkout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(28px, 5vw, 76px); padding: clamp(32px, 4vw, 56px) 0 clamp(64px, 8vw, 110px); }
.fieldset { border: 0; margin: 0 0 40px; padding: 0; }
.fieldset__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.fieldset__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-40); font-weight: 600; margin-bottom: 8px; }
.city-pick .amb-list { margin-top: 0; }
.city-pick .amb-list.is-open .input { border-color: var(--navy); }
.city-pick .amb-list__opt {
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 14.5px;
}
.city-pick .amb-list__opt small {
  flex-shrink: 0;
  font-size: 12.5px;
  color: var(--ink-55);
  font-variant-numeric: tabular-nums;
}
.field .err { font-size: 12.5px; color: var(--sale); margin-top: 7px; display: none; }
.field.is-bad .input { border-color: var(--sale); }
.field.is-bad .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.payopt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color 0.35s, background 0.4s;
}
.payopt:hover { border-color: var(--ink-40); }
.payopt:has(input:checked) { border-color: var(--ink); background: var(--paper-2); }
.payopt input { accent-color: var(--blue); margin-top: 3px; }
.payopt b { display: block; font-size: 15px; font-weight: 550; }
.payopt span { font-size: 13px; color: var(--ink-55); }
.payopt.is-off { opacity: 0.5; cursor: not-allowed; }
.amb-pick { margin-top: 18px; }
.amb-pick[hidden] { display: none; }
.amb-pick__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
  font-weight: 600;
  margin: 0 0 10px;
}
.amb-list { position: relative; }
.amb-list__native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.amb-list__field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 14px;
  transition: border-color 0.3s;
}
.amb-list__field:focus-within { border-color: var(--navy); }
.amb-list__field .icon { width: 16px; height: 16px; color: var(--ink-40); flex: none; }
.amb-list__field .input {
  border: 0;
  padding-left: 0;
  background: transparent;
}
.amb-list.is-open .amb-list__field { border-color: var(--navy); }
.amb-list__mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.amb-list__copy { min-width: 0; }
.amb-list__copy b {
  display: block;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.amb-list__copy small {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--ink-55);
}
.amb-list__menu { display: none; }
html.js .amb-list.is-open .amb-list__menu {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  max-height: min(70vh, 420px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--navy);
  box-shadow: 0 18px 40px rgba(6, 18, 35, 0.12);
}
.amb-list__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.amb-list__head span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.amb-list__head b {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-55);
}
.amb-list__opt {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: background 0.25s;
}
.amb-list__opt[hidden] { display: none; }
.amb-list__opt:hover,
.amb-list__opt.is-on { background: var(--paper-2); }
.amb-list__empty {
  margin: 0;
  padding: 18px 16px;
  font-size: 13px;
  color: var(--ink-55);
}
.amb-list__empty[hidden] { display: none; }
.amb-pick.is-bad .amb-list__field { border-color: var(--sale); }
.amb-pick.is-bad .err { display: block; margin-top: 10px; }

.confirm { padding: calc(var(--nav-h) + 80px) 0 120px; text-align: center; }
.confirm__mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ok);
}
.confirm__mark .icon { width: 30px; height: 30px; }
.confirm__note {
  max-width: 38ch;
  margin: 32px auto 0;
  font-size: 16.5px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.confirm__note span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.confirm__ref {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

/* -------------------------------------------------------------- track */

.track { max-width: 920px; }
.track-form {
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 28px;
}
.track-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
  font-weight: 600;
  margin-bottom: 10px;
}
.track-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}
.track-form .input {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}
.track-form .btn { min-width: 132px; }
.track-form .small { margin-top: 12px; }
.track-empty {
  text-align: center;
  padding: 48px 20px;
  border: 1px solid var(--line);
}
.track-empty .lead { margin: 12px auto 24px; max-width: 38ch; }
.track-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px 28px 24px;
}
.track-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.track-card__ref {
  margin-top: 8px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.track-pill {
  flex: none;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--paper-2);
  color: var(--ink-70);
}
.track-pill--confirmed,
.track-pill--processing { background: var(--blue-mist); color: var(--blue-deep); }
.track-pill--shipped,
.track-pill--delivered { background: var(--ok-soft); color: var(--ok); }
.track-pill--cancelled { background: var(--sale-soft); color: var(--sale); }
.track-card__note {
  max-width: 52ch;
  color: var(--ink-70);
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.track-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 32px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line-soft);
  list-style: none;
}
.track-steps li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  color: var(--ink-40);
  font-size: 12.5px;
  font-weight: 550;
  letter-spacing: -0.01em;
}
.track-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 22px;
  right: -8px;
  height: 1px;
  background: var(--line);
}
.track-steps i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  position: relative;
  z-index: 1;
}
.track-steps .is-done { color: var(--ink); }
.track-steps .is-done i {
  background: var(--blue);
  border-color: var(--blue);
}
.track-steps .is-on { color: var(--ink); }
.track-steps .is-on i {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px var(--blue-mist);
}
.track-steps .is-done:not(:last-child)::after,
.track-steps .is-on:not(:last-child)::after { background: var(--navy); }
.track-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px 40px;
}
.track-facts { margin-top: 14px; }
.track-facts > div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}
.track-facts dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding-top: 3px;
}
.track-facts dd { font-size: 15px; overflow-wrap: anywhere; }
.track-items { margin-top: 14px; }
.track-items > li {
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}
.track-items__head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.track-items__media {
  width: 56px;
  height: 56px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.track-items__media img { width: 100%; height: 100%; object-fit: contain; }
.track-items b { display: block; font-weight: 550; letter-spacing: -0.02em; }
.track-items small { color: var(--ink-40); font-size: 12.5px; }
.track-items__var { display: block; margin: 8px 0 0; color: var(--ink-40); font-size: 12.5px; }
.track-items__head--pack { grid-template-columns: minmax(0, 1fr); }
.track-inc {
  list-style: none;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.track-inc li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.35;
}
.track-inc img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: #fff;
  flex: 0 0 28px;
}
.track-sum { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.track-sum p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-70);
}
.track-sum__total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
}
.track-sum__total b { font-size: 22px; letter-spacing: -0.04em; }
.track-card__act {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

/* ------------------------------------------------------------ team */

.team-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(70px, 10vw, 150px)) 0 clamp(50px, 6vw, 90px);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.team-hero__glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  right: -14vw;
  top: -22vw;
  background: radial-gradient(circle, rgba(22, 104, 255, 0.28), transparent 62%);
  pointer-events: none;
}
.team-hero__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr); gap: 48px; align-items: end; position: relative; }

.member {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(48px, 7vw, 104px) 0;
  border-bottom: 1px solid var(--line);
}
.member { grid-template-areas: "media copy"; }
.member:nth-child(even) {
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}
.member__media { grid-area: media; }
.member > div { grid-area: copy; }
.member__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-3);
}
.member__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(0.35) contrast(1.04);
  transition: filter 0.8s var(--e-out), transform 1.3s var(--e-out);
}
.member:hover .member__media img { filter: grayscale(0); transform: scale(1.035); }
.member__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 104, 255, 0.14), transparent 55%);
  opacity: 1;
  transition: opacity 0.7s var(--e-out);
}
.member:hover .member__media::after { opacity: 0; }
.member__index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  mix-blend-mode: difference;
}
.member__role { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 600; }
.member__name {
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin: 16px 0 22px;
}
.member__bio { max-width: 58ch; color: var(--ink-70); font-size: 16px; line-height: 1.65; }
.member__bio p + p { margin-top: 16px; }
.member__facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.member__links { display: flex; gap: 22px; margin-top: 30px; }
.member__quote {
  margin-top: 28px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 38ch;
}
.join {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(40px, 5vw, 72px) 0;
}

/* ------------------------------------------------------ overlays */

.veil {
  position: fixed;
  inset: 0;
  z-index: 125;
  background: rgba(6, 18, 35, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--e-out), visibility 0.45s;
}
.veil.is-on { opacity: 1; visibility: visible; }

.finder {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  background: var(--paper);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.6s var(--e-io);
  max-height: 100svh;
  overflow-y: auto;
}
.finder.is-on { transform: none; }
.finder__bar { display: flex; align-items: center; gap: 18px; height: 96px; border-bottom: 1px solid var(--line-soft); }
.finder__bar .icon { width: 22px; height: 22px; color: var(--ink-40); }
.finder__bar input {
  flex: 1;
  height: 60px;
  border: 0;
  font-size: clamp(20px, 2.6vw, 34px);
  letter-spacing: -0.035em;
  background: none;
}
.finder__bar input:focus { outline: none; }
.finder__body { padding: 30px 0 48px; display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 48px; }
.finder__hits { display: flex; flex-direction: column; gap: 0; }
.hit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.hit__copy { min-width: 0; }
.hit__media {
  width: 56px;
  height: 56px;
  flex: none;
  background: var(--paper-2);
  overflow: hidden;
  margin: 0;
}
.hit__media img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.hit b {
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.02em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hit__copy span { font-size: 12.5px; color: var(--ink-55); }
.hit:hover { background: var(--paper-2); }
.finder__suggest a { display: block; padding: 8px 0; font-size: 14px; color: var(--ink-55); transition: color 0.25s, transform 0.4s var(--e-out); }
.finder__suggest a:hover { color: var(--ink); transform: translateX(4px); }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  width: min(440px, 100%);
  background: var(--paper);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.6s var(--e-io);
  display: flex;
  flex-direction: column;
}
.drawer.is-on { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line-soft); }
.drawer__head b { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }
.drawer__body { flex: 1; overflow-y: auto; padding: 0 28px; }
.drawer__foot { padding: 22px 28px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.mini { display: grid; grid-template-columns: 76px minmax(0, 1fr) auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.mini--pack { grid-template-columns: minmax(0, 1fr) auto; }
.mini__media { aspect-ratio: 1; background: var(--paper-2); overflow: hidden; }
.mini__media img { width: 100%; height: 100%; object-fit: cover; }
.mini b { font-size: 14px; font-weight: 550; letter-spacing: -0.02em; }
.mini span { font-size: 12.5px; color: var(--ink-55); display: block; margin-top: 4px; }

.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  background: var(--paper);
  border-radius: 14px 14px 0 0;
  max-height: 88svh;
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.55s var(--e-io);
}
.sheet.is-on { transform: none; }
.sheet__grip { width: 42px; height: 4px; border-radius: var(--r-pill); background: var(--line); margin: 12px auto 4px; }
.sheet__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px 16px; border-bottom: 1px solid var(--line-soft); }
.sheet__body { overflow-y: auto; padding: 20px 24px; }
.sheet__foot { padding: 16px 24px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }

.peek {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 145;
  width: min(940px, calc(100% - 32px));
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -48%) scale(0.98);
  transition: opacity 0.45s var(--e-out), transform 0.55s var(--e-out), visibility 0.45s;
  max-height: 88svh;
  overflow: hidden;
}
.peek.is-on { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.peek__media { background: var(--paper-2); position: relative; }
.peek__media img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.peek__body { padding: 40px; overflow-y: auto; }

.toasts { position: fixed; right: 20px; bottom: 20px; z-index: 160; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  padding: 15px 20px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  animation: toastIn 0.5s var(--e-out);
  max-width: 340px;
}
.toast .icon { width: 16px; height: 16px; color: #7FE3B8; }
.toast.is-out { animation: toastOut 0.4s var(--e-out) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translate3d(0, 16px, 0); } }
@keyframes toastOut { to { opacity: 0; transform: translate3d(0, 10px, 0); } }

.tabbar { display: none; }

.blank { padding: clamp(70px, 10vw, 140px) 0; text-align: center; }
.blank__mark {
  width: 66px;
  height: 66px;
  margin: 0 auto 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-40);
}
.skeleton { background: linear-gradient(100deg, var(--paper-3) 30%, var(--paper-2) 50%, var(--paper-3) 70%); background-size: 220% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -220% 0; } }

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

@media (max-width: 1180px) {
  .mega__list { grid-template-columns: repeat(2, 1fr); }
  .nextgen__grid { grid-template-columns: repeat(2, 1fr); }
  .packs__grid,
  .packs__page { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(3, 1fr); }
  .trust__cell:nth-child(3n) { border-right: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nextgen__title, .nextgen__note { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  :root { --gutter: 24px; }
  .nav__inner { display: flex; justify-content: space-between; }
  .nav__links { display: none; }
  .logo--lockup img { height: 34px; }
  .tool--burger { display: grid; }
  .index__grid { grid-template-columns: 1fr; }
  .index__stage { display: none; }
  .index__row { grid-template-columns: 40px 64px minmax(0, 1fr) auto; }
  .index__thumb { width: 64px; height: 64px; display: block; }
  .catalog { grid-template-columns: 1fr; }
  .facets { display: none; }
  .facet-btn { display: inline-flex; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery, .pdp__panel { position: static; }
  .cart, .checkout { grid-template-columns: 1fr; }
  .account-dash { grid-template-columns: 1fr; }
  .account-order { grid-template-columns: 1fr auto; }
  .account-order em, .account-order .btn { grid-column: 1 / -1; }
  .packs__grid,
  .packs__page { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 32px; }
  .apply, .apply-cta__inner { grid-template-columns: 1fr; }
  .why__media {
    aspect-ratio: 4 / 5;
    max-height: 62svh;
  }
  .recap { position: static; }
  .member, .member:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "copy";
  }
  .peek { grid-template-columns: 1fr; max-height: 82svh; }
  .peek__media { max-height: 34svh; }
  .finder__body { grid-template-columns: 1fr; gap: 28px; }
  .pack-row { grid-template-columns: 72px minmax(0, 1fr); row-gap: 18px; }
  .pack-row > .btn { grid-column: 1 / -1; justify-self: start; }
  .buybar { display: flex; }
  .tabbar { display: grid; }
  body.has-tabbar { padding-bottom: 74px; }
  .team-hero__row { grid-template-columns: 1fr; }
  .about-film,
  .about-path { grid-template-columns: 1fr; }
  .about-film { min-height: 0; }
  .about-path__sticky { position: static; }
  .about-path__step { min-height: 0; padding-bottom: 36px; }
  .about-reach__grid { grid-template-columns: 1fr; }
  .about-reach__ship { grid-template-columns: 1fr; }
  .about-reach__card { min-height: 220px; }
  .about-vow__grid,
  .about-faces { grid-template-columns: 1fr 1fr; }
  .hero--about .hero__cta { justify-content: flex-start; }
  .campaign__inner { text-align: center; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; --nav-h: 66px; }
  .about-vow__grid,
  .about-faces { grid-template-columns: 1fr; }
  .hero--about .hero__content { padding-bottom: 88px; }
  .hero--about .hero__cta { justify-content: flex-start; }
  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .hero__cta { justify-content: center; }
  .hero__cta .btn { width: auto; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head .linkline, .sec-head .rail-nav { display: none; }
  .index__row { grid-template-columns: 36px 52px minmax(0, 1fr) auto; gap: 12px; }
  .index__thumb { width: 52px; height: 52px; display: block; }
  .index__name { font-size: 18px; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .card { padding: 14px 14px 16px; }
  .card__name { font-size: 14px; }
  .card__quick { display: none; }
  .card__fav { opacity: 1; transform: none; }
  .rail { grid-auto-columns: 74%; }
  .nextgen__grid, .trust { grid-template-columns: 1fr; }
  .trust__cell { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .line-item { grid-template-columns: 84px minmax(0, 1fr); }
  .line-item--pack { grid-template-columns: minmax(0, 1fr); }
  .line-item .price { grid-column: 2; }
  .line-item--pack .price { grid-column: 1; }
  .field-row { grid-template-columns: 1fr; }
  .acc__pad { grid-template-columns: 1fr; gap: 24px; }
  .pdp__buy { flex-direction: column; }
  .toasts { left: 18px; right: 18px; bottom: 86px; align-items: stretch; }
  .toast { max-width: none; }
  .confirm { padding-top: calc(var(--nav-h) + 50px); }
}

/* mobile tab bar */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-soft);
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar a, .tabbar button {
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-40);
  position: relative;
  transition: color 0.3s;
}
.tabbar .icon { width: 20px; height: 20px; }
.tabbar .is-active { color: var(--ink); }
.tabbar__dot {
  position: absolute;
  top: 10px;
  right: calc(50% - 18px);
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* --------------------------------------------------------------- dock */

.fdock {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.fdock__fab {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(6, 18, 35, 0.16);
  display: grid;
  place-items: center;
  overflow: visible;
  transition: transform 0.5s var(--e-out), box-shadow 0.5s var(--e-out);
}
.fdock__fab img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.fdock__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  animation: fdockPulse 2.8s ease-out infinite;
  pointer-events: none;
}
.fdock__fab:hover { transform: scale(1.05); }
.fdock.is-open .fdock__pulse { animation: none; opacity: 0; }
.fdock.is-open .fdock__fab,
.fdock.is-open .fdock__fab:hover {
  transform: scale(0.94);
  box-shadow: 0 6px 18px rgba(6, 18, 35, 0.1);
}
@keyframes fdockPulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.fdock__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(248px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(6, 18, 35, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 10px, 0) scale(0.96);
  transform-origin: 100% 100%;
  transition: opacity 0.45s var(--e-out), transform 0.55s var(--e-out), visibility 0.45s;
  overflow: hidden;
}
.fdock.is-open .fdock__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.fdock__view[hidden] { display: none !important; }
.fdock__head {
  padding: 16px 16px 10px;
  text-align: center;
}
.fdock__kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.fdock__lead {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.fdock__opts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 4px 12px 14px;
}
.fdock__opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 0;
  padding: 10px 4px 8px;
  border: 0;
  border-radius: 10px;
  text-align: center;
  background: none;
  color: inherit;
  transition: background 0.3s var(--e-out);
}
.fdock__opt:hover { background: var(--paper-2); }
.fdock__ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.fdock__ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fdock__ico--ig {
  border-radius: 13px;
  border: 0;
}
.fdock__ico--wa {
  border: 0;
}
.fdock__opt b {
  font-size: 11px;
  font-weight: 550;
  letter-spacing: -0.02em;
}
.fdock__chat-bar {
  display: grid;
  grid-template-columns: 32px 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.fdock__chat-bar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.fdock__chat-bar b {
  display: block;
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.fdock__chat-bar span {
  font-size: 11.5px;
  color: var(--ok);
}
.fdock__back {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: none;
}
.fdock__back:hover { background: var(--paper-2); }
.fdock__back .icon { width: 16px; height: 16px; }
.fdock__msgs {
  height: 180px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper-2);
}
.fdock__bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 10px 10px 10px 3px;
  background: #fff;
  border: 1px solid var(--line-soft);
  font-size: 13.5px;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.fdock__bubble--me {
  align-self: flex-end;
  background: var(--navy);
  color: #fff;
  border-color: transparent;
  border-radius: 10px 10px 3px 10px;
}
.fdock__bubble a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 550;
  font-size: 13px;
}
.fdock__bubble--me a { color: #9ec0ff; }
.fdock__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px 0;
}
.fdock__chips[hidden] { display: none !important; }
.fdock__chips button {
  height: 30px;
  padding: 0 11px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: var(--ink-70);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.fdock__chips button:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper-2);
}
.fdock__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 8px;
  padding: 12px;
  align-items: center;
}
.fdock__form input {
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0 14px;
  font: inherit;
  font-size: 13.5px;
  background: var(--paper-2);
}
.fdock__form input:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.fdock__form button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
}
.fdock__form button .icon { width: 16px; height: 16px; }
.fdock__form button:hover { background: var(--blue); }

@media (min-width: 1025px) {
  body:has(.fdock) .toasts { bottom: 88px; }
}
@media (max-width: 1024px) {
  .fdock {
    right: 16px;
    bottom: calc(74px + 14px + env(safe-area-inset-bottom, 0px));
  }
  .fdock__fab { width: 48px; height: 48px; }
  .fdock__fab img { width: 28px; height: 28px; }
  .fdock__opt { min-height: 0; padding: 8px 2px 6px; }
  .fdock__ico { width: 40px; height: 40px; }
  .fdock__ico--ig { border-radius: 11px; }
  body:has(#buybar.is-up) .fdock {
    bottom: calc(74px + 76px + 12px + env(safe-area-inset-bottom, 0px));
  }
  body:has(.fdock) .toasts {
    bottom: calc(74px + 88px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fdock__pulse { animation: none; opacity: 0; }
}

/* --------------------------------------------------------------- admin */

.is-admin { background: var(--paper); }
.is-admin .nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.is-admin .logo--lockup { justify-self: start; }
.is-admin-gate .logo--lockup {
  justify-self: center;
  justify-content: center;
  width: 100%;
}
.is-admin .nav__links {
  display: flex;
  justify-self: center;
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.is-admin .nav__tools { justify-self: end; }
.is-admin .nav__links::-webkit-scrollbar { display: none; }
.admin-chip {
  margin-left: 8px;
  padding: 3px 8px;
  border: 1px solid var(--line-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.is-admin .logo--lockup {
  gap: 0;
}
.is-admin .logo--lockup img {
  width: auto;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}
.nav.is-solid .admin-chip {
  border-color: var(--line);
  color: var(--ink-55);
}
.admin-out {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  color: var(--ink-55);
  transition: color 0.25s;
}
.admin-out:hover { color: var(--ink); }
.is-admin .pagehead {
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px));
}
.is-admin .section { padding-bottom: 80px; }

.is-admin-dash .nav { color: #fff; }
.is-admin-dash .admin-chip {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
}
.is-admin-dash .admin-out { color: rgba(255, 255, 255, 0.7); }
.is-admin-dash .admin-out:hover { color: #fff; }
.is-admin-dash .nav.is-solid {
  color: var(--ink);
}
.is-admin-dash .nav.is-solid .admin-chip {
  border-color: var(--line);
  color: var(--ink-55);
}
.is-admin-dash .nav.is-solid .admin-out { color: var(--ink-55); }
.is-admin-dash .nav.is-solid .admin-out:hover { color: var(--ink); }

.dash-hero {
  position: relative;
  height: min(42vh, 380px);
  overflow: hidden;
  color: #fff;
}
.dash-hero__bg,
.dash-hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dash-hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.dash-hero__scrim {
  background:
    linear-gradient(180deg, rgba(6, 18, 35, 0.28) 0%, rgba(6, 18, 35, 0.08) 42%, rgba(6, 18, 35, 0.55) 100%);
}
.dash-hero__inner { position: relative; z-index: 1; max-width: 920px; }
.dash-hero__title {
  margin-top: 18px;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.048em;
  font-weight: 600;
  padding-bottom: 0.08em;
}
.dash-hero__lead {
  margin-top: 18px;
  max-width: 42ch;
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.68);
}
.dash-beat {
  display: grid;
  grid-template-columns: auto 48px auto;
  align-items: center;
  gap: 18px;
  width: max-content;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.dash-beat b {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  padding-bottom: 0.08em;
}
.dash-beat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.dash-beat i {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}
.dash-beat i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.dash-stats-wrap {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  padding-bottom: 8px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  perspective: 1400px;
}
.dash-stats--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dash-stats--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-stat {
  --mx: 50%;
  --my: 40%;
  position: relative;
  isolation: isolate;
  min-height: 196px;
  padding: 26px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform 0.85s var(--e-out), box-shadow 0.85s var(--e-out), border-color 0.5s;
}
.admin-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
}
.admin-stat--navy::before { background: var(--navy); }
.admin-stat--gold::before { background: #C9A227; }
.admin-stat--ok::before { background: var(--ok); }
.admin-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(22, 104, 255, 0.12), transparent 46%);
  opacity: 0;
  transition: opacity 0.6s var(--e-out);
}
.admin-stat.is-live {
  z-index: 2;
  box-shadow: 0 18px 40px rgba(6, 18, 35, 0.1);
}
.admin-stat.is-live::after { opacity: 1; }
.admin-stat b {
  display: block;
  margin-top: 28px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1.1;
  padding-bottom: 0.08em;
  color: var(--ink);
}
.admin-stat span { font-size: 13px; color: var(--ink-55); }

.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.dash-feed { margin-top: 8px; }
.dash-order {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 20px 8px 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.45s var(--e-out), background 0.45s;
}
.dash-order:hover { padding-left: 10px; }
.dash-order__ref {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
}
.dash-order__who b { display: block; font-weight: 550; letter-spacing: -0.02em; }
.dash-order__who small { color: var(--ink-55); font-size: 13px; }
.dash-order__sum {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.dash-panel {
  border: 1px solid var(--line);
  padding: 28px 26px;
  background: #fff;
}
.dash-amb {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.dash-amb:last-of-type { border-bottom: 0; }
.dash-amb b { display: block; font-weight: 550; letter-spacing: -0.02em; }
.dash-amb small { color: var(--ink-55); font-size: 13px; }
.dash-amb__sum {
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-size: 14px;
}
.dash-earn__total {
  margin: 18px 0 4px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.dash-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.dash-act {
  display: block;
  padding: 22px 24px;
  background: var(--navy);
  color: #fff;
  transition: transform 0.5s var(--e-out);
}
.dash-act:hover { transform: translateY(-3px); }
.dash-act--blue { background: var(--blue); }
.dash-act span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.dash-act b {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.gate {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.gate__bg,
.gate__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gate__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.gate__scrim {
  background: linear-gradient(180deg, rgba(6, 18, 35, 0.35) 0%, rgba(6, 18, 35, 0.62) 100%);
}
.gate__inner {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100% - 40px));
  padding: 48px 0 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.gate__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 28px;
  justify-self: center;
}
.gate__logo img {
  width: auto;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
}
.gate__kicker {
  align-self: center;
  white-space: nowrap;
  justify-content: center;
}
.gate__title {
  margin-top: 18px;
  color: #fff;
  white-space: nowrap;
  font-size: clamp(22px, 6.5vw, 36px);
  text-align: center;
}
.gate__lead {
  margin: 16px auto 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.65);
}
.gate__form {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  color: var(--ink);
  text-align: left;
}
.gate__err {
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--sale);
}
.gate__form .btn { margin-top: 8px; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.admin-stats__cell {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line);
  padding-left: 24px;
}
.admin-stats__cell:first-child { padding-left: 0; }
.admin-stats__cell:last-child { border-right: 0; }
.admin-stats__cell b {
  display: block;
  margin: 14px 0 6px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  padding-bottom: 0.08em;
}
.admin-stats__cell span { font-size: 13px; color: var(--ink-55); }

.admin-split {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
}
.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.admin-table { border-top: 1px solid var(--line); }
.admin-row {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.8fr 0.7fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-70);
  transition: color 0.25s, padding-left 0.4s var(--e-out);
}
a.admin-row:hover { color: var(--ink); padding-left: 6px; }
.admin-row--static { cursor: default; }
.admin-row--head {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
  font-weight: 600;
  padding-bottom: 12px;
}
.admin-table--full .admin-row {
  grid-template-columns: 0.9fr 1.2fr 0.8fr 0.7fr 1fr auto;
}
.admin-row--prod { grid-template-columns: 1.6fr 1fr 0.7fr 0.5fr auto; }
.admin-row__ref { font-variant-numeric: tabular-nums; letter-spacing: 0.04em; color: var(--ink); font-weight: 550; }
.admin-prod {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.admin-prod img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--paper-2);
}
.admin-prod b { display: block; color: var(--ink); font-weight: 550; letter-spacing: -0.02em; }
.admin-prod small { color: var(--ink-40); font-size: 12px; }

.cat-cols,
.cat-line {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) 120px 150px 148px 150px 84px;
  gap: 14px;
  align-items: center;
}
.cat-cols {
  padding: 12px 8px 10px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.cat-line {
  position: relative;
  padding: 14px 8px 14px 14px;
  border-top: 1px solid var(--line-soft);
  transition: background 0.35s, opacity 0.35s;
}
.cat-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ok);
}
.cat-line--low::before { background: #C9A227; }
.cat-line--out::before { background: var(--sale); }
.cat-line.is-off { opacity: 0.48; }
.cat-line.is-busy { pointer-events: none; opacity: 0.6; }
.cat-line.is-fresh { background: var(--blue-mist); }
.cat-line:hover { background: var(--blue-mist); }
.cat-line__prod {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.cat-line__media {
  width: 64px;
  height: 64px;
  flex: none;
  background: var(--paper-2);
  overflow: hidden;
}
.cat-line__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-line__prod b {
  display: block;
  font-size: 14.5px;
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cat-line__prod small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-40);
}
.cat-line__prod > span > a {
  color: inherit;
  text-decoration: none;
}
.cat-locks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.cat-lock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 8px 0 5px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink-70);
  font-size: 11.5px;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, opacity 0.25s;
}
.cat-lock i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.cat-lock em {
  font-style: normal;
  max-width: 9ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cat-lock--combo {
  height: auto;
  min-height: 26px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.cat-lock--combo em {
  max-width: 22ch;
}
.cat-lock .icon {
  display: none;
  width: 11px;
  height: 11px;
  flex: none;
}
.cat-lock:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.cat-lock.is-lock {
  background: var(--sale-soft);
  border-color: transparent;
  color: var(--sale);
}
.cat-lock.is-lock em { text-decoration: line-through; }
.cat-lock.is-lock i { opacity: 0.55; }
.cat-lock.is-lock .icon { display: block; }
.cat-lock.is-lock:hover { border-color: var(--sale); }
.cat-line__cat {
  font-size: 12.5px;
  color: var(--ink-55);
}
.cat-line__price,
.cat-line__stock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.cat-line__price label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cat-line__price i {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-40);
}
.cat-num {
  width: 92px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 0 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.cat-num--soft {
  width: 92px;
  font-weight: 500;
  color: var(--ink-55);
}
.cat-num:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.cat-num::-webkit-outer-spin-button,
.cat-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cat-num[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.cat-tog {
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-40);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.cat-tog + .cat-tog { margin-top: 6px; }
.cat-tog:hover { color: var(--ink); }
.cat-tog.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.cat-tog--sale.is-on {
  background: var(--sale);
  border-color: var(--sale);
}
.cat-line__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.cat-line__see,
.cat-line__edit,
.cat-line__del button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink-40);
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.cat-line__see:hover,
.cat-line__edit:hover { color: var(--ink); border-color: var(--ink); }
.cat-line__del button:hover {
  color: var(--sale);
  border-color: var(--sale);
  background: var(--sale-soft);
}
.cat-line__see .icon,
.cat-line__edit .icon,
.cat-line__del .icon { width: 15px; height: 15px; }
.cat-line__del.is-busy { pointer-events: none; opacity: 0.55; }

.cat-compose {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--e-out), visibility 0.4s;
}
.cat-compose.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cat-compose__veil {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 35, 0.54);
  backdrop-filter: blur(7px);
}
.cat-compose__card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 34px 28px;
  transform: translateY(18px);
  transition: transform 0.5s var(--e-out);
}
.cat-compose.is-on .cat-compose__card { transform: none; }
.cat-compose__card--slim { width: min(480px, 100%); }
.cat-compose__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.cat-compose__x {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink-40);
}
.cat-compose__x:hover { color: var(--ink); }
.cat-compose__form { margin-top: 28px; }
.cat-compose .field-row:has(> :nth-child(3)) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cat-compose__form .fieldset { margin-bottom: 28px; }
.cat-compose__keep,
.cat-compose__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cat-compose__keep[hidden] { display: none; }
.cat-compose__keep label {
  position: relative;
  width: 64px;
  height: 64px;
  cursor: pointer;
}
.cat-compose__keep input {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
  accent-color: var(--navy);
}
.cat-compose__keep img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: var(--paper-2);
}
.cat-compose__keep label:has(input:not(:checked)) img { opacity: 0.35; }
.cat-compose__previews img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: var(--paper-2);
}
.cat-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 14.5px;
  color: var(--ink-70);
  cursor: pointer;
}
.cat-compose__act {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 8px;
}
.cat-compose__act .btn { width: 100%; }

@media (max-width: 520px) {
  .cat-compose { padding: 12px; }
  .cat-compose__card { padding: 24px 18px 20px; }
  .cat-compose__act { grid-template-columns: 1fr; }
}

.fav-cols,
.fav-line {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) 84px minmax(160px, 1.5fr) 140px 44px;
  gap: 14px;
  align-items: center;
}
.fav-cols {
  padding: 12px 8px 10px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.fav-line__n b { font-weight: 600; letter-spacing: -0.03em; }
.fav-line__who {
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-55);
}
.fav-line__who b {
  display: block;
  font-weight: 550;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.fav-line__who small {
  display: block;
  font-size: 12px;
  color: var(--ink-40);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fav-focus {
  padding: 8px 0 18px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 8px;
}
.fav-people { margin-top: 8px; }
.fav-person {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 24px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}
a.fav-person--link {
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  margin: 0 -10px;
  padding: 18px 10px;
}
a.fav-person--link:hover {
  background: var(--paper-2);
}
.fav-person__who b { display: block; font-weight: 550; letter-spacing: -0.02em; }
.fav-person__who small { display: block; color: var(--ink-40); font-size: 12.5px; margin-top: 2px; }
.fav-person__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.fav-person__meta span {
  font-size: 12px;
  color: var(--ink-55);
  background: var(--paper-2);
  padding: 5px 9px;
  letter-spacing: -0.01em;
}
.fav-person__when {
  font-size: 13px;
  color: var(--ink-55);
  white-space: nowrap;
  padding-top: 2px;
}
.fav-trail {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.fav-hit {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 12px 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  position: relative;
}
.fav-hit:last-child { padding-bottom: 4px; }
.fav-hit__dot {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 4px var(--paper-2);
}
.fav-hit__body b {
  display: block;
  font-weight: 550;
  letter-spacing: -0.02em;
}
.fav-hit__body small {
  display: block;
  color: var(--ink-40);
  font-size: 12px;
  margin-top: 3px;
  word-break: break-all;
}
.fav-hit__when {
  font-size: 13px;
  color: var(--ink-55);
  white-space: nowrap;
  padding-top: 2px;
}

/* --------------------------------------------------------------- vis live */
.vis-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(22, 104, 255, 0.38), transparent 58%),
    radial-gradient(700px 380px at 88% 0%, rgba(201, 162, 39, 0.22), transparent 52%),
    linear-gradient(180deg, var(--navy) 0%, #08182c 58%, var(--navy-2) 100%);
  padding: calc(var(--nav-h) + 56px) 0 88px;
}
.vis-hero__glow {
  position: absolute;
  inset: auto -20% -40% 30%;
  height: 280px;
  background: radial-gradient(circle, rgba(22, 104, 255, 0.28), transparent 70%);
  animation: visGlow 7s ease-in-out infinite;
  pointer-events: none;
}
.vis-hero__inner { position: relative; z-index: 1; }
.vis-hero .crumbs a,
.vis-hero .crumbs span { color: rgba(255, 255, 255, 0.55); }
.vis-hero .crumbs a:hover { color: #fff; }
.vis-hero .label {
  color: #E8C96A;
  margin-top: 18px;
}
.vis-hero .label::before { background: #E8C96A; }
.vis-hero__title {
  margin-top: 12px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 600;
  padding-bottom: 0.08em;
}
.vis-hero__lead {
  margin-top: 14px;
  max-width: 42ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.62);
}
.vis-hero__beat {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: max-content;
  max-width: 100%;
}
.vis-hero__beat b {
  font-size: 28px;
  letter-spacing: -0.04em;
}
.vis-hero__beat span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.vis-hero__beat i {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.vis-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7CFFC4;
}
.vis-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7CFFC4;
  box-shadow: 0 0 0 0 rgba(124, 255, 196, 0.7);
  animation: visPing 1.8s ease-out infinite;
}
.vis-body { margin-top: -48px; padding-top: 0; position: relative; z-index: 2; }
.vis-kpis .ord-kpi {
  box-shadow: 0 18px 40px rgba(6, 18, 35, 0.12);
}
.vis-kpis .ord-kpi--gold.is-on {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.vis-kpis .ord-kpi--gold.is-on span { color: #E8C96A; }
.vis-kpis .ord-kpi--gold.is-on b { color: #fff; }
.vis-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 16px;
}
.vis-toolbar form { margin: 0; }
.vis-lock {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(6, 18, 35, 0.1);
}
.vis-lock__form { margin-top: 22px; }
.vis-lock__pin {
  letter-spacing: 0.28em;
  font-size: 22px;
  font-weight: 600;
}
.vis-lock__err {
  color: var(--sale);
  font-size: 13.5px;
  margin-bottom: 12px;
}
.vis-lock .btn { margin-top: 4px; }
.vis-board {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 8px 16px;
  box-shadow: 0 20px 50px rgba(6, 18, 35, 0.06);
}
.vis-board__bar { padding: 22px 16px 10px; }
.vis-tools {
  display: grid;
  gap: 12px;
  padding: 4px 16px 16px;
}
.vis-find { max-width: 420px; }
.vis-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vis-chip-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-70);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vis-chip-btn .icon { width: 13px; height: 13px; }
.vis-chip-btn:hover { border-color: var(--ink); color: var(--ink); }
.vis-chip-btn.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.vis-claim {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}
.vis-claim span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-right: 4px;
}
.vis-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto auto;
  gap: 16px 18px;
  align-items: start;
  padding: 18px 16px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fff 0%, var(--paper-2) 160%);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.55s var(--e-out), border-color 0.35s, box-shadow 0.55s var(--e-out);
}
.vis-card__go {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.vis-ghost-form {
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: start;
}
.vis-ghost-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-55);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  cursor: pointer;
  white-space: nowrap;
}
.vis-ghost-btn .icon { width: 16px; height: 16px; }
.vis-ghost-btn:hover { border-color: var(--navy); color: var(--navy); }
.vis-ghost-btn.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #E8C96A;
}
.vis-card--ghost {
  border-color: rgba(232, 201, 106, 0.55);
  background: linear-gradient(180deg, #fff 0%, #F7F1DE 140%);
}
.vis-card--ghost .vis-card__mark {
  background: linear-gradient(160deg, #1B2740, #C9A227);
}
.vis-ghost-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A6B12;
  font-weight: 700;
  margin-bottom: 6px;
}
.vis-ghost-tag .icon { width: 12px; height: 12px; }
.vis-live--ghost {
  color: #E8C96A;
  gap: 6px;
}
.vis-live--ghost .icon { width: 13px; height: 13px; }
.vis-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -80% 40%;
  height: 140px;
  background: radial-gradient(circle, rgba(22, 104, 255, 0.1), transparent 68%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.vis-card--link:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 104, 255, 0.28);
  box-shadow: 0 18px 36px rgba(6, 18, 35, 0.1);
}
.vis-card--link:hover::after { opacity: 1; }
.vis-card.is-live { border-color: rgba(14, 159, 110, 0.35); }
.vis-card__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  position: relative;
}
.vis-card--phone .vis-card__mark { background: linear-gradient(160deg, #1668FF, #0B44C4); }
.vis-card--pc .vis-card__mark { background: linear-gradient(160deg, #14294A, #061223); }
.vis-card--tab .vis-card__mark { background: linear-gradient(160deg, #C9A227, #8A6B12); }
.vis-card__mark .icon { width: 20px; height: 20px; }
.vis-pulse {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7CFFC4;
  border: 2px solid #fff;
  animation: visPing 1.8s ease-out infinite;
}
.vis-card__who b {
  display: block;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 17px;
}
.vis-card__who small,
.vis-card__pages {
  display: block;
  color: var(--ink-40);
  font-size: 12.5px;
  margin-top: 3px;
}
.vis-card__pages { margin-top: 8px; }
.vis-chips { margin-top: 12px; }
.vis-chip,
.vis-chips span {
  font-size: 11.5px;
  color: var(--ink-55);
  background: var(--paper-3);
  padding: 5px 9px;
  letter-spacing: -0.01em;
}
.vis-chip--ig { background: #FDE8F2; color: #B01263; }
.vis-chip--wa { background: #E4F8EE; color: #0B7A48; }
.vis-chip--fb { background: #E7F0FF; color: #1668FF; }
.vis-chip--tt { background: #F1E8FF; color: #6A1B9A; }
.vis-chip--go { background: #FFF4D6; color: #8A6B12; }
.vis-chip--def { background: var(--blue-soft); color: var(--blue-deep); }
.vis-chip--place { background: #E9F0FF; color: #0B44C4; }
.vis-chip--ip { background: var(--paper-3); color: var(--ink-55); }
.vis-chip--cart { background: #FFF4D6; color: #8A6B12; }
.vis-chip--land { background: var(--navy); color: #fff; }
.vis-card__when {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-40);
  white-space: nowrap;
  padding-top: 4px;
}
.vis-card__when em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0E9F6E;
  font-weight: 600;
}
.vis-card__when .icon { width: 14px; height: 14px; color: var(--ink-40); }
.vis-card--file { grid-template-columns: 52px minmax(0, 1fr); margin-bottom: 18px; }
.vis-trail { position: relative; padding: 8px 16px 12px; }
.vis-trail::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(22, 104, 255, 0.05));
}
.vis-trail .fav-hit__dot {
  background: var(--blue);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(22, 104, 255, 0.2);
  position: relative;
  z-index: 1;
}

@keyframes visPing {
  0% { box-shadow: 0 0 0 0 rgba(124, 255, 196, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(124, 255, 196, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 255, 196, 0); }
}
@keyframes visGlow {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.7; }
  50% { transform: translateX(-8%) scale(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .vis-hero__glow, .vis-live i, .vis-pulse { animation: none; }
}

@media (max-width: 1024px) {
  .vis-card { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .vis-card--file { grid-template-columns: 48px minmax(0, 1fr); }
  .vis-card__when { grid-column: 2; flex-direction: row; align-items: center; }
  .vis-ghost-form { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
}

@media (max-width: 1024px) {
  .cat-cols, .pack-cols, .fav-cols { display: none; }
  .cat-line, .pack-line, .fav-line {
    grid-template-columns: 1fr auto;
    padding-left: 14px;
  }
  .cat-line__prod { grid-column: 1 / -1; }
  .cat-line__cat, .pack-line__comp { display: none; }
  .fav-line__who { grid-column: 1; }
  .cat-line__tools { grid-column: 2; grid-row: 2; }
  .fav-person { grid-template-columns: 1fr; gap: 8px; }
  .fav-hit { grid-template-columns: 16px minmax(0, 1fr); }
  .fav-hit__when { grid-column: 2; padding-top: 0; }
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
  white-space: nowrap;
}
.admin-pill--pending { color: #6B7789; background: #F4F6F8; border-color: transparent; }
.admin-pill--confirmed, .admin-pill--contacted { color: var(--blue); background: var(--blue-mist); border-color: transparent; }
.admin-pill--processing, .admin-pill--new { color: #8A5A10; background: #FBF4E4; border-color: transparent; }
.admin-pill--shipped, .admin-pill--accepted { color: var(--ok); background: var(--ok-soft); border-color: transparent; }
.admin-pill--delivered { background: var(--ok-soft); color: var(--ok); border-color: transparent; }
.admin-pill--cancelled, .admin-pill--declined { color: var(--sale); background: var(--sale-soft); border-color: transparent; }

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.admin-filters a {
  height: 36px;
  padding: 0 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-55);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.admin-filters a:hover { color: var(--ink); }
.admin-filters a.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.admin-filters .cat-chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 4px 0 14px;
  border: 1px solid var(--line);
  gap: 2px;
}
.admin-filters .cat-chip:not(:has(form)) { padding-right: 14px; }
.admin-filters .cat-chip a {
  height: auto;
  padding: 0 8px 0 0;
  border: 0;
  color: var(--ink-55);
}
.admin-filters .cat-chip a:hover { color: var(--ink); }
.admin-filters .cat-chip.is-on {
  background: var(--navy);
  border-color: var(--navy);
}
.admin-filters .cat-chip.is-on a { color: #fff; }
.admin-filters .cat-chip button {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ink-40);
  background: none;
  border: 0;
  cursor: pointer;
}
.admin-filters .cat-chip button .icon { width: 12px; height: 12px; }
.admin-filters .cat-chip.is-on button { color: rgba(255, 255, 255, 0.7); }
.admin-filters .cat-chip button:hover { color: var(--sale); }

.is-admin .pagehead--admin {
  background: var(--paper-2);
  border-bottom: 0;
  padding-bottom: 28px;
}
.is-admin .pagehead--admin.pagehead--film {
  background: transparent;
  min-height: min(36vh, 320px);
  padding-top: calc(var(--nav-h) + 36px);
  padding-bottom: 40px;
  justify-content: flex-end;
}
.is-admin .pagehead--admin.pagehead--film .packs-stage__bg video.is-on {
  opacity: 1;
}
.is-admin .pagehead--admin.pagehead--film .packs-stage__scrim {
  display: none;
}
.is-admin .pagehead--admin.pagehead--film .h1 { color: #fff; }
.is-admin .pagehead--admin.pagehead--film .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.is-admin .pagehead--admin.pagehead--film .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
.ord-export { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.ord-kpis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: -8px;
  margin-bottom: 22px;
}
.ord-kpis--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ord-kpis--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ord-kpi {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.45s var(--e-out), border-color 0.3s, box-shadow 0.45s var(--e-out);
}
.ord-kpi::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--navy);
}
.ord-kpi--blue::before { background: var(--blue); }
.ord-kpi--gold::before { background: #C9A227; }
.ord-kpi--ok::before { background: var(--ok); }
.ord-kpi--sale::before { background: var(--sale); }
.ord-kpi span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
  font-weight: 600;
}
.ord-kpi b {
  font-size: 32px;
  letter-spacing: -0.045em;
  line-height: 1.1;
  padding-bottom: 0.06em;
}
.ord-kpi:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(6, 18, 35, 0.08);
}
.ord-kpi.is-on {
  border-color: var(--ink);
}

.ord-board {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 22px 18px;
  overflow: visible;
}
.ord-board__bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 6px 8px;
}
.ord-board__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.ord-board__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  min-width: 0;
}
.ord-bulk {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ord-bulk[hidden] { display: none; }
.ord-bulk__n {
  font-size: 12.5px;
  color: var(--ink-55);
  white-space: nowrap;
}
.ord-check {
  display: grid;
  place-items: center;
  width: 28px;
  margin: 0;
  cursor: pointer;
}
.ord-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--navy);
  cursor: pointer;
}
.ord-cols__check { justify-self: center; }
.ord-board--pick .ord-cols,
.ord-board--pick .ord-line {
  grid-template-columns: 32px 124px minmax(0, 1.6fr) 108px 118px minmax(168px, 0.75fr);
}
.ord-board__bar .admin-filters {
  margin-bottom: 0;
}
.ord-board__sum {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink-70);
  letter-spacing: -0.02em;
}
.ord-find {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(320px, 100%);
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.ord-find .icon {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--ink-40);
}
.ord-find input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.ord-find input::placeholder { color: var(--ink-40); }
.ord-find:focus-within {
  border-color: var(--ink);
  background: #fff;
}
.ord-empty,
.ord-miss { padding: 36px 8px; }
.ord-cols,
.ord-line {
  display: grid;
  grid-template-columns: 124px minmax(0, 1.6fr) 108px 118px minmax(168px, 0.75fr);
  gap: 14px;
  align-items: center;
}
.ord-cols {
  padding: 12px 8px 10px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.ord-cols span:last-child { text-align: right; }
.ord-line {
  position: relative;
  z-index: 0;
  padding: 12px 8px 12px 14px;
  border-top: 1px solid var(--line-soft);
  transition: background 0.45s, padding-left 0.45s var(--e-out);
}
.ord-line.is-picking { z-index: 40; }
.ord-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #C9A227;
}
.ord-line--confirmed::before { background: var(--blue); }
.ord-line--processing::before { background: #C9A227; }
.ord-line--shipped::before,
.ord-line--delivered::before { background: var(--ok); }
.ord-line--cancelled::before { background: var(--sale); }
.ord-line:hover {
  background: var(--blue-mist);
  padding-left: 24px;
}
.ord-line__ref {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}
.ord-line__client {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.ord-line__who { min-width: 0; flex: 1; }
.ord-line__who b { display: block; font-weight: 550; letter-spacing: -0.02em; color: var(--ink); font-size: 14px; }
.ord-line__who small { color: var(--ink-55); font-size: 12px; }
.ord-line__pay {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.ord-line__sum { font-weight: 600; letter-spacing: -0.03em; white-space: nowrap; font-size: 14px; }
.ord-line__when {
  font-size: 12.5px;
  color: var(--ink-55);
  white-space: nowrap;
}
.ord-line__when b { font-weight: 500; color: var(--ink); }
.ord-line__when small { margin-left: 6px; color: var(--ink-40); }
.ord-line__wa {
  width: 26px;
  height: 26px;
  flex: none;
  display: block;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.ord-line__wa img,
.ord-line__wa svg {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  transform-origin: center;
  animation: none;
}
.ord-line__wa.is-beat img,
.ord-line__wa.is-beat svg,
.btn--wa.is-beat .icon,
.ticket-wa.is-beat svg {
  animation: waHeart 1.15s ease-in-out infinite;
}
.ord-line__wa.is-beat:hover img,
.ord-line__wa.is-beat:hover svg,
.btn--wa.is-beat:hover .icon,
.ticket-wa.is-beat:hover svg {
  animation-duration: 0.85s;
}
.ord-line__wa:hover img,
.ord-line__wa:hover svg {
  filter: drop-shadow(0 5px 8px rgba(37, 211, 102, 0.4));
}
.ord-line__wa:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}
@keyframes waHeart {
  0%, 28%, 100% { transform: scale(1); }
  8% { transform: scale(1.22); }
  16% { transform: scale(1); }
  22% { transform: scale(1.14); }
}
.ord-line.is-fresh { background: var(--blue-mist); }
.ord-line__stat {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}
.ord-line__del {
  flex: none;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink-40);
  background: #fff;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}
.ord-line__del .icon { width: 15px; height: 15px; }
.ord-line__del:hover {
  color: var(--sale);
  border-color: var(--sale);
}

.stat-pick {
  position: relative;
  justify-self: stretch;
}
.stat-pick__now,
.stat-pick__menu { display: none; }
html.js .stat-pick__now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 30px;
  padding: 0 8px 0 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.25s, background 0.25s;
}
html.js .stat-pick--read .stat-pick__now { cursor: default; }
.ord-line__who small b { display: inline; font-weight: 650; color: var(--ink); }
html.js .stat-pick__fallback { display: none; }
.stat-pick__now i,
.stat-pick__opt i {
  width: 6px;
  height: 6px;
  flex: none;
  background: #C9A227;
}
.stat-pick__now--confirmed i,
.stat-pick__opt--confirmed i { background: var(--blue); }
.stat-pick__now--processing i,
.stat-pick__opt--processing i { background: #C9A227; }
.stat-pick__now--shipped i,
.stat-pick__now--delivered i,
.stat-pick__opt--shipped i,
.stat-pick__opt--delivered i { background: var(--ok); }
.stat-pick__now--cancelled i,
.stat-pick__opt--cancelled i,
.stat-pick__now--declined i,
.stat-pick__opt--declined i { background: var(--sale); }
.stat-pick__now--new i,
.stat-pick__opt--new i { background: #C9A227; }
.stat-pick__now--contacted i,
.stat-pick__opt--contacted i { background: var(--blue); }
.stat-pick__now--accepted i,
.stat-pick__opt--accepted i { background: var(--ok); }
.stat-pick__now span {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.stat-pick__now .icon {
  width: 12px;
  height: 12px;
  opacity: 0.4;
  transition: transform 0.35s var(--e-out);
}
.stat-pick.is-busy { pointer-events: none; opacity: 0.6; }
.stat-pick.is-open .stat-pick__now {
  border-color: var(--ink);
  background: var(--paper-2);
}
.stat-pick.is-open .stat-pick__now .icon { transform: rotate(180deg); }
html.js .stat-pick.is-open .stat-pick__menu {
  display: block;
  position: absolute;
  top: calc(100% + 4px);
  left: auto;
  right: 0;
  z-index: 5;
  width: max-content;
  min-width: 168px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: 0 12px 28px rgba(6, 18, 35, 0.12);
}
html.js .stat-pick.is-up .stat-pick__menu {
  top: auto;
  bottom: calc(100% + 4px);
}
.stat-pick__opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 32px;
  height: auto;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}
.stat-pick__opt:hover { background: var(--paper-2); }
.stat-pick__opt.is-on { background: var(--blue-mist); font-weight: 600; }
.stat-pick__opt--cancelled { border-top: 1px solid var(--line-soft); margin-top: 2px; }

@media (max-width: 1024px) {
  .ord-kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ord-board__top { flex-wrap: wrap; }
  .ord-board__tools { width: 100%; }
  .ord-find { width: 100%; }
  .ord-cols { display: none; }
  .ord-line {
    grid-template-columns: 1fr auto;
    padding-left: 14px;
  }
  .ord-board--pick .ord-line {
    grid-template-columns: 28px 1fr auto;
    padding-left: 8px;
  }
  .ord-line__ref { grid-column: 1 / -1; }
  .ord-board--pick .ord-line__ref,
  .ord-board--pick .ord-line__client { grid-column: 2 / -1; }
  .ord-line__when { display: none; }
  .stat-pick { grid-column: 1 / -1; justify-self: stretch; }
  .ord-board--pick .stat-pick { grid-column: 2 / -1; }
}

.admin-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.ticket-page { margin-top: 0; }
.ticket-kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ticket-kpis .ord-kpi b { font-size: clamp(22px, 2.4vw, 30px); }
.ticket-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ticket__ref {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  font-weight: 600;
  line-height: 1.1;
}
.ticket__meta {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-55);
}
.ticket__meta span {
  margin-left: 12px;
  color: var(--ink-40);
}
.ticket-head__act { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ticket-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px 0 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.ticket-wa img,
.ticket-wa svg {
  width: 26px;
  height: 26px;
  display: block;
  transform-origin: center;
  animation: none;
}
.ticket-wa.is-beat img,
.ticket-wa.is-beat svg { animation: waHeart 1.15s ease-in-out infinite; }
.ticket-wa.is-beat:hover img,
.ticket-wa.is-beat:hover svg { animation-duration: 0.85s; }
.ticket-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 12px;
}
.ticket-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 100%;
}
.ticket-card__body { padding: 26px 28px 22px; flex: 1; }
.ticket-card__title {
  margin-top: 14px;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.035em;
  font-weight: 600;
}
.doss { margin-top: 22px; }
.doss > div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}
.doss dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding-top: 3px;
}
.doss dd { font-size: 15px; color: var(--ink); word-break: break-word; }
.doss a:hover { color: var(--blue); }
.ticket-list { margin-top: 18px; }
.ticket-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 48px 108px;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}
.ticket-item--pack { grid-template-columns: minmax(0, 1fr) 48px 108px; }
.ticket-item__media {
  width: 64px;
  height: 64px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
}
.ticket-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ticket-item__who b { display: block; font-weight: 550; letter-spacing: -0.02em; }
.ticket-item__who small { color: var(--ink-40); font-size: 12.5px; }
.ticket-item__qty { color: var(--ink-40); font-size: 13px; }
.ticket-item__sum { font-weight: 600; letter-spacing: -0.03em; text-align: right; }
.ticket-foot {
  margin-top: auto;
  padding: 20px 28px 22px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ticket-foot span {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.ticket-foot b { color: #fff; font-weight: 550; }
.ticket-foot__total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 16px;
  color: #fff;
}
.ticket-flow {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 22px 20px;
}
.ticket-flow__bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.ticket-flow__hint { font-size: 13px; color: var(--ink-40); }
.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(120px, 0.85fr);
  gap: 8px;
}
.flow__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 92px;
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.flow__step em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-40);
}
.flow__step b {
  font-size: 13.5px;
  font-weight: 550;
  letter-spacing: -0.02em;
}
.flow__step small {
  font-size: 11.5px;
  color: var(--ink-40);
  line-height: 1.35;
}
.flow__step:hover { border-color: var(--ink); }
.flow__step.is-done { background: var(--paper-2); }
.flow__step.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.flow__step.is-on em,
.flow__step.is-on small { color: rgba(255, 255, 255, 0.55); }
.flow__step--cancelled.is-on {
  background: var(--sale);
  border-color: var(--sale);
}
.flow.is-busy { pointer-events: none; opacity: 0.65; }
.flow.is-locked .flow__step { cursor: default; }
.flow.is-locked .flow__step:hover { border-color: var(--line); }
.flow.is-locked .flow__step.is-on:hover { border-color: var(--navy); }
.flow.is-locked .flow__step--cancelled.is-on:hover { border-color: var(--sale); }

@media (max-width: 1024px) {
  .ticket-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ticket-grid, .flow { grid-template-columns: 1fr; }
  .ticket-item { grid-template-columns: 56px minmax(0, 1fr) auto; }
  .ticket-item--pack { grid-template-columns: minmax(0, 1fr) auto; }
  .ticket-item__qty { display: none; }
}
.admin-card {
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
}
.admin-meta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-meta li { font-size: 14.5px; color: var(--ink-70); }
.admin-totals {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-totals span {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-55);
}
.admin-totals span:last-child { color: var(--ink); font-size: 16px; }
.admin-flash {
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--ok);
}
.admin-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.admin-amb__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.admin-amb__act {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}
.admin-amb__act form { flex: 1; min-width: 160px; }

.amb-schools {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}
.amb-schools button {
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 12.5px;
  color: var(--ink-55);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.amb-schools button i {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-40);
}
.amb-schools button:hover { color: var(--ink); }
.amb-schools button.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.amb-schools button.is-on i { color: rgba(255, 255, 255, 0.62); }

.amb-earn { margin-bottom: 18px; }
.amb-gain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}
.amb-gain:last-child { border-bottom: 0; }
.amb-gain b { display: block; font-weight: 550; letter-spacing: -0.02em; }
.amb-gain small { color: var(--ink-55); font-size: 13px; }
.amb-gain__sum {
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-size: 15px;
}
.amb-card__gain {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  margin-top: -4px;
}
.amb-card__gain span { font-size: 12px; color: var(--ink-55); }
.amb-card__gain b { font-size: 16px; font-weight: 600; letter-spacing: -0.03em; }

.amb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 10px;
}
.amb-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px 22px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: visible;
  transition: border-color 0.3s, box-shadow 0.45s var(--e-out), transform 0.45s var(--e-out);
}
.amb-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #C9A227;
}
.amb-card--contacted::before { background: var(--blue); }
.amb-card--accepted::before { background: var(--ok); }
.amb-card--declined::before { background: var(--sale); }
.amb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(6, 18, 35, 0.07);
}
.amb-card.is-picking {
  z-index: 5;
  transform: none;
}
.amb-card.is-fresh {
  box-shadow: 0 0 0 1px var(--blue);
}
.amb-card__top {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}
.amb-card__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.amb-card__who { min-width: 0; }
.amb-card__who .label {
  margin-bottom: 4px;
  color: var(--blue);
}
.amb-card__who h2 {
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 600;
}
.amb-card__who time {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-40);
}
.amb-card__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
.amb-card__ico,
.amb-card__del button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-55);
  flex: none;
  cursor: pointer;
  transition: color 0.35s var(--e-out), border-color 0.35s var(--e-out), background 0.35s var(--e-out), transform 0.35s var(--e-out);
}
.amb-card__ico .icon,
.amb-card__del button .icon { width: 15px; height: 15px; }
.amb-card__ico:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-mist);
  transform: translateY(-2px);
}
.amb-card__ico:active { transform: scale(0.94); }
.amb-card__ico[hidden] { display: none !important; }
.amb-card__del button:hover {
  color: var(--sale);
  border-color: var(--sale);
  background: var(--sale-soft);
  transform: translateY(-2px);
}
.amb-card__del.is-busy { pointer-events: none; opacity: 0.55; }
.amb-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.amb-card__meta a,
.amb-card__meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-70);
  min-width: 0;
}
.amb-card__meta a:hover { color: var(--ink); }
.amb-card__meta .icon {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--ink-40);
}
.amb-card__act {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.amb-card__act .btn--wa { flex: none; }
.amb-card__act .stat-pick {
  flex: 1;
  min-width: 0;
}
.amb-card__act .stat-pick__now { width: 100%; }

@media (max-width: 1024px) {
  .ord-kpis--5, .ord-kpis--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amb-grid { grid-template-columns: 1fr; }
  .amb-card__top { grid-template-columns: 48px minmax(0, 1fr); }
  .amb-card__tools { grid-column: 2; }
}
.pack-cols,
.pack-line {
  grid-template-columns: minmax(220px, 1.6fr) minmax(0, 1.35fr) 150px 150px 84px;
}
.pack-line__comp {
  font-size: 12.5px;
  color: var(--ink-55);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pack-picks__lab {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 550;
}
.pack-picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.pack-line__thumbs {
  display: flex;
  flex: none;
  width: 72px;
}
.pack-line__thumbs img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  background: var(--paper-2);
  margin-left: -10px;
  border: 2px solid #fff;
}
.pack-line__thumbs img:first-child { margin-left: 0; }
.pack-picks label {
  display: grid;
  grid-template-columns: 18px 40px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  min-width: 0;
}
.pack-picks label img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  background: var(--paper-2);
}
.pack-picks label span { min-width: 0; }
.pack-picks label span b,
.pack-picks label span small { display: block; }
.pack-picks label:has(input:checked) {
  border-color: var(--ink);
  background: var(--blue-mist);
}
.pack-picks input { accent-color: var(--navy); }
.pack-picks b {
  font-size: 13.5px;
  font-weight: 550;
  letter-spacing: -0.02em;
}
.pack-picks small { font-size: 12px; color: var(--ink-40); }
@media (max-width: 720px) {
  .pack-picks { grid-template-columns: 1fr; }
}
.admin-pack__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-2);
}
.admin-pack__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1024px) {
  .admin-stats, .admin-split, .admin-detail, .admin-cards, .admin-packs,
  .dash-stats, .dash-grid {
    grid-template-columns: 1fr;
  }
  .dash-order { grid-template-columns: 1fr auto; }
  .dash-order__ref { grid-column: 1 / -1; }
  .admin-stats__cell { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .admin-stats__cell:last-child { border-bottom: 0; }
  .admin-table--full .admin-row,
  .admin-row,
  .admin-row--prod {
    grid-template-columns: 1fr 1fr;
  }
  .admin-row--head { display: none; }
}

.nav-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-badge[hidden] { display: none; }
.nav-badge.is-hot { animation: badgePulse 1.2s var(--e-out) 2; }
.is-admin-dash .nav:not(.is-solid) .nav-badge {
  box-shadow: 0 0 0 2px rgba(6, 18, 35, 0.25);
}

.note-bell { position: relative; }
.note-bell__btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: inherit;
  position: relative;
  border-radius: 50%;
  transition: background 0.25s;
}
.note-bell__btn:hover,
.note-bell__btn[aria-expanded="true"] { background: rgba(127, 127, 127, 0.12); }
.note-bell__btn .icon { width: 20px; height: 20px; }
.note-bell__btn.is-live .icon { animation: bellShake 0.7s var(--e-out) 2; }
.note-bell__badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  font-size: 9px;
  pointer-events: none;
}
.note-bell__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(420px, calc(100vw - 28px));
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  z-index: 8;
  display: flex;
  flex-direction: column;
  max-height: min(70vh, 560px);
  overflow: hidden;
  overscroll-behavior: contain;
  box-shadow: 0 28px 80px rgba(6, 18, 35, 0.14);
}
.note-bell__panel[hidden] { display: none; }
.note-bell__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}
.note-bell__head p {
  margin: 0 0 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.note-bell__head b {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}
.note-bell__head button {
  font-size: 12px;
  color: var(--ink-55);
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.note-bell__head button:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.note-bell__head button[hidden] { display: none; }
.note-bell__list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.note-bell__empty {
  margin: 0;
  padding: 48px 28px;
  text-align: center;
  color: var(--ink-40);
  font-size: 14.5px;
  line-height: 1.55;
}
.note-bell__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 16px;
  padding: 16px 24px 16px 22px;
  color: inherit;
  border-bottom: 1px solid var(--line-soft);
  border-left: 2px solid transparent;
  transition: background 0.2s;
}
.note-bell__item:last-child { border-bottom: 0; }
.note-bell__item:hover { background: var(--paper-2); }
.note-bell__item:not(.is-read) {
  background: var(--blue-mist);
  border-left-color: var(--blue);
}
.note-bell__kind {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.note-bell__item:not(.is-read) .note-bell__kind { color: var(--blue); }
.note-bell__item strong {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.note-bell__meta {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ink-55);
  line-height: 1.45;
}
.note-bell__item time {
  font-size: 11px;
  color: var(--ink-40);
  letter-spacing: 0.02em;
  align-self: start;
  padding-top: 1px;
}
.note-bell__item.is-read strong { color: var(--ink-70); }
.note-bell__item.is-read .note-bell__meta { color: var(--ink-40); }

@keyframes bellShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-12deg); }
  55% { transform: rotate(10deg); }
}

.ord-pops {
  position: fixed;
  top: calc(var(--nav-h) + 18px);
  right: 24px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(400px, calc(100vw - 32px));
  pointer-events: none;
}
.ord-pop {
  pointer-events: auto;
  background: #fff;
  color: var(--ink);
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(6, 18, 35, 0.16);
  animation: toastIn 0.55s var(--e-out);
  position: relative;
}
.ord-pop::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue);
}
.ord-pop.is-out { animation: toastOut 0.4s var(--e-out) forwards; }
.ord-pop__brand {
  margin: 0 0 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.ord-pop__kicker {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.ord-pop__ref {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.ord-pop__meta {
  margin: 0 0 4px;
  font-size: 14.5px;
  color: var(--ink-70);
}
.ord-pop__items {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--ink-40);
  line-height: 1.45;
}
.ord-pop__items[hidden] { display: none; }
.ord-pop__go {
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 0 0 3px;
  background: none;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--ink);
}
.ord-pop__go:hover { color: var(--blue); border-bottom-color: var(--blue); }
.ord-pop__x {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 32px;
  height: 32px;
  color: var(--ink-40);
  display: grid;
  place-items: center;
}
.ord-pop__x:hover { color: var(--ink); }
.ord-pop__x .icon { width: 16px; height: 16px; }

.ask {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--e-out), visibility 0.4s;
}
.ask.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ask__veil {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 35, 0.54);
  backdrop-filter: blur(7px);
}
.ask__card {
  position: relative;
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px 34px 26px;
  transform: translateY(18px);
  transition: transform 0.5s var(--e-out);
}
.ask.is-on .ask__card { transform: none; }
.ask__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: var(--sale);
}
.ask__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.ask__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ask__lead {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-70);
  letter-spacing: -0.015em;
}
.ask__who {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ask__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.ask__who b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.ask__who small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-40);
}
.ask__facts {
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.ask__facts div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}
.ask__facts dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.ask__facts dd {
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}
.ask__warn {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-55);
}
.ask__act {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.ask__facts:empty,
.ask__who[hidden],
.ask__warn[hidden] { display: none; }
.ask--shop .ask__card::before {
  background: linear-gradient(90deg, var(--blue), #5b8cff);
  height: 2px;
}
.ask--shop .ask__card {
  padding: 40px 36px 28px;
  box-shadow: 0 28px 80px rgba(6, 18, 35, 0.18);
}
.ask--shop .ask__title {
  max-width: 12ch;
}
.ask--shop .ask__act {
  margin-top: 28px;
}

.cred[hidden] { display: none !important; }
.cred {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--e-out), visibility 0.45s;
}
.cred.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cred__veil {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 35, 0.54);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cred__card {
  position: relative;
  width: min(420px, 100%);
  margin: 12px auto;
  overflow: visible;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 24px 22px;
  transform: translate3d(0, 28px, 0) scale(0.97);
  opacity: 0;
  transition: transform 0.58s var(--e-out), opacity 0.4s var(--e-out);
}
.cred.is-on .cred__card {
  transform: none;
  opacity: 1;
}
.cred__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--e-out) 0.06s;
}
.cred.is-on .cred__card::before { transform: scaleX(1); }
.cred.is-on .cred__keys {
  animation: credRise 0.5s var(--e-out) 0.12s both;
}
.cred.is-on .cred__facts > div {
  animation: credRise 0.48s var(--e-out) both;
}
.cred.is-on .cred__facts > div:nth-child(1) { animation-delay: 0.16s; }
.cred.is-on .cred__facts > div:nth-child(2) { animation-delay: 0.22s; }
.cred.is-on .cred__facts > div:nth-child(3) { animation-delay: 0.28s; }
.cred.is-on .cred__facts > div:nth-child(4) { animation-delay: 0.34s; }
.cred.is-on .cred__facts > div:nth-child(5) { animation-delay: 0.4s; }
@keyframes credRise {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: none; }
}
.cred__facts {
  margin: 16px 0;
  display: grid;
  gap: 10px;
}
.cred__facts div {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.cred__facts dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.cred__facts dd {
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.cred__keys {
  margin: 16px 0 8px;
  padding: 14px 16px;
  background: var(--blue-mist);
  border: 1px solid #D7E4FF;
}
.cred__keys[hidden] { display: none !important; }
.cred__keys p {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.cred__keys div + div { margin-top: 12px; }
.cred__keys dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.cred__keys dd {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
  user-select: all;
}

@media (max-width: 520px) {
  .ask { padding: 16px; }
  .ask__card { padding: 28px 22px 22px; }
  .ask__act { grid-template-columns: 1fr; }
  .ask__facts div { grid-template-columns: 1fr; gap: 2px; }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.18); }
}

@media (max-width: 720px) {
  .ord-pops { left: 16px; right: 16px; width: auto; }
  .note-bell__panel {
    position: fixed;
    top: var(--nav-h);
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100vh - var(--nav-h) - 16px);
  }
}

/* ==========================================================================
   Public storefront — mobile
   Most visitors are on a phone. These rules override the desktop layout.
   ========================================================================== */

@media (hover: none) {
  .card:hover { background: var(--paper); }
  .card:hover .card__media img { transform: none; }
  .card:hover .card__media img + img { opacity: 0; }
  .index__row:hover { padding-left: 0; }
  .index__row:hover .index__go {
    background: none;
    border-color: var(--line);
    color: inherit;
    transform: none;
  }
  .mega__item:hover { padding-left: 0; }
  .footer__col a:hover { transform: none; }
}

@media (max-width: 1024px) {
  :root {
    --tabbar-h: calc(62px + env(safe-area-inset-bottom, 0px));
  }

  html, body { overflow-x: hidden; }
  body.has-tabbar { padding-bottom: var(--tabbar-h); }
  a, button { -webkit-tap-highlight-color: rgba(22, 104, 255, 0.12); touch-action: manipulation; }

  .nav {
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  }
  .nav.is-solid {
    height: calc(66px + env(safe-area-inset-top, 0px));
  }
  .mnav__head {
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  }

  body:not(.is-admin) .tool--desk { display: none; }

  .hero__reel--desk { display: none; }
  .hero__reel--phone { display: block; }

  .hero {
    min-height: calc(100svh - var(--tabbar-h));
  }
  .hero__content {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 16px);
    padding-bottom: 56px;
  }
  .hero__scroll {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .pagehead {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 28px);
  }
  .pagehead__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pdp {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 12px);
    padding-bottom: 24px;
  }
  .confirm {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 36px);
    padding-bottom: 80px;
  }

  .buybar {
    bottom: var(--tabbar-h);
    padding: 10px var(--gutter) 10px;
    z-index: 96;
  }
  .sheet__foot {
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .mnav__body {
    padding-bottom: calc(40px + var(--tabbar-h));
  }

  .about-film {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "copy";
  }
  .about-film--left {
    grid-template-areas: "media" "copy";
    grid-template-columns: 1fr;
  }
  .about-film__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .about-film__media img {
    object-position: 50% 18%;
  }
  .about-film__media::after,
  .about-film--left .about-film__media::after {
    display: none;
  }
  .about-film__copy {
    padding: 32px var(--gutter) 48px;
  }

  .campaign {
    min-height: 0;
  }
  .campaign__inner {
    padding: 56px 0 64px;
    align-items: center;
    text-align: center;
  }
  .campaign__title {
    margin-inline: auto;
  }
  .campaign__cta {
    flex-direction: column;
    align-items: center;
    width: auto;
  }
  .campaign__cta .btn,
  .campaign__inner .btn {
    width: auto;
    min-width: min(100%, 260px);
  }

  .packs__card { min-height: 0; }
  .packs__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .packs__foot .btn { width: 100%; }

  .toolbar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .toolbar__tools {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .facet-btn { flex: 1; width: auto; }
  .sortsel { min-width: 0; flex: 1; }
  .sortsel__now {
    width: 100%;
    height: 44px;
    justify-content: space-between;
  }
  .sortsel.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 139;
    background: rgba(6, 18, 35, 0.45);
  }
  .sortsel__menu {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    z-index: 141;
    padding: 10px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -16px 40px rgba(6, 18, 35, 0.16);
  }
  .sortsel__opt { min-height: 52px; font-size: 16px; }
  .facet label {
    min-height: 44px;
    padding: 10px 0;
  }

  .input, select.input, textarea.input {
    font-size: 16px;
  }
  .qty input { font-size: 16px; }

  .finder__bar {
    height: 72px;
    padding-top: env(safe-area-inset-top, 0px);
  }
  .finder__bar input { font-size: 18px; }

  .peek {
    width: calc(100% - 16px);
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 8px;
    transform: translate3d(0, 24px, 0);
    max-height: calc(100svh - 16px);
  }
  .peek.is-on { transform: none; }

  .footer__contact a { overflow-wrap: anywhere; }
  .news input { font-size: 16px; }

  body:has(#buybar.is-up) .fdock {
    bottom: calc(var(--tabbar-h) + 118px);
  }
  body:has(#buybar.is-up) .toasts {
    bottom: calc(var(--tabbar-h) + 128px);
  }
}

@media (max-width: 720px) {
  :root { --gutter: 16px; --nav-h: 60px; }

  .h1 { font-size: clamp(28px, 8.4vw, 40px); letter-spacing: -0.04em; }
  .h2 { font-size: clamp(24px, 7vw, 34px); letter-spacing: -0.035em; }
  .display { font-size: clamp(32px, 10vw, 48px); }
  .lead { font-size: 15.5px; }

  .section { padding: 56px 0; }
  .section--tight { padding: 44px 0; }

  .btn {
    white-space: normal;
    height: auto;
    min-height: 50px;
    padding: 12px 18px;
    line-height: 1.25;
    text-align: center;
  }
  .btn--sm { min-height: 44px; padding: 10px 16px; }

  .hero__title { font-size: clamp(32px, 10.5vw, 44px); letter-spacing: -0.04em; line-height: 1.08; }
  .hero__sub { font-size: 15px; margin-top: 16px; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 24px;
    gap: 10px;
  }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }

  .grid-cards { grid-template-columns: 1fr; }
  .card { padding: 16px 16px 18px; }
  .card__media { margin-bottom: 14px; }
  .card__cat { display: none; }
  .card__name {
    font-size: 16px;
    margin: 8px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card__foot {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
  }
  .price { font-size: 16px; }
  .card__add {
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 13px;
  }
  .rail { grid-auto-columns: min(82%, 340px); }

  .buybar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .buybar .btn { width: 100%; flex: none; }

  .pdp__buy { flex-direction: column; }
  .pdp__buy .qty { width: 100%; justify-content: space-between; }
  .pdp__buy .btn { width: 100%; }
  .pdp__title { font-size: clamp(26px, 8vw, 34px); }
  .pdp__stage { max-width: none; max-height: none; }

  .drawer {
    width: 100%;
  }
  .drawer__head, .drawer__body, .drawer__foot {
    padding-left: 18px;
    padding-right: 18px;
  }
  .mini {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .mini--pack { grid-template-columns: minmax(0, 1fr); }
  .mini .price { grid-column: 2; }
  .mini--pack .price { grid-column: 1; }

  .line-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }
  .line-item--pack { grid-template-columns: minmax(0, 1fr); }
  .line-item .price { grid-column: 2; }
  .line-item--pack .price { grid-column: 1; }

  .recap { padding: 20px 16px; }
  .payopt { padding: 16px; }

  .campaign__title { font-size: clamp(28px, 8.4vw, 38px); max-width: 14ch; margin-inline: auto; letter-spacing: -0.04em; }

  .index__name { font-size: 16px; }
  .index__row { gap: 10px; padding: 16px 0; }
  .acc__head { min-height: 56px; padding: 16px 0; }
  .nextgen__cell { min-height: 0; padding: 24px 20px; }

  .footer__grid { padding: 48px 0 32px; }
  .footer__base { padding-bottom: 24px; }

  .pagehead {
    padding-bottom: 28px;
  }
  .pagehead .h1,
  .pagehead .display {
    font-size: clamp(32px, 9vw, 42px);
  }
  .pagehead--film {
    min-height: 0;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 36px);
    padding-bottom: 36px;
  }

  .why__title { font-size: clamp(26px, 8vw, 36px); }
  .why__media {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    aspect-ratio: 4 / 5;
    max-height: 70svh;
  }
  .why__media img { object-position: 50% 12%; }
  .apply__form { padding: 22px 18px; }
  .apply__form .btn { width: 100%; }

  .account-order { padding: 16px; gap: 10px; }

  .track-form,
  .track-card { padding: 22px 18px; }
  .track-form__row { grid-template-columns: 1fr; }
  .track-form .btn { width: 100%; }
  .track-card__head { flex-direction: column; align-items: flex-start; }
  .track-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .track-steps li {
    flex-direction: row;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
  }
  .track-steps li:not(:last-child)::after {
    top: 30px;
    left: 6px;
    right: auto;
    width: 1px;
    height: calc(100% - 16px);
  }
  .track-split { grid-template-columns: 1fr; gap: 28px; }
  .track-facts > div { grid-template-columns: 1fr; gap: 2px; }
  .track-inc,
  .track-items__var { margin-left: 0; }
  .track-card__act { flex-direction: column; }
  .track-card__act .btn { width: 100%; }

  .tabbar {
    padding-top: 4px;
  }
}

@media (max-width: 430px) {
  .logo--lockup img { height: 28px; }
  .hero__title { font-size: clamp(30px, 11vw, 38px); }
}

/* ------------------------------------------------ about.php — phone composition */

@media (max-width: 720px) {
  .pg-about .hero.hero--about {
    min-height: 72svh;
    max-height: none;
    justify-content: flex-end;
    text-align: left;
  }
  .pg-about .hero--about .crumbs,
  .pg-about .hero--about .label {
    display: none;
  }
  .pg-about .hero--about .hero__content {
    align-items: flex-start;
    width: calc(100% - (var(--gutter) * 2));
    padding: 0 0 36px;
  }
  .pg-about .hero--about .hero__title {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    max-width: 11ch;
  }
  .pg-about .hero--about .hero__sub {
    max-width: 34ch;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
  }
  .pg-about .hero--about .hero__cta {
    width: 100%;
    margin-top: 22px;
    gap: 6px;
  }
  .pg-about .hero--about .hero__cta .btn--light {
    width: 100%;
  }
  .pg-about .hero--about .hero__cta-alt {
    width: auto;
    min-height: 44px;
    height: auto;
    padding: 8px 2px;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
    justify-content: flex-start;
  }
  .pg-about .hero--about .hero__cta-alt:hover {
    color: #fff;
    background: none;
    transform: none;
  }
  .pg-about .hero--about .hero__scrim {
    background:
      linear-gradient(180deg, rgba(6, 18, 35, 0.28) 0%, rgba(6, 18, 35, 0.12) 38%, rgba(6, 18, 35, 0.55) 72%, rgba(6, 18, 35, 0.88) 100%);
  }

  .pg-about .marquee { padding: 14px 0; }
  .pg-about .marquee__item { font-size: 13px; }

  .pg-about .about-film {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "media" "copy";
  }
  .pg-about .about-film--left {
    grid-template-areas: "media" "copy";
    grid-template-columns: 1fr;
  }
  .pg-about .about-film__media {
    aspect-ratio: 4 / 5;
    max-height: 62svh;
  }
  .pg-about .about-film__media img {
    object-position: 50% 18%;
  }
  .pg-about .about-film__media::after,
  .pg-about .about-film--left .about-film__media::after {
    display: none;
  }
  .pg-about .about-film__copy {
    padding: 28px var(--gutter) 44px;
  }
  .pg-about .about-film__copy .h2 {
    margin-top: 10px;
    font-size: clamp(26px, 8vw, 32px);
    max-width: 16ch;
    line-height: 1.12;
  }
  .pg-about .about-film__text {
    gap: 14px;
    margin: 20px 0 24px;
    font-size: 15px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.7);
  }
  .pg-about .about-film__text p:first-child {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
  }

  .pg-about .about-vow {
    padding: 40px 0 8px;
  }
  .pg-about .about-vow__head {
    margin-bottom: 8px;
  }
  .pg-about .about-vow .h2 {
    font-size: clamp(26px, 8vw, 32px);
    max-width: 14ch;
  }
  .pg-about .about-vow__grid {
    grid-template-columns: 1fr;
    gap: 0;
    perspective: none;
  }
  .pg-about .about-vow__item,
  .pg-about .about-vow__face {
    transform: none !important;
    box-shadow: none !important;
  }
  .pg-about .about-vow__face {
    min-height: 0;
    padding: 26px 0;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 14px;
    overflow: visible;
  }
  .pg-about .about-vow__item:last-child .about-vow__face {
    border-bottom: 1px solid var(--line);
  }
  .pg-about .about-vow__glow,
  .pg-about .about-vow__face::before,
  .pg-about .about-vow__face::after {
    display: none;
  }
  .pg-about .about-vow__item em {
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 2px;
    font-size: 22px;
    line-height: 1;
    opacity: 1;
    transform: none !important;
    color: var(--blue);
  }
  .pg-about .about-vow__item b {
    grid-column: 2;
    margin-top: 0;
    font-size: 17px;
    letter-spacing: -0.03em;
  }
  .pg-about .about-vow__item p {
    grid-column: 2;
    max-width: none;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-55);
  }

  .pg-about .section--paper {
    padding-top: 40px;
    padding-bottom: 28px;
  }
  .pg-about .sec-head {
    padding-bottom: 20px;
  }

  .pg-about .campaign {
    min-height: 0;
  }
  .pg-about .campaign__inner {
    padding: 52px 0 56px;
    text-align: center;
    align-items: center;
    gap: 16px;
  }
  .pg-about .campaign__title {
    font-size: clamp(28px, 8.6vw, 36px);
    max-width: 14ch;
    margin-inline: auto;
    line-height: 1.1;
  }
  .pg-about .campaign__inner .lead {
    font-size: 15px;
    max-width: 34ch !important;
    margin-inline: auto;
  }
  .pg-about .campaign__cta {
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }
  .pg-about .campaign__cta .btn--ghost-light {
    width: auto;
    min-height: 44px;
    border: 0;
    padding: 8px 2px;
    background: none;
  }
}

@media (max-width: 720px) {
  .pg-apply .pagehead__row .lead {
    margin-top: 10px;
    max-width: 36ch;
  }
  .pg-apply .apply {
    gap: 40px;
  }
  .pg-apply .apply__form {
    padding: 24px 18px 28px;
  }
  .pg-apply .apply__form .btn {
    width: 100%;
  }
  .pg-apply .apply__points li {
    padding: 16px 0;
  }
}
