/*
Theme Name: Doitong Ru
Theme URI: https://doitong-ru.click
Author: Doitong Ru
Description: Русскоязычный информационный сайт об ИИ-платформе генерации видео и контента Doitong. Тёмная тема, фирменный коралловый акцент, стекло.
Version: 1.0.0
Text Domain: doitong-theme
*/

/* ============================================================
   DOITONG RU — design system
   Айдентика снята с офсайта doitong.com:
   bg #050507 · surface #0E0E12 · glass rgba(255,255,255,.03)
   accent coral #FF6F61 · Montserrat (дисплей) + Inter (текст)
   ============================================================ */

:root {
  /* — surfaces (dark) — */
  --bg:            #050507;
  --bg-1:          #0a0a0e;
  --surface:       #0e0e12;
  --surface-2:     #141419;
  --glass:         rgba(255, 255, 255, 0.035);
  --glass-strong:  rgba(255, 255, 255, 0.06);
  --line:          rgba(255, 255, 255, 0.09);
  --line-strong:   rgba(255, 255, 255, 0.16);

  /* — ink — */
  --ink:           #ffffff;
  --ink-soft:      #c8c8d2;   /* subheads — 12.6:1 on bg */
  --ink-muted:     #9a9aa6;   /* meta — 6.4:1 on bg, passes body */
  --ink-faint:     #6b6b76;   /* decorative only, never body */

  /* — brand accent (coral) — */
  --coral:         #ff6f61;
  --coral-2:       #ff8a72;
  --coral-deep:    #f0554a;
  --coral-ink:     #1a0705;   /* text on coral fill */
  --coral-glow:    rgba(255, 111, 97, 0.35);
  --coral-wash:    rgba(255, 111, 97, 0.10);
  --grad-coral:    linear-gradient(135deg, #ff8a72 0%, #ff6f61 55%, #f0554a 100%);
  --grad-hero:     radial-gradient(1100px 620px at 50% -12%, rgba(255,111,97,0.16), transparent 62%);

  /* — accent support (mint used by storyboard states on офсайт) — */
  --mint:          #34e0a1;

  /* — type — */
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* — radii — */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* — spacing rhythm — */
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --container: 1180px;

  /* — shadow / glow — */
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -30px rgba(0,0,0,0.8);
  --shadow-pop:  0 30px 80px -40px rgba(0,0,0,0.9);
  --ring-coral:  0 0 0 1px rgba(255,111,97,0.4), 0 20px 50px -20px var(--coral-glow);

  /* — z-scale (semantic) — */
  --z-base: 1;
  --z-sticky: 100;
  --z-backdrop: 200;
  --z-modal: 300;
  --z-toast: 400;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);        /* out-expo-ish */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 46px 46px;
  background-position: center top;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--coral); color: var(--coral-ink); }

/* ── typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { text-wrap: pretty; }
strong { color: var(--ink); font-weight: 600; }

.lx-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

.lx-flex { display: flex; align-items: center; }
.lx-gap-8 { gap: .5rem; }
.lx-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  color: var(--coral); letter-spacing: .01em;
}
.lx-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--coral); border-radius: 2px; }

.lx-lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--ink-soft); max-width: 62ch; }
.lx-muted { color: var(--ink-muted); }
.lx-center { text-align: center; }
.lx-center .lx-lead { margin-inline: auto; }

/* ── buttons ───────────────────────────────────────────── */
.lx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: var(--r-pill);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s;
  will-change: transform;
}
.lx-btn--primary { background: var(--grad-coral); color: var(--coral-ink); box-shadow: 0 12px 34px -14px var(--coral-glow); font-weight: 700; }
.lx-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px -14px var(--coral-glow); }
.lx-btn--ghost { background: var(--glass); color: var(--ink); border: 1px solid var(--line-strong); }
.lx-btn--ghost:hover { background: var(--glass-strong); transform: translateY(-2px); }
.lx-btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.lx-btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }
.lx-btn__ic { width: 18px; height: 18px; }

/* ── header (floating glass pill, как на офсайте) ──────── */
.lx-header { position: sticky; top: 0; z-index: var(--z-sticky); padding: .9rem 0; }
.lx-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  background: rgba(14,14,18,0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .5rem .7rem .5rem 1.2rem;
  box-shadow: var(--shadow-card);
}
.lx-logo { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -0.02em; }
.lx-logo__icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-coral); display: grid; place-items: center;
  color: #fff; box-shadow: 0 6px 16px -6px var(--coral-glow); flex: none;
}
.lx-logo__icon svg { width: 17px; height: 17px; }
.lx-nav { display: flex; align-items: center; gap: .3rem; margin-left: auto; }
.lx-nav__link { padding: .5rem .8rem; border-radius: var(--r-pill); font-size: .95rem; color: var(--ink-soft); font-weight: 500; transition: color .2s, background .2s; }
.lx-nav__link:hover, .lx-nav__link[aria-current="page"] { color: var(--ink); background: var(--glass); }
.lx-nav__cta { margin-left: .4rem; }

.lx-burger { display: none; flex-direction: column; gap: 5px; padding: .55rem; margin-left: auto; border-radius: 12px; }
.lx-burger__line { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s; }
.lx-burger[aria-expanded="true"] .lx-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lx-burger[aria-expanded="true"] .lx-burger__line:nth-child(2) { opacity: 0; }
.lx-burger[aria-expanded="true"] .lx-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lx-mobile-nav { display: none; flex-direction: column; gap: .2rem; margin-top: .7rem; padding: 1rem; background: rgba(14,14,18,0.95); backdrop-filter: blur(18px); border: 1px solid var(--line); border-radius: var(--r-lg); }
.lx-mobile-nav.is-open { display: flex; }
.lx-mobile-nav .lx-nav__link { padding: .8rem 1rem; }
.lx-mobile-nav .lx-nav__cta { margin: .5rem 0 0; }
.lx-mobile-nav .lx-btn { width: 100%; }

.lx-cta-mobile { display: none; }

@media (max-width: 900px) {
  .lx-nav { display: none; }
  .lx-burger { display: flex; margin-left: .5rem; }
  .lx-cta-mobile { display: inline-flex; margin-left: auto; }
}
@media (max-width: 380px) {
  .lx-logo__text { display: none; }
  .lx-cta-mobile { font-size: .85rem; padding: .55rem .9rem; }
}

/* ── sections ──────────────────────────────────────────── */
.lx-section { padding-block: var(--space-section); position: relative; }
.lx-section__head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.lx-section__head.lx-center { margin-inline: auto; }
.lx-section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent); }

/* ── hero ──────────────────────────────────────────────── */
.lx-hero { position: relative; padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 6vw, 5rem); text-align: center; overflow: hidden; }
.lx-hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-hero); pointer-events: none; }
.lx-hero__inner { position: relative; z-index: var(--z-base); }
.lx-hero h1 { margin: 0 auto .3rem; max-width: 15ch; }
.lx-hero__sub { font-size: clamp(1.15rem, 2.2vw, 1.55rem); color: var(--ink-soft); font-weight: 500; margin-bottom: 2rem; }
.lx-hero__cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.lx-hero__note { font-size: .9rem; color: var(--ink-muted); }
.lx-hero__note strong { color: var(--coral); }

.lx-storyboard { position: relative; margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 960px; margin-inline: auto; }
.lx-shot {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-card);
}
.lx-shot img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.lx-shot__badge { position: absolute; top: .6rem; left: .6rem; display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 700; font-family: var(--font-display); color: #fff; background: rgba(0,0,0,0.55); padding: .25rem .55rem; border-radius: var(--r-pill); backdrop-filter: blur(6px); }
.lx-shot__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.lx-shot__t { position: absolute; top: .6rem; right: .6rem; font-size: .72rem; color: var(--ink-soft); background: rgba(0,0,0,0.5); padding: .2rem .45rem; border-radius: var(--r-pill); }
@media (max-width: 720px) { .lx-storyboard { grid-template-columns: repeat(2, 1fr); } }

/* ── TL;DR block ───────────────────────────────────────── */
.lx-tldr {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--glass); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.3rem 1.5rem;
  margin: 1.6rem 0;
}
.lx-tldr__score { flex: none; display: grid; place-items: center; width: 66px; height: 66px; border-radius: var(--r-md); background: var(--coral-wash); border: 1px solid var(--coral-glow); }
.lx-tldr__score b { font-family: var(--font-display); font-size: 1.5rem; color: var(--coral); line-height: 1; }
.lx-tldr__score span { font-size: .68rem; color: var(--ink-muted); }
.lx-tldr p { margin: 0; color: var(--ink-soft); }

/* ── cards & grids ─────────────────────────────────────── */
.lx-grid { display: grid; gap: 1.2rem; }
.lx-grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.lx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lx-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .lx-grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .lx-grid--3, .lx-grid--2 { grid-template-columns: 1fr; } }

.lx-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem; position: relative;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.lx-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-pop); }
.lx-card__icon { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--coral-wash); display: grid; place-items: center; margin-bottom: 1rem; }
.lx-card__icon svg { width: 24px; height: 24px; color: var(--coral); stroke: currentColor; }
.lx-card h3 { margin-bottom: .5rem; }
.lx-card p { color: var(--ink-muted); font-size: .98rem; }

.lx-models { display: flex; flex-wrap: wrap; gap: .6rem; }
.lx-model { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .95rem; border-radius: var(--r-pill); background: var(--glass); border: 1px solid var(--line); font-size: .92rem; color: var(--ink-soft); font-weight: 500; transition: border-color .25s, transform .25s var(--ease-out); }
.lx-model:hover { border-color: var(--coral-glow); transform: translateY(-2px); }
.lx-model__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-coral); flex: none; }

/* ── pricing ───────────────────────────────────────────── */
.lx-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 940px) { .lx-plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .lx-plans { grid-template-columns: 1fr; } }
.lx-plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; display: flex; flex-direction: column; gap: .8rem; }
.lx-plan--pop { border-color: var(--coral-glow); box-shadow: var(--ring-coral); }
.lx-plan__tag { align-self: flex-start; font-size: .72rem; font-weight: 700; color: var(--coral-ink); background: var(--grad-coral); padding: .25rem .7rem; border-radius: var(--r-pill); }
.lx-plan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.lx-plan__price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--ink); line-height: 1; }
.lx-plan__price span { font-size: .95rem; font-weight: 500; color: var(--ink-muted); font-family: var(--font-body); }
.lx-plan__list { display: flex; flex-direction: column; gap: .55rem; margin: .4rem 0 1rem; }
.lx-plan__list li { display: flex; gap: .55rem; font-size: .93rem; color: var(--ink-soft); }
.lx-plan__list svg { width: 17px; height: 17px; color: var(--coral); flex: none; margin-top: 3px; }
.lx-plan .lx-btn { margin-top: auto; }

/* ── tables ────────────────────────────────────────────── */
.lx-tablewrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); }
.lx-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .95rem; }
.lx-table th, .lx-table td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.lx-table thead th { background: var(--surface-2); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.lx-table tbody tr:hover { background: var(--glass); }
.lx-table td:first-child { color: var(--ink); font-weight: 600; }
.lx-table .yes { color: var(--mint); font-weight: 700; }
.lx-table .no { color: var(--ink-faint); }
.lx-table__hi td { background: var(--coral-wash); }

/* ── reviews / stars ───────────────────────────────────── */
.lx-stars { display: inline-flex; position: relative; line-height: 0; }
.lx-stars__row { display: inline-flex; gap: 2px; }
.lx-stars svg { width: 17px; height: 17px; flex: none; }
.lx-stars__bg svg { color: var(--ink-faint); fill: var(--ink-faint); }
.lx-stars__fill { position: absolute; inset: 0; overflow: hidden; }
.lx-stars__fill .lx-stars__row { width: max-content; }
.lx-stars__fill svg { color: var(--coral); fill: var(--coral); }
.lx-review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem; }
.lx-review__head { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.lx-review__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-coral); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; flex: none; }
.lx-review__name { font-weight: 600; color: var(--ink); }
.lx-review__meta { font-size: .8rem; color: var(--ink-muted); }
.lx-review p { color: var(--ink-soft); font-size: .96rem; }

.lx-axes { display: grid; gap: .8rem; }
.lx-axis { display: grid; grid-template-columns: 1fr auto; gap: .3rem .8rem; align-items: center; }
.lx-axis__label { color: var(--ink-soft); font-size: .95rem; }
.lx-axis__val { font-family: var(--font-display); font-weight: 700; color: var(--coral); }
.lx-axis__bar { grid-column: 1 / -1; height: 6px; border-radius: var(--r-pill); background: var(--surface-2); overflow: hidden; }
.lx-axis__bar > i { display: block; height: 100%; background: var(--grad-coral); border-radius: inherit; }

/* ── FAQ accordion ─────────────────────────────────────── */
.lx-faq { display: flex; flex-direction: column; gap: .7rem; max-width: 820px; margin-inline: auto; }
.lx-faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.lx-faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.lx-faq__q svg { width: 20px; height: 20px; color: var(--coral); flex: none; transition: transform .3s var(--ease-out); }
.lx-faq__item.is-open .lx-faq__q svg { transform: rotate(45deg); }
.lx-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-out); }
.lx-faq__a > div { overflow: hidden; min-height: 0; }
.lx-faq__a > div > div { padding: 0 1.3rem 1.2rem; color: var(--ink-muted); }
.lx-faq__item.is-open .lx-faq__a { grid-template-rows: 1fr; }
@media (prefers-reduced-motion: reduce) { .lx-faq__a { transition: none; } }

/* ── CTA band ──────────────────────────────────────────── */
.lx-ctaband { position: relative; text-align: center; border-radius: var(--r-xl); padding: clamp(2.5rem, 5vw, 4rem); background: radial-gradient(700px 300px at 50% 0%, var(--coral-wash), transparent 70%), var(--surface); border: 1px solid var(--line); overflow: hidden; }
.lx-ctaband h2 { margin-bottom: .8rem; }
.lx-ctaband .lx-lead { margin: 0 auto 1.8rem; }

/* ── breadcrumb ────────────────────────────────────────── */
.lx-breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; color: var(--ink-muted); padding: 1.4rem 0 0; }
.lx-breadcrumb a { color: var(--ink-muted); transition: color .2s; }
.lx-breadcrumb a:hover { color: var(--coral); }
.lx-breadcrumb__sep { color: var(--ink-faint); }

/* ── inner page shell ──────────────────────────────────── */
.is-inner-page .lx-page-hero { padding: clamp(2rem, 5vw, 3.5rem) 0 0; }
.lx-page-hero h1 { max-width: 22ch; font-size: clamp(2rem, 4.2vw, 3.25rem); letter-spacing: -0.03em; }
.lx-prose { max-width: 72ch; }
.lx-prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.lx-prose h2 { margin: 2.4rem 0 1rem; }
.lx-prose h3 { margin: 1.8rem 0 .7rem; }
.lx-prose ul { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.1rem; }
.lx-prose ul li { display: flex; gap: .6rem; color: var(--ink-soft); }
.lx-prose ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); margin-top: 10px; flex: none; }

.lx-related { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem; }
.lx-related a { display: block; padding: 1.1rem 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); color: var(--ink); font-weight: 600; transition: border-color .25s, transform .25s var(--ease-out); }
.lx-related a:hover { border-color: var(--coral-glow); transform: translateY(-3px); }
.lx-related a span { display: block; font-weight: 400; font-size: .85rem; color: var(--ink-muted); margin-top: .2rem; }

/* ── footer ────────────────────────────────────────────── */
.lx-footer { border-top: 1px solid var(--line); margin-top: var(--space-section); padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; }
.lx-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 820px) { .lx-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lx-footer__grid { grid-template-columns: 1fr; } }
.lx-footer__brand p { color: var(--ink-muted); font-size: .92rem; margin: .9rem 0; max-width: 34ch; }
.lx-footer__col-title { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-bottom: .9rem; font-size: .95rem; }
.lx-footer__links { display: flex; flex-direction: column; gap: .55rem; }
.lx-footer__links a { color: var(--ink-muted); font-size: .92rem; transition: color .2s; }
.lx-footer__links a:hover { color: var(--coral); }
.lx-badge { font-size: .72rem; font-weight: 600; padding: .3rem .7rem; border-radius: var(--r-pill); border: 1px solid var(--line); color: var(--ink-soft); }
.lx-badge--coral { background: var(--coral-wash); border-color: var(--coral-glow); color: var(--coral); }
.lx-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.lx-footer__copy { font-size: .82rem; color: var(--ink-muted); max-width: 68ch; }
.lx-footer__legal { display: flex; gap: 1rem; }
.lx-footer__legal a { font-size: .82rem; color: var(--ink-muted); }
.lx-footer__legal a:hover { color: var(--coral); }

/* ── reveal motion ─────────────────────────────────────── */
.lx-reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .js .lx-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  .js .lx-reveal.is-in { opacity: 1; transform: none; }
}

/* ── misc ──────────────────────────────────────────────── */
.lx-hidden-seo { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
