/* Shared pre-sell lander tokens + layout
   Five skins override the skin-* variables only. */

:root {
  --pl-bg: #0a0a0c;
  --pl-surface: #141418;
  --pl-ink: #f4f2ef;
  --pl-muted: #b7b3bc;
  --pl-accent: #e8ff47;
  --pl-accent-2: #ffffff;
  --pl-line: rgba(255, 255, 255, 0.12);
  --pl-cta-bg: #e8ff47;
  --pl-cta-ink: #0a0a0c;
  --pl-glow: rgba(232, 255, 71, 0.18);
  --pl-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --pl-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --pl-radius: 18px;
  --pl-shell: min(720px, calc(100vw - 40px));
  --pl-hero-size: clamp(2.6rem, 11vw, 5.4rem);
  color-scheme: dark;
}

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

html { background: var(--pl-bg); }

body.pl-body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--pl-bg);
  color: var(--pl-ink);
  font-family: var(--pl-font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

body.pl-body a { color: inherit; }

.pl-skip {
  position: absolute;
  left: -9999px;
}
.pl-skip:focus {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: 12px;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.pl-main { width: 100%; }

.pl-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 48px 0 56px;
  isolation: isolate;
  overflow: hidden;
}

.pl-hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 40%;
  width: min(70vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pl-glow), transparent 68%);
  z-index: -1;
  pointer-events: none;
}

.pl-shell {
  width: var(--pl-shell);
  margin-inline: auto;
}

.pl-kicker {
  margin: 0 0 18px;
  color: var(--pl-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pl-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--pl-display);
  font-size: var(--pl-hero-size);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.pl-hero-cta {
  margin-top: 28px;
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--pl-cta-bg);
  color: var(--pl-cta-ink) !important;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none !important;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--pl-cta-bg) 28%, transparent);
  transition: transform 0.16s ease, filter 0.16s ease;
  cursor: pointer;
}

.pl-btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.pl-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.pl-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.pl-micro {
  margin: 16px 0 0;
  color: var(--pl-muted);
  font-size: 13px;
  font-weight: 650;
}

.pl-section {
  padding: 28px 0;
}

.pl-card {
  padding: 28px 24px;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  background: linear-gradient(180deg, color-mix(in srgb, var(--pl-surface) 92%, #fff 8%), var(--pl-surface));
}

.pl-section h2 {
  margin: 0 0 14px;
  font-family: var(--pl-display);
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.pl-section p {
  margin: 0 0 12px;
  color: var(--pl-muted);
  max-width: 36ch;
}

.pl-section p:last-child { margin-bottom: 0; }

.pl-outcome p {
  color: color-mix(in srgb, var(--pl-ink) 82%, var(--pl-muted));
  font-size: 1.05rem;
}

.pl-proof {
  border-left: 3px solid var(--pl-accent);
}

.pl-bridge .pl-card {
  background:
    radial-gradient(circle at 90% 10%, var(--pl-glow), transparent 40%),
    var(--pl-surface);
}

.pl-cta-band {
  padding: 18px 0 40px;
}

.pl-cta-band .pl-btn {
  width: 100%;
  min-height: 60px;
  font-size: 1.12rem;
}

.pl-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--pl-line);
  color: var(--pl-muted);
  font-size: 12px;
  line-height: 1.55;
}

.pl-footer p { margin: 0 0 8px; max-width: 48ch; }
.pl-footer a {
  color: color-mix(in srgb, var(--pl-ink) 75%, var(--pl-muted));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pl-draft-flag {
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px dashed color-mix(in srgb, var(--pl-accent) 55%, transparent);
  border-radius: 12px;
  color: var(--pl-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .pl-hero { padding: 72px 0 80px; }
  .pl-section { padding: 34px 0; }
  .pl-card { padding: 34px 32px; }
  .pl-hero-cta .pl-btn { min-width: 280px; }
  .pl-cta-band .pl-btn { width: auto; min-width: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  .pl-btn:hover { transform: none; }
}
