/* ==========================================================================
   Landing redesign (fixaplan-inspired) — index.html only.
   All classes prefixed `l-`. Shared pages keep layout.css/sections.css.
   ========================================================================== */

/* base.css sets body{overflow-x:hidden}, which turns body into a scroll
   container (overflow-y computes to auto) and breaks position:sticky —
   needed for the pinned features column. html already has overflow-x:clip,
   which clips horizontally without breaking sticky. Index-only override. */
body { overflow: visible; }

/* ---------- Preloader ---------- */

.l-loader {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-2);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.l-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.l-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.l-loader-logo {
  height: 34px;
  width: auto;
  fill: var(--ink);
  opacity: 0;
  animation: l-logo-in 0.9s var(--ease) 0.15s forwards;
}
@keyframes l-logo-in {
  from { opacity: 0; transform: translateY(6px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
.l-loader-text {
  /* single line always — vw-based size keeps the full phrase fitting */
  white-space: nowrap;
  font-size: clamp(1.15rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding: 0 1rem;
}
.l-loader-text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.l-loader-text .l-w {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(6px);
  animation: l-word-in 0.7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes l-word-in {
  to { opacity: 1; filter: blur(0); transform: none; }
}

/* No-JS / safety: loader removes itself even if landing.js never runs */
.l-loader { animation: l-loader-out 0.7s var(--ease) 5.2s forwards; }
@keyframes l-loader-out {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ---------- Buttons & small components ---------- */

.l-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.l-btn:hover { transform: translateY(-1px); }
.l-btn:active { transform: translateY(0); }

.l-btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.l-btn-white:hover { box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24); }

.l-btn-dark {
  background: var(--ink);
  color: #fff;
}
.l-btn-ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border-soft);
}

.l-eyebrow {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--gray-mid);
  font-size: 0.8125rem;
  font-weight: 500;
}
.l-eyebrow-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.l-chip {
  display: inline-block;
  padding: 0.1em 0.35em;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform var(--t-fast);
}
.l-chip:hover { transform: translateY(-1px); }

/* ---------- Headline scale ---------- */

.l-h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
}
.l-h1 em,
.l-h2 em,
.l-break-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.l-h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

/* ---------- Reveal animations ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* ---------- Navigation pill ---------- */

.l-nav {
  position: fixed;
  top: 1.1rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
/* The pill morphs into the menu: width + rounded corners animate while
   the menu row (grid 0fr -> 1fr) unfolds inside the same capsule. */
.l-nav-pill {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 190px;
  padding: 0.85rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
  transition: width 0.55s var(--ease), border-radius 0.55s var(--ease), box-shadow var(--t-base);
}
.nav.is-open .l-nav-pill {
  width: min(400px, calc(100vw - 2rem));
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.l-nav-logo svg {
  height: 15px;
  width: auto;
  fill: var(--ink);
  display: block;
}
.l-nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px 0;
}
.l-nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav.is-open .l-nav-burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .l-nav-burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.l-nav-menu {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.55s var(--ease), opacity 0.35s var(--ease);
}
.nav.is-open .l-nav-menu {
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 0.55s var(--ease), opacity 0.35s var(--ease) 0.12s;
}
.l-nav-menu-inner {
  overflow: hidden;
  min-height: 0;
}
.l-nav-menu-links {
  display: flex;
  flex-direction: column;
  padding-top: 1.3rem;
}
.l-nav-menu-links a {
  padding: 0.45rem 0;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color var(--t-fast);
}
.nav.is-open .l-nav-menu-links a { opacity: 1; transform: none; }
.nav.is-open .l-nav-menu-links a:nth-child(1) { transition-delay: 0.16s; }
.nav.is-open .l-nav-menu-links a:nth-child(2) { transition-delay: 0.22s; }
.nav.is-open .l-nav-menu-links a:nth-child(3) { transition-delay: 0.28s; }
.nav.is-open .l-nav-menu-links a:nth-child(4) { transition-delay: 0.34s; }
.l-nav-menu-links a:hover { color: var(--gray-soft); }
.l-nav-menu-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding-bottom: 0.3rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav.is-open .l-nav-menu-actions {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}
.l-nav-menu-actions .l-btn { flex: 1; }

/* ---------- Hero ---------- */

.l-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: clip;
  background: #101010;
}
.l-hero-media {
  position: absolute;
  inset: -14% 0;
  will-change: transform;
}
.l-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.l-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.05) 35%, rgba(10, 10, 10, 0.55) 100%),
    radial-gradient(90% 60% at 50% 55%, rgba(10, 10, 10, 0) 40%, rgba(10, 10, 10, 0.35) 100%);
}
.l-hero-center {
  position: relative;
  z-index: 1;
  margin: auto 0;
  padding: 7.5rem 1.5rem 0;
  text-align: center;
}
.l-hero-sub {
  max-width: 34rem;
  margin: 1.4rem auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.l-hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  /* clears the sheet overlap (--radius-2xl) plus the scroll hint below */
  padding: 0 1.5rem calc(var(--radius-2xl) + 4.6rem);
  flex-wrap: wrap;
}
.l-hero-caption {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: right;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
  /* exactly the two designed lines (the <br>); no extra auto-wrapping */
  white-space: nowrap;
}
@media (max-width: 768px) {
  .l-hero-caption {
    text-align: center;
    white-space: normal;
    font-size: 0.85rem;
  }
}

/* Hero entrance (post-preloader) */
.l-enter {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(5px);
  animation: l-enter-in 0.9s var(--ease) forwards;
  animation-delay: var(--ed, 0.2s);
}
@keyframes l-enter-in {
  to { opacity: 1; transform: none; filter: blur(0); }
}
.l-h1 .l-w {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(0.18em);
  animation: l-word-in 0.85s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

.l-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: calc(var(--radius-2xl) + 1.2rem);
  translate: -50% 0;
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  z-index: 1;
}
.l-hero-scroll span {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.75);
  animation: l-scroll-hint 1.8s ease-in-out infinite;
}
@keyframes l-scroll-hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(9px); opacity: 0.2; }
  61% { transform: translateY(0); opacity: 0; }
}

/* Parallax hook */
[data-plx] { will-change: transform; }

/* ---------- Sheet transition ---------- */

.l-sheet {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  margin-top: calc(var(--radius-2xl) * -1);
}

/* ---------- Marquee ---------- */

.l-marquee {
  overflow: hidden;
  padding: 1.6rem 0 0.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.l-marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: l-marquee-run 48s linear infinite;
}
.l-marquee-track span {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.35);
  padding-right: 0.5rem;
}
.l-marquee-track span em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}
@keyframes l-marquee-run {
  to { transform: translateX(-50%); }
}
.l-marquee:hover .l-marquee-track { animation-play-state: paused; }

/* ---------- Features ---------- */

.l-features {
  background:
    radial-gradient(52% 44% at 18% 68%, rgba(249, 115, 22, 0.5) 0%, rgba(249, 115, 22, 0) 100%),
    radial-gradient(40% 34% at 78% 22%, rgba(236, 72, 153, 0.16) 0%, rgba(236, 72, 153, 0) 100%),
    radial-gradient(60% 50% at 62% 80%, rgba(30, 26, 22, 0.9) 0%, rgba(16, 15, 14, 0) 100%),
    linear-gradient(160deg, #23180e 0%, #17130f 45%, #131511 100%);
  color: #fff;
  overflow: clip;
}
.l-features-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 7rem 1.5rem 8rem;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 4rem;
}
.l-features-left {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.2rem;
}
.l-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}
.l-tab {
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  transition: background var(--t-base), color var(--t-base), transform var(--t-fast);
}
.l-tab:hover { color: rgba(255, 255, 255, 0.75); }
.l-tab.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.l-features-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.l-caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}
.l-features-cards {
  display: flex;
  flex-direction: column;
}
/* One card per viewport step: left column stays pinned while each card
   floats past (parallax handled by [data-plx] on the slot). */
.l-slot {
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-card {
  border-radius: 24px;
  padding: 1.9rem;
  /* solid-ish surface: backdrop-filter here caused compositing flicker
     with the sticky column + scroll-linked transforms */
  background: rgba(20, 16, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.l-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.l-card h3 {
  margin-top: 1.1rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
}
.l-card > p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.l-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.l-card-icon svg { width: 20px; height: 20px; }

/* --- Mockups (shared) --- */

.l-mock {
  margin-top: 1.4rem;
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.8125rem;
}
.l-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.l-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
}
.l-mock-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
}
.l-mock-row span { flex: 0 0 auto; }
.l-mock-row i {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}
.l-mock-row i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
}

/* Mockup stagger-in + bar fill when scrolled into view */
.l-mock > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.l-mock.is-in > * { opacity: 1; transform: none; }
.l-mock.is-in > *:nth-child(2) { transition-delay: 0.1s; }
.l-mock.is-in > *:nth-child(3) { transition-delay: 0.2s; }
.l-mock.is-in > *:nth-child(4) { transition-delay: 0.3s; }
.l-mock.is-in > *:nth-child(5) { transition-delay: 0.4s; }
.l-mock .l-mock-row i::after,
.l-mock .l-bar i {
  width: 0;
  transition: width 1s var(--ease) 0.45s;
}
.l-mock.is-in .l-mock-row i::after,
.l-mock.is-in .l-bar i { width: var(--w, 50%); }
.l-mock.is-in .l-badge { animation: l-badge-pop 0.5s var(--ease) 0.9s backwards; }
@keyframes l-badge-pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.l-mock-row b { font-weight: 600; color: #fff; }
.l-mock-row.is-pick {
  background: rgba(255, 255, 255, 0.1);
  outline: 1px solid rgba(249, 115, 22, 0.55);
}
.l-mock-row.is-pick i::after { background: var(--accent-gradient); }
.l-badge {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.22rem 0.5rem;
  border-radius: 20px;
  background: var(--accent-gradient);
  color: #fff;
  white-space: nowrap;
}
.l-chip-ok,
.l-chip-mute {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.22rem 0.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
.l-chip-mute { color: rgba(255, 255, 255, 0.45); }

/* --- Suppliers mockup --- */

.l-mini {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}
.l-mini.is-top {
  background: rgba(255, 255, 255, 0.1);
  outline: 1px solid rgba(236, 72, 153, 0.45);
}
.l-mini > div { flex: 1; min-width: 0; }
.l-mini b { display: block; color: #fff; font-weight: 600; }
.l-mini small { color: rgba(255, 255, 255, 0.5); font-size: 0.72rem; }
.l-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

/* --- Production mockup --- */

.l-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0.2rem;
}
.l-step i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.l-step.is-done i { background: var(--accent-gradient); border-color: transparent; }
.l-step.is-live i {
  border-color: var(--accent-from);
  animation: l-pulse 1.6s ease-in-out infinite;
}
@keyframes l-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
}
.l-step span { flex: 1; }
.l-step b { color: #fff; font-weight: 600; }
.l-bar {
  height: 6px;
  margin-top: 0.4rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.l-bar i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: 6px;
  background: var(--accent-gradient);
}

/* ---------- WePro AI section ---------- */

.l-ai {
  background: var(--dark-2);
  color: #fff;
  overflow: clip;
}
.l-ai-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 7rem 1.5rem;
}
.l-ai-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 2rem;
  max-width: 56rem;
}
.l-h2-duo strong { color: #fff; font-weight: 600; }
.l-h2-duo span { color: var(--gray-soft); font-weight: 600; }
.l-ai-grid {
  margin-top: 4.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 3rem;
  align-items: center;
}
.l-ai-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* --- Accordion --- */

.l-acc {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: background var(--t-base);
}
.l-acc.is-open { background: rgba(255, 255, 255, 0.09); }
.l-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-align: left;
}
.l-acc-head i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.l-acc-head i::before,
.l-acc-head i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1.6px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--t-base);
}
.l-acc-head i::after { transform: translate(-50%, -50%) rotate(90deg); }
.l-acc.is-open .l-acc-head i::after { transform: translate(-50%, -50%) rotate(0deg); }
.l-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.l-acc-body p {
  padding: 0 1.1rem 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}
.l-acc.is-open .l-acc-body { max-height: 200px; }

/* --- Phones --- */

.l-ai-phones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.4rem;
}
.l-phone {
  width: min(250px, 60vw);
  border-radius: 30px;
  padding: 1.1rem;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --base-rot: -2deg;
  transform: rotate(var(--base-rot)) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg));
  transition: transform 0.25s ease-out;
}
.l-phone-back {
  --base-rot: 3deg;
  transform: rotate(var(--base-rot)) translateY(2.2rem) scale(0.92) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg));
  opacity: 0.85;
}
.l-ai-phones { perspective: 900px; }

/* Chat bubbles pop in sequence when visible */
.l-phone-chat .l-msg {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.l-phone-chat.is-in .l-msg { opacity: 1; transform: none; }
.l-phone-chat.is-in .l-msg:nth-child(1) { transition-delay: 0.1s; }
.l-phone-chat.is-in .l-msg:nth-child(2) { transition-delay: 0.55s; }
.l-phone-chat.is-in .l-msg:nth-child(3) { transition-delay: 1.05s; }
.l-phone-chat.is-in .l-msg:nth-child(4) { transition-delay: 1.6s; }
.l-phone-top b { display: block; font-size: 0.9rem; }
.l-phone-top small { color: rgba(255, 255, 255, 0.45); font-size: 0.72rem; }
.l-phone-chat {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.l-msg {
  max-width: 88%;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  line-height: 1.45;
}
.l-msg.is-user {
  align-self: flex-end;
  background: var(--accent-gradient);
  color: #fff;
}
.l-phone-wave {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 26px;
}
.l-phone-wave i {
  width: 2.5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.55);
  height: 30%;
  animation: l-wave 1.3s ease-in-out infinite;
}
.l-phone-wave i:nth-child(2n) { animation-delay: 0.15s; height: 65%; }
.l-phone-wave i:nth-child(3n) { animation-delay: 0.3s; height: 90%; }
.l-phone-wave i:nth-child(4n) { animation-delay: 0.45s; height: 50%; }
.l-phone-wave i:nth-child(5n) { animation-delay: 0.6s; height: 75%; }
@keyframes l-wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* ---------- Showcase (videos) ---------- */

.l-show {
  background: var(--dark-2);
  color: #fff;
  overflow: clip;
}
.l-show-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem 7rem;
}
.l-show-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  perspective: 1000px;
}
.l-show-card {
  margin: 0;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s ease-out;
}
.l-show-card:hover { transform: rotate(0deg) scale(1.03); }
.l-show-frame {
  border-radius: 20px;
  padding: 0.55rem;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.l-show-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.l-show-card figcaption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Photographic break ---------- */

.l-break {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  background: #2a0f14;
}
.l-break-bg {
  position: absolute;
  left: -4%;
  top: -14%;
  width: 108%;
  height: 128%;
  object-fit: cover;
  object-position: 22% 20%;
  filter: blur(10px) saturate(1.25) brightness(0.9);
}
.l-break-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(42, 13, 18, 0.35) 0%, rgba(249, 115, 22, 0.28) 55%, rgba(236, 72, 153, 0.38) 100%),
    linear-gradient(180deg, rgba(20, 8, 10, 0.35) 0%, rgba(20, 8, 10, 0) 30%, rgba(20, 8, 10, 0.4) 100%);
}
.l-break-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  text-align: right;
}
.l-break-title {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #fff;
}
.l-break-title .is-dim { color: rgba(255, 255, 255, 0.55); }
.l-break-caption {
  position: absolute;
  left: max(1.5rem, calc((100% - var(--container)) / 2 + 1.5rem));
  bottom: 3rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.l-float-tag {
  position: absolute;
  z-index: 1;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  background: rgba(30, 8, 12, 0.55);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: rotate(var(--r, 0deg));
  animation: l-float 5.5s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
}
.l-float-tag:nth-of-type(2) { --fd: 1.2s; }
.l-float-tag:nth-of-type(3) { --fd: 2.4s; }
.l-float-tag:nth-of-type(4) { --fd: 0.7s; }
.l-float-tag:nth-of-type(5) { --fd: 1.9s; }
.l-float-tag:nth-of-type(6) { --fd: 3.1s; }
.l-float-tag:nth-of-type(7) { --fd: 0.4s; }
.l-float-tag:nth-of-type(8) { --fd: 2.0s; }
.l-float-tag:nth-of-type(9) { --fd: 3.6s; }
.l-float-tag:nth-of-type(10) { --fd: 1.5s; }
.l-float-tag:nth-of-type(11) { --fd: 2.8s; }
.l-float-tag:nth-of-type(12) { --fd: 0.9s; }
.l-float-tag:nth-of-type(13) { --fd: 2.2s; }
@keyframes l-float {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50% { transform: rotate(calc(var(--r, 0deg) + 2deg)) translateY(-10px); }
}

/* ---------- FAQ ---------- */

.l-faq {
  background: var(--light-2);
  color: var(--ink);
}
.l-faq-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 1.5rem 8rem;
}
.l-faq-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
.l-faq-lead {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--gray-soft);
}
.l-faq-list {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.l-acc-light { background: rgba(0, 0, 0, 0.05); }
.l-acc-light.is-open { background: rgba(0, 0, 0, 0.07); }
.l-acc-light .l-acc-head { color: var(--ink); }
.l-acc-light .l-acc-head i { background: rgba(0, 0, 0, 0.08); }
.l-acc-light .l-acc-body p { color: var(--gray-mid); }

/* ---------- Footer ---------- */

.l-footer {
  position: relative;
  background: var(--light-2);
  padding: 2rem 1rem 1rem;
  overflow: clip;
}
.l-foot-display {
  text-align: center;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 3rem 0 -0.18em;
  background: linear-gradient(180deg, #6f6f6f 0%, #b9b9b9 55%, var(--light-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}
.l-foot-card {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  padding: clamp(2rem, 4vw, 3.2rem);
}
.l-foot-top {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 3rem;
}
.l-foot-logo svg {
  height: 16px;
  width: auto;
  fill: #fff;
}
.l-foot-updates {
  margin: 2.2rem 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.l-foot-updates b { color: #fff; }
.l-foot-updates span { color: rgba(255, 255, 255, 0.55); }
.l-foot-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.l-foot-col { display: flex; flex-direction: column; gap: 0.55rem; }
.l-foot-col h4 {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.l-foot-col a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  width: fit-content;
  transition: color var(--t-fast);
}
.l-foot-col a:hover { color: #fff; text-decoration: underline; }
.l-foot-bottom {
  margin-top: 3.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}
.l-foot-legal a { color: rgba(255, 255, 255, 0.75); }
.l-foot-legal a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .l-show-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .l-features-grid { grid-template-columns: 1fr; gap: 0; }
  .l-features-left {
    position: static;
    height: auto;
    padding-top: 0;
  }
  .l-tabs { display: none; }
  .l-features-cards { padding: 3rem 0 0; gap: 1.6rem; }
  .l-slot { min-height: 0; display: block; }
  .l-ai-grid { grid-template-columns: 1fr; }
  .l-ai-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .l-faq-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .l-foot-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .l-hero-bottom { flex-direction: column; gap: 1rem; padding-bottom: calc(var(--radius-2xl) + 4.2rem); }
  .l-features-grid,
  .l-ai-inner,
  .l-faq-inner { padding-top: 4.5rem; padding-bottom: 5rem; }
  .l-ai-phones { flex-direction: column; align-items: center; }
  .l-phone-back { transform: rotate(3deg) scale(0.95); margin-top: -1rem; }
  .l-break { min-height: 78svh; }
  .l-break-content { align-items: flex-start; text-align: left; padding-bottom: 9rem; }
  .l-break-caption { bottom: 2.2rem; }
  .l-float-tag { display: none; }
  .l-foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .l-foot-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .l-nav-pill { gap: 1.1rem; padding: 0.75rem 1rem; }
  .l-card { padding: 1.3rem; }
  .l-foot-cols { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .l-loader { display: none; }
  [data-reveal],
  .l-enter {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }
  .l-h1 .l-w { opacity: 1; filter: none; transform: none; animation: none; }
  .l-mock > *,
  .l-phone-chat .l-msg { opacity: 1; transform: none; transition: none; }
  .l-mock .l-mock-row i::after,
  .l-mock .l-bar i { width: var(--w, 50%); transition: none; }
  .l-marquee-track,
  .l-float-tag,
  .l-hero-scroll span,
  .l-phone-wave i,
  .l-step.is-live i { animation: none; }
  html { scroll-behavior: auto; }
}
