/* ── Tokens ── */
:root {
  --lime: #a8d800; /* buttons, dark bg accents */
  --lime-dark: #a8d800; /* labels, separators on light bg */
  --lime-hover: #beee00;
  --dark: #111110;
  --darker: #0a0a09;
  --white: #fafaf8;
  --cream: #f4f2ed;
  --cream-mid: #f0ede6;
  --cream-dark: #e8e5de;
  --text: #1a1a18;
  --text-mid: #555551;
  --text-light: #888884;
  --border: rgba(26, 26, 24, 0.1);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "DM Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 70px;
}

/* ── Shared ── */
.fr-section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
#problem .fr-section-label,
#product .fr-section-label,
#waitlist .fr-section-label {
  color: #6b8a00; /* darker lime, more legible on light bg */
}

.fr-section-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--lime);
  flex-shrink: 0;
}

.fr-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--darker);
  background: var(--lime);
  border: none;
  padding: 15px 30px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
}
.fr-btn:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 216, 0, 0.25);
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px; /* horizontal padding stays here */
  background: rgba(10, 10, 9, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 20px 0; /* vertical padding goes here */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav__logo img {
  height: 40px; /* adjust as needed */
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--lime);
}
.nav__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(168, 216, 0, 0.3);
  padding: 8px 18px;
  border-radius: 2px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.nav__cta:hover {
  background: rgba(168, 216, 0, 0.08);
  border-color: var(--lime);
}

/* ── Hero ── */
#hero {
  background: var(--darker);
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px; /* was 60px, match nav */
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 70vh;
  background:
    radial-gradient(
      ellipse at 70% 30%,
      rgba(168, 216, 0, 0.06) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse at 90% 70%,
      rgba(100, 180, 220, 0.04) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.png") center / cover no-repeat;
  opacity: 0.2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 9, 0.65) 0%,
    rgba(10, 10, 9, 0.4) 50%,
    rgba(10, 10, 9, 0.85) 100%
  );
  z-index: 0;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--lime);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(68px, 11vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #f2f0eb;
  margin-bottom: 32px;
}
.hero__headline em {
  font-style: normal;
  color: var(--lime);
}
.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: #d8d5ce;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__aside {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #555;
  letter-spacing: 0.05em;
}

/* ── Marquee ── */
.marquee {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.marquee__sep {
  color: #6b8a00;
  font-size: 13px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ── Problem ── */
#problem {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.problem__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 48px;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem__left {
  position: sticky;
  top: 100px;
}
.problem__headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.problem__headline em {
  font-style: normal;
  color: var(--lime-dark);
}
.problem__cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pcard {
  background: var(--cream-mid);
  border: 1px solid rgba(26, 26, 24, 0.07);
  padding: 28px 30px;
  transition:
    border-color 0.2s,
    background 0.2s;
  cursor: default;
}
.pcard:hover {
  border-color: rgba(168, 216, 0, 0.4);
  background: #f4f2ed;
}
.pcard__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  /* color: var(--lime-dark); */
  color: #6b8a00; /* darker lime, more legible on light bg */

  margin-bottom: 10px;
}
.pcard h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pcard p {
  font-size: 14px;
  color: #777773;
  font-weight: 300;
  line-height: 1.65;
}

/* ── Product ── */
#product {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.product__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 48px;
}
.product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
/* Gallery */
.product__gallery {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__main {
  position: relative;
  background: #eceae3;
  border: 1px solid rgba(26, 26, 24, 0.09);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.product__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.product__slide.is-active {
  opacity: 1;
  position: relative;
}
.product__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  width: 100%;
}
.product__placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  text-align: center;
}
.product__slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  background: rgba(244, 242, 237, 0.88);
  backdrop-filter: blur(4px);
  text-align: center;
}
.product__thumbs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  scrollbar-width: none;
}

.product__thumbs::-webkit-scrollbar {
  display: none;
}
.product__thumb {
  position: relative;
  width: calc(25% - 5px);
  flex-shrink: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(26, 26, 24, 0.12);
  background: var(--cream-dark);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product__thumb:hover img {
  transform: scale(1.05);
}
.product__thumb.is-active {
  border-color: var(--lime);
  border-width: 2px;
}
.product__thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 6px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  text-align: center;
}
/* Info */
.product__name {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.product__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 24px;
}
.product__desc {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.product__specs {
  list-style: none;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__specs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 300;
  line-height: 1.55;
}
.product__specs strong {
  font-weight: 500;
  color: #111;
}
.spec-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 6px;
}
.spec-line {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 9px;
}
.product__price {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.02em;
  color: #111;
  line-height: 1;
  margin-bottom: 6px;
}
.product__price-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #999;
  letter-spacing: 0.07em;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Honesty ── */
#honesty {
  background: var(--cream-mid);
  border-top: 1px solid var(--border);
}
.honesty__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}
.honesty__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-dark);
  color: #6b8a00; /* darker lime, more legible on light bg */

  line-height: 1.9;
  padding-top: 4px;
}
.honesty__body p {
  font-size: 15px;
  color: #777773;
  font-weight: 300;
  line-height: 1.8;
  max-width: 680px;
}
.honesty__body p + p {
  margin-top: 14px;
}
.honesty__body strong {
  color: #333;
  font-weight: 400;
}
.honesty__body a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.honesty__body a:hover {
  color: var(--lime);
}

/* ── Waitlist ── */
#waitlist {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.waitlist__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.waitlist__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}
.waitlist__headline em {
  font-style: normal;
  color: var(--lime-dark);
}
.waitlist__sub {
  font-size: 15px;
  color: #777773;
  font-weight: 300;
  line-height: 1.7;
  max-width: 400px;
}
/* Form */
.fr-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fr-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fr-form__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}
.fr-form__input,
.fr-form__select {
  background: #fff;
  border: 1px solid rgba(26, 26, 24, 0.14);
  color: #111;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 13px 16px;
  border-radius: 2px;
  outline: none;
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.fr-form__input::placeholder {
  color: #bbb;
}
.fr-form__input:focus,
.fr-form__select:focus {
  border-color: rgba(168, 216, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(168, 216, 0, 0.1);
}
.fr-form__input.invalid,
.fr-form__select.invalid {
  border-color: #e05a5a;
}
.fr-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BBBBBB' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.fr-form__error {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #e05a5a;
  letter-spacing: 0.06em;
  display: none;
}
.fr-form__error.show {
  display: block;
}
.fr-form__submit {
  width: 100%;
  text-align: center;
  margin-top: 4px;
  font-size: 13px;
}
.fr-form__disclaimer {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #aaaaa6;
  line-height: 1.6;
}
/* Success */
.waitlist__success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.waitlist__success.show {
  display: block;
}
.success__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(168, 216, 0, 0.1);
  border: 1px solid rgba(168, 216, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success__title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 10px;
}
.success__sub {
  font-size: 14px;
  color: #777;
  font-weight: 300;
  line-height: 1.65;
}

/* ── Footer ── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer__logo img {
  height: 32px; /* adjust to match your footer design */
  width: auto;
  display: block;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #444;
  text-transform: uppercase;
}
.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__links a,
.footer__email {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  transition: color 0.2s;
}

.footer__links a:hover,
.footer__email:hover {
  color: var(--lime);
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* ── Mobile ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  .nav__links {
    display: none;
  }

  #hero {
    padding: 180px 24px 60px;
    min-height: auto;
  }

  .problem__inner,
  .product__inner,
  .waitlist__inner {
    padding: 64px 24px;
  }

  .problem__grid,
  .product__layout,
  .waitlist__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem__left {
    position: static;
  }
  .product__gallery {
    position: static;
  }
  .product__main {
    aspect-ratio: 4/5;
  }
  .product__thumb {
    width: calc(25% - 5px);
  }

  .honesty__inner {
    padding: 56px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    padding: 40px 24px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ── First Batch Callout (product section) ── */
.batch__callout {
  background: var(--darker);
  border: 1px solid rgba(168, 216, 0, 0.2);
  padding: 28px;
  border-radius: 2px;
  margin-bottom: 0;
}
.batch__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.batch__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}
.batch__count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(168, 216, 0, 0.15);
  border: 1px solid rgba(168, 216, 0, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
}
.batch__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}
.batch__btn {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
.batch__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.batch__trust-item {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 5px;
}
.batch__trust-item svg {
  color: var(--lime);
  flex-shrink: 0;
}

/* ── Deposit block (waitlist section) ── */
.deposit__block {
  margin-top: 32px;
}
.deposit__btn {
  display: block;
  text-align: center;
  font-size: 13px;
  margin-bottom: 10px;
}
.deposit__note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #aaaaa6;
  line-height: 1.6;
}
.deposit__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 0;
  color: #bbb;
}
.deposit__divider::before,
.deposit__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.deposit__divider span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

/* ── Post-signup deposit nudge ── */
.success__deposit-nudge {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.success__deposit-nudge p {
  font-size: 14px;
  color: #555;
  font-weight: 300;
}

/* ── Waitlist stacked layout ── */
.waitlist__inner--stacked {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 80px;
  max-width: 1140px;
  padding: 96px 48px;
  align-items: start;
}
.waitlist__top {
  grid-column: 1;
  grid-row: 1;
}
.waitlist__inner--stacked .deposit__block {
  grid-column: 1;
  grid-row: 2;
  margin-top: 32px;
}
.waitlist__inner--stacked .deposit__divider {
  grid-column: 1;
  grid-row: 3;
  margin: 24px 0 0;
}
.waitlist__inner--stacked .waitlist__right {
  grid-column: 2;
  grid-row: 1 / 4;
}
.waitlist__inner--stacked .waitlist__sub {
  max-width: 100%;
}
.waitlist__inner--stacked .deposit__btn {
  font-size: 14px;
  padding: 17px 30px;
}

/* ── Mobile patches ── */
@media (max-width: 768px) {
  .batch__callout {
    padding: 20px;
  }
  .batch__trust {
    flex-direction: column;
    gap: 8px;
  }
  .waitlist__inner--stacked {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }
  .waitlist__inner--stacked .deposit__block,
  .waitlist__inner--stacked .deposit__divider,
  .waitlist__inner--stacked .waitlist__right {
    grid-column: 1;
  }
  .waitlist__inner--stacked .waitlist__right {
    grid-row: auto;
  }
  .waitlist__inner--stacked .deposit__divider {
    margin: 24px 0;
  }
}

.legal__nav {
  position: sticky;
  top: 100px;
  background: var(--white); /* add this */
  padding: 16px; /* optional: add some breathing room */
  border-radius: 2px; /* optional */
}

.success__deposit-nudge .deposit__note {
  font-size: 9px;
  color: #aaaaa6;
  font-weight: 400;
}

.product__price__block {
  margin-bottom: 28px;
}
.product__price__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.product__price--strike {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}
.product__price--badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--darker);
  background: var(--lime);
  padding: 4px 10px;
  border-radius: 2px;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__legal a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  transition: color 0.2s;
}
.footer__legal a:hover {
  color: var(--lime);
}
.footer__legal-sep {
  color: #333;
  font-size: 10px;
}
