:root {
  --font-sans:
    "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: sans-serif;
  --fw-base: 400;

  --fs-1: 64px;
  --fs-2: 48px;
  --fs-3: 24px;
  --fs-4: 16px;
  --fs-5: 14px;

  --lh-1: 59px;
  --lh-2: 46px;
  --lh-3: 28px;
  --lh-4: 22px;
  --lh-5: 20px;

  --ls-1: -2.08px;
  --ls-2: -1.5px;
  --ls-3: -0.5px;
  --ls-4: -0.32px;
  --ls-5: -0.28px;

  --color-bg: #ffffff;
  --color-surface: #f5f5f5;
  --color-ink: #0a0a0a;
  --color-ink-muted: #6b6b6b;
  --color-line: #e5e5e5;
  --color-accent: #0a0a0a;
  --color-accent-ink: #ffffff;

  --color-brand: #123fb8;
  --color-brand-ink: #ffffff;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  --r-0: 0px;
  --r-1: 4px;
  --r-2: 8px;
  --r-3: 12px;
  --r-4: 16px;
  --r-full: 9999px;

  --container: 1200px;
  --gutter: var(--sp-5);
  --gutter-x: clamp(
    20px,
    4vw,
    56px
  );
  --section-y: clamp(45px, 8vw, 80px);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 200ms;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

section[id] {
  scroll-margin-top: 84px;
}

body {
  font-family: var(--font-sans);
  font-weight: var(--fw-base);
  font-size: var(--fs-4);
  line-height: var(--lh-4);
  letter-spacing: var(--ls-4);
  color: var(--color-ink);
  background: var(--color-bg);
}

h1 {
  font-size: var(--fs-1);
  line-height: var(--lh-1);
  letter-spacing: var(--ls-1);
}
h2 {
  font-size: var(--fs-2);
  line-height: var(--lh-2);
  letter-spacing: var(--ls-2);
}
h3 {
  font-size: var(--fs-3);
  line-height: var(--lh-3);
  letter-spacing: var(--ls-3);
}
p {
  font-size: var(--fs-4);
  line-height: var(--lh-4);
  letter-spacing: var(--ls-4);
}
small {
  font-size: var(--fs-5);
  line-height: var(--lh-5);
  letter-spacing: var(--ls-5);
}

h1,
h2,
h3 {
  font-weight: var(--fw-base);
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

.svc__eyebrow,
.case__eyebrow,
.why__eyebrow,
.frank__eyebrow,
.feat__eyebrow,
.mkq__eyebrow,
.proc__eyebrow,
.faq__eyebrow {
  display: flex;
  align-items: center;
  letter-spacing: 0;
  position: relative;
}
.svc__eyebrow i,
.case__eyebrow i,
.why__eyebrow i,
.frank__eyebrow i,
.feat__eyebrow i,
.mkq__eyebrow i,
.proc__eyebrow i,
.faq__eyebrow i {
  flex: none;

  line-height: 1;

}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font: inherit;
  font-size: var(--fs-4);
  letter-spacing: var(--ls-4);
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid transparent;
  border-radius: var(--r-full);
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

/* The label swap every CTA shares. Two stacked copies in a clipped box; the
   old one lifts out the top as the new one rises into place. btn.js splits
   each line into characters and numbers them, so the lift travels left to
   right like a wave running down a thread rather than the whole word moving
   at once. Without the script the labels still swap — just all together. */
.btn-roll {
  display: inline-grid;
  overflow: hidden;
  line-height: 1.2;
  text-align: center;
}
.btn-roll > span {
  grid-area: 1 / 1;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-roll > span + span {
  transform: translateY(112%);
}
:hover > .btn-roll > span,
:focus-visible > .btn-roll > span {
  transform: translateY(-112%);
}
:hover > .btn-roll > span + span,
:focus-visible > .btn-roll > span + span {
  transform: translateY(0);
}

/* once split, the characters carry the motion and the line itself sits still */
.btn-roll.is-split > span {
  transform: none !important;
  white-space: pre;
}
.btn-roll .ch {
  display: inline-block;
  white-space: pre;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i) * 19ms);
}
.btn-roll > span + span .ch {
  transform: translateY(112%);
}
:hover > .btn-roll > span .ch,
:focus-visible > .btn-roll > span .ch {
  transform: translateY(-112%);
}
:hover > .btn-roll > span + span .ch,
:focus-visible > .btn-roll > span + span .ch {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn-roll > span,
  .btn-roll .ch {
    transition: none;
  }
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-accent-ink);
}
.btn--secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line);
}
.btn--ghost {
  background: transparent;
  color: var(--color-ink);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--light {
  background: #fff;
  color: var(--color-brand);
  border-radius: var(--r-1);
  padding: var(--sp-4) var(--sp-5);
  min-width: 300px;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.btn--light:hover {
  transform: translateY(-1px);

}

.hero {
  --core: var(--color-brand);
  --core-lit: #2f6fe8;
  --deep: #0a1f6b;
  --rim: #bcd6f7;
  --sky: #6ea8ff;
  --void: #000;

  position: relative;
  min-height: 100svh;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 4vw, 56px) clamp(28px, 3vw, 44px);
  background: var(--void);
  color: var(--color-brand-ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero__blob.b1 {
  left: -14%;
  top: -18%;
  width: 70%;
  height: 70%;
  background: radial-gradient(closest-side, var(--deep) 0%, rgba(10, 31, 107, 0.55) 55%, transparent 100%);
}
.hero__blob.b2 {
  left: -24%;
  top: 26%;
  width: 110%;
  height: 96%;
  background: radial-gradient(closest-side, var(--core) 0%, rgba(18, 63, 184, 0.72) 52%, transparent 100%);
}
.hero__blob.b3 {
  left: -6%;
  top: 52%;
  width: 62%;
  height: 58%;
  background: radial-gradient(closest-side, var(--core-lit) 0%, rgba(47, 111, 232, 0.5) 55%, transparent 100%);
  filter: blur(110px);
}
.hero__blob.b4 {
  left: -10%;
  top: 24%;
  width: 46%;
  height: 34%;
  background: radial-gradient(closest-side, rgba(188, 214, 247, 0.9) 0%, rgba(150, 190, 240, 0.4) 45%, transparent 100%);
  filter: blur(80px);
}
.hero__blob.b5 {
  left: 34%;
  top: 18%;
  width: 52%;
  height: 44%;
  background: radial-gradient(closest-side, rgba(110, 168, 255, 0.55) 0%, rgba(30, 80, 200, 0.3) 50%, transparent 100%);
  filter: blur(120px);
}
.hero__blob.b6 {
  right: -24%;
  top: -34%;
  width: 60%;
  height: 58%;
  background: radial-gradient(closest-side, rgba(26, 79, 208, 0.7) 0%, rgba(14, 45, 140, 0.3) 55%, transparent 100%);
  filter: blur(100px);
}
.hero__blob.b7 {
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(to left, #000 0%, #000 16%, rgba(0, 0, 0, 0.88) 34%, rgba(0, 0, 0, 0.5) 62%, transparent 100%);
  filter: none;
}
.hero__cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000 0%, #000 6%, rgba(0, 0, 0, 0.7) 15%, rgba(0, 0, 0, 0.28) 27%, transparent 44%);
}
.hero__vig {
  position: absolute;
  inset: 0;
  background: radial-gradient(115% 85% at 40% 60%, transparent 34%, rgba(0, 0, 0, 0.4) 72%, rgba(0, 0, 0, 0.75) 100%);
}
.hero__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); */
  background-image: url("/assets/Frame.svg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
  mix-blend-mode: overlay;
}
.hero__grain--fine {
  background-size: 120px 120px;
  opacity: 0.28;
  mix-blend-mode: soft-light;
}

@keyframes hero-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(3%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes hero-drift2 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-4%, 3%, 0) scale(1.06); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
.hero__blob.b2 { animation: hero-drift 42s ease-in-out infinite; }
.hero__blob.b3 { animation: hero-drift2 38s ease-in-out infinite; }
.hero__blob.b5 { animation: hero-drift 50s ease-in-out infinite; }
.hero__blob.b6 { animation: hero-drift2 46s ease-in-out infinite; }
.hero__blob.b2,
.hero__blob.b3,
.hero__blob.b5,
.hero__blob.b6 {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero__blob {
    animation: none !important;
  }
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: clamp(16px, 2vw, 22px) var(--gutter-x);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    padding var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  padding-block: 12px;
  background: var(--color-brand);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.nav__drawer {
  display: contents;
}

.nav__end {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__logo {
  transform-origin: left center;
  transform: scale(2);
  transition: transform 0.45s var(--ease);
}
.nav.is-stuck .nav__logo {
  transform: scale(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;

  height: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
  border-radius: var(--r-full);
  font-size: var(--fs-5);
  line-height: 1;
  background: #fff;
  color: var(--color-brand);
  white-space: nowrap;
  transition:
    padding 0.45s var(--ease),
    gap 0.45s var(--ease);
}
.nav__cta i {
  font-size: 18px;
  line-height: 1;
}

.nav__cta-txt {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-width 0.45s var(--ease),
    opacity 0.3s var(--ease);
}
/* collapsed to a disc until you reach for it, then it states itself */
.nav__cta:hover,
.nav__cta:focus-visible {
  gap: 7px;
  aspect-ratio: auto;
  padding: 0 18px;
}
.nav__cta:hover .nav__cta-txt,
.nav__cta:focus-visible .nav__cta-txt {
  max-width: 120px;
  opacity: 1;
}

.nav.is-stuck .nav__cta {
  gap: 7px;
  height: 38px;
  aspect-ratio: auto;
  padding: 0 16px;
}
.nav.is-stuck .nav__cta-txt {
  max-width: 120px;
  opacity: 1;
}
.nav.is-stuck .nav__cta i {
  font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
  .nav__logo,
  .nav__cta,
  .nav__cta-txt {
    transition: none;
  }
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: var(--r-full);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.nav__burger .ic-close,
.nav.is-open .nav__burger .ic-open {
  display: none;
}
.nav.is-open .nav__burger .ic-close {
  display: block;
}
.nav__logo {
  font-size: var(--fs-3);
  color: #fff;
  letter-spacing: -0.5px;
}
.nav__menu {
  position: relative;
  display: flex;
  gap: 2px;
  padding: 4px;

  border-radius: var(--r-full);
}

.nav__pill {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: var(--r-full);
  background: #fff;
  opacity: 0;
  pointer-events: none;
  will-change: transform, width;
}
.nav__item {
  position: relative;
  z-index: 1;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: var(--fs-5);
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--dur) var(--ease);
}
.nav__item:not(.is-active):hover {
  color: #fff;
}
.nav__item.is-active {
  color: var(--color-brand);
}

.hero__graphic {
  position: absolute;
  top: 44%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: min(78vh, 760px);
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
}
.hero__graphic svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  max-width: 780px;
}
.hero__title {
  font-size: clamp(
    36px,
    5vw,
    64px
  );
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero__sub {
  margin-top: var(--sp-5);
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.hero__cta {
  margin-top: var(--sp-6);
}

@media (max-width: 768px) {
  .nav__burger {
    display: grid;
  }

  .nav__drawer {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .nav.is-open .nav__drawer {
    pointer-events: auto;
  }

  .nav__pill {
    display: none;
  }
  .nav__item.is-active {
    background: #fff;
  }
  .nav__menu {
    flex-direction: column;
    gap: 2px;
    padding: 10px var(--gutter-x) 18px;
    background: var(--color-brand);
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transform: translateY(-100%);
    transition: transform 0.42s var(--ease);
  }
  .nav.is-open .nav__menu {
    transform: none;
  }
  .nav__item {
    padding: 12px 16px;
  }

  .nav__cta {
    font-size: 13px;
  }
  .nav.is-stuck .nav__cta {
    height: 36px;
    padding: 0 14px;
  }
  .nav__logo {
    font-size: 20px;
    transform: scale(1.5);
  }
  .nav__end {
    gap: 8px;
  }
  .hero__graphic {
    top: 32%;
    left: 50%;
    width: min(92vw, 520px);
    opacity: 0.5;
  }
  .btn--light {
    min-width: 0;
    width: 100%;
  }
}

.svc {
  background: #000;
  color: #fff;
  padding-block: var(--section-y);
}
.svc__intro {
  padding-inline: var(--gutter-x);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.svc__eyebrow {
  display: block;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.svc__heading {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.svc__lead {
  margin-top: clamp(14px, 1.6vw, 20px);
  max-width: 58ch;
  font-size: var(--fs-5);
  line-height: 1.65;
  color: #8a8a8a;
}
.svc__lead em {
  font-style: normal;
  color: #fff;
}
/* Two doors sharing one hairline, edge to edge. No cards — a card implies a
   thing you can have, and these are alternatives you choose between. */
.svc__fork {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid #1d1d1d;
}
.svc__door {
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.6vw, 56px) var(--gutter-x);
  color: inherit;
  transition: background var(--dur) var(--ease);
}
.svc__door + .svc__door {
  border-left: 1px solid #1d1d1d;
}
.svc__door:hover {
  background: #0a0a0a;
}
.svc__label {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8a;
}
/* the visitor's sentence, not ours — so it gets the display size */
.svc__symptom {
  margin-top: clamp(16px, 1.8vw, 24px);
  max-width: 21ch;
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1.26;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}
.svc__fix {
  margin-top: clamp(18px, 2vw, 26px);
  max-width: 42ch;
  line-height: 1.6;
  color: #a4a4a4;
}
.svc__facts {
  margin-top: clamp(18px, 2vw, 26px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 13px;
  list-style: none;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: #6f6f6f;
}
.svc__facts li + li::before {
  content: "·";
  margin-right: 13px;
  color: #3a3a3a;
}
.svc__go {
  margin-top: auto;
  padding-top: clamp(28px, 3.4vw, 46px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-5);
  color: #fff;
}
.svc__go i {
  font-size: 16px;
  transition: transform var(--dur) var(--ease);
}
.svc__door:hover .svc__go i {
  transform: translateX(4px);
}
.svc__after {
  padding: clamp(20px, 2.4vw, 30px) var(--gutter-x) 0;
  max-width: 78ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: #6f6f6f;
}

@media (max-width: 768px) {
  .svc__fork {
    grid-template-columns: 1fr;
  }
  .svc__door + .svc__door {
    border-left: 0;
    border-top: 1px solid #1d1d1d;
  }
}

.proc {
  background: #fff;
  color: var(--color-ink);
  padding-block: var(--section-y);
  padding-top: 20px;
}
.proc__intro {
  padding-inline: var(--gutter-x);
  margin-bottom: clamp(32px, 4vw, 52px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.proc__eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  text-transform: uppercase;
  color: #8a8a8a;
}
.proc__title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.proc__lead {
  margin-top: var(--sp-5);
  max-width: 46ch;
  color: var(--color-ink-muted);
  line-height: 1.6;
}
.proc__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.proc__span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #f0f0ef;
  border-radius: var(--r-full);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.proc__span i {
  font-size: 15px;
  color: var(--color-brand);
}

.proc__grid {
  list-style: none;
  padding-inline: var(--gutter-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}
.proc__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(230px, 22vw, 300px);
  padding: clamp(22px, 2.2vw, 32px);
  background: #f0f0ef;
  border-radius: var(--r-4);
}
.proc__num {
  position: absolute;
  top: clamp(22px, 2.2vw, 32px);
  left: clamp(22px, 2.2vw, 32px);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: var(--r-2);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 14px;
  color: var(--color-brand);
}
.proc__meta {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11.5px;
  text-transform: uppercase;
  color: #8a8a8a;
}
.proc__name {
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.proc__desc {
  margin-top: var(--sp-3);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-ink-muted);
}

.proc__card--cta {
  background: var(--color-brand);
  color: #fff;
  justify-content: space-between;
}
.proc__card--cta .proc__desc {
  color: rgba(255, 255, 255, 0.82);
}
.proc__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: var(--sp-6);
  padding: 12px 20px;
  border: 0;
  font: inherit;
  cursor: pointer;
  background: #fff;
  color: var(--color-brand);
  border-radius: var(--r-full);
  font-size: var(--fs-5);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.proc__go:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
  .proc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .proc__grid {
    grid-template-columns: 1fr;
  }
  .proc__card {
    min-height: 0;
    padding-top: clamp(
      68px,
      18vw,
      84px
    );
  }
}

.faq {
  background: #fff;
  color: var(--color-ink);
  padding-block: var(--section-y);
}
.faq__wrap {
  padding-inline: var(--gutter-x);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq__eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.faq__title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.faq__help {
  margin-top: var(--sp-5);
  color: var(--color-ink-muted);
}
.faq__help a {
  color: var(--color-brand);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.faq__item {
  border-radius: var(--r-4);
  padding-inline: clamp(16px, 2vw, 24px);
  transition: background var(--dur) var(--ease);
}
.faq__item[open] {
  background: #f4f4f5;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: clamp(16px, 2vw, 22px);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__q {
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: -0.01em;
}

.faq__icon {
  flex: none;
  line-height: 0;
}
.faq__icon i {
  font-size: 22px;
  color: var(--color-ink);
}
.faq__item .ic-minus {
  display: none;
}
.faq__item[open] .ic-plus {
  display: none;
}
.faq__item[open] .ic-minus {
  display: inline;
}

.faq__answer {
  overflow: hidden;
}

.faq__answer b {
  color: var(--color-ink);
}
.faq__answer p {
  padding-bottom: clamp(16px, 2vw, 22px);
  padding-right: clamp(24px, 4vw, 48px);
  max-width: 62ch;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .faq__wrap {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 40px);
  }
}

.mkq {
  background: #000;
  color: #fff;
  padding-block: var(--section-y);
  overflow: hidden;
}
.mkq__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-inline: var(--gutter-x);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.mkq__eyebrow {
  display: block;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.mkq__title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.mkq__cta {
  flex: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-full);
  padding: 12px 22px;
  font-size: var(--fs-5);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.mkq__cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.mkq__rows {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 10px);
}
.mkq__row {
  overflow: hidden;
}
.mkq__track {
  display: flex;
  gap: clamp(8px, 2vw, 10px);
  width: max-content;
  cursor: grab;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
}
.mkq__track:active {
  cursor: grabbing;
}

.mkq__card {
  height: clamp(200px, 24vw, 300px);
  flex: none;
  border-radius: var(--r-4);
  overflow: hidden;
  background: #111;
}
.mkq__card--desktop {
  aspect-ratio: 16 / 10;
}
.mkq__card--mobile {
  aspect-ratio: 10 / 19;
}
.mkq__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.mkq__media {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.mkq__label {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.feat {
  background: #fff;
  color: var(--color-ink);
  padding-block: var(--section-y);
  --sgap: clamp(8px, 2vw, 10px);

}
.feat__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-inline: var(--gutter-x);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.feat__eyebrow {
  display: block;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.feat__heading {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.feat__nav {
  display: flex;
  gap: 8px;
}
.feat__arrow {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--color-brand);
  border: 1px solid var(--color-line);
  border-radius: var(--r-2);
  cursor: pointer;
  font-size: 20px;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}
.feat__arrow:hover:not(:disabled) {
  background: var(--color-surface);
  border-color: #cfcfcf;
}
.feat__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.feat__viewport {
  overflow: hidden;
  padding-inline: var(--gutter-x);
}
.feat__container {
  display: flex;
  gap: var(--sgap);
  align-items: stretch;
}
.feat__slide {
  flex: 0 0 auto;
  width: calc((100% - 0.2 * var(--sgap)) / 1.2);
  display: flex;
}
@media (min-width: 1921px) {
  .feat__slide {
    width: calc((100% - 1.2 * var(--sgap)) / 2.2);
  }
}

.feat__card {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(20px, 2vw, 32px);
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--r-4);
  padding: clamp(24px, 2.4vw, 40px);
  overflow: hidden;
}

.feat__card > * {
  min-width: 0;
}
.feat__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.feat__tag {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-4);
}
.feat__title {
  font-size: clamp(22px, 2.2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.feat__desc {
  margin-top: var(--sp-3);
  max-width: 42ch;
  font-size: var(--fs-5);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.feat__foot {
  margin-top: auto;
  padding-top: clamp(24px, 3vw, 36px);
}
.feat__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.feat__metric {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(14px, 1.4vw, 20px);
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--r-3);
}
.feat__metric-v {
  display: block;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.feat__metric-l {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.7);
}
.feat__source {
  margin-top: clamp(10px, 1.2vw, 14px);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.feat__source:hover {
  color: rgba(255, 255, 255, 0.72);
}
.feat__source i {
  flex: none;
  font-size: 12px;
  line-height: 1.15;
}
.feat__source-txt {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feat__source.is-open {
  color: rgba(255, 255, 255, 0.72);
}
.feat__source.is-open .feat__source-txt {
  white-space: normal;
}

.feat__media {
  align-self: start;
  background: #f4f4ef;
  border-radius: var(--r-3);
  height: clamp(240px, 26vw, 340px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.feat__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feat__media-lbl {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #a3a399;
}

.feat__media--mock {
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-top: 16px;
  aspect-ratio: 20 / 22;
  height: auto;
  background: transparent;
  overflow: visible;
}
.mstack {
  position: relative;
  width: 100%;
  height: 100%;
  container-type: inline-size;
}
.mlayer {
  position: absolute;
  inset: 0;
  width: 100%;

  font-size: max(8px, 3.4cqw);

  line-height: 1.25;
  letter-spacing: normal;
  --mockpad: 1.33em;
  --mockradius: 1.33em;
}

.mlayer {
  border-radius: var(--mockradius);
}
.mlayer > * {
  width: 100%;
  height: 100%;
}
.mlayer * {
  white-space: nowrap;
}

.bmock {
  position: relative;
  height: 100%;
}
.bmock__panel {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--mockradius);
  padding: var(--mockpad);
  box-shadow: 0 2em 5em rgba(6, 20, 70, 0.28);
}
.bmock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.67em;
}
.bmock__eyebrow {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.83em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.bmock__save {
  font-size: 0.83em;
  letter-spacing: 0.02em;
  color: #0a7a3f;
  background: #e7f6ee;
  border-radius: var(--r-full);
  padding: 0.25em 0.67em;
}
.bmock__title {
  margin: 0.5em 0 0.83em;
  font-size: 1.25em;
  letter-spacing: -0.01em;
}

.bmock__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.bmock__row {
  display: flex;
  align-items: center;
  gap: 0.83em;
}
.bmock__thumb {
  width: 2.5em;
  height: 2.5em;
  border-radius: 0.67em;
  flex: none;
}
.bmock__thumb--a {
  background: linear-gradient(135deg, #c9d6ff, #8fa8ff);
}
.bmock__thumb--b {
  background: linear-gradient(135deg, #c7efd8, #8fe0ad);
}
.bmock__thumb--c {
  background: linear-gradient(135deg, #ffe6bf, #ffcf8a);
}
.bmock__thumb--d {
  background: linear-gradient(135deg, #f6d5f0, #e3a6da);
}
.bmock__info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: auto;
}
.bmock__name {
  font-size: 1.04em;
}
.bmock__var {
  font-size: 0.87em;
  color: #9a9a9a;
}
.bmock__price {
  font-size: 1.04em;
}
.bmock__check {
  flex: none;
  width: 1.5em;
  height: 1.5em;
  border-radius: var(--r-full);
  background: var(--color-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1em;
}

.bmock__foot {
  margin-top: 0.33em;
}
.bmock__divider {
  height: 1px;
  background: var(--color-line);
  margin: 1em 0;
}
.bmock__total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.67em;
}
.bmock__total-lbl {
  display: block;
  font-size: 1.04em;
}
.bmock__total-sub {
  display: block;
  font-size: 0.87em;
  color: #9a9a9a;
}
.bmock__total-r {
  display: flex;
  align-items: baseline;
  gap: 0.67em;
}
.bmock__old {
  font-size: 1em;
  color: #9a9a9a;
  text-decoration: line-through;
}
.bmock__new {
  font-size: 1.33em;
  letter-spacing: -0.02em;
}
.bmock__btn {
  margin-top: 1em;
  text-align: center;
  background: var(--color-brand);
  color: #fff;
  border-radius: 0.67em;
  padding: 0.75em;
  font-size: 1.04em;
}

.smock {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--mockradius);
  overflow: hidden;
  box-shadow: 0 2em 5em rgba(6, 20, 70, 0.28);
}

.smock__head {
  position: relative;
  z-index: 2;
  flex: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.83em var(--mockpad);
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}
.smock__head > i {
  font-size: 1.25em;
  color: var(--color-ink);
}
.smock__logo {
  justify-self: center;
  font-size: 0.92em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.smock__cart {
  justify-self: end;
  position: relative;
  display: block;
}
.smock__cart i {
  font-size: 1.25em;
  color: var(--color-ink);
  position: relative;
  z-index: 1;
}
.smock__cart-dot {
  position: absolute;
  z-index: 1;
  top: -0.33em;
  right: -0.42em;
  min-width: 1.25em;
  height: 1.25em;
  padding: 0 0.25em;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  background: var(--color-brand);
  color: #fff;
  font-size: 0.67em;
  line-height: 1;
}

.smock__page {
  flex: 1;
  overflow: hidden;
  padding: var(--mockpad) var(--mockpad) 0;
}
.smock__scroll {
  display: flex;
  flex-direction: column;
}

.smock__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0.83em;
  background: linear-gradient(135deg, #dfe7ff, #b9c8f5);
}
.smock__name {
  margin-top: 0.92em;
  font-size: 1.17em;
  letter-spacing: -0.01em;
}
.smock__meta {
  display: flex;
  align-items: center;
  gap: 0.83em;
  margin-top: 0.42em;
}
.smock__price {
  font-size: 1.08em;
}
.smock__rate {
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: 0.83em;
  color: #9a9a9a;
}
.smock__rate i {
  color: #f5a623;
  font-size: 0.92em;
}

.smock__opts {
  display: flex;
  gap: 0.42em;
  margin-top: 0.83em;
}
.smock__opt {
  font-size: 0.83em;
  padding: 0.33em 0.75em;
  border: 1px solid var(--color-line);
  border-radius: var(--r-full);
  color: #7a7a7a;
}
.smock__opt.is-on {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: #f2f6ff;
}

.smock__lines {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 1em;
}
.smock__line {
  height: 0.5em;
  border-radius: var(--r-full);
  background: #edeef2;
}
.smock__sub {
  margin-top: 1.17em;
  font-size: 0.92em;
  color: #7a7a7a;
}

.smock__bar {
  position: relative;
  z-index: 2;
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.83em var(--mockpad);
  background: #fff;
  border-top: 1px solid var(--color-line);
}
.smock__bar-thumb {
  flex: none;
  width: 2.5em;
  height: 2.5em;
  border-radius: 0.5em;
  background: linear-gradient(135deg, #dfe7ff, #b9c8f5);
}
.smock__bar-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-right: auto;
}
.smock__bar-name {
  font-size: 0.96em;
}
.smock__bar-var {
  font-size: 0.79em;
  color: #9a9a9a;
}
.smock__bar-btn {
  flex: none;
  padding: 0.67em 1.17em;
  border-radius: 0.58em;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.96em;
}

@media (prefers-reduced-motion: no-preference) {
  .smock__scroll {
    animation: smock-scroll 11s ease-in-out infinite alternate;
  }
}
@keyframes smock-scroll {
  0%,
  6% {
    transform: translateY(0);
  }
  94%,
  100% {
    transform: translateY(-38%);
  }
}

.nmock {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--mockradius);
  padding: var(--mockpad);
  box-shadow: 0 2em 5em rgba(6, 20, 70, 0.28);
}

.nmock__blocks {
  display: flex;
  flex-direction: column;
  gap: 0.58em;
}
.nmock__blk {
  padding: 0.83em 1em;
  background: #fafafb;
  border: 1px solid #ececf1;
  border-radius: 0.75em;
}

.nmock__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.67em;
}
.nmock__stock {
  display: block;
  font-size: 1.5em;
  letter-spacing: -0.02em;
}
.nmock__stock-sub {
  display: block;
  margin-top: 0.17em;
  font-size: 0.83em;
  color: #9a9a9a;
}
.nmock__pct {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.83em;
  color: #c8811a;
}

.nmock__gauge {
  display: flex;
  gap: 0.25em;
  margin-top: 0.83em;
}
.nseg {
  flex: 1;
  height: 0.67em;
  border-radius: 0.17em;
  background: #ededf1;
}
.nseg.is-on {
  background: #f5a623;
}

.nmock__signals {
  display: flex;
  flex-direction: column;
}
.nmock__sig {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding-block: 0.42em;
  font-size: 0.87em;
  color: #5c5c5c;
}
.nmock__sig + .nmock__sig {
  border-top: 1px solid #ececf1;
}
.nmock__sig i {
  font-size: 1em;
  color: #c8811a;
}
.nmock__pulse {
  flex: none;
  width: 0.58em;
  height: 0.58em;
  border-radius: var(--r-full);
  background: #17a35c;
  box-shadow: 0 0 0 0 rgba(23, 163, 92, 0.45);
}
@media (prefers-reduced-motion: no-preference) {
  .nmock__pulse {
    animation: nmock-pulse 2.2s ease-out infinite;
  }
}
@keyframes nmock-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 163, 92, 0.45);
  }
  70% {
    box-shadow: 0 0 0 0.58em rgba(23, 163, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(23, 163, 92, 0);
  }
}

.nmock__cut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.67em;
  background: #f2f6ff;
  border-color: #dbe4fb;
}
.nmock__cut-t {
  display: block;
  font-size: 0.92em;
  color: #0e2f8f;
}
.nmock__cut-s {
  display: block;
  font-size: 0.79em;
  color: #7a89b5;
}
.nmock__clock {
  flex: none;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 1.17em;
  letter-spacing: 0.02em;
  color: var(--color-brand);
  font-variant-numeric: tabular-nums;
}

.nsale {
  display: flex;
  align-items: center;
  gap: 0.42em;
  padding: 0.42em 0.58em;
  margin-bottom: 0.75em;
  background: #fff8ec;
  border-radius: 0.42em;
  font-size: 0.83em;
  color: #8a5a12;
}
.nsale i {
  font-size: 1em;
}
.nsale__t {
  flex: 1;
}
.nsale__clock {
  flex: none;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-variant-numeric: tabular-nums;
}

.nmock__blk--deal {
  background: #fff8ec;
  border-color: #f2e2c4;
}
.dmock__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.67em;
}
.dmock__title {
  display: block;
  font-size: 1.17em;
  letter-spacing: -0.02em;
}
.dmock__sub {
  display: block;
  margin-top: 0.17em;
  font-size: 0.83em;
  color: #97835f;
}
.dmock__off {
  flex: none;
  font-size: 0.83em;
  color: #fff;
  background: #d4373c;
  border-radius: var(--r-full);
  padding: 0.25em 0.58em;
}
.dmock__timer {
  display: flex;
  gap: 0.42em;
  margin-top: 0.83em;
}
.dmock__unit {
  flex: 1;
  text-align: center;
  padding: 0.5em 0.25em;
  background: #fff;
  border: 1px solid #f2e2c4;
  border-radius: 0.5em;
}
.dmock__num {
  display: block;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 1.5em;
  letter-spacing: 0.01em;
  color: #8a5a12;
  font-variant-numeric: tabular-nums;
}
.dmock__lbl {
  display: block;
  margin-top: 0.25em;
  font-size: 0.67em;
  color: #a8956f;
}

.dmock__item {
  display: flex;
  align-items: center;
  gap: 0.75em;
}
.dmock__thumb {
  flex: none;
  width: 3em;
  height: 3em;
  border-radius: 0.5em;
  background: linear-gradient(135deg, #e6ecff 0%, #c3d1f7 55%, #a9bcf2 100%);
}
.dmock__info {
  flex: 1;
  min-width: 0;
}
.dmock__name {
  display: block;
  font-size: 0.96em;
}
.dmock__variant {
  display: block;
  margin-top: 0.17em;
  font-size: 0.79em;
  color: #9a9a9a;
}
.dmock__prices {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.dmock__new {
  font-size: 1.08em;
  letter-spacing: -0.02em;
}
.dmock__old {
  font-size: 0.79em;
  color: #9a9a9a;
  text-decoration: line-through;
}

.dmock__vars {
  display: flex;
  gap: 0.42em;
  margin-top: 0.75em;
}
.dmock__var {
  flex: 1;
  text-align: center;
  padding: 0.42em 0.25em;
  font-size: 0.79em;
  color: #5c5c5c;
  background: #fff;
  border: 1px solid #e4e4ea;
  border-radius: 0.42em;
}
.dmock__var.is-on {
  color: var(--color-brand);
  border-color: var(--color-brand);
  background: #f2f6ff;
}
.dmock__var.is-out {
  color: #b8b8c0;
  text-decoration: line-through;
  background: none;
}

.dmock__alloc-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.67em;
  font-size: 0.83em;
  color: #5c5c5c;
}
.dmock__alloc-n {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-variant-numeric: tabular-nums;
  color: #8a5a12;
}
.dmock__bar {
  margin-top: 0.5em;
  height: 0.5em;
  border-radius: var(--r-full);
  background: #ededf1;
  overflow: hidden;
}
.dmock__bar-f {
  display: block;
  width: 82.4%;
  height: 100%;
  background: #f5a623;
}

.dmock__btn {
  margin-top: 1.17em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5em;
  padding: 0.83em;
  background: var(--color-brand);
  color: #fff;
  border-radius: 0.67em;
  font-size: 1.04em;
}
.dmock__btn-old {
  font-size: 0.83em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}
.dmock__btn--flush {
  margin-top: 0.75em;
}
.dmock__note {
  margin-top: 0.67em;
  text-align: center;
  font-size: 0.75em;
  color: #9a9a9a;
}
.dmock__perks {
  display: flex;
  justify-content: center;
  gap: 1.17em;
  margin-top: 0.83em;
  padding-top: 0.83em;
  border-top: 1px solid #ececf1;
}
.dmock__perk {
  display: flex;
  align-items: center;
  gap: 0.33em;
  font-size: 0.75em;
  color: #7a7a7a;
}
.dmock__perk i {
  font-size: 1.08em;
  color: #9a9a9a;
}

.rmock__stars {
  display: flex;
  gap: 0.17em;
  color: #f5a623;
  font-size: 0.92em;
}
.rmock__stars--sm {
  font-size: 0.79em;
}

.rmock__sum {
  display: flex;
  align-items: center;
  gap: 1em;
}
.rmock__score {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.rmock__num {
  font-size: 2.5em;
  line-height: 1;
  letter-spacing: -0.03em;
}
.rmock__count {
  font-size: 0.75em;
  color: #9a9a9a;
}

.rmock__dist {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.29em;
}
.rmock__row {
  display: flex;
  align-items: center;
  gap: 0.42em;
  font-size: 0.71em;
  color: #9a9a9a;
}
.rmock__row-s {
  flex: none;
  width: 0.75em;
  text-align: right;
}
.rmock__row-p {
  flex: none;
  width: 2.2em;
  text-align: right;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-variant-numeric: tabular-nums;
}
.rmock__bar {
  flex: 1;
  height: 0.42em;
  border-radius: var(--r-full);
  background: #ededf1;
  overflow: hidden;
}
.rmock__bar-f {
  display: block;
  height: 100%;
  background: #f5a623;
}

.rmock__attrs {
  display: flex;
  gap: 0.83em;
}
.rmock__attr {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.17em;
}
.rmock__attr + .rmock__attr {
  border-left: 1px solid #ececf1;
}
.rmock__attr-v {
  font-size: 1.17em;
  letter-spacing: -0.02em;
}
.rmock__attr-l {
  font-size: 0.71em;
  color: #9a9a9a;
}

.rmock__rev-h {
  display: flex;
  align-items: center;
  gap: 0.58em;
}
.rmock__avatar {
  flex: none;
  width: 1.92em;
  height: 1.92em;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  font-size: 0.87em;
  background: #e9edfa;
  color: #2b4bb0;
}
.rmock__rev-m {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.rmock__who {
  font-size: 0.92em;
}
.rmock__ver {
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: 0.71em;
  color: #9a9a9a;
}
.rmock__ver i {
  color: #17a35c;
  font-size: 1.1em;
}
.rmock__quote {
  display: flex;
  flex-direction: column;
  gap: 0.17em;
  margin-top: 0.58em;
  font-size: 0.83em;
  color: #5c5c5c;
}
.rmock__rec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  margin-top: 0.92em;
  font-size: 0.75em;
  color: #7a7a7a;
}
.rmock__rec i {
  color: #17a35c;
  font-size: 1.08em;
}

.rmock__wall-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.67em;
}
.rmock__wall-t {
  font-size: 0.96em;
}
.rmock__wall-n {
  font-size: 0.75em;
  color: #9a9a9a;
}
.rmock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.42em;
  margin-top: 0.75em;
}
.rmock__tile {
  aspect-ratio: 1;
  border-radius: 0.42em;
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e6ecff 0%, #c3d1f7 55%, #a9bcf2 100%);
}
.rmock__tile:nth-child(2) {
  background: linear-gradient(135deg, #ffeede 0%, #f6d6ae 100%);
}
.rmock__tile:nth-child(4) {
  background: linear-gradient(135deg, #e4f4ea 0%, #bfe3cd 100%);
}
.rmock__tile:nth-child(5) {
  background: linear-gradient(135deg, #ecebf7 0%, #cfcce8 100%);
}
.rmock__tile:nth-child(6) {
  background: #1c2b52;
}
.rmock__more {
  font-size: 0.83em;
  color: #fff;
}

.rmock__strip {
  display: flex;
  gap: 0.83em;
}
.rmock__chip {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.33em;
  font-size: 0.75em;
  color: #7a7a7a;
}
.rmock__chip i {
  color: #9a9a9a;
  font-size: 1.08em;
}

.umock {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--mockradius);
  padding: var(--mockpad);
  box-shadow: 0 2em 5em rgba(6, 20, 70, 0.28);
}
.umock__paid {
  display: flex;
  align-items: center;
  gap: 0.67em;
}
.umock__tick {
  flex: none;
  width: 1.83em;
  height: 1.83em;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  background: #e7f6ee;
  color: #0a7a3f;
  font-size: 1em;
}
.umock__paid-txt {
  display: flex;
  flex-direction: column;
}
.umock__paid-t {
  font-size: 1.04em;
}
.umock__paid-s {
  font-size: 0.79em;
  color: #9a9a9a;
}

.umock__offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.67em;
  margin-top: 0.92em;
  padding: 0.58em 0.83em;
  background: #f2f6ff;
  border-radius: 0.58em;
}
.umock__offer-t {
  font-size: 0.83em;
  color: #0e2f8f;
}
.umock__clock {
  display: flex;
  align-items: center;
  gap: 0.33em;
  flex: none;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.83em;
  letter-spacing: 0.04em;
  color: var(--color-brand);
}

.umock__media {
  margin-top: 0.92em;
  width: 100%;
  border-radius: 0.83em;
  flex: 1;
  min-height: 8em;
  background: linear-gradient(135deg, #e6ecff 0%, #c3d1f7 55%, #a9bcf2 100%);
}
.umock__info {
  margin-top: 0.83em;
}
.umock__name {
  display: block;
  font-size: 1.17em;
  letter-spacing: -0.01em;
}
.umock__prices {
  display: flex;
  align-items: baseline;
  gap: 0.58em;
  margin-top: 0.33em;
}
.umock__new {
  font-size: 1.33em;
  letter-spacing: -0.02em;
}
.umock__old {
  font-size: 0.92em;
  color: #9a9a9a;
  text-decoration: line-through;
}
.umock__save {
  font-size: 0.79em;
  color: #0a7a3f;
  background: #e7f6ee;
  border-radius: var(--r-full);
  padding: 0.25em 0.58em;
}

.umock__foot {
  margin-top: 1.17em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}
.umock__btn {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5em;
  padding: 0.83em;
  background: var(--color-brand);
  color: #fff;
  border-radius: 0.67em;
  font-size: 1.04em;
}
.umock__btn-old {
  font-size: 0.83em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}
.umock__micro {
  display: flex;
  align-items: center;
  gap: 0.33em;
  font-size: 0.75em;
  color: #9a9a9a;
}
.umock__decline {
  font-size: 0.83em;
  color: #7a7a7a;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cflow {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--mockradius);
  box-shadow: 0 2em 5em rgba(6, 20, 70, 0.28);
}
.cflow__pdp {
  height: 100%;
}

.cflow .smock,
.cflow .cmock {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}
.cflow .smock__scroll {
  animation: none;
}

.cflow__veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(10, 20, 60, 0.35);
  opacity: 0;
  pointer-events: none;
}

.cflow__drawer {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.cflow .smock__cart,
.cmock__close {
  cursor: pointer;
}
.cmock__close {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cflow__ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5em;
  height: 2.5em;
  margin: -1.25em 0 0 -1.25em;
  border-radius: var(--r-full);
  background: var(--color-brand);
  opacity: 0;
  pointer-events: none;
}

.cmock {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--mockradius);
  overflow: hidden;
  box-shadow: 0 2em 5em rgba(6, 20, 70, 0.28);
}
.cmock__head {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.83em var(--mockpad);
  border-bottom: 1px solid var(--color-line);
}
.cmock__title {
  font-size: 1.08em;
}
.cmock__head i {
  font-size: 1.17em;
  color: #7a7a7a;
  position: relative;
  z-index: 1;
}

.cmock__ship {
  padding: 0.83em var(--mockpad);
  background: #f2f6ff;
}
.cmock__ship-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.67em;
}
.cmock__ship-txt {
  font-size: 0.83em;
  color: #0e2f8f;
}
.cmock__ship-val {
  font-size: 0.75em;
  color: #7a89b5;
}
.cmock__track {
  margin-top: 0.5em;
  height: 0.42em;
  border-radius: var(--r-full);
  background: #d5e0f8;
  overflow: hidden;
}
.cmock__fill {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: var(--r-full);
  background: var(--color-brand);
}

.cmock__item {
  display: flex;
  gap: 0.75em;
  padding: 0.92em var(--mockpad);
  border-bottom: 1px solid var(--color-line);
}
.cmock__thumb {
  flex: none;
  width: 3.33em;
  height: 3.33em;
  border-radius: 0.58em;
  background: linear-gradient(135deg, #dfe7ff, #b9c8f5);
}
.cmock__info {
  display: flex;
  flex-direction: column;
  gap: 0.17em;
  margin-right: auto;
  min-width: 0;
}
.cmock__name {
  font-size: 0.96em;
}
.cmock__var {
  font-size: 0.79em;
  color: #9a9a9a;
}
.cmock__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.67em;
  margin-top: 0.33em;
  align-self: flex-start;
  border: 1px solid var(--color-line);
  border-radius: 0.42em;
  padding: 0.17em 0.5em;
}
.cmock__qty-btn {
  font-size: 0.92em;
  color: #7a7a7a;
}
.cmock__qty-n {
  font-size: 0.83em;
}
.cmock__item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.17em;
}
.cmock__old {
  font-size: 0.79em;
  color: #9a9a9a;
  text-decoration: line-through;
}
.cmock__new {
  font-size: 1.04em;
}
.cmock__save {
  font-size: 0.71em;
  color: #0a7a3f;
  background: #e7f6ee;
  border-radius: var(--r-full);
  padding: 0.17em 0.5em;
}

.cmock__upsell {
  flex: 1;
  padding: 0.92em var(--mockpad);
}
.cmock__upsell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cmock__upsell-t {
  font-size: 0.92em;
}
.cmock__arrows {
  display: flex;
  gap: 0.42em;
  color: #b6bdcc;
}
.cmock__arrows i {
  font-size: 0.92em;
}
.cmock__up-card {
  display: flex;
  align-items: center;
  gap: 0.67em;
  margin-top: 0.67em;
  padding: 0.58em;
  background: #f5f6fa;
  border-radius: 0.67em;
}
.cmock__up-thumb {
  flex: none;
  width: 2.5em;
  height: 2.5em;
  border-radius: 0.42em;
  background: linear-gradient(135deg, #ffe6bf, #ffcf8a);
}
.cmock__up-info {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  margin-right: auto;
}
.cmock__up-name {
  font-size: 0.87em;
}
.cmock__up-price {
  display: flex;
  align-items: baseline;
  gap: 0.42em;
}
.cmock__up-add {
  flex: none;
  font-size: 0.79em;
  padding: 0.42em 0.83em;
  border-radius: 0.42em;
  background: var(--color-brand);
  color: #fff;
}

.cmock__trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.67em var(--mockpad);
  background: #f2f6ff;
}
.cmock__trust-i {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.33em;
  font-size: 0.71em;
  color: #4a5c96;
}
.cmock__trust-i + .cmock__trust-i {
  border-left: 1px solid #ccd8f5;
}
.cmock__trust-i i {
  font-size: 1em;
}

.cmock__foot {
  flex: none;
  padding: 0.83em var(--mockpad) var(--mockpad);
  border-top: 1px solid var(--color-line);
}
.cmock__sub {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.92em;
}
.cmock__sub-r {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.cmock__sub-v {
  font-size: 1.17em;
  letter-spacing: -0.02em;
}
.cmock__checkout {
  margin-top: 0.75em;
  text-align: center;
  padding: 0.83em;
  background: var(--color-brand);
  color: #fff;
  border-radius: 0.67em;
  font-size: 1.04em;
}

.gmock {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--mockradius);
  padding: var(--mockpad);
  box-shadow: 0 2em 5em rgba(6, 20, 70, 0.28);
}
.gmock__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.67em;
}
.gmock__eyebrow {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.83em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.gmock__note {
  font-size: 0.83em;
  color: #9a9a9a;
}

.gmock__slots {
  display: flex;
  align-items: stretch;
  gap: 0.33em;
  margin-top: 1.17em;
}
.gplus {
  align-self: center;
  flex: none;
  display: grid;
  place-items: center;
  width: 1.33em;
  height: 1.33em;
  border-radius: var(--r-full);
  background: #eef0f5;
  color: #96a0b8;
  font-size: 0.83em;
}
.gslot {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 0.5em;
  border-radius: 0.83em;
  background: #f5f6fa;
  border: 1px dashed transparent;
}

.gslot.is-free {
  background: #edf2ff;
  border-color: #ccd8f5;
}
.gslot__flag {
  position: absolute;
  top: 1em;
  right: 1em;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.67em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--r-full);
  padding: 0.25em 0.58em;
}
.gslot__thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.58em;
}
.gslot__thumb--a {
  background: linear-gradient(135deg, #c9d6ff, #8fa8ff);
}
.gslot__thumb--b {
  background: linear-gradient(135deg, #ffe6bf, #ffcf8a);
}
.gslot__thumb--c {
  background: linear-gradient(135deg, #c7efd8, #8fe0ad);
}
.gslot__name {
  padding-inline: 0.25em;
  font-size: 0.92em;
}
.gslot__price {
  padding: 0 0.25em 0.33em;
  font-size: 0.83em;
  color: #9a9a9a;
}
.gslot.is-free .gslot__name {
  color: var(--color-brand);
}
.gslot.is-free .gslot__price {
  color: #9aa8cc;
  text-decoration: line-through;
}

.gmock__rule {
  display: flex;
  align-items: center;
  gap: 0.42em;
  margin-top: 1em;
  font-size: 0.79em;
  color: #7a7a7a;
}
.gmock__rule i {
  font-size: 0.92em;
  color: var(--color-brand);
}

.gmock__foot {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid var(--color-line);
}
.gmock__sum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.67em;
}
.gmock__sum-lbl {
  display: block;
  font-size: 1.04em;
}
.gmock__sum-sub {
  display: block;
  font-size: 0.83em;
  color: #9a9a9a;
}
.gmock__sum-r {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.gmock__saved {
  font-size: 0.75em;
  color: #0a7a3f;
  background: #e7f6ee;
  border-radius: var(--r-full);
  padding: 0.25em 0.58em;
  align-self: center;
}
.gmock__old {
  font-size: 1em;
  color: #9a9a9a;
  text-decoration: line-through;
}
.gmock__new {
  font-size: 1.33em;
  letter-spacing: -0.02em;
}
.gmock__btn {
  margin-top: 0.92em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.83em;
  background: var(--color-brand);
  color: #fff;
  border-radius: 0.67em;
  font-size: 1.04em;
}
.gmock__btn i {
  font-size: 1.08em;
}

.vmock {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--mockradius);
  padding: var(--mockpad);
  box-shadow: 0 2em 5em rgba(6, 20, 70, 0.28);
}
.vmock__timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.67em;
  padding: 0.58em 0.83em;
  margin-bottom: 0.92em;
  background: #eef3ff;
  border-radius: 0.58em;
  font-size: 0.83em;
  color: #4a5c96;
}
.vmock__timer-l {
  display: flex;
  align-items: center;
  gap: 0.42em;
}
.vmock__timer-l i {
  font-size: 1.08em;
}
.vmock__clock {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  letter-spacing: 0.04em;
  color: var(--color-brand);
}

.vmock__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.67em;
}
.vmock__eyebrow {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.83em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.vmock__note {
  font-size: 0.83em;
  color: #9a9a9a;
}

.vmock__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.58em;
  margin-top: 0.92em;
}
.vtier {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.58em;
  padding: 0.75em 0.92em;
  border: 1px solid var(--color-line);
  border-radius: 0.83em;
}
.vtier.is-on {
  flex: 1.35;
  border-color: var(--color-brand);
  box-shadow: inset 0 0 0 1px var(--color-brand);
  background: #f7f9ff;
}
.vtier__lead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.83em;
}

.vtier__glyph {
  display: flex;
  align-items: flex-end;
  gap: 0.17em;
  height: 1.75em;
}
.vtier__unit {
  width: 0.42em;
  height: 1.5em;
  border-radius: 0.21em;
  background: #c8d2ee;
}
.vtier.is-on .vtier__unit {
  background: var(--color-brand);
}

.vtier__main {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  min-width: 0;
}
.vtier__top {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.vtier__name {
  font-size: 1.04em;
}
.vtier__tag {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.71em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.vtier__term {
  font-size: 0.83em;
  color: #9a9a9a;
}

.vtier__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.vtier__total {
  font-size: 1.17em;
  letter-spacing: -0.02em;
}
.vtier__each {
  font-size: 0.79em;
  color: #9a9a9a;
}

.vtier__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42em;
  padding-top: 0.5em;
  border-top: 1px dashed #ccd8f5;
}
.vtier__perk {
  display: flex;
  align-items: center;
  gap: 0.33em;
  font-size: 0.79em;
  color: #0a7a3f;
  background: #e7f6ee;
  border-radius: var(--r-full);
  padding: 0.25em 0.58em;
}
.vtier__perk i {
  font-size: 0.92em;
}

.vmock__cta {
  margin-top: 0.92em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.vmock__btn {
  width: 100%;
  text-align: center;
  padding: 0.83em;
  background: var(--color-brand);
  color: #fff;
  border-radius: 0.67em;
  font-size: 1.04em;
}
.vmock__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.67em;
}
.vmock__guarantee {
  display: flex;
  align-items: center;
  gap: 0.33em;
  font-size: 0.79em;
  color: #7a7a7a;
}
.vmock__guarantee i {
  font-size: 0.92em;
}
.vmock__saved {
  font-size: 0.79em;
  color: #0a7a3f;
}

.why {
  --w-bg: #000;
  --w-tile: #0c0c0c;
  --w-inset: #141414;
  --w-line: #1d1d1d;
  --w-ink: #fff;
  --w-mut: #8a8a8a;
  --w-blue: #3f6bff;
  --w-green: #37d67a;
  --w-red: #ff5c62;

  background: var(--w-bg);
  color: var(--w-ink);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}
.why__intro,
.why__grid {
  position: relative;
}
.why__intro {
  padding-inline: var(--gutter-x);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.why__eyebrow {
  display: block;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w-mut);
}
.why__heading {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.why__grid {
  padding-inline: var(--gutter-x);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1vw, 12px);
}
.why__cell {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 28px);
  padding: clamp(22px, 2vw, 30px);
  background: var(--w-tile);
  background-color: #0e0e0e;
  border: 1px solid var(--w-line);
  border-radius: var(--r-4);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.why__cell:hover {
  border-color: #2a2a2a;
}
.why__cell--wide {
  grid-column: span 4;
}
.why__copy {
  font-size: var(--fs-4);
  line-height: 1.6;
  color: var(--w-mut);
}
.why__t {
  color: var(--w-ink);
}

.why__vis {
  margin-top: auto;
}

@keyframes w-drift {
  to {
    transform: translateX(-50%);
  }
}
[data-lane] {
  animation: w-drift linear infinite;
}
.why.is-paused [data-lane] {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  [data-lane] {
    animation: none;
  }
}

.wthemes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
  margin-inline: calc(clamp(22px, 2vw, 30px) * -1);
  margin-bottom: calc(clamp(22px, 2vw, 30px) * -1);
  padding: 16px 0 clamp(10px, 1.4vw, 18px);
  min-height: 200px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.wtheme {
  width: 88px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
  height: 96px;
  padding: 11px;
  background: var(--w-inset);
  border: 1px solid var(--w-line);
  border-radius: var(--r-2);
  opacity: 0.6;
}
.wtheme:not(.wtheme--ours) span {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: #242424;
}
.wtheme:not(.wtheme--ours) span:first-child {
  height: 24px;
}
.wtheme:not(.wtheme--ours) span:last-child {
  width: 60%;
}

.wtheme--ours {
  position: relative;
  width: 132px;
  height: 158px;
  padding: 7px;
  opacity: 1;
  background: none;
  border: 1px dashed #3a3a3a;
  border-radius: var(--r-3);
  transition:
    background 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.wtheme--ours.is-done {
  background: linear-gradient(160deg, #2f57e8, #123fb8);
  border-color: #3f6bff;
  border-style: solid;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.8);
}

.wbuild {
  height: 100%;
  overflow: hidden;
  border-radius: 7px;
}
.wbuild__track {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wbuild__b {
  flex: none;
  border-radius: 3px;
  background: #2a2a2a;
  transition: background 0.5s var(--ease);
}
.is-done .wbuild__b {
  background: rgba(255, 255, 255, 0.45);
}

.is-done .wbuild__b--grid,
.is-done .wbuild__b--rows {
  background: none;
}
.wbuild__b--bar {
  height: 8px;
}
.wbuild__b--head {
  height: 15px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 5px;
  background: #333;
}
.is-done .wbuild__b--head {
  background: rgba(255, 255, 255, 0.9);
}
.wbuild__b--head i,
.wbuild__b--head b {
  height: 4px;
  border-radius: 2px;
  background: #555;
  transition: background 0.5s var(--ease);
}
.is-done .wbuild__b--head i,
.is-done .wbuild__b--head b {
  background: rgba(18, 63, 184, 0.55);
}
.wbuild__b--head b {
  width: 20px;
  height: 6px;
  margin-right: auto;
}
.wbuild__b--head i {
  width: 11px;
}
.wbuild__b--hero {
  height: 54px;
}
.is-done .wbuild__b--hero {
  background: rgba(255, 255, 255, 0.9);
}
.wbuild__b--grid {
  height: 46px;
  display: flex;
  gap: 4px;
  background: none;
}
.wbuild__b--grid i {
  flex: 1;
  border-radius: 3px;
  background: #2a2a2a;
  transition: background 0.5s var(--ease);
}
.is-done .wbuild__b--grid i {
  background: rgba(255, 255, 255, 0.9);
}
.wbuild__b--rows {
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
}
.wbuild__b--rows i {
  height: 5px;
  border-radius: 3px;
  background: #2a2a2a;
  transition: background 0.5s var(--ease);
}
.is-done .wbuild__b--rows i {
  background: rgba(255, 255, 255, 0.6);
}
.wbuild__b--rows i:last-child {
  width: 62%;
}
.wtheme__tag {
  position: absolute;
  top: -9px;
  right: -6px;
  padding: 3px 8px;
  background: #3f6bff;
  border-radius: var(--r-full);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: #fff;
  opacity: 0;
}

@media (max-width: 760px) {
  .wthemes .wtheme:nth-child(-n + 2),
  .wthemes .wtheme:nth-last-child(-n + 2) {
    display: none;
  }
}

.wspeed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.wspeed__dial {
  position: relative;
  width: 136px;
  max-width: 100%;
}
.wspeed__svg {
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
}
.wspeed__track,
.wspeed__arc {
  fill: none;
  stroke-width: 7;
}
.wspeed__track {
  stroke: #1d1d1d;
}
.wspeed__arc {
  stroke: var(--w-green);
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 7;
  filter: drop-shadow(0 0 6px rgba(55, 214, 122, 0.45));
}
.wspeed__num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 36px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.wspeed__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--w-mut);
}
.wspeed__lcp {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  color: var(--w-green);
  background: rgba(55, 214, 122, 0.12);
  border-radius: var(--r-full);
  padding: 3px 8px;
}

.wapps {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.wapps__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 13px;
  background: var(--w-inset);
  border: 1px solid var(--w-line);
  border-radius: var(--r-2);
  transition:
    opacity 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.wapp__n {
  font-size: 12.5px;
  color: var(--w-ink);
}
.wapp__p {
  position: relative;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12.5px;
  color: var(--w-mut);
}
.wapp__p span {
  font-size: 10.5px;
}

.wapp__p::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 52%;
  height: 1px;
  background: var(--w-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.wapp.is-cut {
  opacity: 0.42;
}
.wapp.is-cut .wapp__p::after {
  transform: scaleX(1);
}

.wapps__meter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px;
  border-radius: var(--r-3);
  background: radial-gradient(
    120% 120% at 20% 0%,
    rgba(55, 214, 122, 0.16),
    rgba(55, 214, 122, 0.04)
  );
  border: 1px solid rgba(55, 214, 122, 0.22);
}
.wapps__sum {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--w-green);
  font-variant-numeric: tabular-nums;
}
.wapps__lbl {
  font-size: 12px;
  color: var(--w-mut);
}
.wapps__now {
  margin-top: 8px;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11.5px;
  color: var(--w-mut);
}
.wapps__now span {
  font-size: 10px;
}
.wapps__now i {
  font-size: 13px;
  vertical-align: -1px;
  color: var(--w-mut);
}
.wapps__now b {
  color: var(--w-green);
}

.wtree {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
  background: var(--w-inset);
  border: 1px solid var(--w-line);
  border-radius: var(--r-2);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11.5px;
  color: var(--w-mut);
}
.wtree__row {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
}
.wtree__row i {
  color: #6a6a6a;
  font-size: 14px;
  flex: none;
}
.wtree__row--in {
  padding-left: 14px;
}
.wtree__row--in i {
  color: var(--w-blue);
}
.wtree__caret {
  width: 6px;
  height: 12px;
  margin-left: 4px;
  background: var(--w-green);
  animation: w-blink 1.1s steps(1) infinite;
}
@keyframes w-blink {
  50% {
    opacity: 0;
  }
}
.why.is-paused .wtree__caret {
  animation-play-state: paused;
}

.wbook {
  position: relative;
  padding-top: 14px;
}
.wbook__page {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
  background: var(--w-inset);
  border: 1px solid var(--w-line);
  border-radius: var(--r-3);
  transition: transform var(--dur) var(--ease);

  position: relative;
  z-index: 2;
}
.wbook__page--back,
.wbook__page--mid {
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
  background: #101010;
}
.wbook__page--back {
  top: 0;
  transform: scale(0.9);
}
.wbook__page--mid {
  top: 7px;
  transform: scale(0.95);
}
.why__cell:hover .wbook__page--back {
  transform: scale(0.9) translateY(-5px);
}
.why__cell:hover .wbook__page--mid {
  transform: scale(0.95) translateY(-3px);
}
.wbook__t {
  font-size: 12.5px;
  color: var(--w-ink);
}
.wbook__i {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--w-mut);
}
.wbook__i i {
  color: var(--w-green);
  font-size: 14px;
  flex: none;
}

.wset {
  display: flex;
  flex-direction: column;
  padding: 2px 16px;
  background: var(--w-inset);
  border: 1px solid var(--w-line);
  border-radius: var(--r-2);
}
.wset__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 11px;
  font-size: 12px;
  color: var(--w-mut);
}
.wset__row + .wset__row {
  border-top: 1px solid var(--w-line);
}
.wset__field {
  padding: 5px 10px;
  background: #1a1a1a;
  border-radius: var(--r-1);
  font-size: 11.5px;
  color: var(--w-ink);
  max-width: 58%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 0.25s var(--ease);
}
.wset__field.is-swap {
  opacity: 0;
}
.wset__field--sm {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
}
.wset__toggle {
  flex: none;
  width: 34px;
  height: 20px;
  border-radius: var(--r-full);
  background: #2a2a2a;
  position: relative;
  transition: background var(--dur) var(--ease);
}
.wset__toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: var(--r-full);
  background: #fff;
  transition: transform var(--dur) var(--ease);
}
.wset__toggle.is-on {
  background: var(--w-blue);
}
.wset__toggle.is-on::after {
  transform: translateX(14px);
}
.wset__swatch {
  flex: none;
  width: 34px;
  height: 20px;
  border-radius: var(--r-1);
  background: var(--w-blue);
  transition: background 0.35s var(--ease);
}

.wkeep {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 calc(clamp(22px, 2vw, 30px) * -1) calc(clamp(22px, 2vw, 30px) * -1);
  padding-bottom: clamp(22px, 2vw, 30px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.wkeep__lane {
  display: flex;
  gap: 8px;
  width: max-content;
  animation-duration: 30s;
}
.wkeep__lane--rev {
  animation-direction: reverse;
  animation-duration: 38s;
}
.wkeep__chip {
  flex: none;
  padding: 7px 12px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  white-space: nowrap;
  color: #cfcfcf;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}
.wkeep__chip--cut {
  color: var(--w-mut);
  text-decoration: line-through;
  text-decoration-color: var(--w-red);
  background: none;
}

.case {
  background: #fff;
  color: var(--color-ink);
  padding-block: var(--section-y);
}
.case__intro {
  padding-inline: var(--gutter-x);
  margin-bottom: clamp(32px, 4vw, 52px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.case__nav {
  display: flex;
  gap: 8px;
}
.case__arrow {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--color-brand);
  border: 1px solid var(--color-line);
  border-radius: var(--r-2);
  cursor: pointer;
  font-size: 20px;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}
.case__arrow:hover:not(:disabled) {
  background: var(--color-surface);
  border-color: #cfcfcf;
}
.case__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.case__viewport {
  overflow: hidden;
}
.case__container {
  display: flex;
  align-items: flex-start;
}
.case__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.case__eyebrow {
  display: block;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.case__heading {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.case__lead {
  margin-top: var(--sp-5);
  max-width: 56ch;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.case__side {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 18px);
}
.case__promo {
  position: relative;
  min-height: 220px;
  flex: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--r-4);
  background: #0a0a0a;
}
.case__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.55;
}
.case__idn {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.case__who {
  font-size: var(--fs-4);
}
.case__role {
  font-size: var(--fs-5);
  color: rgba(255, 255, 255, 0.82);
}
.case__watch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--color-brand);
  color: #fff;
  border: 0;
  border-radius: var(--r-1);
  font: inherit;
  font-size: var(--fs-4);
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.case__watch:hover {
  transform: translateY(-1px);

}
.case__watch i {
  font-size: 19px;
  line-height: 1;
}

.case__promo--soon {
  gap: 6px;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(20px, 2vw, 28px);
  background: var(--color-ink);
}
.case__soon-t {
  font-size: var(--fs-3);
  letter-spacing: -0.02em;
  color: #fff;
}
.case__soon-s {
  font-size: var(--fs-5);
  color: rgba(255, 255, 255, 0.6);
  max-width: 28ch;
}

.case__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(20px, 2.4vw, 28px);
  padding-top: clamp(20px, 2.4vw, 26px);
  border-top: 1px solid var(--color-line);
  font-size: var(--fs-5);
  color: var(--color-ink-muted);
}
.case__status i {
  font-size: 17px;
  color: var(--color-brand);
}

.case__modal {
  position: fixed;
  inset: 0;

  margin: auto;
  width: min(420px, 92vw);
  max-width: 92vw;
  height: fit-content;
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.case__modal::backdrop {
  background: rgba(6, 8, 16, 0.82);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.case__video {
  display: block;
  width: 100%;
  max-height: 92vh;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #0a0a0a;
  border-radius: var(--r-4);
}
.case__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--color-ink);
  border: 0;
  border-radius: var(--r-full);
  font-size: 22px;
  cursor: pointer;
}

.case__metrics {
  margin-top: clamp(20px, 2.4vw, 28px);
  padding-top: clamp(20px, 2.4vw, 26px);
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.case__mv {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.case__mv i {
  font-size: 0.7em;
  color: var(--color-brand);
}
.case__ml {
  display: block;
  margin-top: 8px;
  font-size: var(--fs-5);
  color: var(--color-ink-muted);
}
.case__note {
  margin-top: var(--sp-4);
  font-size: 12px;
  color: #9a9a9a;
}

.case__work {
  padding-inline: var(--gutter-x);
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}
.case__panel {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 32px);
  background: var(--color-surface);
  border-radius: var(--r-4);
}
.case__name {
  display: block;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
}
.case__about {
  margin-top: var(--sp-3);
  font-size: var(--fs-5);
  line-height: 1.6;
  color: var(--color-ink-muted);
}
.case__specs {
  list-style: none;
  margin-top: clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case__specs li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #3a3a3a;
}
.case__specs span {
  flex: none;
  width: 46px;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11px;
  text-transform: uppercase;
  color: #9a9a9a;
  padding-top: 2px;
}
.case__visit {
  margin-top: clamp(20px, 2.4vw, 28px);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--r-full);
  font-size: var(--fs-5);
  white-space: nowrap;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.case__visit:hover {
  transform: translateY(-1px);

}

.case__shots {
  position: relative;
  padding-bottom: clamp(26px, 3vw, 42px);
}
.case__win {
  overflow: hidden;
  background: var(--color-surface);
}

.case__win img {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
}

.case__desk {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--r-4);
  overflow: hidden;
  background: #fff;

}

.case__chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
}
.case__dots {
  display: flex;
  gap: 6px;
}
.case__dots i {
  width: 9px;
  height: 9px;
  border-radius: var(--r-full);
  background: #d8d8d8;
}
.case__url {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11.5px;
  color: #8a8a8a;
}

.case__desk .case__win {
  --frame-h: clamp(340px, 41vw, 780px);
  height: var(--frame-h);
}

.case__mob {
  position: absolute;
  right: clamp(16px, 3vw, 44px);
  bottom: 0;
  width: clamp(104px, 17%, 176px);
  padding: 7px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: clamp(16px, 1.8vw, 26px);

}
.case__mob .case__win {
  --frame-h: clamp(200px, 26vw, 350px);
  height: var(--frame-h);
  border-radius: clamp(10px, 1.2vw, 19px);
}

.case__hint {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  height: clamp(26px, 3vw, 42px);
  font-size: 12px;
  color: #9a9a9a;
}
.case__hint i {
  font-size: 14px;
}

@media (hover: none) {
  .case__hint {
    display: none;
  }
}

@media (max-width: 980px) {
  .case__work {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .case__promo {
    min-height: 200px;
  }
}
@media (max-width: 560px) {
  .case__metrics {
    gap: 16px;
  }
  .case__shots {
    padding-bottom: 0;
  }
  .case__hint {
    position: static;
    height: auto;
    margin-top: var(--sp-4);
  }
  .case__chrome {
    display: none;
  }
  .case__desk {
    width: 72%;
    margin-top: 18px;
  }
  .case__desk .case__win {
    --frame-h: 250px;
  }
  .case__mob {
    right: 0;
    top: 0;
    bottom: auto;
    width: 34%;
    padding: 5px;
    border-radius: 14px;
  }
  .case__mob .case__win {
    --frame-h: 290px;
    border-radius: 10px;
  }
}

.prc {
  background: var(--color-surface);
  color: var(--color-ink);
  padding-block: var(--section-y);
}
.prc__intro {
  padding-inline: var(--gutter-x);
  margin-bottom: clamp(32px, 4vw, 52px);
}

.prc__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-5);
  padding: 6px 16px 6px 6px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-full);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}
.prc__slots {
  white-space: nowrap;
}
.prc__flag {
  padding: 4px 10px;
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.prc__eyebrow b {
  color: var(--color-ink);
}
.prc__heading {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.prc__lead {
  margin-top: var(--sp-5);
  max-width: 62ch;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.prc__grid {
  padding-inline: var(--gutter-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(12px, 1.4vw, 18px);
  align-items: stretch;
}
.prc__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(24px, 2.4vw, 38px);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-4);
}
.prc__card--lead {
  grid-row: span 2;
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
}
.prc__card--lead .prc__for,
.prc__card--lead .prc__terms {
  color: rgba(255, 255, 255, 0.72);
}
.prc__card--lead .prc__was {
  color: rgba(255, 255, 255, 0.5);
}
.prc__card--lead .prc__list {
  border-top-color: rgba(255, 255, 255, 0.22);
}
.prc__card--lead .prc__list li {
  color: rgba(255, 255, 255, 0.92);
}
.prc__card--lead .prc__list i,
.prc__card--lead .prc__who span {
  color: #fff;
}
.prc__card--lead .prc__who {
  border-top-color: rgba(255, 255, 255, 0.22);
}
.prc__card--lead .prc__who p {
  color: rgba(255, 255, 255, 0.72);
}
.prc__card--lead .prc__badge {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.prc__card--lead .prc__cta {
  background: #fff;
  color: var(--color-brand);
}

.prc__card--soft {
  background: #eef2fd;
  border-color: transparent;
}
.prc__card--soft .prc__name {
  font-size: clamp(17px, 1.5vw, 19px);
}

.prc__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
}
.prc__name {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.prc__for {
  margin-top: 6px;
  font-size: var(--fs-5);
  color: var(--color-ink-muted);
}
.prc__badge {
  flex: none;
  padding: 5px 12px;
  background: #eef2fd;
  color: var(--color-brand);
  border-radius: var(--r-full);
  font-size: 11.5px;
  white-space: nowrap;
}

.prc__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: clamp(20px, 2.4vw, 30px);
}
.prc__amt {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.prc__was {
  font-size: var(--fs-4);
  color: #a0a0a0;
  text-decoration: line-through;
}

.prc__unit {
  margin-left: -6px;
  font-size: var(--fs-5);
  color: var(--color-ink-muted);
}
.prc__terms {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-ink-muted);
}

.prc__list {
  list-style: none;
  margin-top: clamp(20px, 2.4vw, 28px);
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prc__list li {
  display: flex;
  gap: 10px;
  font-size: var(--fs-5);
  line-height: 1.5;
  color: #3a3a3a;
}
.prc__list i {
  flex: none;
  margin-top: 1px;
  font-size: 16px;
  color: var(--color-brand);
}

.prc__list .is-out,
.prc__list .is-out i {
  color: #9a9a9a;
}
.prc__card--lead .prc__list .is-out,
.prc__card--lead .prc__list .is-out i {
  color: rgba(255, 255, 255, 0.58);
}

.prc__who {
  margin-top: clamp(20px, 2.4vw, 28px);
  margin-bottom: clamp(20px, 2.4vw, 26px);
  padding-top: clamp(20px, 2.4vw, 26px);
  border-top: 1px solid var(--color-line);
}
.prc__who p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #8a8a8a;
}
.prc__who span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.prc__cta {
  margin-top: auto;
  padding: 15px 24px;
  text-align: center;
  background: var(--color-brand);
  color: #fff;
  border: 0;
  border-radius: var(--r-1);
  font-family: inherit;
  font-size: var(--fs-4);
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.prc__cta:hover {
  transform: translateY(-1px);

}
.prc__cta--quiet {
  background: #fff;
  color: var(--color-ink);
  border: 1px solid var(--color-line);
}
.prc__cta--quiet:hover {
  border-color: #cfcfcf;

}

.prc__extra-d {
  margin-top: clamp(14px, 1.8vw, 15px);
  font-size: var(--fs-5);
  line-height: 1.6;
  color: var(--color-ink-muted);
}

.prc__cta--text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 0;
  background: none;
  border: 0;
  color: var(--color-brand);
  font-size: var(--fs-5);
}
.prc__cta--text i {
  transition: transform var(--dur) var(--ease);
}
.prc__cta--text:hover {
  transform: none;
}
.prc__cta--text:hover i {
  transform: translateX(3px);
}

.prc__foot {
  padding-inline: var(--gutter-x);
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 72ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: #8a8a8a;
}

@media (max-width: 900px) {
  .prc__grid {
    grid-template-columns: 1fr;
  }
  .prc__card--lead {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .prc__eyebrow {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .prc__flag {
    padding: 5px 10px;
  }
  .prc__slots {
    font-size: 0;
  }
  .prc__slots b {
    font-size: 12px;
  }
  .prc__slots b::after {
    content: " of 10 left";
    font-size: 10px;
    color: var(--color-ink-muted);
  }
}

.frank {
  background: linear-gradient(#000 0 52%, #fff 52% 100%);
  color: var(--color-ink);
  padding-inline: var(--gutter-x);
  padding-block: 0 clamp(24px, 3vw, 40px);
}
.frank__sheet {
  padding: clamp(30px, 3.6vw, 56px) clamp(24px, 3vw, 48px);
  background: #fff;
  border-radius: clamp(18px, 2vw, 28px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15)
}
.frank__intro {
  margin-bottom: clamp(24px, 2.8vw, 36px);
}
.frank__eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 12px;
  text-transform: uppercase;
  color: #8a8a8a;
}
.frank__heading {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.frank__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}

.frank__row + .frank__row {
  padding-left: clamp(28px, 4vw, 64px);
  border-left: 1px solid var(--color-line);
}

.frank__claim {
  position: relative;
  display: inline-block;
  margin-bottom: var(--sp-4);
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  color: #b4b4b4;
}
.frank__claim::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 54%;
  height: 1.5px;
  background: #d4373c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.frank__claim.is-struck::after {
  transform: scaleX(1);
}

.frank__t {
  font-size: clamp(19px, 1.9vw, 23px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.frank__d {
  margin-top: var(--sp-3);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-ink-muted);
}

@media (max-width: 760px) {
  .frank {
    background: linear-gradient(#000 0 24%, #fff 24% 100%);
  }
  .frank__list {
    grid-template-columns: 1fr;
    gap: clamp(24px, 6vw, 32px);
  }
  .frank__row + .frank__row {
    padding-left: 0;
    padding-top: clamp(24px, 6vw, 32px);
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }
}
@media (prefers-reduced-motion: reduce) {
  .frank__claim::after {
    transform: scaleX(1);
  }
}

.ft {
  background: #000;
  color: #fff;
  padding: var(--section-y) var(--gutter-x) clamp(28px, 3vw, 40px);
  overflow: hidden;
}
.ft__card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: end;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(30px, 4.4vw, 62px);
  background: var(--color-brand);
  border-radius: clamp(18px, 2vw, 28px);
}
.ft__title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.ft__note {
  margin-top: clamp(14px, 1.6vw, 20px);
  max-width: 46ch;
  font-size: var(--fs-5);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
}
.ft__slots {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ft__meter {
  display: flex;
  gap: 5px;
}
.ft__meter i {
  width: 4px;
  height: 26px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.ft__meter .is-taken {
  background: #fff;
}
.ft__slotlbl {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}
.ft__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 15px 26px;
  background: #fff;
  color: var(--color-brand);
  border: 0;
  border-radius: var(--r-1);
  font: inherit;
  font-size: var(--fs-4);
  cursor: pointer;
  transition: transform var(--dur) var(--ease);
}
.ft__btn:hover {
  transform: translateY(-1px);
}
.ft__btn i {
  font-size: 18px;
}

.ft__cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  padding-block: clamp(32px, 4vw, 56px);
}
.ft__nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 34px);
}
.ft__nav a,
.ft__mail {
  font-size: var(--fs-5);
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--dur) var(--ease);
}
.ft__mail {
  color: #fff;
}
.ft__nav a:hover,
.ft__mail:hover {
  color: #fff;
}

.ft__base {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px clamp(24px, 4vw, 48px);
  padding-top: clamp(26px, 3vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.ft__id {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 20px);
}
.ft__logo {
  width: clamp(104px, 11vw, 128px);
  height: auto;
  opacity: 0.9;
}
.ft__legal,
.ft__copy {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.34);
}
.ft__legal {
  max-width: 56ch;
}

@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why__cell,
  .why__cell--wide {
    grid-column: span 1;
  }
  .wapps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ft__card {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .ft__btn {
    width: 100%;
    justify-content: center;
  }
  .ft__cols {
    gap: 32px 48px;
  }
  .ft__base {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .feat__slide {
    width: 100%;
  }
  .feat__card {
    grid-template-columns: 1fr;
  }
  .feat__media {
    height: 200px;
  }
  .feat__media--mock {
    height: auto;
    margin-inline: auto;
  }
}
