@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/manrope-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --lm-white: #fff;
  --lm-black: #020202;
  --lm-text: #262626;
  --lm-muted: #5e5e66;
  --lm-muted-2: #8a8a93;
  --lm-page: #f4f6fa;
  --lm-surface: #f6f6f7;
  --lm-border: #ebebee;
  --lm-border-2: #e2e2e6;
  --lm-lemon: #eecb03;
  --lm-lemon-hover: #d9b900;
  --lm-lemon-soft: #fff3c4;
  --lm-purple: #7d00ea;
  --lm-purple-soft: #f4e8ff;
  --lm-success: #2eb872;
  --lm-danger: #e5484d;
  --lm-info: #4361ee;
  --lm-radius-sm: 10px;
  --lm-radius-md: 16px;
  --lm-radius-lg: 24px;
  --lm-radius-pill: 100px;
  --lm-container: 1328px;
  --lm-shadow-soft: 0 2px 16px rgba(16, 24, 40, .08);
  --lm-shadow-card: 0 3px 14px rgba(0, 0, 0, .08);
  --lm-shadow-pop: 0 18px 48px -12px rgba(0, 0, 0, .22);
  --lm-glow: 0 10px 28px -8px rgba(238, 203, 3, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lm-page);
  color: var(--lm-black);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(125, 0, 234, .3); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100;
  padding: 10px 16px; border-radius: var(--lm-radius-sm);
  background: var(--lm-black); color: var(--lm-white); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--lm-container)); margin-inline: auto; }
.site-header { position: sticky; top: 12px; z-index: 50; padding-top: 12px; }
.nav-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 72px; padding: 12px 14px 12px 20px;
  background: rgba(255, 255, 255, .92); border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--lm-radius-pill); box-shadow: var(--lm-shadow-soft); backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; text-decoration: none; letter-spacing: -.03em; }
.brand img { width: 38px; height: 38px; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 10px 12px; border-radius: var(--lm-radius-pill); color: var(--lm-text); font-size: 15px; font-weight: 700; text-decoration: none; }
.nav-link:hover, .nav-link[aria-current="page"] { background: var(--lm-surface); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--lm-surface); cursor: pointer; }
.mobile-menu { margin-top: 8px; padding: 16px; background: var(--lm-white); border: 1px solid var(--lm-border); border-radius: var(--lm-radius-lg); box-shadow: var(--lm-shadow-pop); }
.mobile-menu a { display: block; padding: 12px; border-radius: var(--lm-radius-sm); font-weight: 700; text-decoration: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 14px 22px; border: 1px solid transparent;
  border-radius: var(--lm-radius-pill); font-size: 16px; font-weight: 800; line-height: 1;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lm-lemon); color: var(--lm-black); box-shadow: var(--lm-glow); }
.button-primary:hover { background: var(--lm-lemon-hover); box-shadow: 0 16px 36px -8px rgba(238,203,3,.6); }
.button-dark { background: var(--lm-black); color: var(--lm-white); }
.button-ghost { background: var(--lm-white); border-color: var(--lm-border-2); color: var(--lm-black); }
.button-purple { background: var(--lm-purple); color: var(--lm-white); box-shadow: 0 10px 28px -8px rgba(125,0,234,.4); }
.button-small { min-height: 42px; padding: 12px 18px; font-size: 15px; }

main { overflow: clip; }
.hero { padding: 24px 0 64px; }
.hero-shell {
  position: relative; overflow: hidden; min-height: 680px; padding: clamp(40px, 6vw, 80px);
  border-radius: 40px; background: linear-gradient(180deg,#fffef8 0%,#f8f7fb 100%);
  border: 1px solid var(--lm-border); display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
h1, h2, h3 { margin: 0; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(42px, 5.4vw, 72px); line-height: 1.02; font-weight: 800; }
h2 { font-size: clamp(34px, 4.2vw, 58px); line-height: 1.08; font-weight: 800; }
h3 { font-size: clamp(23px, 2.6vw, 30px); line-height: 1.15; font-weight: 800; }
.lead { max-width: 690px; margin: 24px 0 0; color: var(--lm-muted); font-size: 20px; line-height: 1.6; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; color: var(--lm-muted); font-size: 15px; }
.trust-line span { display: inline-flex; align-items: center; gap: 8px; }
.trust-line span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lm-success); }

.product-window {
  position: relative; z-index: 1; padding: 16px; border-radius: 32px; background: var(--lm-black);
  box-shadow: var(--lm-shadow-pop); transform: rotate(1.3deg);
}
.window-bar { display: flex; align-items: center; justify-content: space-between; color: #fff; padding: 2px 6px 14px; font-size: 14px; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #5f5f66; }
.calendar { padding: 16px; border-radius: 20px; background: var(--lm-white); }
.calendar-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.calendar-head strong { font-size: 18px; }
.calendar-head span { color: var(--lm-muted); font-size: 14px; }
.calendar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.day { min-height: 132px; padding: 12px; background: var(--lm-surface); border: 1px solid var(--lm-border); border-radius: var(--lm-radius-md); }
.day-label { font-size: 13px; color: var(--lm-muted); }
.post-card { margin-top: 10px; padding: 10px; background: var(--lm-white); border-radius: var(--lm-radius-sm); box-shadow: var(--lm-shadow-soft); font-size: 13px; line-height: 1.35; }
.post-card strong { display: block; margin-bottom: 3px; }
.post-card.purple { background: var(--lm-purple-soft); }
.post-card.lemon { background: var(--lm-lemon-soft); }

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { display: grid; grid-template-columns: 1fr minmax(280px, .65fr); gap: 48px; align-items: end; margin-bottom: 48px; }
.section-head p { margin: 0; color: var(--lm-muted); font-size: 18px; }
.island { padding: clamp(32px, 5vw, 72px); border-radius: 40px; background: var(--lm-white); border: 1px solid var(--lm-border); }
.island-dark { background: var(--lm-black); color: var(--lm-white); border-color: var(--lm-black); }
.island-dark .lead, .island-dark p { color: #c7c7cd; }
.island-lemon { background: var(--lm-lemon); border-color: var(--lm-lemon); }
.island-purple-soft { background: var(--lm-purple-soft); border-color: transparent; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-spaced { margin-top: 32px; }
.card { padding: 28px; border-radius: var(--lm-radius-lg); background: var(--lm-white); border: 1px solid var(--lm-border); }
.card h3 { margin-bottom: 12px; }
.card p { margin: 0; color: var(--lm-muted); }
.card-kicker { display: inline-flex; align-items: center; min-height: 34px; margin-bottom: 24px; padding: 6px 12px; border-radius: var(--lm-radius-pill); background: var(--lm-surface); color: var(--lm-muted); font-size: 13px; font-weight: 700; }
.card-accent { background: var(--lm-lemon-soft); border-color: transparent; }
.card-purple { background: var(--lm-purple-soft); border-color: transparent; }
.card-dark { background: #151515; border-color: #2e2e2e; color: var(--lm-white); }
.card-dark p { color: #c7c7cd; }
.number { font-size: 56px; line-height: 1; font-weight: 800; letter-spacing: -.04em; }
.step { position: relative; padding-top: 72px; }
.step::before { position: absolute; top: 20px; left: 28px; color: var(--lm-purple); font-weight: 800; font-size: 18px; }
.step:nth-child(1)::before { content: "01"; }
.step:nth-child(2)::before { content: "02"; }
.step:nth-child(3)::before { content: "03"; }

.channel-list { display: grid; gap: 12px; }
.channel-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--lm-border); }
.channel-row:last-child { border-bottom: 0; }
.channel-row strong { display: block; font-size: 20px; }
.channel-row small { color: var(--lm-muted); font-size: 15px; }
.status { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 7px 12px; border-radius: var(--lm-radius-pill); font-size: 14px; font-weight: 700; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status-live { color: #147848; background: #e7f7ef; }
.status-review { color: #765c00; background: var(--lm-lemon-soft); }
.status-planned { color: var(--lm-purple); background: var(--lm-purple-soft); }

.split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 64px; align-items: center; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--lm-purple); }
.plain-list { margin: 20px 0 0; padding-left: 24px; }
.plain-list li + li { margin-top: 10px; }
.quote { margin: 0; font-size: clamp(28px,3.3vw,46px); line-height: 1.22; font-weight: 800; }
.caption { color: var(--lm-muted); font-size: 15px; }

.faq { display: grid; gap: 12px; }
.faq details { background: var(--lm-white); border: 1px solid var(--lm-border); border-radius: var(--lm-radius-md); padding: 20px 24px; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin: 14px 0 0; color: var(--lm-muted); }

.page-hero { padding: 64px 0 48px; }
.page-hero-shell { padding: clamp(40px,6vw,80px); border-radius: 40px; background: var(--lm-white); border: 1px solid var(--lm-border); }
.page-hero-shell .lead { max-width: 820px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--lm-muted); font-size: 15px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: var(--lm-muted-2); }
.prose { max-width: 860px; }
.prose h2 { margin: 64px 0 20px; font-size: clamp(30px,3.2vw,44px); }
.prose h3 { margin: 40px 0 14px; font-size: 26px; }
.prose p, .prose li { color: var(--lm-text); }
.prose a { color: var(--lm-purple); }
.prose code { padding: 3px 7px; border-radius: 7px; background: var(--lm-surface); color: var(--lm-black); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em; overflow-wrap: anywhere; }
.prose .notice { margin: 32px 0; padding: 24px; border-radius: var(--lm-radius-md); background: var(--lm-lemon-soft); }
.prose .legal-meta { padding: 20px 0; border-block: 1px solid var(--lm-border); color: var(--lm-muted); font-size: 15px; }
.toc { padding: 24px; border-radius: var(--lm-radius-lg); background: var(--lm-surface); }
.toc a { display: block; padding: 5px 0; color: var(--lm-text); text-decoration: none; }

.site-footer { padding: 32px 0 24px; }
.footer-shell { padding: 48px; border-radius: 40px; background: var(--lm-black); color: var(--lm-white); }
.footer-top { display: grid; grid-template-columns: 1.2fr repeat(3,1fr); gap: 40px; }
.footer-brand p { max-width: 320px; color: #b9b9bf; }
.footer-column strong { display: block; margin-bottom: 14px; }
.footer-column a { display: block; padding: 5px 0; color: #c7c7cd; font-size: 15px; text-decoration: none; }
.footer-column a:hover { color: var(--lm-white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 40px; padding-top: 24px; border-top: 1px solid #303036; color: #9999a1; font-size: 14px; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .38s ease-out, transform .38s ease-out; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .nav-actions .button-ghost { display: none; }
  .hero-shell, .split { grid-template-columns: 1fr; }
  .hero-shell { gap: 48px; }
  .product-window { max-width: 760px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 24px), var(--lm-container)); }
  .site-header { top: 6px; padding-top: 6px; }
  .nav-shell { min-height: 62px; padding: 8px 8px 8px 14px; }
  .brand img { width: 34px; height: 34px; }
  .nav-actions .button-primary { display: none; }
  .hero { padding-top: 12px; }
  .hero-shell, .page-hero-shell, .island, .footer-shell { padding: 32px 24px; border-radius: 28px; }
  .hero-shell { min-height: auto; }
  h1 { font-size: clamp(40px,12vw,56px); }
  .lead { font-size: 18px; }
  .calendar-grid { grid-template-columns: 1fr; }
  .day:nth-child(n+4) { display: none; }
  .product-window { padding: 10px; border-radius: 24px; transform: none; }
  .section { padding: 64px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .channel-row { grid-template-columns: 1fr; gap: 10px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
