/* =============================================================
   Loomkindle — Site CSS
   Prefix: lk-  |  Indent: 2-space  |  Build: web0519
   ============================================================= */

/* --- HORIZONTAL OVERFLOW GUARD (MANDATORY) --- */
html, body { overflow-x: hidden; }

/* --- CSS VARIABLES --- */
:root {
  --lk-accent:       #06b6d4;
  --lk-accent-rgb:   6, 182, 212;
  --lk-secondary:    #8b5cf6;
  --lk-bg:           #0a0f1e;
  --lk-bg-alt:       #111827;
  --lk-bg-card:      #131d2e;
  --lk-bg-surface:   #1a2436;
  --lk-text:         #e2e8f0;
  --lk-text-muted:   #94a3b8;
  --lk-text-dim:     #64748b;
  --lk-border:       rgba(255,255,255,0.08);
  --lk-font-sans:    'Manrope', system-ui, sans-serif;
  --lk-font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --lk-radius:       10px;
  --lk-container:    1200px;
}

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

body {
  font-family: var(--lk-font-sans);
  background: var(--lk-bg);
  color: var(--lk-text-muted);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--lk-font-sans);
  letter-spacing: -0.025em;
  color: var(--lk-text);
}

a { color: var(--lk-accent); text-decoration: none; }
a:hover { opacity: 0.85; }

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

code, pre { font-family: var(--lk-font-mono); }

.container {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.lk-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s, opacity 0.2s;
  border: none;
}

.lk-btn--primary {
  background: var(--lk-accent);
  color: #ffffff;
}
.lk-btn--primary:hover { filter: brightness(1.12); color: #ffffff; opacity: 1; }

.lk-btn--ghost {
  background: transparent;
  color: var(--lk-text);
  border: 1px solid rgba(255,255,255,0.2);
}
.lk-btn--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  opacity: 1;
}

.lk-btn--sm { padding: 8px 16px; font-size: 14px; }
.lk-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--lk-text);
}
.lk-btn--outline:hover { border-color: var(--lk-accent); color: var(--lk-accent); opacity: 1; }

/* --- SECTION SHARED LABEL/TITLE --- */
.lk-section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: var(--lk-container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.lk-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lk-accent);
  margin-bottom: 12px;
}
.lk-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--lk-text);
  margin: 0 0 16px;
  line-height: 1.15;
}
.lk-section-desc {
  font-size: 17px;
  color: var(--lk-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================================
   NAV — lk-nav (reveal-on-scroll)
   ============================================================= */

.lk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.lk-nav--reveal-on-scroll {
  transform: translateY(-100%);
}

.lk-nav--reveal-on-scroll.lk-nav--visible {
  transform: translateY(0);
}

.lk-nav--reveal-on-scroll.lk-nav--scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* On index.html, nav starts visible (hero is full dark) */
.lk-nav--always-visible {
  transform: translateY(0) !important;
}

.lk-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.lk-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lk-nav__logo-img {
  height: 28px;
  width: auto;
  display: none;
}
.lk-nav__logo-img--dark  { display: inline; }
.lk-nav__logo-img--light { display: none; }

.lk-nav__logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.03em;
}

.lk-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lk-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(241,245,249,0.75);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.lk-nav__link:hover { color: #f1f5f9; background: rgba(255,255,255,0.06); opacity: 1; }
.lk-nav__link--active { color: #f1f5f9; }

.lk-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lk-nav__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 7px;
  transition: filter 0.2s;
}

.lk-nav__cta--button {
  background: var(--lk-accent);
  color: #ffffff !important;
  padding: 8px 18px;
}
.lk-nav__cta--button:hover { filter: brightness(1.12); opacity: 1; }

.lk-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.lk-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f1f5f9;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .lk-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(12px);
    padding: 12px 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 2px;
  }
  .lk-nav__links.lk-nav--open {
    display: flex;
  }
  .lk-nav__toggle {
    display: flex;
  }
  .lk-nav__actions {
    display: none;
  }
}

/* =============================================================
   HERO — lk-hero  (F-dark-centered-typographic)
   ============================================================= */

.lk-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #0a0f1e;
  color: #e5e7eb;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.lk-hero--dark-typographic {
  background: #0a0f1e;
}

/* Ambient glow layers */
.lk-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% -10%, rgba(6,182,212,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 50% 110%, rgba(139,92,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 20% 50%, rgba(6,182,212,0.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.lk-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.lk-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lk-accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 100px;
}

.lk-hero__title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 28px;
}

.lk-hero__lede {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: rgba(226,232,240,0.75);
  max-width: 620px;
  margin: 0 auto 44px;
}

.lk-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.lk-hero__cta {
  display: inline-block;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: filter 0.2s;
}
.lk-hero__cta--primary {
  background: var(--lk-accent);
  color: #0a0f1e;
}
.lk-hero__cta--primary:hover { filter: brightness(1.1); opacity: 1; }
.lk-hero__cta--ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(241,245,249,0.9);
  background: transparent;
}
.lk-hero__cta--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  opacity: 1;
}

@media (max-width: 768px) {
  .lk-hero { min-height: auto; padding: 100px 0 60px; }
  .lk-hero__title { font-size: 36px; }
  .lk-hero__lede { font-size: 16px; }
}

/* =============================================================
   STATS — lk-stats  (B-cards)
   ============================================================= */

.lk-stats {
  background: var(--lk-bg-alt);
  padding: 72px 0;
}

.lk-stats__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lk-stats__item {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius);
  padding: 32px 24px;
  text-align: center;
}

.lk-stats__number {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--lk-accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  font-family: var(--lk-font-mono);
}

.lk-stats__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lk-text);
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .lk-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lk-stats__number { font-size: 30px; }
}

/* =============================================================
   FEATURES — lk-features  (C-alternating, image-per-card)
   ============================================================= */

.lk-features {
  padding: 96px 0;
  background: var(--lk-bg);
}

.lk-features__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-features__header {
  text-align: center;
  margin-bottom: 72px;
}

.lk-features__grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.lk-features__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lk-features__card:nth-child(even) .lk-features__icon {
  order: 2;
}
.lk-features__card:nth-child(even) .lk-features__body {
  order: 1;
}

.lk-features__body {
  min-width: 0;
}

.lk-features__icon {
  min-width: 0;
}

.lk-features__icon img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.lk-features__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--lk-text);
  margin: 0 0 14px;
  line-height: 1.2;
}

.lk-features__body-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--lk-text-muted);
}

.lk-features__one-liner {
  font-size: 15px;
  font-weight: 600;
  color: var(--lk-accent);
  margin-bottom: 14px;
  display: block;
}

@media (max-width: 768px) {
  .lk-features__card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lk-features__card:nth-child(even) .lk-features__icon { order: unset; }
  .lk-features__card:nth-child(even) .lk-features__body { order: unset; }
}

/* =============================================================
   PROCESS — lk-process  (A-numbered, used in how-it-works)
   ============================================================= */

.lk-process {
  padding: 96px 0;
  background: var(--lk-bg-alt);
}

.lk-process__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-process__header {
  text-align: center;
  margin-bottom: 64px;
}

.lk-process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lk-process__step {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius);
  padding: 36px 28px;
  position: relative;
}

.lk-process__step-num {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: var(--lk-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 18px;
  font-family: var(--lk-font-mono);
}

.lk-process__step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lk-text);
  margin: 0 0 12px;
}

.lk-process__step-body {
  font-size: 15px;
  color: var(--lk-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .lk-process__list { grid-template-columns: 1fr; }
}

/* =============================================================
   INTEGRATIONS — lk-integrations
   ============================================================= */

.lk-integrations {
  padding: 80px 0;
  background: var(--lk-bg);
  text-align: center;
}

.lk-integrations__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-integrations__header {
  margin-bottom: 48px;
}

.lk-integrations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.lk-integrations__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lk-text-muted);
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.lk-integrations__badge:hover {
  color: var(--lk-accent);
  border-color: rgba(6,182,212,0.3);
}

/* =============================================================
   TESTIMONIALS — lk-testimonials  (A-quotes)
   ============================================================= */

.lk-testimonials {
  padding: 96px 0;
  background: var(--lk-bg-alt);
}

.lk-testimonials__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.lk-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lk-testimonials__card {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.lk-testimonials__quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--lk-text-muted);
  flex: 1;
  margin-bottom: 24px;
}

.lk-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lk-testimonials__author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lk-text);
}

@media (max-width: 768px) {
  .lk-testimonials__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   PRICING — lk-pricing
   ============================================================= */

.lk-pricing {
  padding: 96px 0;
  background: var(--lk-bg);
}

.lk-pricing__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.lk-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.lk-pricing__tier {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: 14px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lk-pricing__tier--highlighted {
  border-color: var(--lk-accent);
  box-shadow: 0 0 0 1px var(--lk-accent), 0 16px 48px rgba(6,182,212,0.15);
}

.lk-pricing__tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lk-accent);
  color: #0a0f1e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.lk-pricing__tier-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--lk-text);
  margin: 0 0 8px;
}

.lk-pricing__tier-price {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin: 8px 0 4px;
  font-family: var(--lk-font-mono);
}

.lk-pricing__tier-price sup {
  font-size: 22px;
  vertical-align: top;
  margin-top: 8px;
}

.lk-pricing__tier-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--lk-text-muted);
}

.lk-pricing__tier-desc {
  font-size: 14px;
  color: var(--lk-text-muted);
  line-height: 1.55;
  margin: 12px 0 28px;
}

.lk-pricing__tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.lk-pricing__tier-features li {
  font-size: 14px;
  color: var(--lk-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-pricing__tier-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2306b6d4' d='M7 11.5L3.5 8 4.56 6.94 7 9.38l6.44-6.44L14.5 4z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.lk-pricing__tier-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: filter 0.2s;
  margin-top: auto;
}

.lk-pricing__tier--highlighted .lk-pricing__tier-cta {
  background: var(--lk-accent);
  color: #0a0f1e;
}
.lk-pricing__tier--highlighted .lk-pricing__tier-cta:hover { filter: brightness(1.1); opacity: 1; }

.lk-pricing__tier:not(.lk-pricing__tier--highlighted) .lk-pricing__tier-cta {
  background: var(--lk-bg-surface);
  color: var(--lk-text);
  border: 1px solid var(--lk-border);
}
.lk-pricing__tier:not(.lk-pricing__tier--highlighted) .lk-pricing__tier-cta:hover {
  border-color: var(--lk-accent);
  color: var(--lk-accent);
  opacity: 1;
}

@media (max-width: 992px) {
  .lk-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =============================================================
   CTA BANNER — lk-cta  (A-banner)
   ============================================================= */

.lk-cta {
  background: var(--lk-accent);
  padding: 80px 0;
  text-align: center;
}

.lk-cta__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-cta__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #0a0f1e;
  margin: 0 0 16px;
  line-height: 1.15;
}

.lk-cta__body {
  font-size: 18px;
  color: rgba(10,15,30,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.lk-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.lk-cta__actions .lk-btn--white {
  background: #0a0f1e;
  color: #ffffff;
}
.lk-cta__actions .lk-btn--white:hover { filter: brightness(1.2); opacity: 1; }

.lk-cta__actions .lk-btn--outline-dark {
  background: transparent;
  border: 2px solid rgba(10,15,30,0.3);
  color: #0a0f1e;
}
.lk-cta__actions .lk-btn--outline-dark:hover {
  border-color: #0a0f1e;
  opacity: 1;
}

/* =============================================================
   FOOTER — lk-footer  (A-4col)
   ============================================================= */

.lk-footer {
  background: #070d1a;
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lk-footer__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.lk-footer__col--brand .lk-footer__tagline {
  font-size: 14px;
  color: var(--lk-text-dim);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 260px;
}

.lk-footer__col--brand .lk-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 4px;
}

.lk-footer__col--brand .lk-footer__logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.03em;
}

.lk-footer__col--brand .lk-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.lk-footer__col--brand .lk-footer__social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  color: var(--lk-text-dim);
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.lk-footer__col--brand .lk-footer__social-icon:hover {
  background: rgba(6,182,212,0.15);
  color: var(--lk-accent);
  opacity: 1;
}

.lk-footer__col {
  min-width: 0;
}

.lk-footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(241,245,249,0.6);
  margin: 0 0 18px;
}

.lk-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lk-footer__list-item {
  margin-bottom: 10px;
}

.lk-footer__list-item a {
  font-size: 14px;
  color: var(--lk-text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.lk-footer__list-item a:hover {
  color: var(--lk-text);
  opacity: 1;
}

.lk-contact-info p {
  font-size: 14px;
  color: var(--lk-text-dim);
  line-height: 1.6;
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lk-contact-info i {
  color: var(--lk-accent);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.lk-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lk-footer__copy {
  font-size: 13px;
  color: var(--lk-text-dim);
  margin: 0;
}

.lk-footer__legal-links {
  display: flex;
  gap: 20px;
}

.lk-footer__legal-links a {
  font-size: 13px;
  color: var(--lk-text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.lk-footer__legal-links a:hover {
  color: var(--lk-text);
  opacity: 1;
}

@media (max-width: 768px) {
  .lk-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .lk-footer__legal { flex-direction: column; text-align: center; }
  .lk-footer__legal-links { flex-wrap: wrap; justify-content: center; }
}

/* =============================================================
   COOKIE BANNER — lk-cookie  (C-bottom-full-bar)
   ============================================================= */

.lk-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: #f8fafc;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  padding: 14px 0;
}

.lk-cookie[hidden] { display: none !important; }

.lk-cookie__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lk-cookie__text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.lk-cookie__text a {
  color: #0a0f1e;
  text-decoration: underline;
}

.lk-cookie__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#essential-only {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#essential-only:hover { color: #111827; }

#accept-all {
  background: var(--lk-accent);
  color: #ffffff;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  transition: filter 0.2s;
}
#accept-all:hover { filter: brightness(1.1); }

@media (max-width: 768px) {
  .lk-cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .lk-cookie__buttons {
    justify-content: flex-end;
  }
}

/* =============================================================
   SUBPAGE HERO — lk-subpage-hero / lk-page-hero
   ============================================================= */

.lk-page-hero {
  background: var(--lk-bg);
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--lk-border);
}

.lk-page-hero__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lk-page-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lk-accent);
  margin-bottom: 16px;
}

.lk-page-hero__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.1;
}

.lk-page-hero__lede {
  font-size: 17px;
  color: var(--lk-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =============================================================
   ABOUT PAGE — lk-about
   ============================================================= */

.lk-about__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Mission section */
.lk-about__mission {
  padding: 96px 0;
  background: #06b6d4;
  text-align: center;
}

.lk-about__mission .lk-about__inner {
  max-width: 760px;
}

.lk-about__mission-statement {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}

.lk-about__mission-context {
  max-width: 760px;
  margin: 0 auto;
}

.lk-about__mission-context p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(10,15,30,0.75);
  margin: 0 0 16px;
}

/* Founding story section */
.lk-about__story {
  padding: 96px 0;
  background: var(--lk-bg-alt);
}

.lk-about__story-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.lk-about__story-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lk-accent);
  margin-bottom: 24px;
}

.lk-about__story h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 32px;
  line-height: 1.15;
}

.lk-about__story p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--lk-text-muted);
  margin: 0 0 20px;
}

/* Values section */
.lk-about__values {
  padding: 96px 0;
  background: var(--lk-bg);
}

.lk-about__values .lk-about__inner {
  text-align: center;
}

.lk-about__values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.lk-values-card {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius);
  padding: 32px 28px;
}

.lk-values-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lk-text);
  margin: 0 0 10px;
}

.lk-values-card__body {
  font-size: 15px;
  color: var(--lk-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Stage focus */
.lk-about__stage {
  padding: 56px 0;
  background: var(--lk-bg-alt);
  text-align: center;
}

.lk-about__stage .lk-about__inner {
  max-width: 680px;
}

.lk-about__stage-tag {
  display: inline-block;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.2);
  color: var(--lk-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lk-about__stage p {
  font-size: 17px;
  color: var(--lk-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .lk-about__values-list { grid-template-columns: 1fr; }
}

/* =============================================================
   PRODUCT PAGE specific
   ============================================================= */

/* problem section */
.lk-problem {
  padding: 96px 0;
  background: var(--lk-bg-alt);
}

.lk-problem__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.lk-problem__desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--lk-text-muted);
}

.lk-problem__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lk-problem__stat {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-left: 3px solid var(--lk-accent);
  border-radius: 0 var(--lk-radius) var(--lk-radius) 0;
  padding: 20px 24px;
}

.lk-problem__stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--lk-accent);
  font-family: var(--lk-font-mono);
}

.lk-problem__stat-label {
  font-size: 14px;
  color: var(--lk-text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .lk-problem__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* target-customer section */
.lk-target {
  padding: 80px 0;
  background: var(--lk-bg-alt);
}

.lk-target__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-target__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lk-target__card {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-radius);
  padding: 28px 24px;
}

.lk-target__card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lk-accent);
  margin-bottom: 10px;
}

.lk-target__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lk-text);
  margin: 0 0 8px;
}

.lk-target__card-body {
  font-size: 14px;
  color: var(--lk-text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .lk-target__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   TEAM PREVIEW (about page) and full TEAM
   ============================================================= */

.lk-team {
  padding: 96px 0;
  background: var(--lk-bg);
}

.lk-team__inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lk-team__header {
  text-align: center;
  margin-bottom: 56px;
}

.lk-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.lk-team__card {
  background: var(--lk-bg-card);
  border: 1px solid var(--lk-border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
}

.lk-team__card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lk-team__card-photo-wrap {
  overflow: hidden;
}

.lk-team__card-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 1 / 1;
}

.lk-team__card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--lk-text);
  margin: 16px 0 4px;
  padding: 0 16px;
}

.lk-team__card-title {
  font-size: 13px;
  color: var(--lk-text-muted);
  margin: 0;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .lk-team__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   MISC UTILITIES
   ============================================================= */

/* Visually hidden */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Code / mono spans inline */
.lk-mono {
  font-family: var(--lk-font-mono);
  font-size: 0.9em;
  background: rgba(6,182,212,0.1);
  color: var(--lk-accent);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Hero background image — visually positioned, preserves dark typographic hero */
.lk-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
