/* ==========================================================================
   ZyJobs Landing — DARK BRUTALIST & CYBER-TECH
   Pitch-black canvas · acid-green/neon-cyan accents · razor-sharp geometry
   Zero border-radius. Zero shadows. Industrial grid lines. Kinetic type.
   ========================================================================== */

:root {
  --ld-bg: #050505;
  --ld-bg-2: #0f0f0f;
  --ld-line: #222222;
  --ld-line-soft: #1a1a1a;
  --ld-acid: #d4ff00;
  --ld-cyan: #00f0ff;
  --ld-ink: #0a0a0a;
  --ld-txt: #e0e0e0;
  --ld-mut: #8a8a8a;
  --ld-dim: #555555;

  --ld-font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --ld-font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
  --ld-font-mono: 'Space Mono', 'Courier New', monospace;

  --ld-nav-h: 68px;
  --ld-wrap: 1440px;
  --ld-gutter: clamp(20px, 4vw, 56px);
}

/* ── Global overrides (landing only) ───────────────────────────────────── */
html {
  scroll-behavior: auto !important;
}

body.zy-bg-grid {
  background-color: var(--ld-bg);
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 96px);
  color: var(--ld-txt);
  font-family: var(--ld-font-body);
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: var(--ld-acid);
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ld-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--ld-line);
  border: 2px solid var(--ld-bg);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ld-acid);
}

:focus-visible {
  outline: 2px solid var(--ld-acid);
  outline-offset: 3px;
}

/* Lenis base */
html.lenis,
html.lenis body {
  height: auto;
}

body.ld-menu-open {
  overflow: hidden;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ── Layout primitives ─────────────────────────────────────────────────── */
.ld-container {
  width: 100%;
  max-width: var(--ld-wrap);
  margin-inline: auto;
  padding-inline: var(--ld-gutter);
}

.ld-h2 {
  font-family: var(--ld-font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ld-txt);
}

.ld-lead {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: var(--ld-mut);
  max-width: 46ch;
}

.ld-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ld-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-txt);
  border: 1px solid var(--ld-line);
  background: var(--ld-bg-2);
  padding: 8px 14px;
  width: max-content;
}

.ld-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--ld-acid);
  flex-shrink: 0;
  animation: ld-blink 1.6s steps(2, start) infinite;
}

@keyframes ld-blink {
  to { visibility: hidden; }
}

.ld-text-acid { color: var(--ld-acid); }
.ld-text-cyan { color: var(--ld-cyan); }

.ld-text-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ld-txt);
}

@supports not (-webkit-text-stroke: 1px #000) {
  .ld-text-outline { color: var(--ld-txt); }
}

/* ── Buttons — hard rectangles, fill-sweep hover ───────────────────────── */
.ld-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--ld-font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 30px;
  border: 1px solid var(--ld-line);
  background: transparent;
  color: var(--ld-txt);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.28s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.28s;
  cursor: pointer;
}

.ld-btn i {
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.ld-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ld-acid);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1);
}

.ld-btn:hover {
  color: var(--ld-ink);
  border-color: var(--ld-acid);
}

.ld-btn:hover::before {
  transform: scaleX(1);
}

.ld-btn:hover i {
  transform: translate(4px, -4px);
}

.ld-btn-acid {
  background: var(--ld-acid);
  border-color: var(--ld-acid);
  color: var(--ld-ink);
}

.ld-btn-acid::before {
  background: var(--ld-cyan);
}

.ld-btn-acid:hover {
  border-color: var(--ld-cyan);
}

.ld-btn-ghost::before {
  background: var(--ld-txt);
}

.ld-btn-ghost:hover {
  color: var(--ld-ink);
  border-color: var(--ld-txt);
}

.ld-btn-lg { padding: 20px 36px; font-size: 0.82rem; }
.ld-btn-xl { padding: 24px 48px; font-size: 0.9rem; }
.ld-btn-xs { padding: 10px 16px; font-size: 0.68rem; gap: 8px; }

/* ── Navbar ────────────────────────────────────────────────────────────── */
.ld-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--ld-nav-h);
  background: rgba(5, 5, 5, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ld-line);
}

.ld-nav-inner {
  max-width: var(--ld-wrap);
  margin-inline: auto;
  padding-inline: var(--ld-gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}

.ld-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ld-txt);
}

.ld-brand-mark {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ld-brand-mark-line {
  display: block;
  width: 18px;
  height: 3px;
  background: var(--ld-acid);
}

.ld-brand-mark-line:nth-child(2) { width: 12px; }
.ld-brand-mark-line:nth-child(3) { width: 6px; }

.ld-brand-text {
  font-family: var(--ld-font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.ld-brand-slash {
  color: var(--ld-acid);
  font-style: normal;
}

.ld-nav-menu {
  display: flex;
  gap: clamp(18px, 2.6vw, 36px);
  margin-right: auto;
}

.ld-nav-link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--ld-font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-mut);
  text-decoration: none;
  padding: 8px 2px;
  position: relative;
  transition: color 0.25s;
}

.ld-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--ld-acid);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.ld-nav-link:hover {
  color: var(--ld-txt);
}

.ld-nav-link:hover::after {
  transform: scaleX(1);
}

.ld-nav-idx {
  font-size: 0.62rem;
  color: var(--ld-acid);
}

.ld-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ld-nav-login {
  font-family: var(--ld-font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-mut);
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: color 0.25s;
}

.ld-nav-login:hover {
  color: var(--ld-acid);
}

/* Language switcher */
.ld-lang {
  position: relative;
}

.ld-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ld-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ld-mut);
  background: transparent;
  border: 1px solid var(--ld-line);
  padding: 9px 12px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}

.ld-lang-btn:hover {
  color: var(--ld-acid);
  border-color: var(--ld-acid);
}

.ld-lang-btn i:last-child {
  font-size: 0.6rem;
  transition: transform 0.25s;
}

.ld-lang-btn:hover i:last-child {
  transform: rotate(180deg);
}

.ld-lang-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--ld-bg-2);
  border: 1px solid var(--ld-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s, transform 0.22s, visibility 0s 0.22s;
  z-index: 95;
}

.ld-lang-drop.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s, transform 0.22s;
}

.ld-lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  font-family: var(--ld-font-mono);
  font-size: 0.74rem;
  color: var(--ld-mut);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ld-lang-option i {
  opacity: 0;
}

.ld-lang-option:hover,
.ld-lang-option.active {
  background: var(--ld-acid);
  color: var(--ld-ink);
}

.ld-lang-option.active i {
  opacity: 1;
}

/* Hamburger */
.ld-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--ld-line);
  cursor: pointer;
  transition: border-color 0.25s;
}

.ld-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ld-txt);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.ld-burger:hover {
  border-color: var(--ld-acid);
}

.ld-burger.is-open span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.ld-burger.is-open span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Mobile overlay menu */
.ld-nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ld-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--ld-nav-h) + 32px) var(--ld-gutter) 40px;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.55s;
}

.ld-nav-mobile.open {
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.ld-nav-mobile-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 96px);
}

.ld-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.ld-nav-mobile-links a {
  font-family: var(--ld-font-display);
  font-size: clamp(2.6rem, 11vw, 4.4rem);
  line-height: 1.06;
  text-transform: uppercase;
  color: var(--ld-txt);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ld-line);
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), color 0.2s;
}

.ld-nav-mobile-links a .ld-nav-idx {
  font-family: var(--ld-font-mono);
  font-size: 0.8rem;
}

.ld-nav-mobile.open .ld-nav-mobile-links a {
  opacity: 1;
  transform: translateX(0);
}

.ld-nav-mobile.open .ld-nav-mobile-links a:nth-child(1) { transition-delay: 0.12s; }
.ld-nav-mobile.open .ld-nav-mobile-links a:nth-child(2) { transition-delay: 0.18s; }
.ld-nav-mobile.open .ld-nav-mobile-links a:nth-child(3) { transition-delay: 0.24s; }
.ld-nav-mobile.open .ld-nav-mobile-links a:nth-child(4) { transition-delay: 0.3s; }

.ld-nav-mobile-links a:hover {
  color: var(--ld-acid);
}

.ld-nav-mobile-cta {
  border-bottom: none !important;
}

.ld-nav-mobile-foot {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}

.ld-nav-mobile-foot p {
  font-family: var(--ld-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ld-dim);
}

.ld-nav-mobile-langs {
  display: flex;
  gap: 10px;
  font-family: var(--ld-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ld-dim);
}

.ld-nav-mobile-langs a {
  color: var(--ld-mut);
  text-decoration: none;
  transition: color 0.2s;
}

.ld-nav-mobile-langs a:hover,
.ld-nav-mobile-langs a.active {
  color: var(--ld-acid);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.ld-hero {
  position: relative;
  padding-top: calc(var(--ld-nav-h) + clamp(28px, 5vh, 64px));
  padding-bottom: clamp(40px, 6vh, 80px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ld-hero-gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 96px);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}

.ld-hero-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 4vh, 44px);
}

.ld-hero-title {
  font-family: var(--ld-font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9.6vw, 8.6rem);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: clamp(28px, 4.5vh, 56px);
  will-change: transform;
}

.ld-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.ld-line-inner {
  display: inline-block;
  will-change: transform;
}

.ld-hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.ld-hero-sub {
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  color: var(--ld-mut);
  max-width: 52ch;
  margin-bottom: clamp(24px, 3.5vh, 40px);
}

.ld-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero system panel */
.ld-hero-panel {
  position: relative;
  background: var(--ld-bg-2);
  border: 1px solid var(--ld-line);
  overflow: hidden;
  margin-top: clamp(0px, 3vh, 40px);
}

.ld-panel-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ld-line);
}

.ld-panel-dots {
  display: flex;
  gap: 5px;
}

.ld-panel-dots i {
  width: 7px;
  height: 7px;
  background: var(--ld-dim);
}

.ld-panel-dots i:nth-child(2) { background: var(--ld-cyan); }
.ld-panel-dots i:nth-child(3) { background: var(--ld-acid); }

.ld-panel-name {
  font-family: var(--ld-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--ld-mut);
}

.ld-panel-ver {
  margin-left: auto;
  font-family: var(--ld-font-mono);
  font-size: 0.62rem;
  color: var(--ld-acid);
  border: 1px solid var(--ld-line);
  padding: 3px 7px;
}

.ld-panel-body {
  padding: clamp(20px, 2.6vw, 34px) clamp(18px, 2.2vw, 30px);
}

.ld-panel-score {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.ld-panel-score-num {
  font-family: var(--ld-font-display);
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  line-height: 0.9;
  color: var(--ld-acid);
}

.ld-panel-score-num span {
  font-size: 0.45em;
  color: var(--ld-txt);
}

.ld-panel-score-label {
  font-family: var(--ld-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--ld-dim);
  text-align: right;
  padding-bottom: 8px;
}

.ld-panel-role {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px dashed var(--ld-line);
  border-bottom: 1px dashed var(--ld-line);
  padding: 12px 0;
  margin-bottom: 22px;
  font-family: var(--ld-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.ld-panel-role-key {
  color: var(--ld-dim);
  flex-shrink: 0;
}

.ld-panel-role-val {
  color: var(--ld-cyan);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.ld-panel-role-caret {
  width: 7px;
  height: 12px;
  background: var(--ld-acid);
  flex-shrink: 0;
  animation: ld-blink 1s steps(2, start) infinite;
}

.ld-panel-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 110px;
  margin-bottom: 22px;
}

.ld-panel-bar {
  flex: 1;
  height: var(--h);
  background: var(--ld-line);
  transform-origin: bottom;
  transition: background 0.3s;
}

.ld-panel-bar--acid { background: var(--ld-acid); }
.ld-panel-bar--cyan { background: var(--ld-cyan); }

.ld-hero-panel:hover .ld-panel-bar {
  background: var(--ld-dim);
}

.ld-hero-panel:hover .ld-panel-bar--acid { background: var(--ld-acid); }
.ld-hero-panel:hover .ld-panel-bar--cyan { background: var(--ld-cyan); }

.ld-panel-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ld-panel-skills span {
  font-family: var(--ld-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ld-txt);
  border: 1px solid var(--ld-line);
  padding: 6px 10px;
  transition: border-color 0.25s, color 0.25s, background 0.25s, opacity 0.16s ease, transform 0.16s ease;
}

.ld-panel-skills span.is-swap {
  opacity: 0;
  transform: translateY(-6px);
}

.ld-hero-panel:hover .ld-panel-skills span:nth-child(odd) {
  border-color: var(--ld-acid);
  color: var(--ld-acid);
}

.ld-hero-panel:hover .ld-panel-skills span:nth-child(even) {
  border-color: var(--ld-cyan);
  color: var(--ld-cyan);
}

.ld-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-top: 1px solid var(--ld-line);
}

.ld-barcode {
  width: clamp(90px, 12vw, 150px);
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    var(--ld-txt) 0 2px,
    transparent 2px 5px,
    var(--ld-txt) 5px 7px,
    transparent 7px 11px,
    var(--ld-txt) 11px 12px,
    transparent 12px 16px
  );
}

.ld-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ld-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ld-acid);
}

.ld-panel-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ld-acid), transparent);
  opacity: 0.55;
  animation: ld-scan 5s linear infinite;
  pointer-events: none;
}

@keyframes ld-scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(480px); }
}

/* Hero stats */
.ld-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ld-line);
  margin-top: clamp(36px, 6vh, 72px);
}

.ld-hero-stat {
  padding: 20px 0 0 clamp(0px, 1vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ld-hero-stat + .ld-hero-stat {
  border-left: 1px solid var(--ld-line);
  padding-left: clamp(20px, 2.4vw, 36px);
}

.ld-hero-stat-value {
  font-family: var(--ld-font-display);
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1;
  color: var(--ld-txt);
}

.ld-hero-stat-label {
  font-family: var(--ld-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ld-dim);
}

/* Side vertical label */
.ld-hero-side {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-family: var(--ld-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  color: var(--ld-dim);
  text-transform: uppercase;
}

.ld-hero-side i {
  display: block;
  width: 1px;
  height: 70px;
  background: var(--ld-line);
}

/* Crosshair deco */
.ld-cross {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  opacity: 0.5;
}

.ld-cross::before,
.ld-cross::after {
  content: '';
  position: absolute;
  background: var(--ld-line);
}

.ld-cross::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.ld-cross::after {
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-50%);
}

.ld-cross--tl { top: calc(var(--ld-nav-h) + 26px); left: 20px; }
.ld-cross--br { bottom: 26px; right: 52px; }

/* Floating stickers */
.ld-sticker {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-family: var(--ld-font-mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ld-sticker--1 {
  top: 24%;
  right: clamp(90px, 7vw, 140px);
  background: var(--ld-acid);
  color: var(--ld-ink);
  transform: rotate(-3deg);
}

.ld-sticker--1 .ld-sticker-label {
  font-size: 0.6rem;
  border: 1px solid currentColor;
  padding: 3px 6px;
}

.ld-sticker--1 .ld-sticker-value {
  font-family: var(--ld-font-display);
  font-size: 1.5rem;
}

.ld-sticker--2 {
  bottom: 20%;
  right: clamp(50px, 5.5vw, 110px);
  border: 1px solid var(--ld-cyan);
  color: var(--ld-cyan);
  background: var(--ld-bg);
  transform: rotate(3deg);
  font-size: 0.68rem;
}

/* ── Marquee ───────────────────────────────────────────────────────────── */
.ld-marquee {
  position: relative;
  background: var(--ld-acid);
  color: var(--ld-ink);
  border-top: 1px solid var(--ld-acid);
  border-bottom: 1px solid var(--ld-acid);
  transform: rotate(-1.2deg) scale(1.02);
  overflow: hidden;
  padding: 14px 0;
  z-index: 6;
  will-change: transform;
}

.ld-marquee-track {
  display: flex;
  width: max-content;
  animation: ld-marquee 26s linear infinite;
}

.ld-marquee-track--rev {
  animation-direction: reverse;
  animation-duration: 30s;
}

.ld-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ld-marquee-group span {
  font-family: var(--ld-font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: 0.04em;
  padding: 0 18px;
  white-space: nowrap;
}

.ld-marquee-group i {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--ld-ink);
  transform: rotate(45deg);
  flex-shrink: 0;
}

@keyframes ld-marquee {
  to { transform: translateX(-50%); }
}

.ld-marquee--outline {
  background: transparent;
  border-color: var(--ld-line);
  transform: rotate(1.4deg) scale(1.02);
  margin: 40px 0;
}

.ld-marquee--outline .ld-marquee-group span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ld-line-soft);
}

.ld-marquee--outline .ld-marquee-group i {
  background: var(--ld-line);
}

@supports not (-webkit-text-stroke: 1px #000) {
  .ld-marquee--outline .ld-marquee-group span { color: var(--ld-dim); }
}

/* ── Features — pinned scrollytelling ──────────────────────────────────── */
.ld-features {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid var(--ld-line);
}

.ld-features-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}

.ld-features-left {
  position: relative;
  padding-right: clamp(20px, 3vw, 48px);
}

.ld-features-left .ld-h2 {
  margin: 26px 0 22px;
  will-change: transform;
}

.ld-features-counter {
  display: flex;
  align-items: flex-start;
  margin-top: 48px;
  font-family: var(--ld-font-display);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--ld-txt);
}

.ld-features-counter-total {
  font-size: 1.4rem;
  color: var(--ld-dim);
  padding-top: 10px;
  padding-left: 6px;
}

.ld-features-progress {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ld-line-soft);
  transform-origin: top;
}

.ld-features-progress-fill {
  width: 100%;
  height: 100%;
  background: var(--ld-acid);
  transform: scaleY(0);
  transform-origin: top;
}

.ld-features-right {
  position: relative;
  display: flex;
  flex-direction: column;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.ld-feature-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 2.6vw, 34px);
  padding: clamp(30px, 4.6vh, 48px) 0;
  border-top: 1px solid var(--ld-line);
  align-items: start;
  will-change: transform, opacity;
}

.ld-feature-row:last-child {
  border-bottom: 1px solid var(--ld-line);
}

.ld-feature-num {
  font-family: var(--ld-font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--ld-dim);
  line-height: 1;
  transition: color 0.3s, -webkit-text-stroke-color 0.3s;
}

@supports not (-webkit-text-stroke: 1px #000) {
  .ld-feature-num { color: var(--ld-dim); }
}

.ld-feature-row:hover .ld-feature-num {
  color: var(--ld-acid);
  -webkit-text-stroke-color: var(--ld-acid);
}

.ld-feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ld-line);
  color: var(--ld-acid);
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.ld-feature-row:hover .ld-feature-icon {
  background: var(--ld-acid);
  border-color: var(--ld-acid);
  color: var(--ld-ink);
}

.ld-feature-body h3 {
  font-family: var(--ld-font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ld-txt);
}

.ld-feature-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ld-mut);
  max-width: 56ch;
}

.ld-feature-spec {
  writing-mode: vertical-rl;
  font-family: var(--ld-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--ld-dim);
  white-space: nowrap;
  padding-top: 6px;
  transform: rotate(180deg);
}

/* ── Pricing — ledger table ────────────────────────────────────────────── */
.ld-pricing {
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid var(--ld-line);
}

.ld-section-head {
  margin-bottom: clamp(44px, 7vh, 80px);
}

.ld-section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-top: 26px;
}

.ld-section-head-row .ld-h2 {
  margin: 0;
}

.ld-price-table {
  border-top: 1px solid var(--ld-line);
}

.ld-price-head,
.ld-price-row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.8fr) minmax(0, 2.6fr) minmax(0, 1.2fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
}

.ld-price-head {
  padding: 14px 0;
  font-family: var(--ld-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ld-dim);
}

.ld-price-row {
  position: relative;
  border-top: 1px solid var(--ld-line);
  padding: clamp(26px, 4vh, 42px) 0;
  text-decoration: none;
  color: var(--ld-txt);
  transition: background 0.3s cubic-bezier(0.65, 0, 0.35, 1), padding-left 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  isolation: isolate;
}

.ld-price-row::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ld-acid);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1);
}

.ld-price-row:hover {
  color: var(--ld-ink);
  padding-left: 26px;
}

.ld-price-row:hover::before {
  transform: scaleY(1);
}

.ld-price-row:last-child {
  border-bottom: 1px solid var(--ld-line);
}

.ld-price-row.is-featured {
  border-left: 3px solid var(--ld-acid);
  background: rgba(212, 255, 0, 0.03);
}

.ld-price-row.is-featured::before {
  background: var(--ld-acid);
}

.ld-price-popular {
  position: absolute;
  top: -1px;
  right: 0;
  background: var(--ld-acid);
  color: var(--ld-ink);
  font-family: var(--ld-font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  transform: rotate(2deg);
  transition: background 0.3s, color 0.3s;
}

.ld-price-row:hover .ld-price-popular {
  background: var(--ld-ink);
  color: var(--ld-acid);
}

.ld-price-name h3 {
  font-family: var(--ld-font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.ld-price-name p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ld-mut);
  max-width: 34ch;
  transition: color 0.3s;
}

.ld-price-row:hover .ld-price-name p {
  color: rgba(10, 10, 10, 0.65);
}

.ld-price-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.ld-price-cur {
  font-family: var(--ld-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--ld-mut);
  transition: color 0.3s;
}

.ld-price-row:hover .ld-price-cur {
  color: rgba(10, 10, 10, 0.65);
}

.ld-price-num {
  font-family: var(--ld-font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  line-height: 1;
}

.ld-price-per {
  font-family: var(--ld-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--ld-dim);
  transition: color 0.3s;
}

.ld-price-row:hover .ld-price-per {
  color: rgba(10, 10, 10, 0.55);
}

.ld-price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ld-price-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ld-txt);
}

.ld-price-feats li i {
  color: var(--ld-acid);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: color 0.3s;
}

.ld-price-row:hover .ld-price-feats li i {
  color: var(--ld-ink);
}

.ld-price-row:hover .ld-price-feats li {
  color: rgba(10, 10, 10, 0.82);
}

.ld-price-feats li.off {
  color: var(--ld-dim);
  text-decoration: line-through;
}

.ld-price-row:hover .ld-price-feats li.off {
  color: rgba(10, 10, 10, 0.45);
}

.ld-price-feats li.off i {
  color: var(--ld-dim);
}

.ld-price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: var(--ld-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-acid);
  transition: color 0.3s;
}

.ld-price-row:hover .ld-price-cta {
  color: var(--ld-ink);
}

.ld-price-cta i {
  font-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.ld-price-row:hover .ld-price-cta i {
  transform: translate(6px, -6px);
}

/* ── CTA ───────────────────────────────────────────────────────────────── */
.ld-cta {
  position: relative;
  padding: clamp(90px, 14vh, 170px) 0;
  border-top: 1px solid var(--ld-line);
  overflow: hidden;
}

.ld-cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ld-cta-bgword {
  position: absolute;
  right: -2%;
  bottom: -14%;
  font-family: var(--ld-font-display);
  font-size: clamp(12rem, 30vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.ld-cta-title {
  font-family: var(--ld-font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8.4vw, 7.4rem);
  line-height: 0.96;
  text-transform: uppercase;
  margin: 30px 0 clamp(28px, 4vh, 48px);
  position: relative;
  z-index: 1;
  will-change: transform;
}

.ld-cta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.ld-cta-sub {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  color: var(--ld-mut);
  max-width: 46ch;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.ld-footer {
  border-top: 1px solid var(--ld-line);
  background: var(--ld-bg-2);
  padding: clamp(48px, 8vh, 88px) 0 0;
}

.ld-footer-mid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: clamp(40px, 7vh, 72px);
}

.ld-footer-wordmark {
  font-family: var(--ld-font-display);
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 2px var(--ld-txt);
  transition: color 0.35s, -webkit-text-stroke-color 0.35s;
  white-space: nowrap;
}

.ld-footer-wordmark span {
  -webkit-text-stroke-color: var(--ld-acid);
}

.ld-footer-wordmark:hover {
  color: var(--ld-acid);
  -webkit-text-stroke-color: var(--ld-acid);
}

@supports not (-webkit-text-stroke: 1px #000) {
  .ld-footer-wordmark { color: var(--ld-txt); }
  .ld-footer-wordmark span { color: var(--ld-acid); }
}

.ld-footer-cols {
  display: flex;
  gap: clamp(36px, 6vw, 96px);
  padding-bottom: 10px;
}

.ld-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ld-footer-col h4 {
  font-family: var(--ld-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ld-dim);
  margin-bottom: 6px;
}

.ld-footer-col a {
  font-family: var(--ld-font-mono);
  font-size: 0.78rem;
  color: var(--ld-mut);
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: color 0.22s, transform 0.22s;
  width: max-content;
}

.ld-footer-col a:hover {
  color: var(--ld-acid);
  transform: translateX(4px);
}

.ld-footer-contact {
  border-top: 1px solid var(--ld-line);
  padding: clamp(36px, 6vh, 60px) 0;
}

.ld-footer-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.ld-contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--ld-line);
  background: transparent;
  color: var(--ld-txt);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.28s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.28s;
}

.ld-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ld-acid);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1);
}

.ld-contact-btn:hover {
  color: var(--ld-ink);
  border-color: var(--ld-acid);
}

.ld-contact-btn:hover::before {
  transform: scaleX(1);
}

.ld-contact-btn > i:first-child {
  font-size: 1.9rem;
  color: var(--ld-acid);
  flex-shrink: 0;
  transition: color 0.28s;
}

.ld-contact-btn--wa > i:first-child {
  color: var(--ld-cyan);
}

.ld-contact-btn:hover > i:first-child {
  color: var(--ld-ink);
}

.ld-contact-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ld-contact-key {
  font-family: var(--ld-font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ld-dim);
  transition: color 0.28s;
}

.ld-contact-btn:hover .ld-contact-key {
  color: rgba(10, 10, 10, 0.55);
}

.ld-contact-val {
  font-family: var(--ld-font-mono);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  word-break: break-all;
}

.ld-contact-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.ld-contact-btn:hover .ld-contact-arrow {
  transform: translate(6px, -6px);
}

.ld-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  border-top: 1px solid var(--ld-line);
  padding: 18px 0 26px;
  font-family: var(--ld-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--ld-dim);
  text-transform: uppercase;
}

.ld-footer-tag {
  color: var(--ld-mut);
}

.ld-footer-sys {
  color: var(--ld-acid);
}

/* ── Custom cursor ─────────────────────────────────────────────────────── */
html.ld-cursor,
html.ld-cursor * {
  cursor: none !important;
}

.ld-cursor-dot,
.ld-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

.ld-cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--ld-acid);
}

.ld-cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(224, 224, 224, 0.85);
  mix-blend-mode: difference;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1), height 0.3s cubic-bezier(0.65, 0, 0.35, 1), background-color 0.3s, border-color 0.3s, mix-blend-mode 0.3s;
}

.ld-cursor-ring.is-hover {
  width: 74px;
  height: 74px;
}

.ld-cursor-ring.is-label {
  width: 92px;
  height: 92px;
  background: var(--ld-acid);
  border-color: var(--ld-acid);
  mix-blend-mode: normal;
}

.ld-cursor-label {
  font-family: var(--ld-font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ld-ink);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.ld-cursor-ring.is-label .ld-cursor-label {
  opacity: 1;
}

.ld-cursor-dot.is-hidden,
.ld-cursor-ring.is-hidden {
  opacity: 0;
}

/* ── Reveal utility (JS-gated) ─────────────────────────────────────────── */
[data-reveal] {
  will-change: transform, opacity;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .ld-hero-side {
    display: none;
  }

  .ld-sticker--1 { right: 60px; }
  .ld-sticker--2 { right: 24px; }
}

@media (max-width: 1024px) {
  .ld-hero-lower {
    grid-template-columns: 1fr;
  }

  .ld-hero-panel {
    max-width: 640px;
  }

  .ld-price-head,
  .ld-price-row {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr) minmax(0, 1fr);
  }

  .ld-price-head span:last-child,
  .ld-price-feats {
    display: none;
  }
}

@media (max-width: 900px) {
  .ld-features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ld-features-progress {
    display: none;
  }

  .ld-features-counter {
    display: none;
  }

  .ld-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --ld-nav-h: 60px;
  }

  .ld-cursor-dot,
  .ld-cursor-ring {
    display: none;
  }

  /* ── Navbar mobile: hide desktop elements, show burger ──────────────── */
  .ld-nav-menu,
  .ld-nav-login,
  .ld-nav-actions .ld-btn {
    display: none;
  }

  /* Language switcher: compact mode — hide label, show only globe icon */
  .ld-lang-btn span,
  .ld-lang-btn i:last-child {
    display: none;
  }
  .ld-lang-btn {
    padding: 9px 10px;
    border-color: transparent;
  }
  .ld-lang-btn i:first-child {
    font-size: 1.1rem;
  }

  .ld-burger {
    display: flex;
  }

  /* ── Mobile overlay menu: prevent overflow & improve readability ────── */
  .ld-nav-mobile {
    padding: calc(var(--ld-nav-h) + 24px) 24px 32px;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ld-nav-mobile-links {
    gap: 4px;
  }

  .ld-nav-mobile-links a {
    font-size: clamp(2rem, 8vw, 3.2rem);
    gap: 12px;
    padding: 8px 0;
  }

  .ld-nav-mobile-links a .ld-nav-idx {
    font-size: 0.7rem;
  }

  .ld-nav-mobile-foot {
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ld-nav-mobile-foot p {
    font-size: 0.64rem;
  }

  /* ── Hero ───────────────────────────────────────────────────────────── */
  .ld-hero-title {
    font-size: clamp(2.9rem, 13.5vw, 5rem);
    line-height: 0.96;
  }

  .ld-hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .ld-hero-stat {
    padding: 16px 10px 0 0;
  }

  .ld-hero-stat + .ld-hero-stat {
    padding-left: 16px;
  }

  .ld-hero-stat-value {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .ld-hero-stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .ld-sticker {
    display: none;
  }

  /* ── Features ───────────────────────────────────────────────────────── */
  .ld-feature-row {
    grid-template-columns: auto 1fr;
  }

  .ld-feature-spec {
    display: none;
  }

  /* ── Pricing table: stacked cards ───────────────────────────────────── */
  .ld-price-head {
    display: none;
  }

  .ld-price-head,
  .ld-price-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ld-price-feats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .ld-price-feats li {
    font-size: 0.72rem;
  }

  .ld-price-row:hover {
    padding-left: 0;
  }

  .ld-price-cta {
    justify-content: flex-start;
    border-top: 1px dashed var(--ld-line);
    padding-top: 14px;
  }

  .ld-price-row:hover .ld-price-cta {
    border-top-color: var(--ld-ink);
  }

  /* ── Footer ─────────────────────────────────────────────────────────── */
  .ld-footer-mid {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .ld-footer-cols {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .ld-footer-col h4 {
    font-size: 0.7rem;
  }

  .ld-footer-col a {
    font-size: 0.78rem;
  }

  .ld-footer-contact-row {
    grid-template-columns: 1fr;
  }

  .ld-contact-btn {
    padding: 16px;
  }

  .ld-contact-val {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .ld-hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ld-hero-stat + .ld-hero-stat {
    border-left: none;
    border-top: 1px solid var(--ld-line);
    padding-left: 0;
    margin-top: 14px;
    padding-top: 14px;
  }

  .ld-btn-lg {
    width: 100%;
  }

  .ld-marquee-group span {
    padding: 0 12px;
  }

  .ld-section-head-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .ld-feature-body h3 {
    font-size: 1.5rem;
  }

  .ld-price-num {
    font-size: 2.1rem;
  }
}

/* ── Reduced motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ld-marquee-track {
    animation: none;
  }

  .ld-panel-scan {
    animation: none;
  }

  .ld-panel-role-caret {
    animation: none;
  }

  .ld-tag-dot {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
