/* ============================================================
   Dramamint · Landing / marketing page
   Reuses tokens from styles.css; mint accent on ink.
   ============================================================ */

/* Landing page uses sans (黑体) everywhere — override the serif token
   for this subtree only, so the shared app (styles.css) keeps its serif. */
.lp { width: 100%; overflow-x: hidden; --serif: var(--sans); }
/* No underline on any landing-page link (buttons, posters, footer, CTAs). */
.lp a { text-decoration: none; }
/* Upright 黑体 — kill every italic slant across the landing page. */
.lp em, .lp i, .lp [style*="italic"],
.lp-h2 em, .lp-hero h1 em, .lp-cta h2 em,
.lp-engine-role, .lp-shot-frame span, .lp-trust-row span,
.lp-step-num { font-style: normal !important; }

/* --- Nav --- */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 40px;
  background: rgba(15,15,19,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.lp-nav.scrolled { border-bottom-color: var(--line); background: rgba(11,11,14,0.85); }
.lp-nav .brand { border: none; padding: 0; }
.lp-nav-links { display: flex; gap: 28px; margin-left: 18px; }
.lp-nav-links a { font-size: 13px; color: var(--bone-3); transition: color 0.15s; }
.lp-nav-links a:hover { color: var(--bone); }
.lp-nav-spacer { flex: 1; }
.lp-nav-actions { display: flex; gap: 10px; align-items: center; }

@media (max-width: 820px) {
  .lp-nav { padding: 14px 20px; }
  .lp-nav-links { display: none; }
}

/* --- Section frame --- */
.lp-section { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.lp-section-wide { max-width: 1320px; }
@media (max-width: 820px) { .lp-section { padding: 0 20px; } }

.lp-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lp-kicker::before { content: ""; width: 22px; height: 1px; background: var(--amber); }
.lp-kicker.center { justify-content: center; }
.lp-kicker.center::after { content: ""; width: 22px; height: 1px; background: var(--amber); }

.lp-h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
  text-wrap: balance;
}
.lp-h2 em { font-style: italic; color: var(--amber); }
.lp-lead {
  font-size: 16px;
  color: var(--bone-3);
  line-height: 1.65;
  max-width: 620px;
  margin-top: 18px;
}

/* --- Hero --- */
.lp-hero {
  position: relative;
  padding: 168px 0 100px;
  text-align: center;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 50% -100px, oklch(0.82 0.22 142 / 0.16), transparent 65%),
    radial-gradient(700px 500px at 85% 20%, oklch(0.6 0.18 290 / 0.12), transparent 60%),
    radial-gradient(700px 500px at 10% 30%, oklch(0.7 0.15 200 / 0.08), transparent 60%);
  pointer-events: none;
}
.lp-hero-grain {
  position: absolute; inset: 0; z-index: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.lp-hero-inner { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; padding: 0 40px; }

.lp-pill-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 14px;
  border-radius: 999px;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  font-size: 12px;
  color: var(--bone-2);
  margin-bottom: 28px;
}
.lp-pill-top b { color: var(--amber); font-weight: 600; }
.lp-pill-top .tag-new {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--amber);
  color: #07140a;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.lp-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 86px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.lp-hero h1 em { font-style: italic; color: var(--amber); }
.lp-hero-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--bone-3);
  line-height: 1.6;
  max-width: 600px;
  margin: 24px auto 0;
}
.lp-hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.lp-hero-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone-4);
}

/* Big buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.18s;
  border: 1px solid transparent;
}
.lp-btn svg { width: 16px; height: 16px; }
.lp-btn-primary {
  background: var(--amber);
  color: #07140a;
  box-shadow: 0 10px 30px oklch(0.82 0.22 142 / 0.28), 0 0 0 1px oklch(0.82 0.22 142 / 0.5);
}
.lp-btn-primary:hover { background: var(--amber-glow); transform: translateY(-1px); box-shadow: 0 14px 38px oklch(0.82 0.22 142 / 0.38); }
.lp-btn-ghost {
  background: var(--ink-2);
  color: var(--bone);
  border-color: var(--line-strong);
}
.lp-btn-ghost:hover { border-color: var(--bone-5); background: var(--ink-3); }
.lp-btn-sm { height: 38px; padding: 0 16px; font-size: 13px; border-radius: 8px; }

/* Hero showcase strip */
.lp-hero-strip {
  position: relative;
  z-index: 1;
  margin: 64px auto 0;
  max-width: 1080px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.lp-poster {
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.lp-poster:hover { transform: translateY(-6px); }
.lp-poster-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.75) contrast(1.05);
}
.lp-poster-tint {
  position: absolute; inset: 0; z-index: 1;
  mix-blend-mode: color;
  opacity: 0.62;
}
.lp-poster-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 35%, transparent 45%, rgba(0,0,0,0.82) 100%);
}
.lp-poster::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 9px);
}
.lp-poster-play {
  position: absolute;
  top: 12px; right: 12px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,240,210,0.12);
  border: 1px solid rgba(255,240,210,0.3);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  z-index: 2;
  transition: all 0.2s;
}
.lp-poster:hover .lp-poster-play { background: var(--amber); border-color: var(--amber); }
.lp-poster:hover .lp-poster-play svg { color: #07140a; }
.lp-poster-play svg { width: 16px; height: 16px; color: var(--bone); margin-left: 2px; }
.lp-poster-cap { position: relative; z-index: 2; }
.lp-poster-genre {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,240,210,0.6);
}
.lp-poster-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,240,210,0.95);
  line-height: 1.1;
  margin-top: 3px;
}
@media (max-width: 900px) {
  .lp-hero-strip { grid-template-columns: repeat(3, 1fr); }
  .lp-hero-strip .lp-poster:nth-child(n+4) { display: none; }
}

/* --- Engines (image2+ / seedance2) --- */
.lp-engines { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
@media (max-width: 820px) { .lp-engines { grid-template-columns: 1fr; } }
.lp-engine {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  padding: 30px;
  overflow: hidden;
}
.lp-engine-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.lp-engine > * { position: relative; z-index: 1; }
.lp-engine-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 18px;
}
.lp-engine-tag .ver {
  background: var(--amber); color: #07140a; font-weight: 700;
  padding: 2px 7px; border-radius: 999px; letter-spacing: 0.06em;
}
.lp-engine-name {
  font-family: var(--mono); font-size: 28px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--bone); margin: 0 0 4px;
}
.lp-engine-name b { color: var(--amber); font-weight: 600; }
.lp-engine-role { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--bone-2); margin: 0 0 16px; }
.lp-engine p { color: var(--bone-3); font-size: 14px; line-height: 1.65; margin: 0 0 20px; }
.lp-engine-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-engine-spec {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--bone-2);
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px;
}
.lp-engine-spec svg { width: 13px; height: 13px; color: var(--amber); }
.lp-pipeline-bridge {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 28px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--bone-4);
  text-transform: uppercase;
}
.lp-pipeline-bridge .b { color: var(--amber); }
.lp-pipeline-bridge .arrow { flex: 0 0 auto; color: var(--bone-5); }

/* --- Product showcase (app-frame mockups) --- */
.lp-shots { display: flex; flex-direction: column; gap: 28px; margin-top: 52px; }
.lp-shot {
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--ink-0);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lp-shot-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.lp-shot-dots { display: flex; gap: 6px; }
.lp-shot-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--ink-5); display: block; }
.lp-shot-url {
  margin-left: 12px; flex: 1;
  background: var(--ink-1); border: 1px solid var(--line);
  border-radius: 6px; padding: 5px 12px;
  font-family: var(--mono); font-size: 11px; color: var(--bone-4);
  max-width: 320px;
}
.lp-shot-url b { color: var(--bone-2); font-weight: 400; }

/* --- Real interface showcase (alternating image + caption rows) --- */
.lp-showcase { display: flex; flex-direction: column; gap: 96px; margin-top: 64px; }
.lp-showcase-row { display: grid; grid-template-columns: 1.28fr 0.82fr; gap: 56px; align-items: center; }
.lp-showcase-row.reverse .lp-showcase-media { order: 2; }
.lp-showcase-row.reverse .lp-showcase-text { order: 1; }
.lp-showcase-row.reverse { grid-template-columns: 0.82fr 1.28fr; }

.lp-showcase-media { position: relative; display: block; text-decoration: none; }
.lp-showcase-media::before {
  content: ""; position: absolute; inset: -10% -8% -16% -8%; z-index: 0;
  background: radial-gradient(58% 58% at 50% 42%, var(--amber-soft), transparent 72%);
  filter: blur(34px); opacity: 0.85; pointer-events: none;
}
.lp-showcase-frame {
  position: relative; z-index: 1;
  border-radius: 14px; border: 1px solid var(--line-strong);
  background: var(--ink-0); overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,240,210,0.05) inset, 0 40px 90px rgba(0,0,0,0.55);
  transform: perspective(1700px) rotateY(5deg);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1), box-shadow 0.55s;
}
.lp-showcase-row.reverse .lp-showcase-frame { transform: perspective(1700px) rotateY(-5deg); }
.lp-showcase-media:hover .lp-showcase-frame {
  transform: perspective(1700px) rotateY(0deg) translateY(-5px);
  box-shadow: 0 1px 0 rgba(255,240,210,0.06) inset, 0 50px 110px rgba(0,0,0,0.6), 0 0 0 1px var(--amber-line);
}
.lp-showcase-frame img { display: block; width: 100%; height: auto; }

.lp-showcase-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.lp-showcase-kicker::before { content: ""; width: 22px; height: 1px; background: var(--amber); }
.lp-showcase-text h3 { font-size: 30px; line-height: 1.12; letter-spacing: -0.02em; color: var(--bone); font-weight: 600; margin: 0 0 14px; }
.lp-showcase-text p { color: var(--bone-3); font-size: 15px; line-height: 1.7; margin: 0 0 22px; }
.lp-showcase-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-showcase-chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--bone-2);
  border: 1px solid var(--line-strong); background: var(--ink-2);
  border-radius: 999px; padding: 6px 12px;
}
@media (max-width: 860px) {
  .lp-showcase { gap: 56px; }
  .lp-showcase-row, .lp-showcase-row.reverse { grid-template-columns: 1fr; gap: 26px; }
  .lp-showcase-row.reverse .lp-showcase-media { order: 1; }
  .lp-showcase-row.reverse .lp-showcase-text { order: 2; }
  .lp-showcase-frame, .lp-showcase-row.reverse .lp-showcase-frame { transform: none; }
  .lp-showcase-text h3 { font-size: 25px; }
}

.lp-shot-body { display: grid; grid-template-columns: 200px 1fr; min-height: 420px; }
@media (max-width: 700px) { .lp-shot-body { grid-template-columns: 1fr; } .lp-shot-rail { display: none; } }
.lp-shot-rail {
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,0,0,0.3), transparent);
  padding: 18px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.lp-shot-railitem {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 10px; border-radius: 6px;
  font-size: 12px; color: var(--bone-3);
}
.lp-shot-railitem.on { background: var(--amber-soft); color: var(--bone); }
.lp-shot-railitem.on .dot { background: var(--amber); }
.lp-shot-railitem .dot { width: 6px; height: 6px; border-radius: 2px; background: var(--bone-5); flex-shrink: 0; }
.lp-shot-rail-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone-5); padding: 12px 10px 6px;
}
.lp-shot-stage { padding: 26px 28px; }
.lp-shot-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber);
}
.lp-shot-h {
  font-family: var(--serif); font-size: 24px; font-weight: 500; margin: 6px 0 18px;
}
.lp-shot-sbgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lp-shot-cell {
  border-radius: 8px; border: 1px solid var(--line); overflow: hidden; background: var(--ink-2);
}
.lp-shot-cell.sel { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber-line); }
.lp-shot-frame {
  aspect-ratio: 16/9; position: relative;
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
}
.lp-shot-frame::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-30deg, rgba(255,240,210,0.03) 0 1px, transparent 1px 6px);
}
.lp-shot-frame span {
  font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--bone-4); position: relative;
}
.lp-shot-cap { padding: 8px 10px; font-family: var(--mono); font-size: 9px; color: var(--bone-4); letter-spacing: 0.06em; display: flex; justify-content: space-between; }
.lp-shot-cap .ok { color: var(--amber); }
.lp-shot-script { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.lp-shot-scene-slug { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--bone-3); border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.lp-shot-action { font-size: 13px; color: var(--bone-2); line-height: 1.7; }
.lp-shot-dlg { margin-left: 28px; }
.lp-shot-dlg .nm { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--bone-3); margin-bottom: 3px; }
.lp-shot-dlg .ln { font-family: var(--serif); font-size: 16px; color: var(--bone); line-height: 1.5; }
.lp-shot-dlg .ln.hot { background: var(--amber-soft); box-shadow: 0 0 0 1px var(--amber-line); border-radius: 4px; padding: 3px 8px; margin: -3px -8px; }

/* --- Logos / trust row --- */
.lp-trust {
  margin-top: 84px;
  text-align: center;
}
.lp-trust-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-4);
}
.lp-trust-row {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 22px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.lp-trust-row span {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--bone-3);
}

/* --- Section spacing --- */
.lp-block { padding: 110px 0; }
.lp-block-head { max-width: 720px; }
.lp-block-head.center { margin: 0 auto; text-align: center; }
.lp-block-head.center .lp-lead { margin-left: auto; margin-right: auto; }

/* --- Two paths --- */
.lp-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 52px;
}
@media (max-width: 820px) { .lp-paths { grid-template-columns: 1fr; } }
.lp-path {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  padding: 32px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.lp-path:hover { border-color: var(--amber-line); transform: translateY(-3px); }
.lp-path-glow {
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-soft), transparent 70%);
  pointer-events: none;
}
.lp-path-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-4);
}
.lp-path-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--amber-soft);
  border: 1px solid var(--amber-line);
  display: grid; place-items: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.lp-path-icon svg { width: 22px; height: 22px; }
.lp-path h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 10px;
}
.lp-path p { color: var(--bone-3); font-size: 14px; line-height: 1.65; margin: 0 0 20px; }
.lp-path-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.lp-path-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--bone-2);
  list-style: none;
}
.lp-path-list li svg { width: 15px; height: 15px; color: var(--amber); flex-shrink: 0; }
.lp-path-preview {
  margin-top: 4px;
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 2 / 1;
  position: relative;
  display: grid;
  place-items: center;
}
.lp-path-preview .lp-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 14px;
  width: 100%;
  height: 100%;
}
.lp-mini-cell {
  border-radius: 6px;
  background: var(--ink-4);
  border: 1px solid var(--line);
}
.lp-path-img { width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; }

/* --- How it works --- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 900px) { .lp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp-steps { grid-template-columns: 1fr; } }
.lp-step {
  background: var(--ink-1);
  padding: 28px 24px 30px;
  transition: background 0.2s;
}
.lp-step:hover { background: var(--ink-2); }
.lp-step-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--amber);
  line-height: 1;
}
.lp-step h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin: 16px 0 8px;
}
.lp-step p { font-size: 13px; color: var(--bone-3); line-height: 1.6; margin: 0; }

/* --- Features --- */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
@media (max-width: 900px) { .lp-features { grid-template-columns: 1fr; } }
.lp-feature {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: 26px;
}
.lp-feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ink-3);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--amber);
  margin-bottom: 16px;
}
.lp-feature-icon svg { width: 18px; height: 18px; }
.lp-feature h4 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin: 0 0 8px; }
.lp-feature p { font-size: 13px; color: var(--bone-3); line-height: 1.6; margin: 0; }

/* --- Split feature (large) --- */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 52px;
}
@media (max-width: 820px) { .lp-split { grid-template-columns: 1fr; gap: 32px; } }
.lp-split-visual {
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

/* --- Stats band --- */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .lp-stats { grid-template-columns: repeat(2, 1fr); } }
.lp-stat {
  background: var(--ink-1);
  padding: 40px 28px;
  text-align: center;
}
.lp-stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--bone);
  line-height: 1;
}
.lp-stat-num em { color: var(--amber); font-style: normal; }
.lp-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-4);
  margin-top: 12px;
}

/* --- Final CTA --- */
.lp-cta {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  border-radius: 28px;
  border: 1px solid var(--amber-line);
  background: linear-gradient(180deg, oklch(0.28 0.1 145 / 0.4), var(--ink-1));
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.lp-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, var(--amber-soft), transparent 70%);
  pointer-events: none;
}
.lp-cta h2 {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.lp-cta h2 em { font-style: italic; color: var(--amber); }
.lp-cta p { position: relative; color: var(--bone-2); font-size: 16px; margin: 18px auto 0; max-width: 480px; }
.lp-cta-row { position: relative; display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* --- Footer --- */
.lp-footer {
  border-top: 1px solid var(--line);
  margin-top: 110px;
  padding: 56px 40px 40px;
}
.lp-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.lp-footer-brand { display: flex; flex-direction: column; align-items: center; }
.lp-footer-brand .brand { border: none; padding: 0; margin-bottom: 16px; }
.lp-footer-brand p { font-size: 13px; color: var(--bone-4); line-height: 1.6; max-width: 280px; margin: 0 auto; }
.lp-footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-4);
  margin: 0 0 16px;
}
.lp-footer-col a {
  display: block;
  font-size: 13px;
  color: var(--bone-3);
  margin-bottom: 11px;
  transition: color 0.15s;
}
.lp-footer-col a:hover { color: var(--bone); }
.lp-footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--bone-4);
  flex-wrap: wrap;
  gap: 12px;
}

/* reveal on scroll — fail-safe: only hidden once JS marks the page ready,
   so if JS/IO never runs (print, no-JS, snapshot) content stays visible. */
.lp-reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
html.reveal-ready .lp-reveal:not(.in) { opacity: 0; transform: translateY(20px); }
.lp-reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .lp-reveal:not(.in) { opacity: 1; transform: none; }
  .lp-reveal { transition: none; }
}
