:root {
  --lnl-ink: #102b52;
  --lnl-ink-strong: #071c3a;
  --lnl-copy: #4f6484;
  --lnl-muted: #7b8daa;
  --lnl-line: rgba(78, 116, 181, .16);
  --lnl-blue: #2f72dc;
  --lnl-blue-2: #70a5f7;
  --lnl-lavender: #9b8cf3;
  --lnl-cyan: #bde9ff;
  --lnl-surface: #ffffff;
  --lnl-soft: #f5f9ff;
  --lnl-soft-2: #eef5ff;
  --lnl-shadow: 0 24px 70px rgba(36, 78, 145, .13);
  --lnl-radius: 28px;
  --lnl-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--lnl-ink);
  background: #fbfdff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.lnl-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.lnl-skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 9999;
  transform: translateY(-150%); padding: 10px 14px; border-radius: 10px;
  background: #fff; color: var(--lnl-ink); box-shadow: var(--lnl-shadow);
}
.lnl-skip-link:focus { transform: translateY(0); }
.lnl-container { width: min(calc(100% - 40px), var(--lnl-max)); margin-inline: auto; }

/* Header */
.lnl-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 253, 255, .78);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.lnl-header.is-scrolled { border-color: var(--lnl-line); background: rgba(251,253,255,.92); box-shadow: 0 10px 30px rgba(34,74,139,.07); }
.lnl-header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.lnl-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.lnl-brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 42px;
  padding: 8px; border: 1px solid rgba(90,129,210,.28); border-radius: 14px;
  background: linear-gradient(180deg, rgba(234,243,255,.98), rgba(203,222,255,.94));
  box-shadow: 0 10px 22px rgba(56,93,168,.13), inset 0 1px 0 rgba(255,255,255,.9);
}
.lnl-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.lnl-brand-copy { display: flex; flex-direction: column; min-width: 0; }
.lnl-brand-copy strong { color: #183f79; font-size: 21px; line-height: 1; font-weight: 850; letter-spacing: -.045em; }
.lnl-brand-copy small { margin-top: 5px; color: #7284a0; font-size: 10px; line-height: 1.15; white-space: nowrap; }
.lnl-nav { display: flex; align-items: center; gap: 22px; }
.lnl-menu { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; }
.lnl-menu a { color: #516786; font-size: 14px; font-weight: 680; transition: color .18s ease; }
.lnl-menu a:hover, .lnl-menu a:focus-visible { color: var(--lnl-blue); }
.lnl-header-cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px;
  border: 1px solid rgba(66,109,191,.25); border-radius: 14px; color: #173e77; font-size: 14px; font-weight: 800;
  background: linear-gradient(135deg, rgba(222,238,255,.96), rgba(208,220,255,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 8px 20px rgba(67,102,170,.1);
}
.lnl-menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 12px; background: transparent; }
.lnl-menu-toggle > span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--lnl-ink); transition: transform .2s ease, opacity .2s ease; }

/* Shared */
.lnl-section { padding: 112px 0; }
.lnl-section-heading { max-width: 740px; margin-bottom: 54px; }
.lnl-section-heading-center { margin-inline: auto; text-align: center; }
.lnl-eyebrow, .lnl-kicker {
  margin: 0 0 12px; color: #4f75bb; font-size: 12px; font-weight: 850; letter-spacing: .15em; line-height: 1.3; text-transform: uppercase;
}
.lnl-section-heading h2, .lnl-types-copy h2, .lnl-benefit-copy h2, .lnl-onboarding-copy h2, .lnl-download-copy h2, .lnl-faq-intro h2, .lnl-final-card h2 {
  margin: 0; color: var(--lnl-ink-strong); font-size: clamp(34px, 4vw, 54px); line-height: 1.05; letter-spacing: -.048em;
}
.lnl-section-heading > p:last-child, .lnl-types-copy > p:last-child, .lnl-benefit-copy > p, .lnl-onboarding-copy > p:last-child, .lnl-download-copy > p, .lnl-faq-intro > p:last-child {
  margin: 20px 0 0; color: var(--lnl-copy); font-size: 18px; line-height: 1.7;
}
.lnl-btn {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px;
  border: 1px solid transparent; border-radius: 16px; font-size: 15px; font-weight: 800; letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lnl-btn:hover { transform: translateY(-2px); }
.lnl-btn:focus-visible, .lnl-header-cta:focus-visible, .lnl-menu-toggle:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(71,127,224,.25); outline-offset: 3px; }
.lnl-btn-primary {
  color: #0b2b58;
  border-color: rgba(76,128,220,.26);
  background: linear-gradient(135deg, #c9eaff 0%, #96c9ff 42%, #b4acf9 100%);
  box-shadow: 0 16px 32px rgba(72,116,199,.18), inset 0 1px 0 rgba(255,255,255,.8);
}
.lnl-btn-primary:hover { box-shadow: 0 20px 38px rgba(72,116,199,.25), inset 0 1px 0 rgba(255,255,255,.8); }
.lnl-btn-secondary { color: #294d7f; border-color: rgba(78,116,181,.22); background: rgba(255,255,255,.78); box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }

/* Hero */
.lnl-hero { position: relative; overflow: hidden; padding: 86px 0 104px; background: linear-gradient(180deg, #f8fbff 0%, #f5f9ff 62%, #fbfdff 100%); }
.lnl-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(83,125,200,.095) 1px, transparent 1px); background-size: 25px 25px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 72%); pointer-events: none; }
.lnl-orb { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .68; pointer-events: none; }
.lnl-orb-one { width: 440px; height: 440px; top: -210px; right: -80px; background: radial-gradient(circle, rgba(185,216,255,.8), rgba(181,166,247,.18) 58%, transparent 72%); }
.lnl-orb-two { width: 360px; height: 360px; bottom: -220px; left: 5%; background: radial-gradient(circle, rgba(184,237,255,.6), rgba(154,198,255,.16) 60%, transparent 74%); }
.lnl-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); gap: 54px; align-items: center; }
.lnl-hero-copy { padding: 24px 0; }
.lnl-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid rgba(76,122,203,.18); border-radius: 999px; color: #46658f; background: rgba(255,255,255,.64); font-size: 12px; font-weight: 760; box-shadow: inset 0 1px 0 rgba(255,255,255,.95); }
.lnl-pill span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 999px; color: #204e93; background: #dcecff; font-weight: 900; }
.lnl-hero h1 { max-width: 710px; margin: 24px 0 0; color: var(--lnl-ink-strong); font-size: clamp(46px, 5.4vw, 76px); line-height: .98; letter-spacing: -.062em; }
.lnl-hero-lead { max-width: 660px; margin: 26px 0 0; color: var(--lnl-copy); font-size: 19px; line-height: 1.7; }
.lnl-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.lnl-hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: #657a99; font-size: 12px; font-weight: 720; }
.lnl-hero-points span { display: inline-flex; align-items: center; gap: 6px; }
.lnl-hero-points b { color: #4778bf; font-weight: 900; }
.lnl-hero-visual { position: relative; min-width: 0; padding: 32px 0 34px 16px; }
.lnl-phone-glow { position: absolute; inset: 9% -5% 5% 10%; border-radius: 42px; background: linear-gradient(135deg, rgba(144,204,255,.33), rgba(172,156,246,.28)); filter: blur(46px); }
.lnl-app-window { position: relative; overflow: hidden; border: 1px solid rgba(77,120,190,.2); border-radius: 29px; background: rgba(255,255,255,.94); box-shadow: 0 34px 90px rgba(34,76,147,.18), inset 0 1px 0 #fff; }
.lnl-app-topbar { height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(79,119,183,.11); background: linear-gradient(135deg, rgba(236,245,255,.97), rgba(244,241,255,.95)); }
.lnl-app-brand { display: flex; align-items: center; gap: 10px; }
.lnl-app-brand > span { width: 33px; height: 33px; display: grid; place-items: center; padding: 6px; border: 1px solid rgba(90,129,210,.22); border-radius: 11px; background: linear-gradient(180deg,#edf5ff,#d4e6ff); }
.lnl-app-brand img { width: 100%; height: 100%; }
.lnl-app-brand div { display: flex; flex-direction: column; }
.lnl-app-brand strong { color: #183f79; font-size: 16px; line-height: 1; letter-spacing: -.035em; }
.lnl-app-brand small { margin-top: 4px; color: #7b8eaa; font-size: 7px; }
.lnl-app-avatar { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(76,116,183,.16); border-radius: 11px; color: #4e6789; background: rgba(255,255,255,.78); font-size: 9px; font-weight: 850; }
.lnl-app-body { display: grid; grid-template-columns: 154px minmax(0,1fr); min-height: 420px; }
.lnl-app-sidebar { padding: 17px 12px; border-right: 1px solid rgba(79,119,183,.1); background: rgba(248,251,255,.82); }
.lnl-app-sidebar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; color: #788ca8; font-size: 8px; font-weight: 850; letter-spacing: .09em; }
.lnl-app-sidebar-head b { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; color: #244f91; background: linear-gradient(135deg,#cfeaff,#c8c0ff); font-size: 15px; }
.lnl-mini-list { margin-top: 7px; padding: 10px; border: 1px solid rgba(75,117,184,.11); border-radius: 12px; background: #fff; }
.lnl-mini-list.active { border-color: rgba(77,126,210,.2); background: linear-gradient(135deg,#eef7ff,#f4f0ff); box-shadow: inset 3px 0 #6798e6; }
.lnl-mini-list strong { display: block; color: #294868; font-size: 9px; line-height: 1.3; }
.lnl-mini-list small { display: block; margin-top: 4px; color: #8b9ab0; font-size: 6.5px; }
.lnl-app-main { min-width: 0; padding: 24px 20px 20px; }
.lnl-app-list-head { display: flex; justify-content: space-between; align-items: flex-start; }
.lnl-app-list-head small { color: #6c86aa; font-size: 7px; font-weight: 850; letter-spacing: .12em; }
.lnl-app-list-head h2 { margin: 4px 0 0; color: #16365f; font-size: 25px; line-height: 1.1; letter-spacing: -.045em; }
.lnl-app-list-head button { width: 32px; height: 32px; border: 1px solid rgba(78,119,185,.14); border-radius: 10px; color: #59749b; background: #fff; }
.lnl-progress { height: 7px; margin-top: 18px; overflow: hidden; border-radius: 999px; background: #edf3fb; }
.lnl-progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#7fb3ff,#9a90f3); }
.lnl-add-row { min-height: 48px; display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center; margin-top: 17px; padding: 7px; border: 1px solid rgba(77,119,187,.14); border-radius: 14px; background: #fff; }
.lnl-add-row > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: #295391; background: #e2f0ff; font-size: 17px; font-weight: 800; }
.lnl-add-row em { color: #a1adbd; font-size: 9px; font-style: normal; }
.lnl-add-row b { padding: 8px 12px; border-radius: 10px; color: #183f79; background: linear-gradient(135deg,#bfe6ff,#c3b9f8); font-size: 8px; }
.lnl-items { display: grid; gap: 8px; margin-top: 16px; }
.lnl-item { min-height: 52px; display: grid; grid-template-columns: 25px 1fr auto; gap: 10px; align-items: center; padding: 8px 10px; border: 1px solid rgba(78,119,185,.11); border-radius: 13px; background: #fff; }
.lnl-item.done { background: linear-gradient(90deg,#f2f7ff,#f5f2ff); }
.lnl-check { width: 23px; height: 23px; display: grid; place-items: center; border: 1px solid rgba(82,125,191,.32); border-radius: 8px; color: #fff; font-size: 9px; }
.lnl-item.done .lnl-check { border-color: transparent; background: linear-gradient(135deg,#75aef5,#9a8af0); }
.lnl-item strong { display: block; color: #2c4566; font-size: 9px; line-height: 1.2; }
.lnl-item.done strong { color: #73839a; text-decoration: line-through; }
.lnl-item small { display: block; margin-top: 3px; color: #9aa7b8; font-size: 6.5px; }
.lnl-item i { color: #9ca9b9; font-size: 9px; font-style: normal; letter-spacing: 2px; }
.lnl-floating-note { position: absolute; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid rgba(83,122,188,.17); border-radius: 15px; background: rgba(255,255,255,.92); box-shadow: 0 16px 36px rgba(37,75,138,.14); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.lnl-floating-note > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; color: #24508e; background: #e4f1ff; font-size: 14px; font-weight: 850; }
.lnl-floating-note div { display: flex; flex-direction: column; }
.lnl-floating-note strong { color: #29476e; font-size: 10px; line-height: 1.2; }
.lnl-floating-note small { margin-top: 3px; color: #8796aa; font-size: 7px; }
.lnl-floating-share { right: -22px; top: 106px; }
.lnl-floating-save { left: -12px; bottom: 2px; }

/* Trust strip */
.lnl-trust-strip { border-top: 1px solid rgba(78,116,181,.1); border-bottom: 1px solid rgba(78,116,181,.1); background: rgba(248,251,255,.72); }
.lnl-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.lnl-trust-grid > div { min-height: 92px; display: flex; flex-direction: column; justify-content: center; padding: 16px 30px; border-right: 1px solid rgba(78,116,181,.1); }
.lnl-trust-grid > div:first-child { padding-left: 0; }
.lnl-trust-grid > div:last-child { border-right: 0; }
.lnl-trust-grid strong { color: #365987; font-size: 13px; }
.lnl-trust-grid span { margin-top: 3px; color: #8393aa; font-size: 11px; }

/* Features */
.lnl-features-section { background: #fbfdff; }
.lnl-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.lnl-feature-card { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--lnl-line); border-radius: 24px; background: rgba(255,255,255,.92); box-shadow: 0 18px 50px rgba(38,76,137,.06); }
.lnl-feature-card-large { grid-column: span 2; min-height: 340px; position: relative; overflow: hidden; background: linear-gradient(135deg,#f2f8ff 0%,#f7f4ff 100%); }
.lnl-feature-card-large::after { content: ""; position: absolute; width: 250px; height: 250px; right: -100px; bottom: -100px; border-radius: 999px; background: radial-gradient(circle,rgba(133,191,255,.28),rgba(167,150,244,.12),transparent 70%); }
.lnl-feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 42px; border: 1px solid rgba(70,116,195,.16); border-radius: 15px; color: #315f9f; background: linear-gradient(135deg,#e2f2ff,#e6e2ff); font-size: 20px; font-weight: 850; }
.lnl-feature-card h3 { max-width: 520px; margin: 6px 0 0; color: var(--lnl-ink-strong); font-size: 24px; line-height: 1.12; letter-spacing: -.035em; }
.lnl-feature-card p { max-width: 560px; margin: 13px 0 0; color: var(--lnl-copy); font-size: 14px; line-height: 1.75; }
.lnl-share-demo { position: absolute; right: 28px; bottom: 28px; width: 210px; padding: 16px; border: 1px solid rgba(82,120,184,.14); border-radius: 18px; background: rgba(255,255,255,.7); }
.lnl-share-avatars { display: flex; align-items: center; }
.lnl-share-avatars span, .lnl-share-avatars b { width: 36px; height: 36px; display: grid; place-items: center; margin-left: -7px; border: 3px solid #fff; border-radius: 999px; color: #2c5388; background: #ddecff; font-size: 10px; font-weight: 850; }
.lnl-share-avatars span:first-child { margin-left: 0; background: #d9eeff; }
.lnl-share-avatars span:nth-child(2) { background: #e5e0ff; }
.lnl-share-avatars span:nth-child(3) { background: #d8f3ff; }
.lnl-share-avatars b { background: #f0f4fa; color: #788ba4; }
.lnl-share-line { display: grid; gap: 7px; margin-top: 14px; }
.lnl-share-line span { height: 7px; border-radius: 999px; background: #e4ecf7; }
.lnl-share-line span:nth-child(2) { width: 80%; }
.lnl-share-line span:nth-child(3) { width: 60%; }

/* How */
.lnl-how-section { background: linear-gradient(180deg,#f4f8ff,#fafcff); }
.lnl-step-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; counter-reset: step; }
.lnl-step { position: relative; min-height: 280px; padding: 26px; border: 1px solid rgba(78,116,181,.13); border-radius: 22px; background: rgba(255,255,255,.78); }
.lnl-step-number { position: absolute; top: 22px; right: 22px; color: #afbdd0; font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.lnl-step-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-top: 26px; border-radius: 15px; color: #2e5a98; background: linear-gradient(135deg,#dff1ff,#dfdcff); font-size: 20px; font-weight: 850; }
.lnl-step h3 { margin: 36px 0 0; color: var(--lnl-ink-strong); font-size: 23px; letter-spacing: -.035em; }
.lnl-step p { margin: 10px 0 0; color: var(--lnl-copy); font-size: 13px; line-height: 1.7; }

/* Types */
.lnl-types-section { background: #fbfdff; }
.lnl-types-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.lnl-types-copy { position: sticky; top: 130px; }
.lnl-type-stack { display: grid; gap: 16px; }
.lnl-type-card { display: grid; grid-template-columns: 68px 1fr; gap: 22px; align-items: start; padding: 28px; border: 1px solid var(--lnl-line); border-radius: 24px; background: #fff; box-shadow: 0 16px 42px rgba(36,77,141,.055); }
.lnl-type-card.shopping { background: linear-gradient(135deg,#f0f8ff,#f7f4ff); }
.lnl-type-badge { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 19px; color: #315b95; background: linear-gradient(135deg,#ddecff,#e6e0ff); font-size: 27px; }
.lnl-type-card small { color: #6581aa; font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.lnl-type-card h3 { margin: 5px 0 0; color: var(--lnl-ink-strong); font-size: 25px; line-height: 1.15; letter-spacing: -.036em; }
.lnl-type-card p { margin: 10px 0 0; color: var(--lnl-copy); font-size: 14px; line-height: 1.7; }

/* Benefit */
.lnl-benefit-section { background: linear-gradient(180deg,#f7faff,#f3f7ff); }
.lnl-benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.lnl-benefit-visual { position: relative; display: grid; gap: 16px; padding: 52px 38px; border: 1px solid rgba(76,116,185,.13); border-radius: 30px; background: linear-gradient(135deg,rgba(232,244,255,.92),rgba(241,237,255,.9)); overflow: hidden; }
.lnl-benefit-visual::before { content: ""; position: absolute; width: 280px; height: 280px; top: -120px; left: -80px; border-radius: 999px; background: radial-gradient(circle,rgba(119,186,255,.25),transparent 68%); }
.lnl-benefit-card { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 16px; border: 1px solid rgba(80,119,184,.13); border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: 0 14px 34px rgba(42,78,137,.07); }
.lnl-benefit-card:nth-child(2) { transform: translateX(28px); }
.lnl-benefit-card > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: #2e5a98; background: #e2f1ff; font-size: 18px; font-weight: 850; }
.lnl-benefit-card div { display: flex; flex-direction: column; }
.lnl-benefit-card strong { color: #24466f; font-size: 13px; }
.lnl-benefit-card small { margin-top: 4px; color: #8495ac; font-size: 10px; }
.lnl-check-list { list-style: none; display: grid; gap: 12px; margin: 28px 0 0; padding: 0; }
.lnl-check-list li { position: relative; padding-left: 30px; color: #49607f; font-size: 14px; }
.lnl-check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 7px; color: #285a9b; background: #dceeff; font-size: 11px; font-weight: 900; }

/* Onboarding */
.lnl-onboarding-section { background: #fbfdff; }
.lnl-onboarding-card { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 52px; border: 1px solid rgba(76,116,185,.14); border-radius: 32px; background: linear-gradient(135deg,#f2f8ff 0%,#f7f4ff 100%); box-shadow: 0 26px 70px rgba(38,77,141,.08); }
.lnl-onboarding-ui { display: grid; gap: 12px; padding: 24px; border: 1px solid rgba(82,121,186,.13); border-radius: 24px; background: rgba(255,255,255,.72); }
.lnl-language-chip { display: grid; grid-template-columns: 40px 1fr 28px; gap: 10px; align-items: center; min-height: 58px; padding: 8px 12px; border: 1px solid rgba(79,119,185,.12); border-radius: 15px; background: #fff; }
.lnl-language-chip > span { font-size: 22px; }
.lnl-language-chip strong { color: #2d4e78; font-size: 13px; }
.lnl-language-chip i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: #285a9b; background: #e0efff; font-size: 10px; font-style: normal; font-weight: 850; }
.lnl-tutorial-tip { margin-top: 8px; padding: 18px; border: 1px solid rgba(76,119,186,.15); border-radius: 17px; background: linear-gradient(135deg,#eaf5ff,#eeebff); }
.lnl-tutorial-tip small { color: #6c84a8; font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.lnl-tutorial-tip strong { display: block; margin-top: 7px; color: #234872; font-size: 15px; }
.lnl-tutorial-tip span { display: block; margin-top: 5px; color: #7589a5; font-size: 10px; }

/* Download */
.lnl-download-section { padding-top: 80px; background: #fbfdff; }
.lnl-download-card { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; overflow: hidden; padding: 64px; border: 1px solid rgba(76,116,185,.15); border-radius: 34px; background: linear-gradient(135deg,#102d59 0%,#244d86 48%,#4f579a 100%); box-shadow: 0 34px 90px rgba(24,54,108,.2); }
.lnl-download-card::before { content: ""; position: absolute; width: 440px; height: 440px; right: -170px; top: -190px; border-radius: 999px; background: radial-gradient(circle,rgba(170,224,255,.38),rgba(177,165,249,.13) 52%,transparent 72%); }
.lnl-download-card .lnl-eyebrow { color: #bcd8ff; }
.lnl-download-copy { position: relative; }
.lnl-download-copy h2 { color: #fff; }
.lnl-download-copy > p { color: rgba(227,237,252,.77); }
.lnl-download-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.lnl-play-button { min-height: 58px; display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; color: #fff; background: rgba(4,15,35,.76); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.lnl-play-button.is-placeholder { opacity: .62; }
.lnl-play-icon { font-size: 20px; }
.lnl-play-button > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.lnl-play-button small { font-size: 7px; letter-spacing: .11em; }
.lnl-play-button strong { margin-top: 4px; font-size: 18px; letter-spacing: -.02em; }
.lnl-text-link { color: #d6e7ff; font-size: 13px; font-weight: 760; }
.lnl-qr-wrap { position: relative; display: flex; justify-content: center; }
.lnl-qr-card { width: 230px; min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 26px; background: rgba(255,255,255,.94); box-shadow: 0 24px 50px rgba(3,18,48,.24); }
.lnl-qr-card img { width: 178px; height: 178px; object-fit: contain; }
.lnl-qr-card > span { margin-top: 12px; color: #38577e; font-size: 11px; font-weight: 800; }
.lnl-qr-placeholder strong { margin-top: 16px; color: #31517d; font-size: 15px; }
.lnl-qr-placeholder small { margin-top: 4px; color: #8392a8; font-size: 10px; }
.lnl-qr-pattern { width: 154px; height: 154px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 14px; border-radius: 17px; background: #f3f7fc; }
.lnl-qr-pattern span { border-radius: 5px; background: linear-gradient(135deg,#759ede,#9b8fe8); opacity: .6; }
.lnl-qr-pattern span:nth-child(2), .lnl-qr-pattern span:nth-child(4), .lnl-qr-pattern span:nth-child(8) { opacity: .2; }
.lnl-qr-pattern span:nth-child(5) { opacity: .85; transform: scale(.55); }

/* FAQ */
.lnl-faq-section { background: linear-gradient(180deg,#f7faff,#fbfdff); }
.lnl-faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.lnl-faq-intro { position: sticky; top: 130px; }
.lnl-faq-list { display: grid; gap: 10px; }
.lnl-faq-list details { border: 1px solid rgba(78,116,181,.14); border-radius: 18px; background: rgba(255,255,255,.86); overflow: hidden; }
.lnl-faq-list summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; cursor: pointer; color: #29496f; font-size: 14px; font-weight: 780; list-style: none; }
.lnl-faq-list summary::-webkit-details-marker { display: none; }
.lnl-faq-list summary span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 30px; border-radius: 10px; color: #416aa4; background: #edf5ff; font-size: 16px; }
.lnl-faq-list details div { padding: 0 20px 20px; }
.lnl-faq-list details p { margin: 0; color: var(--lnl-copy); font-size: 13px; line-height: 1.75; }

/* Final CTA + footer */
.lnl-final-cta { padding: 18px 0 110px; background: #fbfdff; }
.lnl-final-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px 42px; border: 1px solid rgba(78,116,181,.14); border-radius: 27px; background: linear-gradient(135deg,#eff7ff,#f5f1ff); }
.lnl-final-card h2 { max-width: 760px; font-size: clamp(28px,3.2vw,43px); }
.lnl-footer { padding: 58px 0 28px; border-top: 1px solid rgba(78,116,181,.11); background: #f5f8fc; }
.lnl-footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; }
.lnl-footer-brand p { max-width: 430px; margin: 18px 0 0; color: #7386a0; font-size: 13px; }
.lnl-footer-links { display: grid; grid-template-columns: repeat(2,minmax(150px,1fr)); gap: 11px 28px; align-content: start; }
.lnl-footer-links a { color: #5e7392; font-size: 12px; font-weight: 690; }
.lnl-footer-links a:hover { color: var(--lnl-blue); }
.lnl-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(78,116,181,.1); color: #93a0b3; font-size: 10px; }

/* Pages */
.lnl-page-shell { min-height: 65vh; padding: 78px 0 110px; background: linear-gradient(180deg,#f5f9ff,#fbfdff); }
.lnl-content-card { max-width: 900px; padding: 48px; border: 1px solid rgba(78,116,181,.14); border-radius: 28px; background: #fff; box-shadow: 0 24px 70px rgba(36,78,145,.08); }
.lnl-content-card h1 { margin: 0; color: var(--lnl-ink-strong); font-size: clamp(36px,5vw,58px); line-height: 1.03; letter-spacing: -.05em; }
.lnl-entry-content { margin-top: 30px; color: var(--lnl-copy); }
.lnl-entry-content h2, .lnl-entry-content h3 { color: var(--lnl-ink-strong); line-height: 1.2; }
.lnl-entry-content a { color: var(--lnl-blue); text-decoration: underline; text-underline-offset: 3px; }
.lnl-entry-content input, .lnl-entry-content textarea, .lnl-entry-content select { width: 100%; max-width: 100%; padding: 12px 14px; border: 1px solid rgba(78,116,181,.22); border-radius: 12px; color: var(--lnl-ink); background: #fff; }
.lnl-entry-content button, .lnl-entry-content input[type="submit"] { min-height: 46px; width: auto; padding: 0 18px; border: 1px solid rgba(76,128,220,.26); border-radius: 13px; color: #0b2b58; background: linear-gradient(135deg,#c9eaff,#96c9ff 42%,#b4acf9); font-weight: 800; cursor: pointer; }
.lnl-404 { text-align: center; }
.lnl-404 .lnl-btn { margin-top: 20px; }

/* Reveal */
.lnl-has-reveal [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1); }
.lnl-has-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .lnl-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .lnl-hero-copy { max-width: 760px; }
  .lnl-hero-visual { max-width: 740px; margin-inline: auto; width: 100%; }
  .lnl-feature-grid { grid-template-columns: repeat(2,1fr); }
  .lnl-feature-card-large { grid-column: span 2; }
  .lnl-step-grid { grid-template-columns: repeat(2,1fr); }
  .lnl-types-layout, .lnl-benefit-grid, .lnl-onboarding-card, .lnl-download-card, .lnl-faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .lnl-types-copy, .lnl-faq-intro { position: static; }
  .lnl-benefit-visual { max-width: 680px; }
  .lnl-onboarding-ui { max-width: 580px; }
  .lnl-download-copy { max-width: 720px; }
  .lnl-qr-wrap { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .lnl-header-inner { min-height: 70px; }
  .lnl-menu-toggle { display: block; }
  .lnl-nav { position: fixed; inset: 70px 14px auto; display: none; padding: 18px; border: 1px solid rgba(78,116,181,.16); border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: 0 26px 70px rgba(34,73,137,.17); }
  .lnl-nav.is-open { display: grid; gap: 16px; }
  .lnl-menu { display: grid; gap: 3px; }
  .lnl-menu a { min-height: 44px; display: flex; align-items: center; padding: 0 12px; border-radius: 11px; }
  .lnl-menu a:hover { background: #f3f7fd; }
  .lnl-header-cta { width: 100%; }
  .lnl-trust-grid { grid-template-columns: repeat(2,1fr); }
  .lnl-trust-grid > div { border-bottom: 1px solid rgba(78,116,181,.1); }
  .lnl-trust-grid > div:nth-child(2) { border-right: 0; }
  .lnl-trust-grid > div:nth-child(3), .lnl-trust-grid > div:nth-child(4) { border-bottom: 0; }
  .lnl-trust-grid > div:first-child { padding-left: 30px; }
  .lnl-share-demo { position: static; width: 100%; margin-top: 28px; }
  .lnl-feature-card-large { display: block; }
  .lnl-final-card { align-items: flex-start; flex-direction: column; }
  .lnl-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .lnl-container { width: min(calc(100% - 28px), var(--lnl-max)); }
  .lnl-section { padding: 82px 0; }
  .lnl-hero { padding: 50px 0 76px; }
  .lnl-hero h1 { font-size: clamp(42px,13vw,60px); }
  .lnl-hero-lead { font-size: 17px; }
  .lnl-hero-actions .lnl-btn { width: 100%; }
  .lnl-hero-points { gap: 10px 16px; }
  .lnl-hero-visual { padding: 15px 0 40px; }
  .lnl-app-window { border-radius: 21px; }
  .lnl-app-body { grid-template-columns: 1fr; min-height: 360px; }
  .lnl-app-sidebar { display: none; }
  .lnl-app-main { padding: 18px 14px; }
  .lnl-app-list-head h2 { font-size: 21px; }
  .lnl-floating-share { right: -5px; top: 94px; }
  .lnl-floating-save { left: -5px; bottom: 3px; }
  .lnl-feature-grid { grid-template-columns: 1fr; }
  .lnl-feature-card-large { grid-column: auto; }
  .lnl-feature-card { min-height: 0; padding: 23px; }
  .lnl-feature-icon { margin-bottom: 30px; }
  .lnl-step-grid { grid-template-columns: 1fr; }
  .lnl-step { min-height: 230px; }
  .lnl-type-card { grid-template-columns: 54px 1fr; padding: 21px; gap: 16px; }
  .lnl-type-badge { width: 52px; height: 52px; border-radius: 15px; font-size: 21px; }
  .lnl-type-card h3 { font-size: 21px; }
  .lnl-benefit-visual { padding: 28px 18px; }
  .lnl-benefit-card { grid-template-columns: 42px 1fr; }
  .lnl-benefit-card:nth-child(2) { transform: none; }
  .lnl-onboarding-card { padding: 28px 20px; border-radius: 26px; }
  .lnl-download-card { padding: 34px 22px; border-radius: 27px; }
  .lnl-qr-wrap { justify-content: center; }
  .lnl-qr-card { width: min(230px,100%); }
  .lnl-final-card { padding: 28px 23px; }
  .lnl-footer-links { grid-template-columns: 1fr; }
  .lnl-footer-bottom { flex-direction: column; }
  .lnl-content-card { padding: 30px 22px; border-radius: 22px; }
}

@media (max-width: 390px) {
  .lnl-brand-copy small { display: none; }
  .lnl-trust-grid { grid-template-columns: 1fr; }
  .lnl-trust-grid > div { min-height: 74px; border-right: 0; border-bottom: 1px solid rgba(78,116,181,.1) !important; padding-left: 0 !important; }
  .lnl-trust-grid > div:last-child { border-bottom: 0 !important; }
  .lnl-floating-note { display: none; }
}

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

/* Language switcher */
.lnl-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(78,116,181,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.lnl-language-option {
  min-width: 48px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #667b99;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.lnl-language-option span:first-child { font-size: 15px; line-height: 1; }
.lnl-language-option:hover,
.lnl-language-option:focus-visible { color: #275895; background: rgba(237,246,255,.9); }
.lnl-language-option.is-active {
  color: #163f78;
  border-color: rgba(76,128,220,.22);
  background: linear-gradient(135deg, rgba(214,239,255,.98), rgba(218,216,255,.98));
  box-shadow: 0 5px 14px rgba(72,116,199,.1), inset 0 1px 0 rgba(255,255,255,.9);
}

@media (max-width: 820px) {
  .lnl-language-switcher { width: max-content; }
  .lnl-language-option { min-width: 58px; min-height: 40px; }
}

/* Coming Soon mode */
body.lnl-coming-soon-body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f7fbff;
}
.lnl-coming-soon {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: max(22px, env(safe-area-inset-top)) 24px max(28px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 12% 20%, rgba(189,233,255,.46), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(185,176,249,.34), transparent 30%),
    linear-gradient(180deg,#f8fbff 0%,#f2f7ff 58%,#fbfdff 100%);
}
.lnl-coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .52;
  background-image: radial-gradient(rgba(83,125,200,.11) 1px, transparent 1px);
  background-size: 25px 25px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.82), transparent 78%);
}
.lnl-coming-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
}
.lnl-coming-orb-one {
  width: 390px;
  height: 390px;
  right: -150px;
  top: -170px;
  background: radial-gradient(circle, rgba(142,196,255,.35), rgba(160,146,244,.12) 55%, transparent 72%);
}
.lnl-coming-orb-two {
  width: 350px;
  height: 350px;
  left: -150px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(184,237,255,.42), rgba(154,198,255,.12) 58%, transparent 74%);
}
.lnl-coming-topbar,
.lnl-coming-panel,
.lnl-coming-footer {
  position: relative;
  z-index: 2;
}
.lnl-coming-topbar {
  width: min(1120px,100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.lnl-coming-brand .lnl-brand-copy small { color: #7e8faa; }
.lnl-coming-language { background: rgba(255,255,255,.75); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.lnl-coming-panel {
  width: min(1120px,100%);
  margin: 84px auto 0;
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr);
  gap: 72px;
  align-items: center;
}
.lnl-coming-copy { max-width: 620px; }
.lnl-coming-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(76,122,203,.16);
  border-radius: 999px;
  color: #4b6d9c;
  background: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 820;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}
.lnl-coming-pill span {
  color: #6b8fc9;
  font-size: 13px;
}
.lnl-coming-copy h1 {
  margin: 24px 0 0;
  color: var(--lnl-ink-strong);
  font-size: clamp(44px,5.4vw,72px);
  line-height: .99;
  letter-spacing: -.057em;
}
.lnl-coming-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--lnl-copy);
  font-size: 18px;
  line-height: 1.72;
}
.lnl-coming-play {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 30px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(70,109,177,.18);
  border-radius: 17px;
  color: #193e73;
  background: linear-gradient(135deg,rgba(226,243,255,.98),rgba(224,222,255,.98));
  box-shadow: 0 15px 34px rgba(63,103,176,.13), inset 0 1px 0 rgba(255,255,255,.92);
}
.lnl-coming-play-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg,#71b7f4,#7e8de8 58%,#a28eea);
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(72,116,199,.2);
}
.lnl-coming-play > span:last-child { display: flex; flex-direction: column; }
.lnl-coming-play small { color: #6e84a4; font-size: 8px; font-weight: 850; letter-spacing: .12em; line-height: 1.2; }
.lnl-coming-play strong { margin-top: 3px; font-size: 19px; line-height: 1; letter-spacing: -.02em; }
.lnl-coming-preview {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(80,119,184,.17);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 30px 80px rgba(33,72,134,.13), inset 0 1px 0 rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}
.lnl-coming-appbar {
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 4px 2px 18px;
  border-bottom: 1px solid rgba(80,119,184,.12);
}
.lnl-coming-mini-logo,
.lnl-coming-avatar {
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-weight: 900;
}
.lnl-coming-mini-logo {
  width: 42px;
  height: 42px;
  color: #315f9f;
  background: linear-gradient(135deg,#ddecff,#e7e0ff);
}
.lnl-coming-avatar {
  width: 36px;
  height: 36px;
  color: #4c6490;
  background: #eef4fb;
  font-size: 11px;
}
.lnl-coming-appbar > div { display: flex; flex-direction: column; }
.lnl-coming-appbar strong { color: #24476f; font-size: 14px; }
.lnl-coming-appbar small { margin-top: 2px; color: #91a0b4; font-size: 9px; }
.lnl-coming-list-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(80,119,184,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
}
.lnl-coming-list-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.lnl-coming-list-title > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #e8f3ff;
  font-size: 18px;
}
.lnl-coming-list-title > div { display: flex; flex-direction: column; }
.lnl-coming-list-title strong { color: #2d4d76; font-size: 14px; }
.lnl-coming-list-title small { margin-top: 2px; color: #93a1b4; font-size: 9px; }
.lnl-coming-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(80,119,184,.1);
  color: #4b607d;
  font-size: 12px;
}
.lnl-coming-row i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1.5px solid #b7c7da;
  border-radius: 6px;
  color: #2c619f;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.lnl-coming-row b { color: #7f91a8; font-size: 10px; font-weight: 760; }
.lnl-coming-row.is-done span { color: #9ba8b8; text-decoration: line-through; }
.lnl-coming-row.is-done i { border-color: #a9ccec; background: #dff1ff; }
.lnl-coming-feature-chips {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 9px;
  margin-top: 14px;
}
.lnl-coming-feature-chips span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(80,119,184,.11);
  border-radius: 13px;
  color: #5d7392;
  background: rgba(247,250,255,.88);
  font-size: 10px;
  font-weight: 760;
}
.lnl-coming-footer {
  width: min(1120px,100%);
  margin: 72px auto 0;
  color: #8a99ae;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
}

@media (max-width: 900px) {
  .lnl-coming-panel { margin-top: 62px; grid-template-columns: 1fr; gap: 46px; }
  .lnl-coming-copy { max-width: 720px; }
  .lnl-coming-preview { max-width: 660px; width: 100%; }
}
@media (max-width: 640px) {
  .lnl-coming-soon { padding-inline: 16px; }
  .lnl-coming-topbar { align-items: flex-start; }
  .lnl-coming-brand .lnl-brand-copy small { display: none; }
  .lnl-coming-language .lnl-language-option { min-width: 50px; }
  .lnl-coming-panel { margin-top: 50px; }
  .lnl-coming-copy h1 { font-size: clamp(42px,13vw,58px); }
  .lnl-coming-lead { font-size: 16px; }
  .lnl-coming-play { width: 100%; justify-content: flex-start; }
  .lnl-coming-preview { padding: 16px; border-radius: 24px; }
  .lnl-coming-feature-chips { grid-template-columns: 1fr; }
  .lnl-coming-footer { margin-top: 50px; }
}
