/* POOOL public landing page */

.lp-body {
  --lp-ink: var(--fg-heading-1);
  --lp-ink-soft: var(--fg-body);
  --lp-line: var(--border);
  --lp-canvas: var(--bg-page);
  --lp-white: var(--bg-surface);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.lp-body {
  margin: 0;
  background: var(--lp-white);
  color: var(--lp-ink);
  overflow-x: hidden;
}

.lp-body,
.lp-body * {
  letter-spacing: 0;
}

.lp-body .wrap {
  width: min(100%, 1280px);
  max-width: none;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: border-box;
}

.lp-body .btn {
  min-height: 44px;
  border-radius: 7px;
  gap: 9px;
  white-space: nowrap;
}

.lp-body .btn--lg {
  min-height: 50px;
  padding-inline: 20px;
}

.lp-body .btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.lp-body a:focus-visible,
.lp-body button:focus-visible,
.lp-body input:focus-visible {
  outline: 3px solid var(--brand-green-mint);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -72px;
  left: 16px;
  z-index: 10001;
}

.skip-link:focus {
  top: 16px;
}

/* Navigation */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 19, 26, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
}

.lp-nav__in {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 28px;
  height: 78px;
}

.lp-nav__brand {
  display: inline-flex;
  width: max-content;
}

.lp-nav .nav__logo {
  display: block;
  width: auto;
  height: 28px;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.lp-nav__links a {
  position: relative;
  color: var(--lp-ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.lp-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--brand-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.lp-nav__links a:hover {
  color: var(--brand-blue);
}

.lp-nav__links a:hover::after {
  transform: scaleX(1);
}

.lp-nav__actions {
  justify-self: end;
}

.lp-nav__progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green-neon));
  transform: scaleX(var(--lp-scroll-progress, 0));
  transform-origin: left;
  will-change: transform;
}

.lp-nav__drawer {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
}

/* Hero */
.lp-hero {
  position: relative;
  height: calc(100svh - 150px);
  min-height: 640px;
  max-height: 820px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-surface);
}

.lp-hero__media,
.lp-hero__veil {
  position: absolute;
  inset: 0;
}

.lp-hero__media {
  display: grid;
  grid-template-columns: 58% 42%;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--bg-surface);
  transform: scale(1.035);
  transition: transform 1600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.lp-ready .lp-hero__media {
  transform: scale(1);
}

.lp-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.96) contrast(1.01);
}

.lp-hero__image--main {
  grid-row: 1 / 3;
  object-position: center 52%;
}

.lp-hero__image--cliff {
  object-position: center 55%;
}

.lp-hero__image--ocean {
  object-position: center 48%;
}

.lp-hero__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.34) 70%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.86) 100%);
}

.lp-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 132px;
}

.lp-hero__content {
  width: min(760px, 70%);
  color: var(--fg-heading-1);
}

.lp-live-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease 150ms, transform 600ms ease 150ms;
}

.lp-ready .lp-live-label {
  opacity: 1;
  transform: translateY(0);
}

.lp-live-label__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-green-neon);
  box-shadow: 0 0 0 0 rgba(3, 255, 136, 0.5);
  animation: lpLivePulse 2200ms ease-out infinite;
}

.lp-hero h1 {
  margin: 0;
  color: var(--fg-heading-1);
  font-size: 76px;
  font-weight: 800;
  line-height: 0.98;
}

.lp-hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 5px;
}

.lp-hero__line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 880ms cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

.lp-hero__line + .lp-hero__line > span {
  transition-delay: 290ms;
}

.lp-ready .lp-hero__line > span {
  transform: translateY(0);
}

.lp-hero h1 em {
  color: var(--brand-blue);
  font-style: normal;
  box-shadow: inset 0 -0.2em 0 var(--brand-green-mint);
}

.lp-hero__copy {
  max-width: 630px;
  margin: 24px 0 0;
  color: var(--fg-body);
  font-size: 18px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease 440ms, transform 650ms ease 440ms;
}

.lp-ready .lp-hero__copy {
  opacity: 1;
  transform: translateY(0);
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease 540ms, transform 650ms ease 540ms;
}

.lp-ready .lp-hero__actions {
  opacity: 1;
  transform: translateY(0);
}

.lp-btn--glass {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.88);
  color: var(--fg-heading-1);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.lp-btn--glass:hover {
  border-color: var(--brand-blue);
  background: var(--bg-hover);
  color: var(--brand-blue);
}

.lp-hero__risk {
  margin: 18px 0 0;
  color: var(--fg-muted);
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 650ms ease 620ms;
}

.lp-ready .lp-hero__risk {
  opacity: 1;
}

.lp-hero__rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 -1px 0 rgba(0, 0, 255, 0.08);
}

.lp-hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lp-hero__fact {
  min-height: 105px;
  padding: 22px 28px;
  border-left: 1px solid var(--border);
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.lp-hero__fact:last-child {
  border-right: 1px solid var(--border);
}

.lp-ready .lp-hero__fact {
  opacity: 1;
  transform: translateY(0);
}

.lp-ready .lp-hero__fact:nth-child(1) { transition-delay: 620ms; }
.lp-ready .lp-hero__fact:nth-child(2) { transition-delay: 700ms; }
.lp-ready .lp-hero__fact:nth-child(3) { transition-delay: 780ms; }
.lp-ready .lp-hero__fact:nth-child(4) { transition-delay: 860ms; }

.lp-hero__fact span,
.lp-market__status small {
  display: block;
  color: var(--fg-muted-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lp-hero__fact strong {
  display: block;
  margin-top: 7px;
  color: var(--fg-heading-1);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

@keyframes lpLivePulse {
  70%, 100% { box-shadow: 0 0 0 9px rgba(3, 255, 136, 0); }
}

/* Shared section rhythm */
.lp-section {
  padding: 112px 0;
}

.lp-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 52px;
}

.lp-section__heading h2,
.lp-proof h2,
.lp-close h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--lp-ink);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.04;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.lp-section__heading > p,
.lp-section__heading > div > p:last-child {
  margin: 0;
  color: var(--fg-secondary);
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.lp-section__heading > div > p:last-child {
  max-width: 720px;
  margin-top: 18px;
}

.lp-kicker {
  margin: 0;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lp-kicker--mint {
  color: var(--brand-blue);
}

.lp-section__heading--light h2 {
  color: var(--fg-heading-1);
}

.lp-section__heading--light > p {
  color: var(--fg-secondary);
}

.lp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.lp-text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.lp-text-link:hover svg {
  transform: translateX(3px);
}

/* Marketplace */
.lp-market {
  background: var(--lp-white);
}

.lp-market__heading {
  align-items: center;
}

.lp-market__status {
  position: relative;
  justify-self: end;
  min-width: 210px;
  padding: 14px 0 14px 28px;
  border-left: 1px solid var(--lp-line);
}

.lp-market__status > span {
  position: absolute;
  top: 19px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-green-neon);
  animation: lpLivePulse 2200ms ease-out infinite;
}

.lp-market__status strong {
  display: block;
  color: var(--lp-ink);
  font-size: 17px;
}

.lp-market__status small {
  margin-top: 4px;
  color: var(--fg-muted-2);
}

.lp-market__filters {
  justify-content: flex-start;
  margin: -10px 0 30px;
}

.lp-market .fchip {
  min-height: 40px;
  border-radius: 7px;
}

.lp-market__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lp-market .acard,
.lp-market .spot {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: var(--lp-white);
  box-shadow: 0 8px 28px rgba(8, 19, 26, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.lp-market .acard:hover,
.lp-market .spot:hover {
  border-color: rgba(0, 0, 255, 0.32);
  box-shadow: 0 18px 44px rgba(8, 19, 26, 0.12);
  transform: translateY(-4px);
}

.lp-market .acard:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
}

.lp-market .acard__media,
.lp-market .spot__media {
  position: relative;
  overflow: hidden;
}

.lp-market .acard__media img,
.lp-market .spot__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lp-market .spot__media > a {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lp-market .acard:hover .acard__media img,
.lp-market .spot:hover .spot__media img {
  transform: scale(1.035);
}

.lp-market .mgrid--featured {
  grid-template-columns: 1fr;
}

.lp-market .spot {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  overflow: hidden;
}

.lp-market .spot__media {
  min-height: 470px;
  background: var(--lp-canvas);
}

.lp-market .spot__body {
  padding: 40px;
}

.lp-market .spot__title {
  color: var(--lp-ink);
  font-size: 30px;
  line-height: 1.12;
}

.lp-market .spot__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-market .spot__loc {
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 700;
}

.lp-market .spot__blurb {
  margin: 0;
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.lp-market .spot__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  min-height: 24px;
  color: var(--fg-secondary);
  font-size: 13px;
  font-weight: 700;
}

.lp-market .spot__specs > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-market .spot__specs svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.lp-market .spot__priced {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 5px;
}

.lp-market .spot__price {
  font-size: 28px;
  font-weight: 800;
}

.lp-market .spot__price span {
  color: var(--fg-muted-2);
  font-size: 13px;
  font-weight: 700;
}

.lp-market .spot__funded {
  color: var(--fg-secondary);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.lp-market .spot__track {
  height: 6px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--border);
}

.lp-market .spot__fill {
  height: 100%;
  border-radius: inherit;
  background: var(--brand-green-mint);
}

.lp-market .spot__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--lp-line);
}

.lp-market .spot__stats .k {
  color: var(--fg-muted-2);
}

.lp-market .spot__price,
.lp-market .spot__stats .v {
  color: var(--brand-blue);
  font-variant-numeric: tabular-nums;
}

.lp-market .spot__stats .v {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 800;
}

.lp-market .spot__cta {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.lp-market .spot__cta .btn {
  flex: 1;
}

.lp-market .spot__live {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--lp-ink);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.lp-market .spot__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green-neon);
}

.lp-market__developer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 28px 32px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-blue);
}

.lp-market__developer-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--brand-green-mint);
}

.lp-market__developer-mark svg {
  width: 24px;
  height: 24px;
}

.lp-market__developer .launch-more__txt h3 {
  color: var(--lp-white);
}

.lp-market__developer .launch-more__txt p {
  color: rgba(255, 255, 255, 0.72);
}

.more-foot {
  margin-top: 30px;
  text-align: center;
}

/* Ownership structure */
.lp-structure {
  padding: 112px 0 96px;
  background: var(--bg-page);
  color: var(--fg-body);
}

.lp-structure__diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: stretch;
}

.lp-structure__node {
  position: relative;
  min-height: 256px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-surface);
  box-shadow: var(--card-shadow, 0 1px 2px rgba(10, 13, 18, 0.05));
  box-sizing: border-box;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.lp-structure__node:hover {
  border-color: rgba(0, 0, 255, 0.35);
  box-shadow: 0 8px 22px rgba(0, 0, 255, 0.08);
  transform: translateY(-3px);
}

.lp-structure__index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--fg-muted-2);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.lp-structure__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-blue);
  color: var(--brand-green-mint);
  box-shadow: 0 8px 24px rgba(0, 0, 255, 0.22);
}

.lp-structure__icon svg {
  width: 24px;
  height: 24px;
}

.lp-structure__node h3 {
  margin: 38px 0 10px;
  color: var(--fg-heading-2);
  font-size: 18px;
  font-weight: 800;
}

.lp-structure__node p {
  margin: 0;
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.lp-structure__connector {
  position: relative;
  align-self: center;
  height: 2px;
  overflow: visible;
}

.lp-structure__connector::before {
  position: absolute;
  inset: 0 8px 0 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green-neon));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 300ms;
}

.lp-structure__connector::after {
  position: absolute;
  top: -4px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--brand-blue);
  border-right: 2px solid var(--brand-blue);
  content: "";
  opacity: 0;
  transform: rotate(45deg) translateX(-6px);
  transition: opacity 250ms ease 850ms, transform 350ms ease 850ms;
}

.lp-structure__diagram.is-visible .lp-structure__connector::before {
  transform: scaleX(1);
}

.lp-structure__diagram.is-visible .lp-structure__connector::after {
  opacity: 1;
  transform: rotate(45deg) translateX(0);
}

.lp-structure__note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.lp-structure__note > span {
  padding: 7px 10px;
  border: 1px solid var(--brand-green-mint);
  border-radius: 6px;
  background: var(--brand-green-mint);
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lp-structure__note p {
  margin: 0;
  color: var(--fg-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.lp-structure__note a {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

/* Product walkthrough */
.lp-how {
  background: var(--lp-canvas);
}

.lp-how__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 72px;
}

.lp-how__media {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: var(--lp-white);
}

.lp-how__media::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green-neon));
  content: "";
}

.lp-how__video {
  position: absolute;
  inset: 46px 28px 20px;
  width: calc(100% - 56px);
  height: calc(100% - 66px);
  object-fit: contain;
}

.lp-how__video img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-how__signal {
  position: absolute;
  z-index: 2;
  min-width: 180px;
  padding: 12px 15px;
  border: 1px solid rgba(8, 19, 26, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(8, 19, 26, 0.12);
  backdrop-filter: blur(10px);
}

.lp-how__signal--top {
  top: 38px;
  left: 34px;
}

.lp-how__signal--bottom {
  right: 34px;
  bottom: 34px;
}

.lp-how__signal span,
.lp-how__signal strong {
  display: block;
}

.lp-how__signal span {
  color: var(--fg-muted-2);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.lp-how__signal strong {
  margin-top: 3px;
  color: var(--lp-ink);
  font-size: 13px;
}

.lp-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid var(--border-strong);
}

.lp-step:last-child {
  border-bottom: 1px solid var(--border-strong);
}

.lp-step__number {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.lp-step h3 {
  margin: 0;
  color: var(--lp-ink);
  font-size: 20px;
  font-weight: 800;
}

.lp-step p {
  margin: 9px 0 0;
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* Calculator */
.lp-returns {
  background: var(--lp-white);
}

.lp-calc {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-surface);
  box-shadow: 0 8px 24px rgba(10, 13, 18, 0.08);
}

.lp-calc::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green-neon));
  content: "";
}

.lp-calc .calc__left,
.lp-calc .calc__right {
  padding: 48px;
}

.lp-calc .calc__left {
  color: var(--fg-body);
}

.lp-calc .calc__left h3 {
  margin: 0 0 10px;
  color: var(--fg-heading-1);
  font-size: 30px;
  font-weight: 800;
}

.lp-calc .calc__left > p {
  margin: 0 0 32px;
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.lp-calc .calc__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1px solid var(--border);
  background: var(--bg-row-hover);
}

.lp-calc .calc__ctrl {
  margin-bottom: 24px;
}

.lp-calc .calc__ctrl--last {
  margin-bottom: 0;
}

.lp-calc .calc__ctrl label {
  color: var(--fg-body);
  font-size: 13px;
}

.lp-calc .calc__editin,
.lp-calc .calc__editpre,
.lp-calc .calc__editsuf {
  color: var(--brand-blue);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.lp-calc .calc__editin {
  border-bottom-color: var(--brand-blue);
}

.lp-calc .calc__caret::after {
  color: var(--brand-blue);
}

.lp-calc .calc__range {
  height: 5px;
  background: var(--border-strong);
}

/* The track is 5px tall, so the thumb IS the touch target: measured with
   elementFromPoint, the hit area extended 11px above and 10px below centre —
   exactly the thumb, 22px, and 16px on Firefox.
   These 24px are a USABILITY floor, not a conformance fix. Re-checking WCAG
   2.5.8 the way the spec actually words it (a 24px-DIAMETER circle on each
   target, which must not intersect another target or another undersized
   target's circle) puts these sliders inside the spacing exception, so 22px
   was not a violation. Grabbing a 22px — or on Firefox 16px — control on a
   phone is still needlessly fiddly, and 2px costs nothing.
   Still below the 26px base rule in kit.css, so the slimmer look is kept. */
.lp-calc .calc__range::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 4px solid var(--brand-blue);
  background: var(--bg-surface);
}

.lp-calc .calc__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 4px solid var(--brand-blue);
  background: var(--bg-surface);
}

.lp-calc .calc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.lp-calc .calc__chip {
  min-height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--bg-surface);
  color: var(--fg-body);
}

.lp-calc .calc__chip.on {
  border-color: var(--brand-green-mint);
  background: var(--brand-green-mint);
  color: var(--brand-blue);
}

.lp-calc .calc__result {
  text-align: left;
}

.lp-calc .calc__result .k {
  color: var(--fg-muted);
  font-size: 13px;
}

.lp-calc .calc__big {
  margin: 7px 0 0;
  color: var(--brand-blue);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.lp-calc__delta {
  margin-top: 8px;
  color: var(--fg-secondary);
  font-size: 13px;
  font-weight: 700;
}

.lp-calc__chart {
  position: relative;
  height: 180px;
  padding: 18px 16px 28px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--bg-surface);
  box-sizing: border-box;
}

.lp-calc__chart svg {
  width: 100%;
  height: 100%;
}

.lp-calc__gridline {
  stroke: var(--border);
  stroke-width: 1;
}

.lp-calc .cf-line {
  stroke: var(--brand-blue);
}

.lp-calc__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: var(--fg-muted-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lp-calc .calc__rows {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--bg-surface);
}

.lp-calc .calc__r {
  border-bottom: 1px solid var(--border-soft);
  color: var(--fg-secondary);
  font-size: 14px;
}

.lp-calc .calc__r b {
  color: var(--fg-heading-2);
}

.lp-calc .calc__r:last-child {
  border-bottom: 0;
}

.lp-calc .calc__r .lp-calc__mint {
  color: var(--brand-blue);
}

.lp-calc .calc__note {
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Transparency section */
.lp-proof {
  padding: 112px 0;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-canvas);
}

.lp-proof__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  align-items: start;
  gap: 92px;
}

.lp-proof h2 {
  max-width: 620px;
  margin-top: 12px;
}

.lp-proof__intro > p:not(.lp-kicker) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--fg-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.lp-proof__intro .lp-text-link {
  margin-top: 28px;
}

.lp-proof__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-proof__list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-top: 1px solid var(--border-strong);
}

.lp-proof__list li:last-child {
  border-bottom: 1px solid var(--border-strong);
}

.lp-proof__list li > span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.lp-proof__list strong {
  color: var(--lp-ink);
  font-size: 17px;
  font-weight: 800;
}

.lp-proof__list p {
  margin: 7px 0 0;
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ */
.lp-faq {
  background: var(--lp-white);
}

.lp-faq .faqs {
  max-width: 900px;
  margin: 0 auto;
  border-bottom: 1px solid var(--lp-line);
}

.lp-faq .faqq {
  border-top: 1px solid var(--lp-line);
  border-radius: 0;
  background: transparent;
}

.lp-faq .faqq__q {
  width: 100%;
  min-height: 76px;
  padding: 20px 0;
  border: 0;
  background: none;
  color: var(--lp-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.lp-faq .faqq__q svg {
  flex: none;
  transition: transform 220ms ease;
}

.lp-faq .faqq.open .faqq__q svg {
  transform: rotate(45deg);
}

.lp-faq .faqq__a p {
  max-width: 780px;
  padding: 0 52px 24px 0;
  color: var(--fg-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* Closing image band */
.lp-close {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-surface);
}

.lp-close__image,
.lp-close__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lp-close__image {
  object-fit: cover;
  object-position: center 46%;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-close:hover .lp-close__image {
  transform: scale(1.025);
}

.lp-close__veil {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.18) 100%);
}

.lp-close__inner {
  position: relative;
  z-index: 1;
  padding-block: 96px;
  color: var(--fg-heading-1);
}

.lp-close h2 {
  max-width: 760px;
  color: var(--fg-heading-1);
  font-size: 54px;
}

.lp-close__inner > p:not(.lp-kicker):not(.lp-close__risk) {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--fg-body);
  font-size: 17px;
}

.lp-close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lp-close__risk {
  margin: 18px 0 0;
  color: var(--fg-muted);
  font-size: 12px;
}

/* Footer and quick view */
.lp-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.lp-footer .foot__top {
  border-bottom-color: var(--border);
}

.lp-footer .foot__logo {
  filter: none;
}

/* h3 AND h4: index.html uses h3 so its heading outline has no gap, while the
   other pages still carry h4 in the same footer. Matching both keeps the
   styling identical everywhere and lets the pages move over one at a time. */
.lp-footer .foot__col h3,
.lp-footer .foot__col h4 {
  color: var(--brand-blue);
}

.lp-footer .foot__col a,
.lp-footer .foot__bl,
.lp-footer .foot__bot {
  color: var(--fg-secondary);
}

.lp-footer .foot__col a:hover {
  color: var(--brand-blue);
}

.lp-body .qv {
  border-radius: 8px;
}

.lp-body .qv__badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.lp-body .qv__track {
  margin-top: 10px;
}

.lp-body .qv__price .p .num {
  color: var(--brand-blue);
  font-size: 30px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* The global consent script uses legacy ds-* button names on kit pages. */
.lp-body #cookie-consent-banner.ds-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  width: calc(100% - 40px);
  max-width: 980px;
  padding: 20px 22px;
  border: 1px solid var(--lp-line);
  border-top: 3px solid var(--brand-blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(8, 19, 26, 0.18);
  backdrop-filter: blur(16px);
  box-sizing: border-box;
}

.lp-body #cookie-consent-banner .cookie-text-content {
  gap: 6px;
}

.lp-body #cookie-consent-banner .cookie-text-content h3 {
  font-size: 16px;
  font-weight: 800;
}

.lp-body #cookie-consent-banner .cookie-text-content p {
  font-size: 12.5px;
  line-height: 1.5;
}

.lp-body #cookie-consent-banner .cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
  margin-top: 0;
}

.lp-body #cookie-consent-banner .ds-btn,
.lp-body #cookie-preferences-modal .ds-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.lp-body #cookie-consent-banner .ds-btn--primary,
.lp-body #cookie-preferences-modal .ds-btn--primary {
  background: var(--brand-blue);
  color: var(--brand-green-mint);
}

.lp-body #cookie-consent-banner .ds-btn--secondary {
  background: var(--brand-green-mint);
  color: var(--brand-blue);
}

.lp-body #cookie-consent-banner .ds-btn--ghost {
  border-color: var(--border-strong);
  background: var(--lp-white);
  color: var(--lp-ink-soft);
}

.lp-body #cookie-preferences-modal {
  background: rgba(16, 24, 40, 0.45);
}

.lp-body #cookie-preferences-modal .cookie-modal-container {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
}

/* Scroll entrance motion */
.lp-js [data-reveal],
.lp-js [data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
}

.lp-js [data-reveal] {
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-js [data-stagger] > * {
  transition: opacity 580ms ease, transform 580ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-js [data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.lp-js [data-stagger].is-visible > *:nth-child(2) { transition-delay: 90ms; }
.lp-js [data-stagger].is-visible > *:nth-child(3) { transition-delay: 180ms; }
.lp-js [data-stagger].is-visible > *:nth-child(4) { transition-delay: 270ms; }

/* Responsive */
@media (max-width: 1120px) {
  .lp-nav__in {
    grid-template-columns: auto 1fr auto;
  }

  .lp-nav__links {
    gap: 20px;
  }

  .lp-hero h1 {
    font-size: 64px;
  }

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

  .lp-structure__diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .lp-structure__connector {
    display: none;
  }

  .lp-how__layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 46px;
  }
}

@media (max-width: 900px) {
  .lp-body .wrap {
    padding-inline: 28px;
  }

  .lp-nav__links {
    display: none;
  }

  .lp-nav__in {
    grid-template-columns: 1fr auto;
  }

  .lp-nav .mnav-burger {
    display: inline-flex;
  }

  .lp-section__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-section__heading > p {
    max-width: 680px;
  }

  .lp-how__layout,
  .lp-proof__layout {
    grid-template-columns: 1fr;
  }

  .lp-how__layout {
    gap: 48px;
  }

  .lp-proof__layout {
    gap: 52px;
  }

  .lp-how__media {
    min-height: 600px;
  }

  .lp-calc {
    grid-template-columns: 1fr;
  }

  .lp-calc .calc__right {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .lp-market .spot {
    grid-template-columns: 1fr;
  }

  .lp-market .spot__media {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .lp-body .wrap {
    padding-inline: 20px;
  }

  .lp-nav__in {
    height: 70px;
  }

  .lp-nav .nav__logo {
    height: 25px;
  }

  .lp-nav__actions > .btn {
    display: none;
  }

  .lp-nav__drawer {
    top: 78px;
  }

  .lp-hero {
    height: calc(100svh - 96px);
    min-height: 540px;
    max-height: 760px;
  }

  .lp-hero__media {
    display: block;
  }

  .lp-hero__image--main {
    display: block;
  }

  .lp-hero__image--cliff,
  .lp-hero__image--ocean {
    display: none;
  }

  .lp-hero__veil {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.99) 100%);
  }

  .lp-hero__inner {
    align-items: flex-start;
    padding-top: 44px;
    padding-bottom: 132px;
  }

  .lp-hero__content {
    width: 100%;
  }

  .lp-live-label {
    margin-bottom: 15px;
    font-size: 11px;
  }

  .lp-hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .lp-hero__copy {
    max-width: 520px;
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.5;
  }

  .lp-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
  }

  .lp-hero__actions .btn {
    width: 100%;
  }

  .lp-hero__risk {
    margin-top: 12px;
    font-size: 10.5px;
  }

  .lp-hero__facts {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 0;
  }

  .lp-hero__fact {
    min-height: 62px;
    padding: 10px 14px;
  }

  .lp-hero__fact:nth-child(3),
  .lp-hero__fact:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .lp-hero__fact span {
    font-size: 9px;
  }

  .lp-hero__fact strong {
    margin-top: 3px;
    font-size: 11.5px;
  }

  .lp-section,
  .lp-proof {
    padding: 80px 0;
  }

  .lp-structure {
    padding: 80px 0 72px;
  }

  .lp-section__heading {
    margin-bottom: 38px;
  }

  .lp-section__heading h2,
  .lp-proof h2,
  .lp-close h2 {
    font-size: 39px;
    line-height: 1.08;
  }

  .lp-section__heading > p,
  .lp-section__heading > div > p:last-child,
  .lp-proof__intro > p:not(.lp-kicker) {
    font-size: 15px;
  }

  .lp-market__status {
    justify-self: start;
  }

  .lp-market__grid {
    grid-template-columns: 1fr;
  }

  .lp-market .spot__media {
    min-height: 270px;
  }

  .lp-market .spot__body {
    padding: 25px 22px;
  }

  .lp-market .spot__title {
    font-size: 24px;
  }

  .lp-market .spot__stats {
    gap: 8px;
  }

  .lp-market .spot__cta,
  .lp-market__developer {
    grid-template-columns: 1fr;
  }

  .lp-market .spot__cta {
    flex-direction: column;
  }

  .lp-market__developer {
    justify-items: start;
    padding: 24px;
  }

  .lp-structure__diagram {
    grid-template-columns: 1fr;
  }

  .lp-structure__node {
    min-height: 220px;
  }

  .lp-structure__note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-structure__note > span {
    width: max-content;
  }

  .lp-how__media {
    min-height: 460px;
  }

  .lp-how__video {
    inset: 42px 12px 12px;
    width: calc(100% - 24px);
    height: calc(100% - 54px);
  }

  .lp-how__signal {
    min-width: 0;
    padding: 9px 11px;
  }

  .lp-how__signal--top {
    top: 18px;
    left: 14px;
  }

  .lp-how__signal--bottom {
    right: 14px;
    bottom: 18px;
  }

  .lp-step {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .lp-calc .calc__left,
  .lp-calc .calc__right {
    padding: 30px 22px;
  }

  .lp-calc .calc__left h3 {
    font-size: 25px;
  }

  .lp-calc .calc__ctrl label {
    align-items: flex-start;
    gap: 12px;
  }

  .lp-calc .calc__big {
    font-size: 44px;
  }

  .lp-calc__chart {
    height: 150px;
  }

  .lp-proof__layout {
    min-width: 0;
  }

  .lp-proof__list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .lp-faq .faqq__q {
    min-height: 70px;
    font-size: 15px;
  }

  .lp-faq .faqq__a p {
    padding-right: 24px;
    font-size: 14px;
  }

  .lp-close {
    min-height: 560px;
  }

  .lp-close__veil {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.98) 72%);
  }

  .lp-close__inner {
    align-self: flex-end;
    padding-block: 72px;
  }

  .lp-close__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lp-close__actions .btn {
    width: 100%;
  }

  .lp-footer .foot__top {
    grid-template-columns: 1fr 1fr;
  }

  .lp-footer .foot__top > div:first-child {
    grid-column: 1 / -1;
  }

  .lp-body #cookie-consent-banner.ds-card {
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 24px);
    padding: 17px;
  }

  .lp-body #cookie-consent-banner .cookie-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .lp-hero h1 {
    font-size: 40px;
  }

  .lp-hero__copy {
    font-size: 14px;
  }

  .lp-section__heading h2,
  .lp-proof h2,
  .lp-close h2 {
    font-size: 35px;
  }

  .lp-market .spot__stats {
    grid-template-columns: 1fr;
  }

  .lp-market .spot__priced {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .lp-how__media {
    min-height: 410px;
  }

  .lp-how__signal strong {
    font-size: 11px;
  }

  .lp-footer .foot__top {
    grid-template-columns: 1fr;
  }

  .lp-footer .foot__top > div:first-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) and (max-height: 700px) {
  .lp-hero {
    min-height: 0;
  }

  .lp-hero__inner {
    padding-top: 26px;
  }

  .lp-live-label {
    margin-bottom: 10px;
  }

  .lp-hero h1 {
    font-size: 36px;
  }

  .lp-hero__copy {
    margin-top: 12px;
    font-size: 13px;
  }

  .lp-hero__actions {
    grid-template-columns: 1fr 1fr;
    margin-top: 14px;
  }

  .lp-hero__actions .btn {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .lp-hero__risk {
    display: none;
  }
}

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

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

  .lp-hero__media,
  .lp-hero__line > span,
  .lp-live-label,
  .lp-hero__copy,
  .lp-hero__actions,
  .lp-hero__risk,
  .lp-hero__fact,
  .lp-js [data-reveal],
  .lp-js [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}
