@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  --ink-terminal: #0a0e17;
  --ink-terminal-raised: #0d1321;
  --ink-terminal-card: #141c2b;
  --border-terminal: #1e293b;
  --border-terminal-strong: #334155;
  --text-primary-dark: #f1f5f9;
  --text-secondary-dark: #94a3b8;
  --text-muted-dark: #64748b;
  --electric-cyan: #00ffd5;
  --profit-green: #00ff88;
  --risk-red: #ff3366;
  --caution-amber: #ffb800;
  --shadow-panel: 0 1px 0 rgba(255, 255, 255, 0.02) inset, 0 8px 24px rgba(0, 0, 0, 0.35);
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --lp-accent: var(--electric-cyan);
  --bg-grid:
    linear-gradient(rgba(30, 41, 59, 0.35) 1px, transparent 1px) 0 0 / 50px 50px,
    linear-gradient(90deg, rgba(30, 41, 59, 0.35) 1px, transparent 1px) 0 0 / 50px 50px,
    radial-gradient(1200px 600px at 80% -10%, rgba(0, 180, 216, 0.08), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(0, 255, 213, 0.06), transparent 55%),
    var(--ink-terminal);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary-dark);
  background: var(--bg-grid);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.announce-ending-page {
  padding-top: 70px;
}

@media (min-width: 1024px) {
  body.announce-ending-page {
    padding-top: 80px;
  }
}

#header-root,
#header-root > header {
  display: block !important;
}

#header-root a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.lp-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-container--wide {
  max-width: 1060px;
}

/* Legacy header (removed — React header in #header-root) */
.lp-header {
  display: none !important;
}

.lp-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-header__logo {
  height: 44px;
  width: auto;
}

/* Sections */
.lp-section {
  padding: 56px 0;
}

.lp-section--hero {
  padding: 80px 0 56px;
  text-align: center;
}

.lp-section--cta {
  padding: 28px 0 64px;
}

.lp-section--closing {
  padding: 64px 0 100px;
  text-align: center;
}

/* Typography helpers */
.lp-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lp-kicker--left {
  justify-content: flex-start;
}

.lp-kicker--green {
  color: var(--profit-green);
}

.lp-kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: currentColor;
  flex: none;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid var(--border-terminal-strong);
  border-radius: 9999px;
  background: rgba(0, 255, 213, 0.05);
  margin-bottom: 32px;
}

.lp-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--lp-accent);
  flex: none;
}

.lp-pill__text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--lp-accent);
}

.lp-title {
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text-primary-dark);
  margin-bottom: 8px;
}

.lp-title__sub {
  display: block;
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.02em;
}

.lp-title__accent {
  color: var(--lp-accent);
}

.lp-lead {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary-dark);
}

.lp-lead--left {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.lp-h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.lp-copy {
  font-size: 17px;
  color: var(--text-secondary-dark);
  margin-bottom: 32px;
}

.lp-copy strong,
.lp-accent {
  color: var(--lp-accent);
  font-weight: 600;
}

/* Countdown */
.lp-countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 44px auto 0;
  flex-wrap: wrap;
}

.lp-countdown__cell {
  min-width: 116px;
  padding: 22px 18px;
  background: var(--ink-terminal-card);
  border: 1px solid var(--border-terminal);
  border-radius: 12px;
  box-shadow: var(--shadow-panel);
}

.lp-countdown__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--lp-accent);
  font-variant-numeric: tabular-nums;
}

.lp-countdown__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-muted-dark);
  margin-top: 10px;
}

.lp-countdown__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted-dark);
  margin-top: 16px;
}

/* Cards */
.lp-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(0, 255, 213, 0.035), var(--ink-terminal-card));
  border: 1px solid var(--border-terminal-strong);
  border-radius: 16px;
  box-shadow: 0 0 44px rgba(0, 255, 213, 0.06);
}

.lp-card + .lp-card {
  margin-top: 16px;
}

.lp-card__head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.lp-card__icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: rgba(0, 255, 136, 0.12);
  color: var(--profit-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}

.lp-card__title {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.lp-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary-dark);
}

.lp-card__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.lp-card__list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary-dark);
}

.lp-card__list-item::before {
  content: "•";
  color: var(--lp-accent);
  font-size: 18px;
  line-height: 1.55;
  flex: none;
}

/* Grids */
.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp-grid-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--ink-terminal-raised);
  border: 1px solid var(--border-terminal);
  border-radius: 10px;
}

.lp-grid-item__num {
  flex: none;
  color: var(--lp-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}

.lp-grid-item__text {
  font-size: 15px;
  line-height: 1.55;
}

/* Panel / distinction box */
.lp-panel {
  border: 1px solid var(--border-terminal-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 255, 213, 0.04), rgba(10, 14, 23, 0));
  padding: clamp(28px, 4vw, 48px);
}

.lp-panel__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  color: var(--text-primary-dark);
  padding: 14px 20px;
  border: 1px dashed var(--border-terminal-strong);
  border-radius: 10px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.lp-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.lp-split__panel {
  padding: 22px 24px;
  border: 1px solid var(--border-terminal);
  border-radius: 14px;
  background: var(--ink-terminal-card);
}

.lp-split__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.lp-split__label--yes {
  color: var(--profit-green);
}

.lp-split__label--no {
  color: var(--risk-red);
}

.lp-split__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.lp-split__row:last-child {
  margin-bottom: 0;
}

.lp-split__mark {
  flex: none;
  margin-top: 1px;
}

/* Callouts */
.lp-callout {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(0, 255, 213, 0.62);
  border-radius: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 255, 213, 0.16), rgba(0, 255, 213, 0.04) 42%, rgba(10, 14, 23, 0.35) 100%);
  box-shadow: 0 0 44px rgba(0, 255, 213, 0.12), inset 0 0 28px rgba(0, 255, 213, 0.05);
  text-align: center;
}

.lp-callout__title {
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.35;
  font-weight: 800;
  margin-top: 12px;
}

/* CTA box */
.lp-cta-box {
  border: 1px solid var(--lp-accent);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 255, 213, 0.07), rgba(10, 14, 23, 0.2));
  box-shadow: 0 0 60px rgba(0, 255, 213, 0.1);
  overflow: hidden;
}

.lp-cta-box__body {
  padding: clamp(28px, 4vw, 52px);
}

.lp-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 9999px;
  background: var(--lp-accent);
  color: #06121a;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.lp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 24px;
  margin-top: 28px;
}

.lp-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 72px);
  color: var(--lp-accent);
  line-height: 1;
}

.lp-price-note {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary-dark);
  max-width: 320px;
}

.lp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.lp-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-terminal-strong);
  background: var(--ink-terminal-card);
  color: var(--text-primary-dark);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lp-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.lp-btn strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.lp-btn small {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary-dark);
}

.lp-btn__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.lp-btn--primary {
  border-color: rgba(0, 255, 213, 0.45);
  box-shadow: 0 0 24px rgba(0, 255, 213, 0.12);
}

.lp-btn--primary:hover {
  border-color: var(--lp-accent);
  box-shadow: 0 0 32px rgba(0, 255, 213, 0.22);
}

.lp-btn--primary .lp-btn__icon {
  background: rgba(0, 255, 213, 0.12);
  color: var(--lp-accent);
}

.lp-btn--secondary .lp-btn__icon {
  background: rgba(75, 225, 242, 0.12);
  color: #4be1f2;
}

/* Site footer (homepage React component) */
#footer-root,
#footer-root > footer {
  display: block !important;
}

/* Footer */
.lp-footer {
  border-top: 1px solid var(--border-terminal);
  padding: 40px 0 56px;
  text-align: center;
}

.lp-footer p,
.lp-footer a {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

.lp-footer a:hover {
  color: var(--text-secondary-dark);
}

.lp-footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@media (max-width: 860px) {
  .lp-grid-2,
  .lp-split {
    grid-template-columns: 1fr;
  }

  .lp-card {
    padding: 22px;
  }

  .lp-card__head {
    gap: 14px;
  }

  .lp-callout {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .lp-header__inner {
    flex-direction: column;
    align-items: center;
  }

  .lp-countdown__cell {
    min-width: 96px;
    padding: 18px 14px;
  }

  .lp-countdown__value {
    font-size: 40px;
  }
}

/* Offer document */
.lp-offer {
  max-width: 820px;
  margin: 0 auto;
}

.lp-intro {
  margin-bottom: 20px;
  padding: 32px 36px;
  border: 1px solid rgba(0, 255, 213, 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), var(--ink-terminal-card));
}

.lp-intro__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 20px;
}

.lp-intro__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: currentColor;
  flex: none;
}

.lp-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(241, 245, 249, 0.82);
  margin-bottom: 18px;
}

.lp-intro p:last-child {
  margin-bottom: 0;
}

.lp-intro strong {
  color: var(--text-primary-dark);
  font-weight: 700;
}

.lp-scarcity {
  margin-top: 22px;
  padding: 24px 26px;
  border: 2px solid var(--caution-amber);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 184, 0, 0.14), rgba(10, 14, 23, 0.2));
  box-shadow: 0 0 32px rgba(255, 184, 0, 0.18);
}

.lp-scarcity__kicker {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caution-amber);
  text-align: center;
  margin-bottom: 8px;
  opacity: 0.85;
}

.lp-scarcity__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caution-amber);
  text-align: center;
  margin-bottom: 14px;
}

.lp-scarcity__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-primary-dark);
  font-weight: 600;
  margin: 0;
}

.lp-scarcity__text strong {
  color: var(--caution-amber);
  font-weight: 800;
}

.lp-gated-content[hidden],
.lp-gate[hidden] {
  display: none;
}

.lp-blur-gate {
  filter: blur(18px);
  user-select: none;
  transition: filter 700ms ease;
}

.lp-blur-gate.is-unlocked {
  filter: none;
  user-select: auto;
}

.lp-gate {
  margin-bottom: 20px;
  padding: 32px 36px;
  border: 1px solid var(--lp-accent);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 255, 213, 0.07), rgba(10, 14, 23, 0.2));
  box-shadow: 0 0 40px rgba(0, 255, 213, 0.1);
  text-align: center;
}

.lp-gate__question {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  color: var(--text-primary-dark);
  margin-bottom: 10px;
}

.lp-gate__note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary-dark);
  white-space: nowrap;
  margin: 0 auto 26px;
}

@media (max-width: 640px) {
  .lp-gate__note {
    white-space: normal;
    max-width: 420px;
  }
}

.lp-gate__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-gate__btn {
  min-width: 140px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.lp-gate__btn--yes {
  border: none;
  background: var(--lp-accent);
  color: #06121a;
  box-shadow: 0 0 24px rgba(0, 255, 213, 0.35);
}

.lp-gate__btn--yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 255, 213, 0.5);
}

.lp-gate__btn--no {
  border: 1px solid var(--border-terminal-strong);
  background: transparent;
  color: var(--text-secondary-dark);
}

.lp-gate__btn--no:hover {
  border-color: var(--text-secondary-dark);
  color: var(--text-primary-dark);
  transform: translateY(-2px);
}


.lp-offer__term {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary-dark);
  margin-top: 20px;
  line-height: 1.5;
}

.lp-offer__term .date-start,
.lp-offer__term .date-end {
  color: var(--lp-accent);
  font-weight: 700;
}

.lp-prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary-dark);
}

.lp-prose p {
  margin-bottom: 20px;
}

.lp-prose p:last-child {
  margin-bottom: 0;
}

.lp-prose strong {
  color: var(--text-primary-dark);
  font-weight: 700;
}

.lp-offer-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-offer-list li {
  position: relative;
  padding-left: 1.35em;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary-dark);
}

.lp-offer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lp-accent);
  font-size: 20px;
  line-height: 1.4;
}

.lp-exception {
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 184, 0, 0.45);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 184, 0, 0.1), rgba(255, 184, 0, 0.025));
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary-dark);
}

.lp-exception strong {
  color: var(--caution-amber);
}

.lp-transfer {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 255, 213, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 255, 213, 0.06), rgba(10, 14, 23, 0.15));
}

.lp-transfer__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 10px;
}

.lp-transfer p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary-dark);
  margin: 0;
}

.lp-bottom-line {
  margin-top: 20px;
  padding: 30px 32px;
  border: 2px solid var(--lp-accent);
  border-radius: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 255, 213, 0.14), rgba(10, 14, 23, 0.35) 70%);
  box-shadow: 0 0 44px rgba(0, 255, 213, 0.14);
  text-align: center;
}

.lp-bottom-line__label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 12px;
}

.lp-bottom-line__range {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.02em;
  color: var(--text-primary-dark);
  margin-bottom: 16px;
}

.lp-bottom-line__statement {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-primary-dark);
  max-width: 680px;
  margin: 0 auto;
}

.lp-clarify {
  margin-top: 20px;
  padding: 28px 32px;
  border: 1px solid var(--border-terminal-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 28, 43, 0.95), rgba(10, 14, 23, 0.85));
  box-shadow: var(--shadow-panel);
}

.lp-clarify__label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary-dark);
  text-align: center;
  margin-bottom: 18px;
}

.lp-clarify__body {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.lp-clarify__body p:last-child {
  margin-bottom: 0;
}

.lp-clarify__punch {
  margin-top: 24px;
  font-size: 18px;
  text-align: center;
  color: var(--text-primary-dark);
}

.lp-gratitude {
  margin-top: 28px;
  padding: 32px 36px;
  border: 1px solid var(--lp-accent);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 255, 213, 0.08), rgba(10, 14, 23, 0.2));
  box-shadow: 0 0 40px rgba(0, 255, 213, 0.12);
  text-align: center;
}

.lp-gratitude__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 14px;
}

.lp-gratitude__lead {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--text-primary-dark);
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto;
}

.lp-gratitude__bonus {
  margin: 26px auto 0;
  max-width: 720px;
  padding: 20px 22px;
  border: 1px solid var(--border-terminal-strong);
  border-radius: 14px;
  background: var(--ink-terminal-card);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.lp-gratitude__bonus-icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(0, 255, 213, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.lp-gratitude__bonus-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 6px;
}

.lp-gratitude__bonus-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary-dark);
  font-weight: 400;
  margin: 0;
}

.lp-gratitude__bonus-text strong {
  color: var(--text-primary-dark);
}

@media (max-width: 560px) {
  .lp-gratitude__bonus {
    flex-direction: column;
  }
}

.lp-payment {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 94vw;
  max-width: 1060px;
  margin-top: 24px;
  padding: 34px;
  border: 1px solid var(--border-terminal-strong);
  border-radius: 16px;
  background: var(--ink-terminal-card);
  text-align: center;
  box-shadow: var(--shadow-panel);
}

.lp-payment__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 60px);
  color: var(--lp-accent);
  line-height: 1;
}

.lp-payment__note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-secondary-dark);
  margin-bottom: 8px;
}

.lp-payment__note .date-start,
.lp-payment__note .date-end-inline {
  font-weight: 700;
  color: var(--text-primary-dark);
}

.lp-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
  width: 100%;
}

.lp-payment-method {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 7rem;
  padding: 1.35rem 5.25rem 1.35rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  text-decoration: none;
  text-align: left;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lp-payment-method--stripe {
  border: 3px solid transparent;
  background-image:
    linear-gradient(135deg, #635bff 0%, #4f46e5 100%),
    linear-gradient(135deg, var(--electric-cyan) 0%, #00b4d8 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.35), 0 8px 20px rgba(0, 0, 0, 0.25);
  color: #fff !important;
}

.lp-payment-method--stripe strong {
  color: #fff !important;
}

.lp-payment-method--stripe small {
  color: #e0e7ff !important;
}

.lp-payment-method--stripe .lp-payment-method-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.lp-payment-method--stripe::after,
.lp-payment-method--paypal::after {
  content: "GO";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
}

.lp-payment-method--stripe::after {
  width: 2.85rem;
  height: 2.85rem;
  background: #fff;
  color: #635bff;
  font-size: 0.72rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.lp-payment-method--stripe:hover,
.lp-payment-method--stripe:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 0 22px rgba(0, 255, 213, 0.3), 0 12px 28px rgba(99, 91, 255, 0.28);
  background-image:
    linear-gradient(135deg, #6d64ff 0%, #5850ec 100%),
    linear-gradient(135deg, var(--electric-cyan) 0%, #00b4d8 100%);
  outline: none;
}

.lp-payment-method--paypal {
  background: linear-gradient(135deg, #ffc439 0%, #ffa500 100%);
  color: #001c6a !important;
  border-color: rgba(0, 28, 106, 0.15);
}

.lp-payment-method--paypal strong {
  color: #001c6a !important;
}

.lp-payment-method--paypal small {
  color: #003087 !important;
}

.lp-payment-method--paypal .lp-payment-method-icon {
  background: rgba(0, 28, 106, 0.08);
  color: #001c6a;
}

.lp-payment-method--paypal::after {
  width: 2.35rem;
  height: 2.35rem;
  background: #001c6a;
  color: #ffc439;
  font-size: 0.66rem;
  box-shadow: 0 8px 20px rgba(0, 28, 106, 0.25);
}

.lp-payment-method--paypal:hover,
.lp-payment-method--paypal:focus-visible {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(0, 28, 106, 0.35);
  box-shadow: 0 12px 28px rgba(255, 196, 57, 0.28);
  background: linear-gradient(135deg, #ffd05c 0%, #ffb11a 100%);
  outline: none;
}

.lp-payment-method:active {
  transform: translateY(0) scale(0.99);
}

.lp-payment-method-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.lp-payment-method span:not(.lp-payment-method-icon) {
  display: grid;
  gap: 0.38rem;
  max-width: calc(100% - 4rem);
}

.lp-payment-method strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.lp-payment-method small {
  font-size: 0.96rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .lp-payment-methods {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .lp-payment-method {
    min-height: auto;
    padding: 1.1rem 4.5rem 1.1rem 1rem;
    gap: 0.9rem;
  }

  .lp-payment-method-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .lp-payment-method small {
    font-size: 0.84rem;
  }
}

.lp-guarantee {
  margin-top: 28px;
  padding: 28px 30px;
  border: 1px solid var(--border-terminal-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 255, 213, 0.06), var(--ink-terminal-card));
  box-shadow: 0 0 36px rgba(0, 255, 213, 0.08);
}

.lp-guarantee .lp-prose {
  margin-top: 0;
}

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