/* ========================================================================
   BZZIP MARKETING SITE — light Эфир system (redesign 2026-08)

   This file replaces the dark "Midnight + cyan + coral" marketing system.
   The four decisions this stylesheet must not quietly undo
   (docs/design/landing-implementation-brief.md §2):

     1. Light Эфир, not a dark marketing theme. Page #F2F3F5, ink #17191D,
        the primary button is ink. No gradients on controls, no glow.
        Colour comes from photographs.
     2. WhatsApp-first. Channel colours appear only on channel glyphs,
        never on a CTA.
     3. No unsubstantiated claims — nothing here styles a testimonial or a
        logo wall, on purpose.
     4. Cyan on a word is #007A94 only. #00D4FF is a fill, a border, a dot.

   The source of truth for layout, spacing, type and interaction is the
   prototype set in the design handoff (Home.dc.html, System.dc.html,
   Pages - Mobile.dc.html). Mobile is the primary design: one set of views,
   media queries only, never a separate template.
   ======================================================================== */

/*
 * DIRECTION POLICY — read before adding `left` or `right` to this file.
 *
 * Arabic is a shipped locale and these are the pages the ES and BR ad
 * campaigns pay to send people to. Layout is written once, in logical
 * properties — `inset-inline-start`, `margin-inline-end`,
 * `padding-inline-start`, `border-inline-start`, `text-align: start`. They
 * resolve to exactly the physical property in `ltr`; in `rtl` they mirror
 * themselves and no second copy of the rule is needed.
 *
 * `test/design_system_test.rb` fails the build on a physical direction
 * property in this file. A declaration that is genuinely about visual
 * position rather than reading order — the `left: 50%` half of a
 * `translateX(-50%)` centring pair — says so with a trailing comment
 * reading `physical` and the exemption is on the record.
 */

/* ========================================
   Which layout the reader is looking at
   ======================================== */

/*
 * The same marker efir.css declares, for the same reader — `shared/_posthog`
 * lifts it onto every event as `layout`. See the long note in efir.css for
 * why the stylesheet answers this rather than the user agent.
 *
 * It is here as well as there because of where the funnel starts: the live
 * PostHog activation insight runs Pageview → sign_up and its first step is a
 * visit to this page. A PostHog funnel attributes its breakdown to the FIRST
 * touchpoint, so a property that only exists from the product onwards would
 * bucket every person in that funnel under "none".
 *
 * The number must match efir.css (640) so the two ends of the funnel count
 * the same people. The navigation breakpoint below is 900 and is a different
 * question — "does the nav fit" — answered where it applies.
 */
:root { --e-layout: "desktop"; }
@media (max-width: 640px) { :root { --e-layout: "mobile"; } }

/* ========================================
   Tokens — Эфир values, used literally
   ======================================== */
.landing {
  /* Surfaces */
  --lp-page: #F2F3F5;
  --lp-card: #FFFFFF;
  --lp-subtle: #E9EBEE;
  --lp-muted: #DDE0E4;

  /* Ink — never pure black */
  --lp-ink: #17191D;
  --lp-ink-hover: #24272E;
  --lp-ink-2: #4A4E57;
  --lp-ink-3: #83878F;
  --lp-disabled: #B4B7BD;

  /* Accent — electric cyan. Not a text colour: any cyan WORD is #007A94. */
  --lp-accent: #00D4FF;
  --lp-accent-icon: #0098BD;
  --lp-accent-text: #007A94;
  --lp-tint: rgba(0, 212, 255, 0.12);
  --lp-tint-soft: rgba(0, 212, 255, 0.10);

  /* Feedback */
  --lp-error: #B42318;

  /* Hairlines and shadows — surfaces always pair a hairline with a soft shadow */
  --lp-hairline: rgba(23, 25, 29, 0.07);
  --lp-border: rgba(23, 25, 29, 0.12);
  --lp-shadow-rest: 0 2px 10px rgba(23, 25, 29, 0.04);
  --lp-shadow-raised: 0 6px 20px rgba(23, 25, 29, 0.06);
  --lp-ring: 0 0 0 3px rgba(0, 212, 255, 0.2);

  /* Motion — the Эфир curve everywhere */
  --lp-curve: cubic-bezier(0.16, 1, 0.3, 1);

  /* Type — Switzer for UI/body, Space Grotesk for the wordmark only,
     JetBrains Mono for figures and counters. Never Inter, Roboto or Geist. */
  --lp-font: "Switzer", "Helvetica Neue", Arial, system-ui, sans-serif;
  --lp-font-mark: "Space Grotesk", var(--lp-font);
  --lp-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Display steps — the three sizes the site adds above the product's scale.
     Everything from 21px down is the product's exact scale, so the two
     surfaces share their body text. */
  --lp-d1: clamp(40px, 5vw, 64px);
  --lp-d2: clamp(30px, 3vw, 44px);
  --lp-d3: clamp(24px, 2vw, 32px);

  /* Radii */
  --lp-r-card: 20px;
  --lp-r-inner: 12px;

  /* Shared layout numbers */
  --lp-header-h: 56px;
  --lp-pad-x: clamp(16px, 4vw, 64px);
  --lp-section-gap: clamp(48px, 7vw, 96px);
}

/* Arabic is cursive: letter-spacing severs the joins between letters. One
   central reset answers every tracked eyebrow, badge and heading below.
   Guarded by design_system_test — no !important track may tie with this. */
.landing :lang(ar) { letter-spacing: normal !important; }

/* Switzer has no Arabic — the ar locale renders in Noto Sans Arabic, loaded
   by the layout for that locale only. */
.landing:lang(ar),
.landing :lang(ar) {
  font-family: "Noto Sans Arabic", var(--lp-font);
}

@media (max-width: 640px) {
  .landing { --lp-r-card: 16px; }
}

/* ========================================
   Base
   ======================================== */
.landing {
  font-family: var(--lp-font);
  color: var(--lp-ink);
  background:
    radial-gradient(1000px 480px at 78% -12%, rgba(0, 212, 255, 0.05), transparent 60%),
    linear-gradient(180deg, #EFF1F4 0%, #F2F3F5 380px),
    #F2F3F5;
  min-height: 100dvh;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.landing *, .landing *::before, .landing *::after { box-sizing: border-box; }
.landing img { max-width: 100%; }
/* :where keeps the base link rule at zero specificity so any single-class
   colour (.lp-wordmark, .lp-nav-link, …) wins without !important. */
.landing :where(a) { color: var(--lp-accent-text); text-decoration: none; }
.landing :where(a:hover) { color: var(--lp-ink); }
.landing h1, .landing h2, .landing h3, .landing p { margin: 0; }
.landing h1, .landing h2, .landing h3 { letter-spacing: -0.02em; font-weight: 700; }

.lp-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--lp-pad-x);
}

.lp-section { padding-block-start: var(--lp-section-gap); }

/* Skip link */
.lp-skip {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: -9999px;
  background: var(--lp-ink);
  color: #FFFFFF;
  padding: 10px 18px;
  border-start-start-radius: 0;
  border-end-end-radius: 12px;
  z-index: 60;
}
.lp-skip:focus { inset-inline-start: 0; color: #FFFFFF; }

.lp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Focus is visible on every interactive element */
.landing a:focus-visible,
.landing button:focus-visible,
.landing input:focus-visible,
.landing [role="button"]:focus-visible {
  outline: none;
  box-shadow: var(--lp-ring);
}

/* ========================================
   Type helpers
   ======================================== */
.lp-d1 { font-size: var(--lp-d1); line-height: 1.06; text-wrap: balance; }
.lp-d2 { font-size: var(--lp-d2); line-height: 1.15; text-wrap: balance; }
.lp-d3 { font-size: var(--lp-d3); line-height: 1.2; text-wrap: balance; }

.lp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-accent-text);
}
.lp-lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--lp-ink-2);
  text-wrap: pretty;
}
.lp-body { font-size: 15px; line-height: 1.6; color: var(--lp-ink-2); text-wrap: pretty; }
.lp-meta { font-size: 13px; color: var(--lp-ink-3); }
.lp-mono { font-family: var(--lp-font-mono); }

/* ========================================
   Buttons — pill, flat, one primary per screen
   ======================================== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding-inline: 28px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 160ms var(--lp-curve), transform 160ms var(--lp-curve);
}
.lp-btn:active { transform: scale(0.985); }

.lp-btn-primary { background: var(--lp-ink); color: #FFFFFF; }
.lp-btn-primary:hover { background: var(--lp-ink-hover); color: #FFFFFF; }

.lp-btn-secondary {
  background: transparent;
  color: var(--lp-ink);
  border: 1px solid var(--lp-border);
}
.lp-btn-secondary:hover { background: var(--lp-subtle); color: var(--lp-ink); }

/* On a photograph: the one white button in the system */
.lp-btn-light { background: #FFFFFF; color: var(--lp-ink); }
.lp-btn-light:hover { background: var(--lp-subtle); color: var(--lp-ink); }

.lp-btn-sm { height: 38px; padding-inline: 20px; font-size: 14px; }
.lp-btn-block { display: flex; width: 100%; }

/* ========================================
   Badges and chips
   ======================================== */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.lp-badge-accent { color: var(--lp-accent-text); background: var(--lp-tint); }
.lp-badge-muted { color: var(--lp-ink-2); background: var(--lp-subtle); }

.lp-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--lp-accent);
}
.lp-dot-sm { width: 6px; height: 6px; flex-basis: 6px; }

/* ========================================
   Cards
   ======================================== */
.lp-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-r-card);
  box-shadow: var(--lp-shadow-rest);
}
.lp-card-raised { box-shadow: var(--lp-shadow-raised); }
.lp-card-pad { padding: clamp(16px, 2vw, 24px); }

/* The grey inner surface a product mock sits on */
.lp-mock {
  background: var(--lp-page);
  border-radius: var(--lp-r-inner);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-mock-row {
  background: var(--lp-card);
  border: 1px solid var(--lp-hairline);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-mock-row-between { justify-content: space-between; }
.lp-mock-avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: var(--lp-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-ink-2);
}
.lp-mock-main { flex: 1; min-width: 0; }
.lp-mock-name { font-size: 13px; font-weight: 600; }
.lp-mock-preview {
  font-size: 11px;
  color: var(--lp-ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-mock-tag {
  font-size: 10px;
  font-weight: 600;
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
}
.lp-mock-tag-accent { color: var(--lp-accent-text); background: var(--lp-tint); }
.lp-mock-tag-muted { color: var(--lp-ink-2); background: var(--lp-subtle); }
.lp-mock-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-ink-3);
}
.lp-mock-note { font-size: 12px; color: var(--lp-ink-3); }
.lp-mock-key {
  background: var(--lp-card);
  border: 1px solid var(--lp-hairline);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--lp-font-mono);
  font-size: 13px;
  color: var(--lp-ink-2);
  direction: ltr;
  unicode-bidi: isolate;
  text-align: start;
}

/* Chat bubbles inside mocks */
.lp-bubble-in {
  align-self: flex-start;
  max-width: 88%;
  background: var(--lp-card);
  border: 1px solid var(--lp-hairline);
  border-start-start-radius: 4px;
  border-start-end-radius: 12px;
  border-end-start-radius: 12px;
  border-end-end-radius: 12px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--lp-ink);
}
.lp-bubble-out {
  align-self: flex-end;
  max-width: 88%;
  background: var(--lp-tint);
  border-start-start-radius: 12px;
  border-start-end-radius: 12px;
  border-end-start-radius: 12px;
  border-end-end-radius: 4px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--lp-ink);
}
.lp-bubble-tag {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--lp-accent-text);
}
.lp-bubble-tag-pill {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-tint);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-accent-text);
}

/* ========================================
   Header
   ======================================== */
.lp-header {
  height: var(--lp-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-wordmark {
  font-family: var(--lp-font-mark);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  white-space: nowrap;
}
.lp-wordmark:hover { color: var(--lp-ink); }

.lp-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 14px;
  font-weight: 500;
}
.lp-nav-link { color: var(--lp-ink-2); white-space: nowrap; }
.lp-nav-link:hover { color: var(--lp-ink); }

/* Header dropdowns (Features, language) */
.lp-menu { position: relative; }
.lp-menu-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-ink-2);
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  border-radius: 8px;
}
.lp-menu-btn:hover { color: var(--lp-ink); }
.lp-menu-caret { font-size: 14px; line-height: 1; }
.lp-menu-panel {
  position: absolute;
  inset-block-start: 36px;
  inset-inline-start: -8px;
  z-index: 45;
  background: var(--lp-card);
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-r-inner);
  box-shadow: var(--lp-shadow-raised);
  padding: 8px;
  display: none;
  flex-direction: column;
  min-width: 220px;
}
.lp-menu.is-open .lp-menu-panel { display: flex; }
.lp-menu-item {
  color: var(--lp-ink);
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 8px;
  text-align: start;
}
.lp-menu-item:hover { background: var(--lp-page); color: var(--lp-ink); }

/* Language pill in the header */
.lp-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--lp-border);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-ink);
  cursor: pointer;
  height: 38px;
  padding-inline: 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-lang-btn:hover { background: var(--lp-subtle); }
.lp-lang-panel {
  inset-block-start: 44px;
  inset-inline-start: auto;
  inset-inline-end: 0;
  min-width: 180px;
}
.lp-lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-lang-check { color: var(--lp-accent-text); }
.lp-lang-item.is-active { font-weight: 600; }

/* Language pills (footer, bottom sheet) */
.lp-lang-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-lang-pill {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  height: 34px;
  padding-inline: 14px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--lp-border);
  background: transparent;
  color: var(--lp-ink-2);
}
.lp-lang-pill:hover { background: var(--lp-subtle); color: var(--lp-ink); }
.lp-lang-pill.is-active {
  border-color: var(--lp-ink);
  background: var(--lp-ink);
  color: #FFFFFF;
  font-weight: 600;
}

/* Hamburger — 44px tap target, two lines */
.lp-burger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  border-radius: 10px;
}
.lp-burger-line { width: 18px; height: 2px; background: var(--lp-ink); border-radius: 2px; }
.lp-burger-line-short { width: 12px; }

/* Navigation breakpoint: 900px is where the desktop nav stops fitting.
   (Not the analytics/layout breakpoint — that stays 640, see the marker.) */
@media (max-width: 899.98px) {
  .lp-nav { display: none; }
  .lp-burger { display: flex; }
}

/* ========================================
   Hero
   ======================================== */
.lp-hero {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-block-start: clamp(16px, 3vw, 48px);
}
.lp-hero-copy { flex: 1 1 340px; min-width: 0; }
.lp-hero-title { margin-block-start: 12px; }
.lp-hero-sub { margin-block-start: 14px; max-width: 44ch; }
.lp-hero-cta { margin-block-start: 24px; max-width: 420px; }
.lp-hero-note {
  font-size: 13px;
  color: var(--lp-ink-3);
  margin-block-start: 10px;
  max-width: 420px;
  text-align: center;
}
.lp-hero-media { flex: 1 1 380px; min-width: 0; position: relative; }
.lp-hero-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--lp-r-card);
}

/* Channel glyph row (omnichannel hero variant only) */
.lp-channel-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-block-start: 14px;
}
.lp-channel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--lp-ink-2);
}
.lp-channel-dot { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 999px; }
.lp-channel-dot-whatsapp { background: #25D366; }
.lp-channel-dot-facebook { background: #1877F2; }
.lp-channel-dot-tiktok { background: #010101; }
.lp-channel-dot-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Floating product cards over the hero photograph — the one piece of
   perpetual motion on the page. */
.lp-float-card {
  position: absolute;
  background: var(--lp-card);
  border: 1px solid var(--lp-hairline);
  border-radius: var(--lp-r-inner);
  box-shadow: var(--lp-shadow-raised);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.lp-float-a {
  inset-inline-start: 8px;
  inset-block-end: 36px;
  animation: lp-float-a 7s ease-in-out infinite;
}
.lp-float-b {
  inset-inline-end: 12px;
  inset-block-start: 20px;
  animation: lp-float-b 8s ease-in-out infinite;
}
.lp-float-text { font-size: 13px; color: var(--lp-ink); }
.lp-float-text strong { font-weight: 600; }
.lp-float-count { font-family: var(--lp-font-mono); font-size: 13px; font-weight: 600; }
.lp-float-dim { font-size: 13px; color: var(--lp-ink-2); }

@keyframes lp-float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes lp-float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========================================
   Photo sections (missed message, final CTA, page heroes)
   ======================================== */
.lp-photocard {
  position: relative;
  border-radius: var(--lp-r-card);
  overflow: hidden;
}
.lp-photocard-img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.lp-photocard-tall { height: clamp(480px, 60vw, 620px); }
.lp-photocard-cta { height: clamp(420px, 46vw, 520px); }
/* Text on a photo sits on a bottom-up ink scrim, never a flat tint */
.lp-photocard-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 25, 29, 0) 40%, rgba(23, 25, 29, 0.62) 100%);
}
.lp-photocard-scrim-deep {
  background: linear-gradient(180deg, rgba(23, 25, 29, 0.1) 0%, rgba(23, 25, 29, 0.62) 100%);
}
.lp-photocard-copy {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  padding: clamp(20px, 4vw, 40px);
}
.lp-photocard-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.lp-photocard-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  color: #FFFFFF;
  margin-block-start: 10px;
  max-width: 24ch;
  text-wrap: balance;
}
.lp-photocard-sub {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-block-start: 10px;
  max-width: 44ch;
  text-wrap: pretty;
}

/* Final CTA — copy and button share the bottom edge */
.lp-cta-row {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  padding: clamp(20px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}
.lp-cta-title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  color: #FFFFFF;
  max-width: 22ch;
  text-wrap: balance;
}
.lp-cta-note { font-size: 17px; color: rgba(255, 255, 255, 0.92); margin-block-start: 8px; }

/* ========================================
   Section scaffolding
   ======================================== */
.lp-section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
}
.lp-section-title-block { flex: 1 1 340px; min-width: 0; }
.lp-section-link {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  padding-block-end: 4px;
}
.lp-arrow { display: inline-block; }
.landing :lang(ar) .lp-arrow { transform: scaleX(-1); }

.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(12px, 2vw, 24px);
  margin-block-start: clamp(20px, 3vw, 36px);
}
.lp-grid-narrow { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.lp-card-title { font-size: 21px; margin-block-start: 16px; }
.lp-card-copy { margin-block-start: 8px; }

/* How it works — numbered steps */
.lp-step { display: flex; gap: 14px; align-items: flex-start; }
.lp-step-num {
  font-family: var(--lp-font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-accent-text);
  background: var(--lp-tint);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-step-title { font-size: 17px; font-weight: 600; }
.lp-step-copy { margin-block-start: 4px; }

/* ========================================
   Done for you
   ======================================== */
.lp-dfy { padding: clamp(20px, 3vw, 40px); }
.lp-dfy-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  justify-content: space-between;
}
.lp-dfy-copy { flex: 1 1 340px; min-width: 0; }
.lp-dfy-title { font-size: clamp(28px, 2.6vw, 36px); margin-block-start: 10px; }
.lp-dfy-sub { margin-block-start: 10px; max-width: 52ch; }
.lp-dfy-action { flex: 0 1 240px; min-width: 200px; }

/* ========================================
   Inline lead form (done-for-you + plan cards). Expands under the button —
   never a modal.
   ======================================== */
.lp-leadform {
  margin-block-start: 20px;
  padding-block-start: 20px;
  border-block-start: 1px solid var(--lp-hairline);
  max-width: 480px;
}
.lp-leadform[hidden] { display: none; }
.lp-leadform-title { font-size: 15px; font-weight: 600; }
.lp-leadform-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block-start: 12px;
}
.lp-field { display: block; }
.lp-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-ink-2);
  margin-block-end: 6px;
}
.lp-label-required { color: var(--lp-error); }
.lp-input {
  width: 100%;
  height: 46px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-inner);
  padding-inline: 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--lp-ink);
}
.lp-input::placeholder { color: var(--lp-disabled); }
.lp-input:focus {
  outline: none;
  border-color: var(--lp-accent);
  box-shadow: var(--lp-ring);
}
.lp-input.is-invalid { border-color: var(--lp-error); }
.lp-field-error {
  display: block;
  font-size: 13px;
  color: var(--lp-error);
  margin-block-start: 5px;
}
.lp-form-error {
  font-size: 13px;
  color: var(--lp-error);
  margin-block-start: 8px;
  text-align: center;
}
.lp-leadform-submit { margin-block-start: 16px; }
.lp-leadform-note {
  font-size: 13px;
  color: var(--lp-ink-3);
  margin-block-start: 8px;
  text-align: center;
}
.lp-leadform-sent {
  margin-block-start: 20px;
  padding: 16px;
  background: var(--lp-tint-soft);
  border-radius: var(--lp-r-inner);
  max-width: 480px;
}
.lp-leadform-sent[hidden] { display: none; }
.lp-leadform-sent-title { font-size: 15px; font-weight: 600; }
.lp-leadform-sent-copy { font-size: 15px; line-height: 1.6; color: var(--lp-ink-2); margin-block-start: 4px; }
.lp-leadform-sent-ref {
  font-family: var(--lp-font-mono);
  font-size: 12px;
  color: var(--lp-ink-2);
  margin-block-start: 8px;
}

/* ========================================
   Pricing
   ======================================== */
.lp-pricing-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.lp-toggle {
  display: flex;
  background: var(--lp-subtle);
  border-radius: 999px;
  padding: 3px;
}
.lp-toggle-btn {
  height: 38px;
  padding-inline: 18px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--lp-ink);
  white-space: nowrap;
}
.lp-toggle-btn.is-active { background: var(--lp-card); box-shadow: var(--lp-shadow-rest); }

/* The free path — visible without scrolling into the plans. `.lp-banner` is
   the same shape wherever a one-line offer sits beside its button (the
   "stuck anywhere?" row on /how-it-works, notify-me intros, …). */
.lp-freepath,
.lp-banner {
  margin-block-start: 16px;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.lp-banner-copy { font-size: 15px; line-height: 1.5; }
.lp-banner-copy strong { font-weight: 600; }
.lp-freepath-copy { font-size: 15px; line-height: 1.5; }
.lp-freepath-copy strong { font-weight: 600; }

.lp-plans { margin-block-start: 16px; }
.lp-plan { display: flex; flex-direction: column; padding: clamp(20px, 2vw, 28px); }
.lp-plan-popular { border-color: rgba(0, 212, 255, 0.55); }
.lp-plan-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lp-plan-name { font-size: 17px; font-weight: 700; }
.lp-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-block-start: 14px;
}
.lp-plan-price { font-family: var(--lp-font-mono); font-size: 34px; font-weight: 600; }
.lp-plan-regular {
  font-family: var(--lp-font-mono);
  font-size: 15px;
  color: var(--lp-ink-3);
  text-decoration: line-through;
}
.lp-plan-per { font-size: 13px; color: var(--lp-ink-3); }
.lp-plan-billing { font-size: 13px; color: var(--lp-ink-3); margin-block-start: 4px; }
.lp-plan-divider { height: 1px; background: var(--lp-hairline); margin-block: 16px; }
.lp-plan-features { font-size: 15px; line-height: 1.7; color: var(--lp-ink-2); }
.lp-plan-cta { margin-block-start: 18px; height: 44px; font-size: 15px; }
.lp-plan .lp-leadform { max-width: none; }
.lp-pricing-note { font-size: 13px; color: var(--lp-ink-3); margin-block-start: 12px; }

/* Growth first on a phone: one card visible at a time, the popular one on top */
@media (max-width: 640px) {
  .lp-plan-starter { order: 2; }
  .lp-plan-growth { order: 1; }
  .lp-plan-agency { order: 3; }
}

/* ========================================
   FAQ accordion
   ======================================== */
.lp-faq { max-width: 840px; margin-inline: auto; }
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block-start: clamp(20px, 3vw, 36px);
}
.lp-faq-item {
  background: var(--lp-card);
  border: 1px solid var(--lp-hairline);
  border-radius: 16px;
  box-shadow: var(--lp-shadow-rest);
  overflow: hidden;
}
.lp-faq-q {
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  min-height: 52px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-ink);
  cursor: pointer;
}
.lp-faq-q:focus-visible { box-shadow: inset 0 0 0 3px rgba(0, 212, 255, 0.2); }
.lp-faq-mark {
  font-family: var(--lp-font-mono);
  font-size: 15px;
  color: var(--lp-ink-3);
  flex: 0 0 auto;
}
.lp-faq-a {
  padding: 0 18px 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--lp-ink-2);
  max-width: 68ch;
  text-wrap: pretty;
}
.lp-faq-a[hidden] { display: none; }

/* ========================================
   Footer
   ======================================== */
.lp-footer { padding-block: clamp(32px, 5vw, 64px) 120px; }
.lp-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  justify-content: space-between;
  align-items: flex-start;
}
.lp-footer-brand { flex: 0 1 240px; }
.lp-lockup { display: flex; align-items: center; gap: 9px; }
.lp-lockup-mark { color: var(--lp-accent); flex: 0 0 auto; }
.lp-footer-tag { font-size: 13px; color: var(--lp-ink-3); margin-block-start: 8px; }
.lp-footer-cols {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 2.2;
}
.lp-footer-col { display: flex; flex-direction: column; }
.lp-footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-ink-3);
  margin-block-end: 6px;
}
.lp-footer-col a { white-space: nowrap; }
.lp-footer-bottom {
  margin-block-start: clamp(28px, 4vw, 48px);
  padding-block-start: 20px;
  border-block-start: 1px solid var(--lp-hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.lp-footer-copyright { font-size: 13px; color: var(--lp-ink-3); white-space: nowrap; }

/* ========================================
   Sticky CTA bar — the highest-leverage element on the page.
   Hidden while the hero or the footer CTA is on screen, and while the
   bottom sheet is open. dvh/safe-area handled by the fixed positioning.
   ======================================== */
.lp-stickybar {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 40;
  background: var(--lp-card);
  border-block-start: 1px solid var(--lp-hairline);
  box-shadow: 0 -2px 10px rgba(23, 25, 29, 0.04);
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 200ms var(--lp-curve);
}
.lp-stickybar .lp-btn { flex: 1; height: 48px; }
.lp-stickybar-menu {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: var(--lp-card);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.lp-stickybar-menu .lp-burger-line { width: 16px; }
.lp-stickybar.is-shown { transform: translateY(0); }
@media (max-width: 899.98px) {
  .lp-stickybar { display: flex; }
}

/* ========================================
   Bottom-sheet navigation — matches the product's sheet pattern.
   ======================================== */
.lp-scrim {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(23, 25, 29, 0.35);
  border: none;
  padding: 0;
  cursor: default;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--lp-curve);
}
.lp-scrim.is-open { opacity: 1; pointer-events: auto; }

.lp-sheet {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 51;
  background: var(--lp-card);
  border-start-start-radius: 20px;
  border-start-end-radius: 20px;
  box-shadow: 0 -6px 20px rgba(23, 25, 29, 0.1);
  padding: 10px 16px calc(20px + env(safe-area-inset-bottom));
  max-height: 88dvh;
  overflow: auto;
  transform: translateY(100%);
  transition: transform 220ms var(--lp-curve);
  visibility: hidden;
}
.lp-sheet.is-open { transform: translateY(0); visibility: visible; }
.lp-sheet-handle {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--lp-muted);
  margin-inline: auto;
}
.lp-sheet-nav {
  display: flex;
  flex-direction: column;
  margin-block-start: 12px;
  font-size: 17px;
  font-weight: 500;
}
.lp-sheet-nav a { color: var(--lp-ink); padding: 12px 4px; }
.lp-sheet-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-ink-3);
  margin-block-start: 14px;
  padding-inline: 4px;
}
.lp-sheet-subnav {
  display: flex;
  flex-direction: column;
  margin-block-start: 4px;
  font-size: 15px;
  font-weight: 500;
}
.lp-sheet-subnav a { color: var(--lp-ink-2); padding: 10px 4px; }
.lp-sheet .lp-btn { margin-block-start: 12px; }
.lp-sheet .lp-btn + .lp-btn { margin-block-start: 10px; }
.lp-sheet-langs { justify-content: center; margin-block-start: 16px; }
.lp-sheet-langs .lp-lang-pill { height: 38px; }

/* Body scroll lock while the sheet is open */
body.lp-sheet-open { overflow: hidden; }

/* ========================================
   Feature / inner page scaffolding
   ======================================== */

/* A copy-beside-panel split, same proportions as the hero */
.lp-split {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.lp-split-copy { flex: 1 1 340px; min-width: 0; }
.lp-split-panel { flex: 1 1 360px; min-width: 0; }

/* Knowledge-base mock rows (ai-agent) */
.lp-kb-item {
  background: var(--lp-page);
  border-radius: var(--lp-r-inner);
  padding: 12px 14px;
}
.lp-kb-name { font-size: 13px; font-weight: 600; }
.lp-kb-value { font-size: 13px; color: var(--lp-ink-2); margin-block-start: 2px; }
.lp-kb-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px;
  font-size: 13px;
}
.lp-kb-foot-note { color: var(--lp-ink-3); }
.lp-kb-foot-action { font-weight: 600; color: var(--lp-accent-text); }

/* An internal-note chip inside a conversation mock */
.lp-note-chip {
  align-self: flex-start;
  background: #FFF8E1;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--lp-ink-2);
}
.lp-note-chip strong { font-weight: 600; }

/* Language sample cards */
.lp-lang-card { border-radius: 16px; padding: 16px; }
.lp-lang-card-tag { font-family: var(--lp-font-mono); font-size: 11px; color: var(--lp-ink-3); }
.lp-lang-card-text { font-size: 15px; line-height: 1.5; margin-block-start: 8px; }

/* The ink final-CTA card the inner pages end on */
.lp-cta-ink {
  background: var(--lp-ink);
  border-radius: var(--lp-r-card);
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.lp-cta-ink-title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  color: #FFFFFF;
  max-width: 24ch;
  text-wrap: balance;
}
.lp-cta-ink-note { font-size: 15px; color: var(--lp-disabled); margin-block-start: 8px; }

/* The honesty note — a claim we refuse, said out loud (ADR-0012) */
.lp-honest {
  margin-block-start: clamp(12px, 2vw, 24px);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-ink-2);
  max-width: 76ch;
  text-wrap: pretty;
}
.lp-honest strong { color: var(--lp-ink); }

/* "More of Bzzip" pill links */
.lp-pill-links { display: flex; flex-wrap: wrap; gap: 10px; margin-block-start: 14px; }
.lp-pill-link {
  height: 44px;
  padding-inline: 18px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: var(--lp-card);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-ink);
  white-space: nowrap;
}
.lp-pill-link:hover { background: var(--lp-page); color: var(--lp-ink); }

/* Numbered step cards (how-it-works) */
.lp-stepcards {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
  max-width: 880px;
  margin-inline: auto;
}
.lp-stepcard {
  padding: clamp(16px, 2.5vw, 28px);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lp-stepcard-highlight { border-color: rgba(0, 212, 255, 0.55); }
.lp-stepcard .lp-step-num { width: 36px; height: 36px; flex-basis: 36px; font-size: 15px; }
.lp-stepcard-body { min-width: 0; }
.lp-stepcard-title { font-size: 21px; margin-block-start: 2px; }
.lp-stepcard-copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--lp-ink-2);
  margin-block-start: 8px;
  max-width: 60ch;
  text-wrap: pretty;
}
.lp-stepcard-copy strong { color: var(--lp-ink); }
.lp-stepcard-copy + .lp-stepcard-copy { margin-block-start: 10px; }

/* ========================================
   Text page scaffolding
   ======================================== */
.lp-page-hero { padding-block-start: clamp(16px, 3vw, 48px); }
.lp-page-hero-title { margin-block-start: 12px; max-width: 20ch; }
.lp-page-hero-sub { margin-block-start: 14px; max-width: 52ch; }
.lp-page-hero-photo {
  margin-block-start: clamp(20px, 3vw, 36px);
  height: clamp(300px, 42vw, 460px);
}

/* Long-form legal / article text */
.lp-prose {
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--lp-ink-2);
}
.lp-prose h2 {
  font-size: var(--lp-d3);
  color: var(--lp-ink);
  margin-block-start: 2.2em;
  margin-block-end: 0.5em;
}
.lp-prose h3 {
  font-size: 21px;
  color: var(--lp-ink);
  margin-block-start: 1.8em;
  margin-block-end: 0.4em;
}
.lp-prose p { margin-block: 0.9em; }
.lp-prose ul, .lp-prose ol { margin-block: 0.9em; padding-inline-start: 1.4em; }
.lp-prose li { margin-block: 0.35em; }
.lp-prose blockquote {
  margin-inline: 0;
  margin-block: 1.2em;
  padding-inline-start: 16px;
  border-inline-start: 3px solid var(--lp-accent);
  color: var(--lp-ink);
}
.lp-prose code {
  font-family: var(--lp-font-mono);
  font-size: 13px;
  background: var(--lp-subtle);
  border-radius: 6px;
  padding: 2px 6px;
  direction: ltr;
  unicode-bidi: isolate;
}
.lp-prose pre {
  background: var(--lp-ink);
  color: #FFFFFF;
  border-radius: var(--lp-r-inner);
  padding: 16px;
  overflow-x: auto;
  direction: ltr;
  text-align: start;
}
.lp-prose pre code { background: transparent; color: inherit; padding: 0; }
.lp-prose img { border-radius: var(--lp-r-inner); }
.lp-prose figcaption { font-size: 13px; color: var(--lp-ink-3); margin-block-start: 8px; }
.lp-prose a { text-decoration: underline; text-underline-offset: 2px; }

/* The article variant reads at 17px with a fuller rhythm (Blog Article) */
.lp-prose-article { font-size: 17px; line-height: 1.75; color: var(--lp-ink); }
.lp-prose-article h2 { font-size: 26px; }
.lp-prose-article h3 { font-size: 21px; }
.lp-prose-article p { color: var(--lp-ink); }
.lp-prose-article blockquote {
  background: var(--lp-card);
  border-start-end-radius: var(--lp-r-inner);
  border-end-end-radius: var(--lp-r-inner);
  padding: 16px 20px;
  color: var(--lp-ink-2);
  font-style: italic;
}

/* Sticky table of contents (legal pages, desktop) */
.lp-textpage {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: flex-start;
}
.lp-toc {
  position: sticky;
  inset-block-start: 16px;
  flex: 1 1 220px;
  max-width: 280px;
  display: none;
}
.lp-toc a { color: var(--lp-ink-2); display: block; }
.lp-toc a:hover { color: var(--lp-ink); }
@media (min-width: 900px) {
  .lp-toc { display: block; }
}

/* Blog */
.lp-post-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block-start: clamp(20px, 3vw, 36px);
  max-width: 840px;
}
.lp-post-card { padding: clamp(16px, 2vw, 24px); display: block; color: var(--lp-ink); }
.lp-post-card:hover { color: var(--lp-ink); box-shadow: var(--lp-shadow-raised); }
.lp-post-title { font-size: 21px; }
.lp-post-excerpt { margin-block-start: 8px; }
.lp-post-meta { font-size: 13px; color: var(--lp-ink-3); margin-block-start: 10px; }
.lp-article-head { max-width: 68ch; }
.lp-article-title { margin-block-start: 12px; }
.lp-article-meta { font-size: 13px; color: var(--lp-ink-3); margin-block-start: 14px; }
.lp-article-cta {
  margin-block-start: clamp(32px, 5vw, 56px);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: 68ch;
}

/* Channels page */
.lp-channel-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lp-channel-glyph {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}
.lp-channel-glyph svg { display: block; }
.lp-channel-glyph-whatsapp { background: rgba(37, 211, 102, 0.12); color: #25D366; }
.lp-channel-glyph-instagram { background: rgba(214, 36, 159, 0.10); }
.lp-channel-glyph-facebook { background: rgba(24, 119, 242, 0.10); color: #1877F2; }
.lp-channel-glyph-tiktok { background: rgba(1, 1, 1, 0.06); color: #010101; }

/* Channel status cards */
.lp-channel-card { display: flex; flex-direction: column; }
.lp-channel-card-title { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; }
.lp-channel-status-dot { width: 12px; height: 12px; flex: 0 0 12px; border-radius: 999px; }
.lp-channel-card-copy { margin-block-start: 12px; flex: 1; }
.lp-channel-card .lp-btn { margin-block-start: 16px; }

/* The one coloured CTA the design system allows: the WhatsApp connect button */
.lp-btn-whatsapp { background: #25D366; color: #FFFFFF; }
.lp-btn-whatsapp:hover { background: #1FB855; color: #FFFFFF; }

/* Notify-me capture on unavailable channels */
.lp-notify-row { display: flex; gap: 8px; margin-block-start: 16px; }
.lp-notify-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  background: var(--lp-page);
  border: 1px solid var(--lp-hairline);
  border-radius: 999px;
  padding-inline: 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--lp-ink);
}
.lp-notify-input::placeholder { color: var(--lp-ink-3); }
.lp-notify-input:focus { outline: none; box-shadow: var(--lp-ring); }
.lp-notify-input.is-invalid { border-color: var(--lp-error); }
.lp-notify-row .lp-btn { flex: 0 0 auto; height: 44px; padding-inline: 18px; font-size: 14px; margin-block-start: 0; }
.lp-notify-done {
  margin-block-start: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-accent-text);
}
.lp-notify-done[hidden] { display: none; }

/* The inbox preview panel on /channels (hero) */
.lp-preview-row {
  background: var(--lp-page);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Contact */
.lp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 32px);
  margin-block-start: clamp(20px, 3vw, 36px);
  align-items: start;
}

/* ========================================
   Reveal-on-scroll — the JS sets initial state and transition inline and
   only when the visitor has not asked for reduced motion, so a visitor who
   has (or has no JS) sees the final state immediately.
   ======================================== */

/* ========================================
   Reduced motion — every animation and transition in this file, answered.
   The design's answer (System.dc.html, motion spec): everything is shown
   immediately; no float, no slide, no reveal. Hover/press transitions are
   decorative and stop too. The sheet and sticky bar still appear and
   disappear — instantly, via the same class toggles.
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .lp-float-a,
  .lp-float-b { animation: none; }
  .lp-btn,
  .lp-stickybar,
  .lp-scrim,
  .lp-sheet { transition: none; }
}
