/* Local Fashion — marketing landing (Lovable editorial layout, LFTheme) */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/Onest-Variable.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --lf-bg: #ffffff;
  --lf-surface: #f5f7fa;
  --lf-paper: #fafaf8;
  --lf-ink: #1f2933;
  --lf-ink-secondary: #52606d;
  --lf-ink-muted: #9aa5b1;
  --lf-hairline: #e4e7eb;
  --lf-accent: #e88c59;
  --lf-charcoal: #1f2933;
  --lf-on-charcoal: #ffffff;
  --lf-max: 1440px;
  --lf-pad: clamp(24px, 4vw, 80px);
  --lf-section: clamp(96px, 12vw, 128px);
  --lf-font: Inter, ui-sans-serif, system-ui, sans-serif;
  --lf-display: Onest, ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--lf-bg);
  color: var(--lf-ink);
  font-family: var(--lf-font);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.011em;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--lf-accent);
  color: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.lf-wrap {
  width: min(var(--lf-max), 100%);
  margin-inline: auto;
  padding-inline: var(--lf-pad);
}

.lf-display {
  font-family: var(--lf-display);
  letter-spacing: -0.04em;
  font-feature-settings: "ss01";
}

.lf-kicker {
  display: block;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lf-accent);
}

.lf-brand-mark {
  font-family: var(--lf-display);
  font-weight: 600;
  color: var(--lf-ink);
  letter-spacing: -0.02em;
}

.lf-story-link {
  display: inline-block;
  position: relative;
}

.lf-story-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100%;
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.lf-story-link:hover::after {
  transform: scaleX(1);
  transform-origin: 0;
}

.lf-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.16 0 0 0 0 0.2 0 0 0 0.8 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.lf-linen {
  background-color: var(--lf-paper);
  background-image:
    radial-gradient(#1f293309 1px, transparent 1px),
    radial-gradient(#1f293306 1px, transparent 1px);
  background-position: 0 0, 1px 2px;
  background-size: 3px 3px, 7px 7px;
}

/* ——— Header ——— */

.lf-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in oklab, var(--lf-hairline) 60%, transparent);
  background: color-mix(in oklab, var(--lf-bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}

.lf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

.lf-logo {
  font-family: var(--lf-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lf-logo__dot {
  color: var(--lf-accent);
}

.lf-nav {
  display: none;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lf-ink-secondary);
}

.lf-nav a:hover {
  color: var(--lf-ink);
}

.lf-header__store {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lf-ink);
}

.lf-menu-btn {
  display: flex;
  border: 0;
  background: transparent;
  padding: 8px;
  color: var(--lf-ink);
  cursor: pointer;
}

@media (min-width: 768px) {
  .lf-nav {
    display: flex;
  }

  .lf-menu-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .lf-header__store {
    display: none;
  }

  .lf-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px var(--lf-pad) 24px;
    background: color-mix(in oklab, var(--lf-bg) 97%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lf-hairline);
  }

  .lf-nav.is-open {
    display: flex;
  }

  .lf-header__inner {
    position: relative;
  }
}

/* ——— Hero ——— */

.lf-hero {
  position: relative;
  overflow: hidden;
}

.lf-hero__glow {
  pointer-events: none;
  position: absolute;
  top: -160px;
  right: -160px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 140, 89, 0.12) 0%, rgba(232, 140, 89, 0) 70%);
  filter: blur(20px);
}

.lf-hero__grid {
  display: grid;
  gap: clamp(32px, 5vw, 40px);
  padding-block: clamp(40px, 6vw, 56px) clamp(72px, 10vw, 112px);
}

.lf-hero__bar {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lf-hairline);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lf-ink-secondary);
}

.lf-hero__bar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.lf-hero__bar-divider {
  display: none;
  width: 1px;
  height: 10px;
  background: var(--lf-hairline);
}

.lf-hero__bar-tagline {
  display: none;
}

.lf-hero__live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lf-ink);
}

.lf-hero__live-dot {
  position: relative;
  width: 6px;
  height: 6px;
}

.lf-hero__live-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--lf-accent);
  opacity: 0.6;
  animation: lf-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.lf-hero__live-dot::after {
  content: "";
  position: relative;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lf-accent);
}

.lf-hero__copy {
  min-width: 0;
  container-type: inline-size;
}

.lf-hero__kicker {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  font-family: var(--lf-display);
  font-weight: 700;
  font-size: clamp(10px, 3.26cqi, 16px);
  letter-spacing: clamp(0.12em, 0.045cqi, 0.2em);
}

/* ~430px viewport (copy ≈382px): одна строка без переноса */
@container (max-width: 385px) {
  .lf-hero__kicker {
    font-size: 12.75px;
    letter-spacing: 0.16em;
  }
}

.lf-hero__title {
  margin: 24px 0 0;
  font-size: clamp(64px, 9.5vw, 116px);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.045em;
  overflow: hidden;
  font-family: var(--lf-display);
}

.lf-hero__title-line {
  display: block;
}

.lf-hero__lead {
  margin: 32px 0 0;
  max-width: 520px;
  font-size: clamp(17px, 2vw, 18px);
  line-height: 1.55;
  color: color-mix(in oklab, var(--lf-ink) 85%, transparent);
}

.lf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.lf-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--lf-charcoal);
  color: var(--lf-on-charcoal);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}

.lf-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(31, 41, 51, 0.5);
}

.lf-store-btn__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.lf-store-btn__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lf-qr {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lf-qr__box {
  padding: 10px;
  border: 1px solid var(--lf-hairline);
  border-radius: 6px;
  background: #fff;
  transition: transform 0.5s;
}

.lf-qr__box:hover {
  transform: scale(1.04);
}

.lf-qr__box img {
  width: 72px;
  height: 72px;
}

.lf-qr__label {
  font-size: 13px;
  line-height: 1.35;
  color: var(--lf-ink-secondary);
}

.lf-hero__phone-col {
  position: relative;
  min-width: 0;
}

.lf-hero__phone-wrap {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  padding: 32px;
  border-radius: 28px;
  box-shadow:
    0 40px 80px -40px rgba(31, 41, 51, 0.2),
    0 12px 32px -12px rgba(31, 41, 51, 0.1);
}

.lf-hero__phone-wrap .lf-grain {
  border-radius: 28px;
}

.lf-hero__float {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--lf-hairline);
  background: var(--lf-bg);
}

.lf-hero__float--new {
  top: 56px;
  left: -8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px -10px rgba(31, 41, 51, 0.15);
}

.lf-hero__float-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lf-accent);
}

.lf-hero__float--feed {
  right: -8px;
  bottom: -12px;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 20px 40px -20px rgba(31, 41, 51, 0.25);
}

.lf-hero__float-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lf-ink-secondary);
}

.lf-hero__float-brand {
  margin-top: 4px;
  font-family: var(--lf-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lf-hero__float-meta {
  margin-top: 2px;
  font-size: 10px;
  color: var(--lf-ink-secondary);
}

.lf-device--hero {
  width: 100%;
}

.lf-device {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
}

.lf-device__bezel {
  position: absolute;
  inset: 0;
  padding: 8px;
  border-radius: 44px;
  background: var(--lf-charcoal);
  box-shadow:
    0 40px 80px -30px rgba(31, 41, 51, 0.35),
    0 12px 24px -12px rgba(31, 41, 51, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lf-device__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #fff;
}

.lf-device__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.lf-device__screen img,
.lf-device__screen video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.lf-device__video {
  background: #fff;
}

/* Hero phone — catalog UI mock */

.lf-hero-ui {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 40px 16px 16px;
  background: #fff;
  font-family: var(--lf-font);
}

.lf-hero-ui__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lf-hero-ui__title {
  font-family: var(--lf-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lf-hero-ui__count {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lf-ink-secondary);
}

.lf-hero-ui__search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--lf-surface);
  color: var(--lf-ink-secondary);
  font-size: 12px;
}

.lf-hero-ui__chips {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  overflow: hidden;
}

.lf-hero-ui__chip {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--lf-hairline);
  font-size: 11px;
  color: var(--lf-ink-secondary);
}

.lf-hero-ui__chip.is-active {
  border-color: transparent;
  background: var(--lf-charcoal);
  color: #fff;
}

.lf-hero-ui__grid {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
  min-height: 0;
}

.lf-hero-ui__card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  object-fit: cover;
  background: var(--lf-surface);
}

.lf-hero-ui__brand {
  margin-top: 6px;
  font-size: 8.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lf-ink-secondary);
}

.lf-hero-ui__name {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lf-hero-ui__price {
  font-size: 10px;
  color: color-mix(in oklab, var(--lf-ink) 80%, transparent);
}

.lf-device--sm .lf-device__bezel {
  border-radius: 40px;
  padding: 6px;
}

.lf-device--sm .lf-device__screen {
  border-radius: 34px;
}

.lf-device--sm .lf-device__notch {
  width: 72px;
  height: 18px;
  top: 6px;
}

@media (min-width: 1024px) {
  .lf-hero__bar-divider,
  .lf-hero__bar-tagline {
    display: block;
  }

  .lf-hero__grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    row-gap: 40px;
  }

  .lf-hero__copy {
    grid-column: 1 / 8;
    padding-right: 24px;
  }

  .lf-hero__phone-col {
    grid-column: 8 / 13;
    margin-top: 8px;
  }

  .lf-hero__float--new {
    left: -32px;
  }

  .lf-hero__float--feed {
    right: -32px;
    bottom: -24px;
  }
}

@media (max-width: 1023px) {
  .lf-hero__actions {
    justify-content: center;
    width: 100%;
  }

  .lf-hero__phone-col {
    margin-top: 8px;
  }

  .lf-hero__float--new {
    top: 24px;
    left: 0;
  }

  .lf-hero__float--feed {
    right: 0;
    bottom: -8px;
  }
}

/* ——— Marquee ——— */

.lf-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--lf-hairline);
  background: var(--lf-bg);
  padding-block: 32px;
}

.lf-marquee__fade {
  pointer-events: none;
  position: absolute;
  inset-block: 0;
  z-index: 1;
  width: 128px;
}

.lf-marquee__fade--l {
  left: 0;
  background: linear-gradient(to right, var(--lf-bg), transparent);
}

.lf-marquee__fade--r {
  right: 0;
  background: linear-gradient(to left, var(--lf-bg), transparent);
}

.lf-marquee__track {
  display: flex;
  width: max-content;
  animation: lf-marquee 40s linear infinite;
}

.lf-marquee__group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}

.lf-marquee__item {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  font-family: var(--lf-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: color-mix(in oklab, var(--lf-ink) 85%, transparent);
}

.lf-marquee__sep {
  color: var(--lf-accent);
}

/* ——— Manifest / stats ——— */

.lf-manifest {
  padding-block: var(--lf-section);
}

.lf-manifest__layout {
  display: grid;
  gap: clamp(40px, 6vw, 64px);
}

.lf-manifest__title {
  margin: 24px 0 0;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lf-manifest__title-line {
  display: block;
  white-space: nowrap;
  font-size: clamp(12px, 2.85vw + 0.35rem, 52px);
}

.lf-manifest__title-line + .lf-manifest__title-line {
  margin-top: 0.12em;
}

.lf-manifest__title-line--muted {
  color: var(--lf-ink-secondary);
}

.lf-manifest__body {
  max-width: 36rem;
}

.lf-manifest__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--lf-ink-secondary);
  text-wrap: pretty;
}

.lf-manifest__body p + p {
  margin-top: 1.125rem;
}

.lf-manifest__content .lf-metrics {
  margin-top: 32px;
  padding-top: 32px;
}

.lf-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
  border-top: 1px solid var(--lf-hairline);
  text-align: center;
}

.lf-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.lf-metric__value {
  display: block;
  font-family: var(--lf-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lf-metric__label {
  display: block;
  margin-top: 10px;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--lf-ink-secondary);
}

@media (min-width: 1024px) {
  .lf-manifest__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: start;
  }

  .lf-manifest__content {
    padding-top: 2.75rem;
  }

  .lf-metric__value {
    font-size: clamp(22px, 2.4vw, 30px);
    white-space: nowrap;
  }
}

/* ——— Capabilities ——— */

.lf-caps {
  padding-block: var(--lf-section);
  background: var(--lf-surface);
}

.lf-caps__grid {
  display: grid;
  gap: 56px;
}

.lf-caps__title {
  margin: 24px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lf-caps__photo {
  margin-top: 40px;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  overflow: hidden;
  border-radius: 6px;
}

.lf-caps__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-caps__photo.lf-reveal.is-visible img {
  transform: none;
}

.lf-cap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lf-cap-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px 32px;
  padding-block: 24px;
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-cap-row + .lf-cap-row {
  border-top: 1px solid var(--lf-hairline);
}

.lf-cap-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--lf-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-cap-row:hover {
  padding-left: 28px;
}

.lf-cap-row:hover::before {
  transform: scaleY(1);
}

.lf-cap-row__num {
  font-family: var(--lf-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--lf-accent);
}

.lf-cap-row__title {
  font-family: var(--lf-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  transition: color 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-cap-row__text {
  grid-column: 2;
  max-width: 440px;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lf-ink-secondary);
}

@media (min-width: 768px) {
  .lf-cap-row {
    grid-template-columns: 64px 1fr 1.3fr;
    align-items: baseline;
    padding-block: 28px;
  }

  .lf-cap-row__text {
    grid-column: 3;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .lf-caps__grid {
    grid-template-columns: 4fr 8fr;
    gap: 32px;
  }
}

/* ——— Showcase ——— */

.lf-showcase {
  position: relative;
  padding-block: var(--lf-section);
  border-bottom: 1px solid var(--lf-hairline);
}

.lf-showcase > .lf-wrap {
  position: relative;
  z-index: 1;
}

.lf-showcase__head {
  display: grid;
  gap: clamp(40px, 6vw, 64px);
  margin-bottom: 56px;
}

.lf-showcase__phones {
  display: grid;
  gap: 40px;
}

.lf-showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-showcase__item:hover {
  transform: translateY(-6px);
}

.lf-showcase__item .lf-device {
  max-width: 300px;
}

.lf-showcase__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  margin: 18px 0 0;
  padding: 0;
}

.lf-showcase__meta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.lf-showcase__meta-num {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--lf-ink-muted);
  line-height: 1.2;
}

.lf-showcase__meta-title {
  flex-shrink: 0;
  font-family: var(--lf-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--lf-ink-secondary);
  text-align: right;
  white-space: nowrap;
}

.lf-showcase__caption {
  font-size: 11px;
  line-height: 1.35;
  color: var(--lf-ink-secondary);
  text-align: left;
}

@media (min-width: 1024px) {
  .lf-showcase__head {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: start;
  }

  .lf-showcase__lead {
    padding-top: 2.75rem;
  }
}

@media (min-width: 768px) {
  .lf-showcase__phones {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

/* ——— Audience ——— */

.lf-audience {
  padding-block: var(--lf-section);
  background: var(--lf-bg);
}

.lf-audience__title {
  margin: 16px 0 0;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.lf-audience__lead {
  margin: 16px 0 32px;
  font-size: 15px;
  color: var(--lf-ink-secondary);
}

.lf-audience__grid {
  display: grid;
  gap: 16px;
}

.lf-audience__card {
  position: relative;
  padding: 24px 24px 24px 32px;
  border: 1px solid var(--lf-hairline);
  border-radius: 6px;
  background: var(--lf-bg);
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-audience__card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--lf-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-audience__card:hover {
  padding-left: 36px;
}

.lf-audience__card:hover::before {
  transform: scaleY(1);
}

.lf-audience__card-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.lf-audience__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--lf-ink-secondary);
}

@media (min-width: 768px) {
  .lf-audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ——— FAQ ——— */

.lf-faq {
  padding-block: var(--lf-section);
  background: var(--lf-surface);
  border-top: 1px solid var(--lf-hairline);
}

.lf-faq__title {
  margin: 16px 0 32px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.lf-faq__list {
  display: flex;
  flex-direction: column;
}

.lf-faq__item {
  position: relative;
  border-top: 1px solid var(--lf-hairline);
}

.lf-faq__item:last-child {
  border-bottom: 1px solid var(--lf-hairline);
}

.lf-faq__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--lf-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lf-faq__item[open]::before {
  transform: scaleY(1);
}

.lf-faq__item[open] > .lf-faq__q {
  padding-inline-start: 16px;
}

.lf-faq__item[open] > .lf-faq__a {
  padding-inline-start: 16px;
}

.lf-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  margin: 0;
  font-family: var(--lf-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.lf-faq__q:focus {
  outline: none;
}

.lf-faq__q:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--lf-accent) 55%, transparent);
  outline-offset: 4px;
  border-radius: 4px;
}

.lf-faq__q::-webkit-details-marker {
  display: none;
}

.lf-faq__q::marker {
  content: "";
}

.lf-faq__q::after {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--lf-hairline);
  border-radius: 50%;
  background:
    linear-gradient(var(--lf-ink) 0 0) center/12px 1.5px no-repeat,
    linear-gradient(var(--lf-ink) 0 0) center/1.5px 12px no-repeat;
  content: "";
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}

.lf-faq__item[open] > .lf-faq__q::after {
  transform: rotate(45deg);
  border-color: var(--lf-accent);
  background:
    linear-gradient(var(--lf-accent) 0 0) center/12px 1.5px no-repeat,
    linear-gradient(var(--lf-accent) 0 0) center/1.5px 12px no-repeat;
}

.lf-faq__a {
  max-width: 52rem;
  padding: 0 36px 24px 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.68;
  color: var(--lf-ink-secondary);
}

.lf-faq__a p {
  margin: 0;
}

.lf-faq__a a {
  color: var(--lf-ink);
}

@media (min-width: 768px) {
  .lf-faq__q {
    padding-block: 28px;
  }

  .lf-faq__a {
    padding: 0 48px 28px 0;
    line-height: 1.72;
  }
}

/* ——— CTA ——— */

.lf-cta {
  position: relative;
  overflow: hidden;
  padding-block: var(--lf-section);
  text-align: center;
}

.lf-cta__glow {
  pointer-events: none;
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 140, 89, 0.08) 0%, rgba(232, 140, 89, 0) 70%);
  filter: blur(30px);
  transform: translateX(-50%);
}

.lf-cta .lf-kicker {
  font-size: clamp(13px, 2.2vw, 16px);
  letter-spacing: 0.2em;
}

.lf-cta__title {
  margin: 24px auto 0;
  max-width: 960px;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lf-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
}

/* ——— Footer ——— */

.lf-footer {
  border-top: 1px solid var(--lf-hairline);
  padding-block: 48px;
  font-size: 13px;
}

.lf-footer__grid {
  display: grid;
  gap: 32px;
}

.lf-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lf-footer__logo {
  font-family: var(--lf-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lf-footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--lf-ink-secondary);
}

.lf-footer__links a {
  color: var(--lf-ink);
}

.lf-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.lf-footer__legal-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lf-ink-secondary);
}

.lf-footer__legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lf-footer__legal-links a {
  color: var(--lf-ink-secondary);
  text-decoration: none;
}

.lf-footer__legal-links a:hover {
  color: var(--lf-ink);
  text-decoration: underline;
}

.lf-footer__copy {
  font-size: 12px;
  color: var(--lf-ink-secondary);
}

@media (min-width: 768px) {
  .lf-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: start;
    gap: 32px 48px;
  }
}

/* ——— Reveal ——— */

.lf-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lf-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.lf-accent-dot {
  color: var(--lf-accent);
}

.lf-accent-dot--ink {
  color: var(--lf-ink);
}

@keyframes lf-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes lf-ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lf-marquee__track {
    animation: none;
  }

  .lf-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .lf-hero__live-dot::before {
    animation: none;
  }

  .lf-caps__photo img {
    transform: none;
  }
}

@media (max-width: 767px) {
  .lf-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .lf-metric__value {
    font-size: clamp(22px, 6vw, 28px);
  }

  .lf-metric__label {
    font-size: 12px;
  }
}
