/* HAPP — subscription access, sliced monolith.
   Visual authority: design/originals/DARK-SITE-A.png. Palette measured, not guessed. */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/font/montserrat-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/font/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #101011;
  --bg-deep: #0a0a0b;
  --surface: #161617;
  --surface-2: #1d1d1f;
  --line: #26262a;
  --ink: #f2f1ef;
  --ink-2: #9c9a97;
  --ink-3: #86847f;
  --accent: #e5a025;
  --accent-press: #f2b03c;

  --shell: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(44px, 5.6vw, 84px);
  --radius: 12px;
  --radius-sm: 6px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-fast: 140ms;
  --motion-base: 240ms;
  --motion-enter: 620ms;

  --z-base: 1;
  --z-art: 2;
  --z-content: 3;
  --z-header: 10;
  --z-menu: 20;
  --z-skip: 30;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  font-synthesis-weight: none;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

::selection {
  background: var(--accent);
  color: var(--bg);
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: var(--z-skip);
  background: var(--accent);
  color: var(--bg);
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus {
  left: 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
  font-weight: 300;
  line-height: 1.14;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.display {
  font-size: clamp(30px, 7.6vw, 4.7rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.display b {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  color: var(--ink);
}

.h2 {
  font-size: clamp(22px, 3.2vw, 2.35rem);
  letter-spacing: -0.012em;
  text-transform: uppercase;
  line-height: 1.12;
}

.h3 {
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.32;
}

.lede {
  font-size: clamp(1rem, 1.55vw, 1.19rem);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 46ch;
}

.prose,
.lede,
.facts .v,
.plate p,
.faq .answer {
  overflow-wrap: anywhere;
}
.prose {
  color: var(--ink-2);
  max-width: 68ch;
}
.prose + .prose {
  margin-top: 14px;
}

.meta {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}

.plate .tlink,
.hero-actions .tlink,
.section-body > .tlink {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.tlink {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--ink) 40%, transparent);
  transition: color 0.16s var(--ease), text-decoration-color 0.16s var(--ease);
}
.tlink:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 26px;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  transition: background-color var(--motion-fast) var(--ease),
    color var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease),
    transform var(--motion-fast) var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-press);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--ink-3);
}

.btn-sm {
  min-height: 44px;
  padding: 8px 18px;
  font-size: 0.92rem;
}

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

.site-header {
  position: relative;
  z-index: var(--z-header);
  border-bottom: 1px solid transparent;
}
.site-header .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  min-height: 76px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
  min-height: 44px;
}
.brand svg {
  width: 24px;
  height: 24px;
  color: var(--ink);
}
.brand span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
}
.nav a {
  font-size: 0.92rem;
  color: var(--ink-2);
  text-decoration: none;
  padding: 10px 2px;
  transition: color 0.16s var(--ease);
}
.nav a:hover {
  color: var(--ink);
}
.nav .btn {
  color: var(--bg);
}

.mobile-menu {
  display: none;
  position: static;
}
.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--motion-fast) var(--ease),
    background-color var(--motion-fast) var(--ease);
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu summary:hover,
.mobile-menu[open] summary {
  border-color: var(--ink-3);
  background: var(--surface);
}
.mobile-menu summary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.mobile-menu-panel {
  position: absolute;
  z-index: var(--z-menu);
  top: calc(100% + 10px);
  right: 0;
  width: min(280px, calc(100vw - 40px));
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mobile-menu-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
}
.mobile-menu-panel a:hover {
  color: var(--ink);
  background: var(--surface-2);
}
.cta-label-short {
  display: none;
}

@media (max-width: 719px) {
  .site-header .shell {
    flex-wrap: nowrap;
    column-gap: 12px;
  }
  .site-header .brand {
    flex-shrink: 0;
  }
  .site-header .nav {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
  }
  .site-header .nav .btn {
    width: 100%;
    padding-inline: 16px;
    font-size: 0.82rem;
  }
  .nav a:not(.btn) {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .nav .mobile-menu-panel a {
    display: flex;
  }
  .brand span {
    font-size: 1.04rem;
  }
}
@media (max-width: 359px) {
  .site-header .shell {
    gap: 8px;
  }
  .site-header .brand span,
  .cta-label-full {
    display: none;
  }
  .site-header .brand {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .cta-label-short {
    display: inline;
  }
  .site-header .nav .btn {
    white-space: normal;
  }
}

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

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero .shell {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  padding-block: clamp(40px, 7vw, 92px) clamp(48px, 8vw, 120px);
}

.hero-copy {
  position: relative;
  z-index: var(--z-content);
}
.hero-copy > * + * {
  margin-top: clamp(20px, 2.6vw, 30px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

@media (min-width: 960px) {
  .hero .shell {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: center;
    min-height: min(74vh, 620px);
  }
  .hero-copy {
    grid-column: 1;
  }
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  pointer-events: none;
}
.hero-lines line {
  stroke: var(--ink);
  stroke-opacity: 0.05;
  stroke-width: 1;
}

/* ---------- generic sections ---------- */

/* Rhythm is deliberately uneven: a tight step straight after a hero, extra air
   before the closing band. Uniform gaps make a page read as a stack of boxes. */
.section {
  padding-block: var(--section);
}
.section.tight {
  padding-block-start: clamp(26px, 3.2vw, 44px);
}
.section.airy {
  padding-block: clamp(60px, 8vw, 116px);
}
.section-head {
  max-width: 62ch;
}
.section-head > * + * {
  margin-top: 14px;
}
.section-body:not(:empty) {
  margin-top: clamp(22px, 3vw, 36px);
}
.facts + .prose,
.prices + .prose {
  margin-top: clamp(18px, 2vw, 22px);
}
.facts + .prose + .hero-actions,
.prices + .prose + .hero-actions,
.prices + .hero-actions {
  margin-top: clamp(22px, 3vw, 26px);
}

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

/* ---------- steps ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.steps li {
  background: var(--surface);
  padding: clamp(24px, 3vw, 34px);
}
.steps .num {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.steps h3 {
  margin: 14px 0 10px;
}
.steps p {
  color: var(--ink-2);
  font-size: 0.96rem;
}

/* ---------- plates (platform / topic tiles) ---------- */

.plates {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.plate {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plate h3 {
  order: 1;
}
.plate p {
  order: 2;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.plate .tlink,
.plate .plate-link {
  order: 3;
  margin-top: auto;
  padding-top: 6px;
  align-self: flex-start;
}
.plate .meta {
  order: 0;
}

/* ---------- price rows ---------- */

.prices {
  display: grid;
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 20px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  padding: 20px clamp(18px, 2.2vw, 26px);
  min-height: 76px;
  transition: background-color var(--motion-fast) var(--ease),
    transform var(--motion-fast) var(--ease);
}
.price:hover {
  background: var(--surface-2);
}
.price .period {
  font-size: 1.06rem;
  font-weight: 600;
}
.price .per {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.85rem;
  color: var(--ink-3);
}
.price .sum {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  font-size: clamp(19px, 2.4vw, 1.6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color var(--motion-fast) var(--ease), transform var(--motion-base) var(--ease);
}
.price.is-lead .sum {
  color: var(--accent);
}
@media (max-width: 460px) {
  .price {
    grid-template-columns: 1fr;
  }
  .price .sum {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    margin-top: 4px;
  }
}

/* ---------- facts list ---------- */

.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 72ch;
}
.facts li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px 28px;
}
.facts li:last-child {
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .facts li {
    grid-template-columns: 210px 1fr;
    align-items: baseline;
  }
}
.facts dt,
.facts .k {
  font-weight: 600;
  font-size: 0.95rem;
}
.facts .v {
  color: var(--ink-2);
  font-size: 0.96rem;
}

/* ---------- action band ---------- */

.band {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  isolation: isolate;
}
.band-inner {
  position: relative;
  z-index: var(--z-content);
  padding: clamp(32px, 5vw, 56px);
  max-width: 46ch;
}
.band-inner > * + * {
  margin-top: 18px;
}
.band svg {
  position: absolute;
  z-index: var(--z-art);
  right: -6%;
  bottom: -22%;
  width: min(46%, 420px);
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}
@media (max-width: 719px) {
  .band svg {
    display: none;
  }
}

/* ---------- FAQ ---------- */

.faq {
  border-top: 1px solid var(--line);
  max-width: 78ch;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  position: relative;
  font-weight: 600;
  font-size: 1.02rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 1.5px solid var(--ink-3);
  border-bottom: 1.5px solid var(--ink-3);
  transform: rotate(45deg);
  transform-origin: 60% 60%;
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
}
.faq summary:hover::after {
  border-color: var(--accent);
}
.faq .answer {
  padding: 0 0 22px;
  color: var(--ink-2);
  max-width: 68ch;
}

/* ---------- interlinks ---------- */

.links {
  display: grid;
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 760px) {
  .links {
    grid-template-columns: repeat(2, 1fr);
  }
}
.links a {
  background: var(--surface);
  padding: 22px clamp(18px, 2.2vw, 26px);
  text-decoration: none;
  display: grid;
  gap: 5px;
  min-height: 44px;
  transition: background-color var(--motion-fast) var(--ease),
    transform var(--motion-fast) var(--ease);
}
.links a:hover {
  background: var(--surface-2);
}
.links strong {
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--motion-fast) var(--ease), transform var(--motion-base) var(--ease);
}
.links span {
  color: var(--ink-3);
  font-size: 0.9rem;
}

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

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding-block: clamp(44px, 6vw, 72px) 34px;
  margin-top: var(--section);
}
.footer-top {
  display: grid;
  gap: clamp(30px, 5vw, 60px);
}
@media (min-width: 800px) {
  .footer-top {
    grid-template-columns: minmax(240px, 1fr) auto;
    align-items: start;
  }
}
.footer-nav {
  display: grid;
  gap: 10px 44px;
  grid-template-columns: repeat(auto-fit, minmax(150px, max-content));
}
.footer-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.94rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.16s var(--ease);
}
.footer-nav a:hover {
  color: var(--ink);
}
.footer-note {
  color: var(--ink-3);
  font-size: 0.9rem;
  max-width: 44ch;
  margin-top: 16px;
}
.footer-fine {
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 0.84rem;
}

/* ---------- page hero (secondary routes) ---------- */

.page-hero {
  padding-block: clamp(38px, 5vw, 64px) clamp(30px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}
.page-hero .shell > * + * {
  margin-top: 18px;
}
.page-hero .lede + .hero-actions {
  margin-top: clamp(24px, 4vw, 32px);
}
.page-hero .h1 {
  font-size: clamp(26px, 4.4vw, 3.05rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.crumbs {
  font-size: 0.85rem;
  color: var(--ink-3);
}
.crumbs a {
  color: var(--ink-3);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--ink);
}

/* ---------- 404 ---------- */

.oops {
  min-height: 62vh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding-block: clamp(60px, 10vw, 120px);
}

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

@media (prefers-reduced-motion: no-preference) {
  .rise {
    animation: rise 0.72s var(--ease) both;
  }
  .rise-1 {
    animation-delay: 0.07s;
  }
  .rise-2 {
    animation-delay: 0.14s;
  }
  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
  }

  .hero-backdrop {
    animation: hero-settle 1.05s var(--ease) both;
    transform-origin: 62% 58%;
  }
  @keyframes hero-settle {
    from {
      opacity: 0.72;
      transform: scale(1.018);
    }
  }

  .page-hero .crumbs,
  .page-hero .h1,
  .page-hero .lede,
  .page-hero .hero-actions,
  .oops > * {
    animation: page-intro var(--motion-enter) var(--ease) both;
  }
  .page-hero .h1,
  .oops > :nth-child(2) {
    animation-delay: 55ms;
  }
  .page-hero .lede,
  .oops > :nth-child(3) {
    animation-delay: 110ms;
  }
  .page-hero .hero-actions {
    animation-delay: 165ms;
  }
  @keyframes page-intro {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
  }

  .motion-reveal.is-revealed > * {
    animation: item-reveal 520ms var(--ease) both;
  }
  .motion-reveal.is-revealed > :nth-child(2) { animation-delay: 55ms; }
  .motion-reveal.is-revealed > :nth-child(3) { animation-delay: 110ms; }
  .motion-reveal.is-revealed > :nth-child(4) { animation-delay: 165ms; }
  .motion-reveal.is-revealed > :nth-child(5) { animation-delay: 220ms; }
  .motion-reveal.is-revealed > :nth-child(6) { animation-delay: 275ms; }
  @keyframes item-reveal {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
  }

  .motion-band.is-revealed .band-inner > * {
    animation: item-reveal 560ms var(--ease) both;
  }
  .motion-band.is-revealed .band-inner > :nth-child(2) { animation-delay: 65ms; }
  .motion-band.is-revealed .band-inner > :nth-child(3) { animation-delay: 130ms; }
  .motion-band.is-revealed svg {
    animation: art-enter 720ms var(--ease) both;
  }
  @keyframes art-enter {
    from {
      opacity: 0.35;
      transform: translateX(5%);
    }
  }

  .faq details[open] .answer {
    animation: answer-in var(--motion-base) var(--ease) both;
  }
  @keyframes answer-in {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .btn:hover {
    transform: translateY(-1px);
  }
  .price:hover .sum {
    transform: translateX(-4px);
  }
  .links a:hover strong {
    color: var(--accent);
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .btn:active {
    transform: scale(0.97);
    transition-duration: 100ms;
  }
  .price:active,
  .links a:active {
    transform: scale(0.99);
    transition-duration: 100ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- home landing: header CTA, hero gap, first-fold composition ---------- */

/* The paid exit never shrinks on the normal mobile/desktop header. The narrow
   accessibility fallback above gives it a full second row instead. */
.nav .btn {
  flex-shrink: 0;
  padding-inline: 16px;
  white-space: nowrap;
}

/* Explicit lede -> action distance, so the gap does not depend on the generic
   `.hero-copy > * + *` sibling rule surviving future edits. */
.hero-copy .lede + .hero-actions {
  margin-top: clamp(26px, 3.4vw, 38px);
}

/* Customer-supplied art direction: the browser selects one source, then crops
   it as a full-bleed background without affecting layout. */
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  pointer-events: none;
}
.hero-backdrop img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* The landing first fold is the fold: copy is centred in the space the header
   leaves, at every height, instead of being pushed down by the sculpture. */
.hero.hero-home .shell {
  min-height: calc(100svh - 76px);
  align-content: center;
}
.hero-home::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: var(--z-art);
  height: clamp(96px, 14vw, 180px);
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
@media (max-width: 639px) {
  main .btn[data-checkout] {
    width: 100%;
  }
}
