:root {
  --void: #070807;
  --ink: #0c0f0b;
  --bone: #f4f0e6;
  --lime: #d6f34a;
  --lime-ink: #11180a;
  --mist: #a8b0a0;
  --line: rgba(255,255,255,.1);
  --rust: #e25a1c;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.land {
  margin: 0;
  font-family: Outfit, Manrope, sans-serif;
  color: var(--bone);
  background: var(--void);
  overflow-x: hidden;
}
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--lime); z-index: 80; pointer-events: none;
}
.lnav {
  position: sticky; top: 0; z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 6vw;
  background: rgba(7,8,7,.72);
  backdrop-filter: blur(16px);
  color: var(--bone);
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid var(--line);
}
.lnav.scrolled {
  background: rgba(7,8,7,.86);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 12px 6vw;
}
.lnav a { color: inherit; text-decoration: none; }
.lnav .brand { font-weight: 700; letter-spacing: -.02em; }
.lnav .brand span { color: var(--lime); }
.lnav .links { display: flex; gap: 22px; align-items: center; font-size: 14px; }
.lnav .links a:not(.btn):hover { color: var(--lime); }

.lhero {
  min-height: 100vh;
  padding: 6vh 6vw 10vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  background:
    radial-gradient(900px 480px at 8% -10%, #1d3a16 0%, transparent 58%),
    radial-gradient(700px 420px at 100% 20%, #3a2a10 0%, transparent 50%),
    var(--void);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(214,243,74,.45);
  color: var(--lime); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.lhero h1 {
  font-family: Fraunces, serif;
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 18px 0 18px;
}
.lhero h1 em { font-style: italic; color: var(--lime); }
.lhero .lead { font-size: 18px; line-height: 1.55; max-width: 540px; color: var(--mist); margin: 0; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta { display: flex; gap: 28px; margin-top: 36px; color: var(--mist); font-size: 13px; }
.hero-meta b { display: block; color: var(--bone); font-size: 22px; font-family: Fraunces, serif; }

.stage { position: relative; }
.product {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, #161a14, #0e110d);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform .5s ease;
}
.product:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.product-top { padding: 22px 24px 8px; }
.product-top .kicker { font-size: 11px; letter-spacing: .16em; color: var(--mist); }
.product-top b { display: block; font-family: Fraunces, serif; font-size: 34px; margin: 8px 0 4px; color: #fff; }
.product-top p { margin: 0 0 16px; color: #c9d0c0; }
.bar { height: 8px; background: #22281e; border-radius: 99px; overflow: hidden; }
.bar > i { display: block; width: 68%; height: 100%; background: var(--lime); }
.quote-band {
  margin-top: 22px;
  background: var(--lime);
  color: var(--lime-ink);
  padding: 16px 22px 18px;
}
.quote-band .who { display: block; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.quote-band p { margin: 0; font-size: 16px; font-weight: 650; line-height: 1.4; }

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  background: #0a0c09;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marq 28s linear infinite;
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lime);
}
@keyframes marq { to { transform: translateX(-50%); } }

.pin-wrap { height: 360vh; background: var(--ink); }
.pin-sticky {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 0 40px;
}
.pin-head { padding: 0 6vw 28px; max-width: 720px; }
.pin-head h2 { font-family: Fraunces, serif; font-size: clamp(32px, 4.6vw, 58px); margin: 0 0 10px; line-height: 1.05; }
.pin-head p { margin: 0; color: var(--mist); font-size: 17px; }
.pin-track {
  display: flex; gap: 22px; padding: 0 6vw;
  will-change: transform;
}
.pin-card {
  flex: 0 0 min(70vw, 420px);
  min-height: 340px;
  padding: 28px;
  border-radius: 24px;
  background: #121610;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.pin-card .num { font-family: Fraunces, serif; color: var(--lime); font-size: 42px; line-height: 1; }
.pin-card h3 { font-family: Fraunces, serif; font-size: 28px; margin: 18px 0 10px; }
.pin-card p { margin: 0; color: #c5ccbb; line-height: 1.5; }

.section { padding: 100px 6vw; }
.section.bone { background: var(--bone); color: #141711; }
.section.bone .muted, .section.bone p.lead { color: #4b5244; }
.section h2 { font-family: Fraunces, serif; font-size: clamp(32px, 4.4vw, 56px); margin: 0 0 12px; line-height: 1.05; }
.section .lead { max-width: 560px; font-size: 18px; color: var(--mist); }

.split {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start;
}
.split-sticky { position: sticky; top: 110px; }
.steps { display: grid; gap: 16px; }
.step {
  padding: 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4ddd0;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.step.in { opacity: 1; transform: none; }
.step b { display: block; font-size: 13px; color: #7a6a2a; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.step h3 { margin: 0 0 6px; font-family: Fraunces, serif; font-size: 24px; }
.step p { margin: 0; color: #4b5244; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.price-card {
  background: #fff;
  border: 1px solid #e4ddd0;
  border-radius: 22px;
  padding: 26px 24px 28px;
  min-height: 340px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease, border-color .2s;
}
.price-card.in { opacity: 1; transform: none; }
.price-card.hot { background: #11180a; color: #f4f0e6; border-color: #d6f34a; }
.price-card .name { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: #6b7264; }
.price-card.hot .name { color: var(--lime); }
.price-card .amt { font-family: Fraunces, serif; font-size: 40px; margin: 10px 0 4px; }
.price-card .hint { font-size: 13px; color: #6b7264; margin-bottom: 16px; }
.price-card.hot .hint { color: #c5ccbb; }
.price-card ul { margin: 0 0 22px; padding-left: 18px; color: #4b5244; flex: 1; }
.price-card.hot ul { color: #d5dccb; }
.price-card .btn { margin-top: auto; }

.lfoot {
  background: #050605; color: #b8bfae;
  padding: 56px 6vw 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.lfoot a { color: #e8ecd8; text-decoration: none; display: block; margin: 6px 0; }
.lfoot a:hover { color: var(--lime); }
.lfoot .copy { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 16px; color: #6f7668; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lime); color: var(--lime-ink);
  text-decoration: none; border-radius: 12px; padding: 12px 18px;
  font-weight: 700; border: 0; cursor: pointer;
}
.btn.ghost { background: transparent; border: 1px solid rgba(244,240,230,.35); color: inherit; }
.btn.dark { background: #141711; color: #f4f0e6; }

@media (max-width: 900px) {
  .lhero, .split, .price-grid, .lfoot { grid-template-columns: 1fr; }
  .lhero { min-height: auto; padding-top: 28px; gap: 32px; }
  .lnav .links { gap: 10px; font-size: 13px; }
  .product { transform: none; }
  .pin-wrap { height: auto; }
  .pin-sticky { position: relative; height: auto; padding: 72px 0; }
  .pin-track { flex-direction: column; transform: none !important; padding: 0 6vw; }
  .pin-card { flex-basis: auto; min-height: 0; }
  .split-sticky { position: static; }
  .hero-meta { flex-wrap: wrap; }
}
