/* ============================================================
   Lucerna. Site stylesheet. Vanilla port of the React design.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }
::selection { background: #fff; color: #000; }
section { scroll-margin-top: 96px; }

/* ---------- HEADER ---------- */
.lf-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.lf-header.scrolled {
  background: rgba(0,0,0,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lf-header__inner {
  margin: 0 auto; width: 100%; max-width: 1724px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: clamp(16px, 1.6vw, 20px) clamp(20px, 5vw, 80px);
}
.lf-brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.lf-brand__logo {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: -0.02em; text-transform: uppercase; color: #fff;
  white-space: nowrap; line-height: 1;
}
.lf-brand__badge {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 3px;
  line-height: 1;
}
.lf-nav { display: flex; align-items: center; gap: 32px; }
.lf-nav__link {
  color: rgba(255,255,255,0.6);
  font-size: 13px; letter-spacing: 0.04em;
  cursor: pointer; transition: color .2s;
  background: none; border: none; padding: 0;
}
.lf-nav__link.active, .lf-nav__link:hover { color: #fff; }
.lf-header__right { display: flex; align-items: center; gap: 20px; }
.lf-header__ghost {
  color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 0.04em;
  background: none; border: none; cursor: pointer;
  transition: color .2s; padding: 0;
}
.lf-header__ghost:hover { color: #fff; }
.lf-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 9999px;
  border: 1px solid #fff; background: #fff;
  color: #000; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: opacity .2s; cursor: pointer;
  white-space: nowrap;
}
.lf-pill:hover { opacity: 0.85; }
.lf-pill__arrow { font-size: 14px; font-weight: 300; }

.lf-burger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
.lf-burger svg { width: 22px; height: 22px; }

/* ---------- HERO ---------- */
.lf-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; background: #000;
  padding-top: 140px; padding-bottom: 120px;
  /* neutralise collision with the .lf-hero utility class in colors_and_type.css */
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: normal;
  text-transform: none;
  color: #fff;
}
.lf-hero__sky { position: absolute; inset: 0; z-index: 1; }
.lf-hero__sky svg { width: 100%; height: 100%; }
.lf-hero__glow {
  position: absolute; left: 22%; top: 38%;
  transform: translate(-50%, -50%);
  width: min(90vw, 1100px); height: min(90vw, 1100px);
  border-radius: 50%; z-index: 2; pointer-events: none;
  background: radial-gradient(circle, rgba(120,140,255,0.16) 0%, rgba(180,140,255,0.08) 22%, rgba(255,170,120,0.04) 42%, transparent 68%);
  filter: blur(10px);
  animation: lucBreathe 6s ease-in-out infinite;
}
.lf-hero__grain {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none; z-index: 3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}
.lf-hero__scrim {
  position: absolute; inset: 0; z-index: 4;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.lf-hero__topbar {
  position: absolute; top: 100px; left: 0; right: 0; z-index: 6;
  display: flex; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
  gap: 12px; flex-wrap: wrap;
}
.lf-hero__content {
  position: relative; z-index: 10; width: 100%; max-width: 1724px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.lf-hero__lantern { display: flex; flex-direction: column; align-items: center; position: relative; }
.lf-hero__chain {
  width: 1px; height: clamp(40px, 8vh, 80px);
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18));
  margin-bottom: 4px;
}
.lf-hero__icon-wrap {
  position: relative;
  width: clamp(180px, 22vw, 280px);
  height: clamp(180px, 22vw, 280px);
  animation: lucSway 8s ease-in-out infinite;
  transform-origin: top center;
}
.lf-hero__icon {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 40px rgba(180,160,255,0.35)) drop-shadow(0 0 80px rgba(255,170,120,0.20));
}
.lf-hero__halo {
  position: absolute; inset: -20%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,140,0.18) 0%, transparent 60%);
  filter: blur(20px); z-index: -1; pointer-events: none;
  animation: lucBreathe 5s ease-in-out infinite;
}
.lf-hero__wm {
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 13px; letter-spacing: 0.42em;
  color: rgba(255,255,255,0.72); text-transform: uppercase;
  text-align: center;
}
.lf-hero__wm-rule { width: 28px; height: 1px; background: rgba(255,255,255,0.25); margin: 12px auto 0; }
.lf-hero__wm-sub {
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  text-align: center;
}
.lf-hero__copy { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.lf-hero__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  color: rgba(255,196,128,0.85); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.lf-hero__ember {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, #ffd9a8, #ff8a3c 60%, #b04500);
  box-shadow: 0 0 14px rgba(255,138,60,0.6), 0 0 28px rgba(255,138,60,0.3);
  animation: lucEmber 2.4s ease-in-out infinite;
}
.lf-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}
.lf-hero__hl-mute { color: rgba(255,255,255,0.45); font-style: italic; font-weight: 300; }
.lf-hero__hl-ember {
  background-image: linear-gradient(180deg, #fff5e8 0%, #ffc88a 60%, #ff8a3c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-style: italic; font-weight: 400;
}
.lf-hero__lede {
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  max-width: 780px; margin: 0;
}
.lf-hero__cta-row { margin-top: 8px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lf-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 9999px;
  border: 1px solid #fff; background: #fff;
  color: #000; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: opacity .2s; cursor: pointer;
}
.lf-cta-primary:hover { opacity: 0.85; }
.lf-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.25); background: transparent;
  color: #fff; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background .2s, border-color .2s; cursor: pointer;
}
.lf-cta-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }
.lf-hero__meta {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10);
  width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.lf-hero__meta-item { display: flex; flex-direction: column; gap: 6px; }
.lf-hero__meta-k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.lf-hero__meta-v { color: #fff; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }

/* ---------- Section base ---------- */
.lf-section {
  padding: 120px clamp(20px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.10);
  background: #000; position: relative; overflow: hidden;
}
.lf-section__inner { max-width: 1724px; margin: 0 auto; position: relative; }
.lf-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  color: rgba(255,196,128,0.7); text-transform: uppercase;
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.lf-eyebrow__num { color: rgba(255,255,255,0.3); font-weight: 500; }
.lf-eyebrow__rule { width: 24px; height: 1px; background: rgba(255,255,255,0.2); }
.lf-h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.02; letter-spacing: -0.02em; color: #fff; margin: 0;
}
.lf-h2--mute { color: rgba(255,255,255,0.45); }

/* ---------- DEMO / Four Modes ---------- */
.lf-demo__glow {
  position: absolute; left: 0; right: 0; top: 0; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse 550px 300px at 50% 10%, rgba(255,148,80,0.10), transparent 60%);
}
.lf-demo__head {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end;
  padding-bottom: 56px;
}
.lf-demo__caption {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: rgba(255,255,255,0.65); max-width: 320px;
}
.lf-demo__tabs {
  display: flex; gap: 0; margin-bottom: 24px; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  overflow: hidden;
}
.lf-demo__tab {
  flex: 1; min-width: 200px;
  padding: 20px 24px;
  background: transparent;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background .25s, color .25s;
  text-align: left;
  border: none;
  border-top: 2px solid transparent;
  display: flex; flex-direction: column; gap: 6px;
}
.lf-demo__tab:last-child { border-right: none; }
.lf-demo__tab.active { background: #0d0d0d; color: #fff; border-top-color: rgba(255,196,128,0.7); }
.lf-demo__tab-idx {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.lf-demo__tab-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.lf-demo__tab-sub { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.lf-demo__shot {
  border: 1px solid rgba(255,255,255,0.12);
  background: #0a0a0a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.lf-demo__img-wrap {
  background: radial-gradient(ellipse at 50% 10%, #1a1208, #000 70%);
  padding: 24px;
  display: flex; justify-content: center;
}
.lf-demo__img {
  width: 100%; max-width: 1240px;
  border-radius: 8px;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.05);
  display: block;
}
.lf-demo__caps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.lf-demo__cap {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
}
.lf-demo__cap:last-child { border-right: none; }
.lf-demo__cap-k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,196,128,0.7); text-transform: uppercase;
}
.lf-demo__cap-v { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.5; }

.lf-demo__panel { display: none; }
.lf-demo__panel.active { display: block; }

/* ---------- FEATURES ---------- */
.lf-features__head { padding-bottom: 72px; max-width: 980px; }
.lf-features__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
}
.lf-feature {
  background: #000;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
  transition: background .4s var(--ease-out-quint);
  position: relative; overflow: hidden;
}
.lf-feature:hover { background: #0a0a0a; }
.lf-feature--7 { grid-column: span 7; }
.lf-feature--6 { grid-column: span 6; }
.lf-feature--5 { grid-column: span 5; }
.lf-feature__head { display: flex; align-items: center; gap: 12px; }
.lf-feature__motif {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  color: rgba(255,196,128,0.6); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.lf-feature__motif-icon { font-size: 14px; }
.lf-feature__idx {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
  margin-left: auto;
}
.lf-feature__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.01em; color: #fff;
  margin: 0;
}
.lf-feature__body {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: rgba(255,255,255,0.7); margin: 0;
}
.lf-feature__meta {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.lf-feature__visual { width: 100%; }
.lf-feature__shot-wrap {
  margin-top: 12px;
  background: radial-gradient(ellipse at 50% 0%, #1a1208, #000 70%);
  padding: 12px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}
.lf-feature__shot-img {
  width: 100%; display: block; border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
}
.lf-feature__visual-box {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px; margin-top: 8px;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.7;
  color: rgba(255,255,255,0.7);
  min-height: 120px;
}
.lf-feature__visual-box .pin { color: #ffb87a; }
.lf-feature__svg { width: 100%; height: 140px; margin-top: 8px; display: block; }
.lf-feature__svg--small { height: 130px; }
.lf-feature__svg--privacy { height: 120px; }

/* ---------- PRODUCTION ---------- */
.lf-prod__head { padding-bottom: 56px; max-width: 980px; }
.lf-prod__caption {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.65); max-width: 620px; margin-top: 24px;
}
.lf-prod__two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
}
.lf-prod__panel { background: #000; overflow: hidden; }
.lf-prod__panel-head { padding: 28px 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.lf-prod__panel-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,196,128,0.6); text-transform: uppercase; margin-bottom: 8px;
}
.lf-prod__panel-title {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  color: #fff; margin: 0; letter-spacing: -0.01em;
}
.lf-prod__panel-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; line-height: 1.5; margin-bottom: 0; }
.lf-prod__shot-wrap {
  background: radial-gradient(ellipse at 50% 0%, #1a1208, #000 70%);
  padding: 24px;
}
.lf-prod__shot {
  width: 100%; display: block; border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
}
.lf-prod__trio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: none;
}
.lf-prod__trio-cell {
  background: #000; padding: 28px 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.lf-prod__trio-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,196,128,0.6); text-transform: uppercase;
}
.lf-prod__trio-title {
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
  color: #fff; margin: 0; letter-spacing: -0.01em;
}
.lf-prod__trio-body { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.55; margin: 0; }

/* ---------- PRICING ---------- */
.lf-pricing__glow {
  position: absolute; left: 50%; top: 20%; transform: translateX(-50%);
  width: 900px; height: 500px; pointer-events: none; max-width: 100%;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(255,148,80,0.07), transparent 60%);
}
.lf-pricing__head { padding-bottom: 64px; max-width: 980px; }
.lf-pricing__caption {
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.65); max-width: 620px; margin-top: 24px;
}
.lf-pricing__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
}
.lf-tier {
  background: #000;
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 22px;
  min-height: 620px;
  position: relative;
}
.lf-tier--featured { background: #0a0a0a; }
.lf-tier--featured::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,196,128,0.4);
}
.lf-tier__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.lf-tier__tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}
.lf-tier__badge {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: #000; background: linear-gradient(180deg, #ffd9a8, #ff9a4d);
  padding: 5px 10px; border-radius: 9999px; text-transform: uppercase; font-weight: 600;
}
.lf-tier__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.02em; color: #fff;
  margin: 0;
}
.lf-tier__sub { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.55; margin: 0; }
.lf-tier__price {
  display: flex; align-items: baseline; gap: 10px;
  padding-top: 12px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.lf-tier__price-n { font-family: var(--font-display); font-weight: 700; font-size: 64px; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.lf-tier__price-k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.lf-tier__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lf-tier__feat { display: flex; gap: 12px; color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.55; }
.lf-tier__check { color: rgba(255,196,128,0.7); font-family: var(--font-mono); flex-shrink: 0; margin-top: 2px; font-size: 11px; }
.lf-tier__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3); background: transparent;
  color: #fff; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; justify-content: center;
  transition: background .2s, border-color .2s, opacity .2s;
}
.lf-tier__cta:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.5); }
.lf-tier__cta--prim {
  background: linear-gradient(180deg, #ffd9a8, #ff9a4d);
  color: #000; border: 1px solid transparent; font-weight: 600;
}
.lf-tier__cta--prim:hover { background: linear-gradient(180deg, #ffd9a8, #ff9a4d); opacity: 0.9; border-color: transparent; }
.lf-tier__note {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4); text-transform: uppercase; margin-top: 8px;
}
.lf-pricing__trial {
  margin-bottom: 32px;
  border: 1px solid rgba(255,196,128,0.28);
  background: linear-gradient(180deg, rgba(255,148,80,0.06) 0%, rgba(255,148,80,0) 70%), #050505;
  position: relative; overflow: hidden;
}
.lf-pricing__trial-head {
  padding: 32px 36px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lf-pricing__trial-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  color: rgba(255,196,128,0.9); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.lf-pricing__trial-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, #ffd9a8, #ff8a3c 60%, #b04500);
  box-shadow: 0 0 14px rgba(255,138,60,0.6), 0 0 28px rgba(255,138,60,0.3);
  animation: lucEmber 2.4s ease-in-out infinite;
}
.lf-pricing__trial-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  letter-spacing: -0.02em; line-height: 1.1; color: #fff; margin: 0;
}
.lf-pricing__trial-sub {
  margin: 14px 0 0; max-width: 720px;
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.65);
}
.lf-pricing__trial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.08);
}
.lf-pricing__trial-row {
  background: #050505;
  padding: 28px 36px;
  display: flex; flex-direction: column; gap: 10px;
}
.lf-pricing__trial-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
}
.lf-pricing__trial-when {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.65); line-height: 1.5;
}
.lf-pricing__trial-bonus {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  letter-spacing: -0.02em;
  background-image: linear-gradient(180deg, #fff5e8 0%, #ffc88a 60%, #ff8a3c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-top: 4px;
}
.lf-pricing__trial-foot {
  padding: 18px 36px; border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}

.lf-pricing__upgrade {
  margin-top: 24px; padding: 20px 24px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.55;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.lf-pricing__upgrade-icon {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  color: rgba(255,196,128,0.8); text-transform: uppercase;
}
.lf-pricing__footer {
  margin-top: 32px; padding: 24px 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- TECH SPECS ---------- */
.lf-specs__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 96px; }
.lf-specs__h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05; letter-spacing: -0.02em; color: #fff; margin: 0;
}
.lf-specs__h-mute { color: rgba(255,255,255,0.45); }
.lf-specs__caption {
  font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.65);
  margin-top: 24px; max-width: 380px;
}
.lf-specs__table { border-top: 1px solid rgba(255,255,255,0.10); }
.lf-specs__row {
  display: grid; grid-template-columns: 180px 1fr; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.10);
  align-items: baseline;
}
.lf-specs__k {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}
.lf-specs__v { font-size: 15px; color: #fff; line-height: 1.55; }

/* ---------- ABOUT ---------- */
.lf-about { padding: 140px clamp(20px, 5vw, 80px); }
.lf-about__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 30%, #1a1208 0%, transparent 70%);
  opacity: 0.5;
}
.lf-about__big {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.025em; color: #fff;
  margin: 0; max-width: 1100px;
}
.lf-about__big-mute { color: rgba(255,255,255,0.45); }
.lf-about__meta {
  margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.lf-about__cell { padding: 32px 32px 32px 0; border-right: 1px solid rgba(255,255,255,0.10); }
.lf-about__cell:last-child { border-right: none; }
.lf-about__cell-k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 12px;
}
.lf-about__cell-v {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; color: #fff; letter-spacing: -0.01em;
}
.lf-about__cell-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; line-height: 1.5; }

/* ---------- WAITLIST ---------- */
.lf-waitlist { padding: 140px clamp(20px, 5vw, 80px); }
.lf-waitlist__inner { max-width: 1100px; margin: 0 auto; }
.lf-waitlist__eyebrow { justify-content: center; }
.lf-waitlist__big {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(60px, 9vw, 140px); letter-spacing: -0.04em; line-height: 0.9;
  color: #fff; margin: 0; text-align: center;
}
.lf-waitlist__sub {
  font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.65);
  margin: 32px auto 0; max-width: 540px; text-align: center;
}
.lf-waitlist__form {
  margin: 48px auto 0;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; align-items: stretch;
  max-width: 720px;
}
.lf-waitlist__field {
  flex: 1 1 280px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 16px 20px;
  font-family: inherit; font-size: 15px;
  border-radius: 6px; outline: none;
  transition: border-color .2s;
  min-width: 0;
}
.lf-waitlist__field:focus { border-color: rgba(255,255,255,0.5); }
.lf-waitlist__select {
  background: #000;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 16px 20px;
  font-family: inherit; font-size: 15px;
  border-radius: 6px; outline: none;
  cursor: pointer; appearance: none;
  flex: 0 0 200px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='white' stroke-opacity='0.6' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
}
.lf-waitlist__submit {
  flex: 0 0 auto;
  padding: 16px 28px; border-radius: 9999px;
  border: 1px solid #fff; background: #fff;
  color: #000; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: opacity .2s;
}
.lf-waitlist__submit:hover { opacity: 0.85; }
.lf-waitlist__perk {
  margin: 48px auto 0;
  max-width: 560px;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 28px 32px;
  border: 1px solid rgba(255,138,60,0.3);
  background: rgba(255,138,60,0.05);
}
.lf-waitlist__perk-ember {
  flex-shrink: 0;
  margin-top: 3px;
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd9a8, #ff8a3c 60%, #b04500);
  box-shadow: 0 0 14px rgba(255,138,60,0.7), 0 0 28px rgba(255,138,60,0.3);
}
.lf-waitlist__perk p {
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.lf-waitlist__perk strong { color: #fff; }
.lf-waitlist__cta-wrap {
  margin: 40px auto 0;
  display: flex; justify-content: center;
}
.lf-waitlist__cta-link {
  display: inline-block;
  text-decoration: none;
}
.lf-waitlist__legal {
  margin-top: 24px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.4);
  text-transform: uppercase; text-align: center;
}
.lf-waitlist__thanks {
  margin: 48px auto 0; padding: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center; max-width: 540px;
}
.lf-waitlist__thanks h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 28px;
  color: #fff; margin: 0; letter-spacing: -0.02em;
}
.lf-waitlist__thanks p { color: rgba(255,255,255,0.65); margin: 12px 0 0; font-size: 15px; line-height: 1.55; }
.lf-waitlist__thanks.hidden { display: none; }
.lf-waitlist__form.hidden { display: none; }

/* ---------- FAQ ---------- */
.lf-faq { padding: 96px clamp(20px, 5vw, 80px); }
.lf-faq__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 96px; align-items: start; max-width: 1724px; margin: 0 auto; }
.lf-faq__h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.1;
  letter-spacing: -0.02em; color: #fff; margin: 0;
}
.lf-faq__h span { display: block; }
.lf-faq__list { list-style: none; margin: 0; padding: 0; }
.lf-faq__item { border-top: 1px solid rgba(255,255,255,0.20); }
.lf-faq__item:first-child { border-top: none; }
.lf-faq__row {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 32px 24px; text-align: left;
  background: transparent;
  border: none; cursor: pointer; color: #fff; transition: background .3s;
}
.lf-faq__row:hover { background: rgba(255,255,255,0.05); }
.lf-faq__q {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem); color: #fff;
  transition: padding .3s;
}
.lf-faq__row:hover .lf-faq__q { padding-left: 8px; }
.lf-faq__plus {
  font-size: 24px; font-weight: 200; line-height: 1; color: #fff; flex-shrink: 0;
  transition: transform .3s; transform: rotate(0);
}
.lf-faq__item.open .lf-faq__plus { transform: rotate(45deg); }
.lf-faq__body {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .4s var(--ease-out-quint), opacity .3s;
}
.lf-faq__item.open .lf-faq__body { max-height: 400px; opacity: 1; }
.lf-faq__body-inner {
  padding-bottom: 32px; padding-right: 24px;
  color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.6; max-width: 40rem;
}

/* ---------- FOOTER ---------- */
.lf-footer { border-top: 1px solid rgba(255,255,255,0.10); background: #000; }
.lf-footer__inner { max-width: 1724px; margin: 0 auto; padding: 80px clamp(20px, 5vw, 80px) 40px; }
.lf-footer__top {
  display: grid; grid-template-columns: 5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 80px; border-bottom: 1px solid rgba(255,255,255,0.10);
  align-items: start;
}
.lf-footer__brand {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 7vw, 96px); letter-spacing: -0.04em;
  text-transform: uppercase; line-height: 0.85; color: #fff; margin: 0;
}
.lf-footer__brand-sub {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45); text-transform: uppercase; margin-top: 16px;
  max-width: 360px; line-height: 1.7;
}
.lf-footer__col-head {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 16px;
}
.lf-footer__col-list {
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.lf-footer__link { color: rgba(255,255,255,0.75); cursor: pointer; transition: color .2s; }
.lf-footer__link:hover { color: #fff; }
.lf-footer__bottom {
  padding-top: 32px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}
.lf-footer__signals { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   Responsive. Mobile / tablet / small desktop.
   ============================================================ */

@media (max-width: 1100px) {
  .lf-section { padding: 96px clamp(20px, 5vw, 64px); }
  .lf-features__grid { grid-template-columns: repeat(6, 1fr); }
  .lf-feature--7, .lf-feature--6, .lf-feature--5 { grid-column: span 6; }
  .lf-specs__grid { grid-template-columns: 1fr; gap: 48px; }
  .lf-faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .lf-demo__head { grid-template-columns: 1fr; gap: 32px; }
  .lf-demo__caption { max-width: none; }
  .lf-demo__caps { grid-template-columns: repeat(2, 1fr); }
  .lf-demo__cap:nth-child(2n) { border-right: none; }
  .lf-demo__cap:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .lf-prod__trio { grid-template-columns: 1fr; }
  .lf-prod__two { grid-template-columns: 1fr; }
  .lf-about__meta { grid-template-columns: repeat(2, 1fr); }
  .lf-about__cell:nth-child(2n) { border-right: none; }
  .lf-about__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .lf-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lf-footer__top > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .lf-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,0.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); flex-direction: column; padding: 16px 24px 24px; gap: 8px; align-items: stretch; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .lf-nav.open { display: flex; }
  .lf-nav__link { padding: 12px 0; font-size: 15px; }
  .lf-burger { display: inline-flex; }
  .lf-header__ghost { display: none; }
  .lf-pill { padding: 8px 14px; font-size: 10px; }
  .lf-hero__content { grid-template-columns: 1fr; gap: 48px; }
  .lf-hero__lantern { order: -1; }
  .lf-hero__meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lf-hero__topbar { font-size: 9px; }
  .lf-section { padding: 80px clamp(20px, 5vw, 32px); }
  .lf-pricing__grid { grid-template-columns: 1fr; }
  .lf-pricing__trial-grid { grid-template-columns: 1fr; }
  .lf-pricing__trial-head { padding: 24px 22px 22px; }
  .lf-pricing__trial-row { padding: 22px 22px; }
  .lf-pricing__trial-foot { padding: 14px 22px; font-size: 9px; }
  .lf-pricing__trial-bonus { font-size: 22px; }
  .lf-tier { padding: 36px 28px; min-height: 0; }
  .lf-tier__title { font-size: 26px; }
  .lf-tier__price-n { font-size: 52px; }
  .lf-features__grid { grid-template-columns: 1fr; }
  .lf-feature--7, .lf-feature--6, .lf-feature--5 { grid-column: span 1; }
  .lf-feature { padding: 32px 24px; min-height: 0; }
  .lf-demo__caps { grid-template-columns: 1fr; }
  .lf-demo__cap { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .lf-demo__cap:last-child { border-bottom: none; }
  .lf-demo__tab { min-width: 0; flex-basis: 50%; }
  .lf-prod__panel-head { padding: 22px 24px; }
  .lf-prod__shot-wrap { padding: 16px; }
  .lf-about { padding: 96px 20px; }
  .lf-about__meta { grid-template-columns: 1fr; }
  .lf-about__cell { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 24px 0; }
  .lf-about__cell:last-child { border-bottom: none; }
  .lf-waitlist { padding: 96px 20px; }
  .lf-waitlist__select { flex-basis: 100%; }
  .lf-waitlist__submit { flex-basis: 100%; }
  .lf-faq { padding: 80px 20px; }
  .lf-faq__row { padding: 24px 0; }
  .lf-specs__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .lf-footer__top { grid-template-columns: 1fr; padding-bottom: 48px; }
  .lf-footer__top > div:first-child { grid-column: auto; }
  .lf-footer__inner { padding: 56px 20px 32px; }
  .lf-footer__bottom { font-size: 9px; gap: 12px; }
  .lf-pricing__footer { font-size: 9px; gap: 16px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .lf-hero { padding-top: 120px; padding-bottom: 80px; }
  .lf-hero__topbar { top: 80px; }
  .lf-hero__meta { grid-template-columns: 1fr; }
  .lf-cta-primary, .lf-cta-ghost { width: 100%; justify-content: center; }
  .lf-header__inner { gap: 12px; }
  .lf-brand__badge { display: none; }
}

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

/* ============================================================
   SECONDARY PAGES
   ============================================================ */

.lf-body--page { }

/* Page shell */
.lf-page {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 120px;
}
.lf-page__inner {
  margin: 0 auto;
  max-width: 760px;
  padding: 0 clamp(20px, 5vw, 80px);
}
.lf-page--wide .lf-page__inner {
  max-width: 1200px;
}

/* Eyebrow above H1 */
.lf-page__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

/* Page H1 */
.lf-page__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 16px 0;
  color: #fff;
}

/* Subtitle under H1 */
.lf-page__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  margin: 0 0 64px 0;
  max-width: 540px;
}

/* Body prose */
.lf-page__body {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 48px;
}

/* Legal / prose typography */
.lf-page__body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 56px 0 16px;
  padding-top: 0;
}
.lf-page__body h2:first-child { margin-top: 0; }
.lf-page__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 40px 0 12px;
}
.lf-page__body p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.lf-page__body p strong { color: #fff; font-weight: 600; }
.lf-page__body ul, .lf-page__body ol {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
  padding-left: 24px;
}
.lf-page__body li { margin-bottom: 8px; }
.lf-page__body a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
}
.lf-page__body a:hover { text-decoration-color: #fff; }
.lf-page__body hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 48px 0;
}

/* Callout block */
.lf-page__body .lf-callout {
  border-left: 3px solid rgba(255,89,0,0.7);
  background: rgba(255,89,0,0.06);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 6px 6px 0;
}
.lf-page__body .lf-callout p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.lf-page__body .lf-callout p + p { margin-top: 12px; }

/* Data table for legal pages */
.lf-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 14px;
}
.lf-legal-table th {
  text-align: left;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 16px 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lf-legal-table td {
  padding: 14px 16px 14px 0;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
  line-height: 1.55;
}
.lf-legal-table td strong { color: rgba(255,255,255,0.9); }
.lf-legal-table tr:last-child td { border-bottom: none; }

/* Page meta grid (company, press) */
.lf-page-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  margin: 48px 0;
}
@media (max-width: 700px) {
  .lf-page-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .lf-page-meta { grid-template-columns: 1fr; }
}
.lf-page-meta__cell {
  background: #000;
  padding: 28px 32px;
}
.lf-page-meta__k {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.lf-page-meta__v {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.lf-page-meta__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Press kit asset grid */
.lf-press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.lf-press-asset {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.lf-press-asset__thumb {
  height: 180px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.12);
  font-family: var(--font-display);
  font-weight: 700;
}
.lf-press-asset__meta {
  padding: 16px;
}
.lf-press-asset__name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.lf-press-asset__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.lf-press-asset__dl {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 6px 12px;
  text-decoration: none;
}
.lf-press-asset__dl:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* Changelog entries */
.lf-changelog {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lf-changelog__entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 40px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.lf-changelog__entry:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.lf-changelog__meta {}
.lf-changelog__version {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.lf-changelog__date {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.lf-changelog__tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,89,0,0.9);
  border: 1px solid rgba(255,89,0,0.3);
  border-radius: 3px;
  padding: 3px 8px;
}
.lf-changelog__content {}
.lf-changelog__content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
  text-transform: none;
}
.lf-changelog__content ul {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
}
.lf-changelog__content li { margin-bottom: 6px; }
.lf-changelog__content li strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* Contact page */
.lf-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  margin: 48px 0;
}
.lf-contact-cell {
  background: #000;
  padding: 40px;
}
.lf-contact-cell__icon {
  font-size: 24px;
  margin-bottom: 20px;
}
.lf-contact-cell__k {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.lf-contact-cell__v {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.lf-contact-cell__v a { text-decoration: none; }
.lf-contact-cell__v a:hover { opacity: 0.7; }
.lf-contact-cell__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
}
@media (max-width: 600px) {
  .lf-contact-grid { grid-template-columns: 1fr; }
  .lf-changelog__entry { grid-template-columns: 1fr; gap: 8px; }
  .lf-changelog__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .lf-changelog__tag { margin-top: 0; }
}

/* Company page hero block */
.lf-company-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}
.lf-company-hero__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.lf-company-hero__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 32px;
  color: #fff;
}
.lf-company-hero__h span { color: rgba(255,255,255,0.35); }
.lf-company-hero__lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  margin: 0;
}

/* Language switcher */
.lf-langswitch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-right: 4px;
}
.lf-langswitch__opt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 4px 8px;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: color 120ms ease;
}
.lf-langswitch__opt:last-child { border-right: 0; }
.lf-langswitch__opt:hover { color: rgba(255,255,255,0.85); }
.lf-langswitch__opt--active { color: #fff; }
@media (max-width: 820px) {
  .lf-langswitch { display: none; }
}

/* Sound toggle */
.lf-sound {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  z-index: 1000;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
  opacity: 0.7;
}
.lf-sound:hover {
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.28);
  opacity: 1;
}
.lf-sound--on { color: rgba(255,255,255,0.85); }
@media (max-width: 600px) {
  .lf-sound { bottom: 14px; right: 14px; width: 36px; height: 36px; }
}
