/* ============================================================
   LenkoLab — Main Stylesheet
   Built on design-tokens.css custom properties.
   No gradients, no shadows on brand elements — flat design.
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lk-white);
  color: var(--lk-ink);
  font-family: var(--lk-font-sans);
  font-size: var(--lk-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a.link { color: var(--lk-indigo); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a.link:hover { color: var(--lk-blue); }
ul, ol { padding-left: var(--lk-space-6); }
.mono { font-family: var(--lk-font-mono); }

/* === LAYOUT === */
.container {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1280px) { .container { padding: 0 var(--lk-gutter); } }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lk-line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lk-ink);
}
.brand-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.main-nav {
  display: none;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-size: 14px;
  color: var(--lk-slate);
  font-weight: 500;
  transition: color var(--lk-dur-base) var(--lk-ease);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--lk-ink); }
.contact-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-md);
  color: var(--lk-ink);
  transition: border-color var(--lk-dur-base), background var(--lk-dur-base), color var(--lk-dur-base);
}
.main-nav a.contact-pill:hover {
  border-color: var(--lk-ink);
  background: var(--lk-ink);
  color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lk-ink);
  border-radius: 1px;
  transition: transform var(--lk-dur-slow) var(--lk-ease), opacity var(--lk-dur-base);
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
body.nav-open .main-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 72px 0 0;
  background: var(--lk-white);
  padding: 48px 24px;
  gap: 24px;
  z-index: 49;
  border-top: 1px solid var(--lk-line);
}
body.nav-open .main-nav a {
  font-size: 22px;
  font-weight: 600;
}
body.nav-open .main-nav .contact-pill {
  font-size: 18px;
  padding: 14px 24px;
  text-align: center;
}

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

/* === SECTIONS === */
section {
  padding: 64px 0;
  border-bottom: 1px solid var(--lk-line);
  position: relative;
}
@media (min-width: 768px) { section { padding: 96px 0; } }
@media (min-width: 1024px) { section { padding: 120px 0; } }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 48px;
    margin-bottom: 64px;
  }
}
.section-eyebrow {
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lk-slate);
}
.section-eyebrow .num {
  color: var(--lk-indigo);
  margin-right: 14px;
  font-weight: 500;
}
.section-subtitle {
  font-size: var(--lk-text-body);
  color: var(--lk-slate);
  max-width: 480px;
  line-height: 1.6;
}

/* Section h2 */
section h2, .section-title {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  max-width: 760px;
}
@media (min-width: 768px) { section h2, .section-title { font-size: 40px; } }
@media (min-width: 1024px) { section h2, .section-title { font-size: 48px; line-height: 1.1; } }

/* === HERO === */
.hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--lk-line);
}
@media (min-width: 768px) { .hero { padding: 120px 0 96px; } }
@media (min-width: 1024px) { .hero { padding: 140px 0 120px; } }

.hero .eyebrow {
  font-family: var(--lk-font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lk-slate);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
  max-width: 1080px;
}
@media (min-width: 768px) { .hero h1 { font-size: 56px; line-height: 1.04; letter-spacing: -0.03em; } }
@media (min-width: 1024px) { .hero h1 { font-size: 88px; line-height: 1.02; letter-spacing: -0.035em; } }

.hero h1 .indigo { color: var(--lk-indigo); }
.hero .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--lk-amber);
  vertical-align: baseline;
  margin-left: 4px;
}
@media (min-width: 768px) { .hero .dot { width: 15px; height: 15px; } }
@media (min-width: 1024px) { .hero .dot { width: 18px; height: 18px; } }

.hero .sub {
  margin-top: 28px;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--lk-slate);
}
@media (min-width: 768px) { .hero .sub { margin-top: 36px; font-size: 22px; } }

.meta-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--lk-line);
  width: fit-content;
}
@media (min-width: 768px) {
  .meta-row {
    grid-template-columns: repeat(4, auto);
    gap: 64px;
    margin-top: 64px;
    padding-top: 32px;
  }
}
.meta-row .label {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lk-slate);
  margin-bottom: 6px;
}
.meta-row .val {
  font-size: var(--lk-text-body);
  font-weight: 500;
  color: var(--lk-ink);
}

/* Page hero (smaller, for section pages) */
.page-hero {
  padding: 48px 0;
  border-bottom: 1px solid var(--lk-line);
}
@media (min-width: 768px) { .page-hero { padding: 80px 0 64px; } }
@media (min-width: 1024px) { .page-hero { padding: 96px 0 64px; } }

.page-hero .eyebrow {
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lk-slate);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) { .page-hero h1 { font-size: 48px; } }
@media (min-width: 1024px) { .page-hero h1 { font-size: 56px; line-height: 1.08; } }

.page-hero .sub {
  margin-top: 20px;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--lk-slate);
}
@media (min-width: 768px) { .page-hero .sub { font-size: 20px; margin-top: 24px; } }

/* Dark page hero (section pages) */
.page-hero--dark {
  background: var(--lk-ink);
  color: #fff;
  border-bottom: none;
  padding: 48px 0 40px;
}
@media (min-width: 768px) { .page-hero--dark { padding: 72px 0 56px; } }
@media (min-width: 1024px) { .page-hero--dark { padding: 80px 0 64px; } }
.page-hero--dark .eyebrow { color: #94A3B8; }
.page-hero--dark h1 { color: #fff; }
.page-hero--dark h1 .highlight { color: #93B4FF; }
.page-hero--dark h1 .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--lk-amber);
  vertical-align: baseline;
  margin-left: 3px;
}
@media (min-width: 768px) { .page-hero--dark h1 .dot { width: 10px; height: 10px; } }
@media (min-width: 1024px) { .page-hero--dark h1 .dot { width: 12px; height: 12px; } }
.page-hero--dark .sub { color: #CBD5E1; }
.page-hero--dark .breadcrumbs a { color: #94A3B8; }
.page-hero--dark .breadcrumbs a:hover { color: #fff; }
.page-hero--dark .breadcrumbs .sep { color: #64748B; }
.page-hero--dark .breadcrumbs [aria-current="page"] { color: #fff; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 768px) {
  .hero-stats { gap: 56px; margin-top: 48px; padding-top: 32px; }
}
.hero-stat-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #93B4FF;
  line-height: 1;
}
@media (min-width: 768px) { .hero-stat-value { font-size: 36px; } }
.hero-stat-label {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-top: 8px;
}

/* === PRODUCT CARDS === */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.product-card {
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-lg);
  background: #fff;
  transition: border-color var(--lk-dur-base), transform 200ms var(--lk-ease);
}
.product-card:hover {
  border-color: var(--lk-ink);
  transform: translateY(-2px);
}
.product-card-link {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  height: 100%;
}
@media (min-width: 768px) { .product-card-link { padding: 36px 32px; } }

.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.product-card-top .badge { margin-left: auto; }
.product-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: cover;
}
.product-card-name {
  font-size: var(--lk-text-h2);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lk-indigo);
  margin: 0;
}
.badge {
  font-family: var(--lk-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--lk-radius-sm);
  border: 1px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}
.badge.live {
  color: #065F46;
  background: #D1FAE5;
  border-color: #A7F3D0;
}
.badge.beta {
  color: #92400E;
  background: #FEF3C7;
  border-color: #FDE68A;
}
.badge.concept {
  color: #1E40AF;
  background: #DBEAFE;
  border-color: #BFDBFE;
}
.badge.development {
  color: #1E40AF;
  background: #DBEAFE;
  border-color: #BFDBFE;
}
.badge.planned {
  color: var(--lk-slate);
  background: var(--lk-mist);
  border-color: var(--lk-line);
}

.product-card-desc {
  margin: 20px 0 28px;
  color: var(--lk-slate);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.product-card-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--lk-line-soft, var(--lk-line));
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  color: var(--lk-slate);
}
.product-card-metrics b { color: var(--lk-ink); font-weight: 600; }

.product-card-more {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lk-ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card-more svg {
  transition: transform 200ms var(--lk-ease);
}
.product-card:hover .product-card-more svg {
  transform: translateX(3px);
}

/* === DIRECTIONS GRID (home page) === */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .directions-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.direction-card {
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-lg);
  padding: 28px 24px;
  transition: border-color var(--lk-dur-base), transform 200ms var(--lk-ease);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .direction-card { padding: 36px 32px; } }
.direction-card:hover {
  border-color: var(--lk-ink);
  transform: translateY(-2px);
}
.direction-card h3 {
  font-size: var(--lk-text-h3);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--lk-indigo);
}
.direction-card p {
  color: var(--lk-slate);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 24px;
}
.direction-card .arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--lk-ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.direction-card .arrow svg {
  transition: transform 200ms var(--lk-ease);
}
.direction-card:hover .arrow svg {
  transform: translateX(3px);
}

/* === ABOUT (2-col layout) === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 96px;
  }
}
.about-grid p {
  font-size: var(--lk-text-body-l);
  line-height: 1.65;
  margin: 0 0 22px;
}
.about-grid p + p { color: var(--lk-slate); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--lk-line);
}
.stat .v {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lk-indigo);
  line-height: 1;
}
@media (min-width: 768px) { .stat .v { font-size: 48px; } }
.stat .v span { font-size: 0.5em; font-weight: 400; }
.stat .l {
  font-size: 13px;
  color: var(--lk-slate);
  margin-top: 8px;
  font-family: var(--lk-font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card {
  background: var(--lk-mist);
  border-radius: var(--lk-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) { .team-card { padding: 32px; } }

.person {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 768px) { .person { gap: 20px; } }
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lk-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--lk-font-mono);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
@media (min-width: 768px) { .avatar { width: 64px; height: 64px; font-size: 18px; } }
.avatar--photo {
  object-fit: cover;
  background: var(--lk-mist);
  flex-shrink: 0;
}
.person .name { font-weight: 600; font-size: 17px; }
.person .role { color: var(--lk-slate); font-size: 14px; margin-top: 2px; }
.person .meta-text {
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  color: var(--lk-slate-2);
  margin-top: 8px;
}

/* === PROCESS STEPS === */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.process-step {
  padding: 24px;
  border-top: 3px solid var(--lk-indigo);
  background: var(--lk-mist);
  border-radius: 0 0 var(--lk-radius-lg) var(--lk-radius-lg);
}
.process-step .step-num {
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lk-blue);
  margin-bottom: 12px;
  font-weight: 600;
}
.process-step h3 {
  font-size: var(--lk-text-h3);
  font-weight: 600;
  margin: 0 0 8px;
}
.process-step p {
  font-size: 15px;
  color: var(--lk-slate);
  line-height: 1.55;
  margin: 0;
}

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; }
.faq-list details {
  border-bottom: 1px solid var(--lk-line);
  padding: 24px 0;
}
.faq-list details:first-of-type { border-top: 1px solid var(--lk-line); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  list-style: none;
  gap: 24px;
  cursor: pointer;
}
@media (min-width: 768px) { .faq-list summary { font-size: 22px; } }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .sign {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--lk-line);
  border-radius: 50%;
  transition: background var(--lk-dur-slow);
}
.faq-list summary .sign::before,
.faq-list summary .sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--lk-ink);
  transform: translate(-50%, -50%);
}
.faq-list summary .sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--lk-dur-slow) var(--lk-ease);
}
.faq-list details[open] summary .sign::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-list details[open] summary .sign { background: var(--lk-mist); }
.faq-list .answer {
  margin-top: 16px;
  color: var(--lk-slate);
  font-size: 16px;
  line-height: 1.65;
  max-width: 880px;
}
@media (min-width: 768px) { .faq-list .answer { font-size: 17px; } }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 96px;
  }
}
.contact-info p {
  font-size: var(--lk-text-body-l);
  line-height: 1.65;
  margin: 0 0 32px;
}
.channels {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--lk-line);
}
.channel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--lk-line);
  align-items: baseline;
}
@media (min-width: 640px) {
  .channel {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
  }
}
.channel .k {
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lk-slate);
}
.channel .v { font-size: var(--lk-text-body); font-weight: 500; }
.channel .v a { color: var(--lk-indigo); }
.channel .v a:hover { text-decoration: underline; text-underline-offset: 3px; }
.channel .h {
  font-size: var(--lk-text-caption);
  color: var(--lk-slate-2);
  font-family: var(--lk-font-mono);
}

/* === FORMS === */
.contact-form {
  background: var(--lk-mist);
  border-radius: var(--lk-radius-lg);
  padding: 24px;
}
@media (min-width: 768px) { .contact-form { padding: 40px; } }

.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-row > div { display: flex; flex-direction: column; }

.field label, .field-row label {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lk-slate);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field textarea, .field select,
.field-row input, .field-row select {
  font: inherit;
  font-size: 15px;
  border: 1px solid var(--lk-line);
  background: white;
  border-radius: var(--lk-radius-md);
  padding: 12px 14px;
  color: var(--lk-ink);
  outline: none;
  transition: border-color var(--lk-dur-base), box-shadow var(--lk-dur-base);
  font-family: var(--lk-font-sans);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus,
.field-row input:focus, .field-row select:focus {
  border-color: var(--lk-indigo);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.12);
}
.field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--lk-font-sans);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--lk-slate);
  line-height: 1.5;
  margin: 8px 0 24px;
}
.consent input { margin-top: 3px; accent-color: var(--lk-indigo); }
.consent a { color: var(--lk-indigo); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--lk-blue); }

.submit-btn {
  background: var(--lk-ink);
  color: #fff;
  border: 0;
  padding: 14px 24px;
  border-radius: var(--lk-radius-md);
  font-family: var(--lk-font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--lk-dur-base), transform 100ms;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.submit-btn:hover { background: var(--lk-indigo); }
.submit-btn:active { transform: translateY(1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.submit-meta {
  font-size: 13px;
  color: var(--lk-slate);
  margin-top: 14px;
  font-family: var(--lk-font-mono);
}

#cf-status {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  min-height: 24px;
}

/* Honeypot */
.ohnohoney {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden;
}

/* === CTA SECTION === */
section:has(.cta-block) {
  padding: 32px 0 48px;
}
@media (min-width: 768px) { section:has(.cta-block) { padding: 48px 0 64px; } }
@media (min-width: 1024px) { section:has(.cta-block) { padding: 48px 0 80px; } }

/* === CTA BLOCK === */
.cta-block {
  background: var(--lk-mist);
  border-radius: var(--lk-radius-lg);
  padding: 48px 24px;
  text-align: left;
}
@media (min-width: 768px) { .cta-block { padding: 64px 48px; } }
.cta-block h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}
@media (min-width: 768px) { .cta-block h2 { font-size: 36px; } }
.cta-block p {
  color: var(--lk-slate);
  font-size: 18px;
  margin: 0 0 32px;
  max-width: 560px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lk-ink);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--lk-radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: background var(--lk-dur-base);
}
.cta-btn:hover { background: var(--lk-indigo); }

/* === CUSTOM PAGE: DOMAIN TAGS === */
.domain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.domain-list li {
  padding: 8px 16px;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-pill);
  font-size: 15px;
  color: var(--lk-ink);
}

/* Engagement models */
.models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .models-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.model-card {
  border: 1px solid var(--lk-line);
  border-top: 3px solid var(--lk-blue);
  border-radius: var(--lk-radius-lg);
  padding: 28px 24px;
  transition: border-color var(--lk-dur-base), transform 200ms var(--lk-ease);
}
.model-card:hover {
  border-top-color: var(--lk-indigo);
  transform: translateY(-2px);
}
.model-card h3 {
  font-size: var(--lk-text-h3);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--lk-indigo);
}
.model-card p { font-size: 15px; color: var(--lk-slate); line-height: 1.6; margin: 0; }

/* Note block */
.note-block {
  background: var(--lk-mist);
  border-radius: var(--lk-radius-lg);
  padding: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lk-slate);
}
@media (min-width: 768px) { .note-block { padding: 32px; } }

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 16px 0;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs a { color: var(--lk-slate); }
.breadcrumbs a:hover { color: var(--lk-ink); }
.breadcrumbs .sep {
  margin: 0 8px;
  color: var(--lk-slate-2);
}
.breadcrumbs [aria-current="page"] { color: var(--lk-ink); font-weight: 500; }

/* === FOOTER === */
.site-footer {
  background: var(--lk-ink);
  color: #CBD5E1;
  padding: 64px 0 36px;
}
@media (min-width: 768px) { .site-footer { padding: 96px 0 48px; } }
.site-footer a { color: #CBD5E1; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; }

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 64px; } }

.foot-grid h4 {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94A3B8;
  font-weight: 500;
  margin: 0 0 18px;
}
.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-grid li { font-size: 14px; }
.foot-tagline {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 380px;
}
.foot-legal {
  font-family: var(--lk-font-mono);
  font-size: 11px;
  color: #64748B;
  margin-top: 16px;
  letter-spacing: 0.06em;
}
.foot-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  color: #64748B;
}
@media (min-width: 768px) {
  .foot-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
  }
}
.foot-bottom a { color: #94A3B8; }

/* === PRODUCT DETAIL PAGE === */
.product-hero {
  padding: 48px 0;
  border-bottom: 1px solid var(--lk-line);
}
@media (min-width: 768px) { .product-hero { padding: 64px 0; } }
.product-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.product-hero .icon-placeholder,
.product-hero .product-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--lk-radius-lg);
  flex-shrink: 0;
}
.product-hero .icon-placeholder {
  background: var(--lk-mist);
  border: 1px solid var(--lk-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lk-font-mono);
  font-size: 20px;
  color: var(--lk-indigo);
  font-weight: 700;
}
.product-hero .product-icon { object-fit: cover; }
@media (min-width: 768px) {
  .product-hero .icon-placeholder,
  .product-hero .product-icon { width: 80px; height: 80px; }
  .product-hero .icon-placeholder { font-size: 24px; }
}
.product-hero h1 {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) { .product-hero h1 { font-size: 36px; } }
.product-hero .tagline {
  font-size: 18px;
  color: var(--lk-slate);
  margin-top: 8px;
}

.product-content { padding: 48px 0; }
@media (min-width: 768px) { .product-content { padding: 64px 0; } }

.product-section { margin-bottom: 48px; }
.product-section:last-child { margin-bottom: 0; }
.product-section h2 {
  font-size: var(--lk-text-h2);
  font-weight: 600;
  margin: 0 0 24px;
}
.product-section ul {
  margin: 0;
  padding-left: 20px;
}
.product-section li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--lk-ink);
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}
/* Official store badges */
.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.store-badge-img {
  height: 54px;
  width: auto;
  display: block;
  border-radius: 10px;
  transition: transform var(--lk-dur-base) var(--lk-ease), box-shadow var(--lk-dur-base);
}
.store-badge:not(.disabled):hover .store-badge-img {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}
.store-badge.disabled { cursor: default; }
.store-badge.disabled .store-badge-img { opacity: 0.4; filter: grayscale(1); }
.store-badge-note {
  font-family: var(--lk-font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--lk-slate);
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--lk-dur-base);
}
.store-btn:hover { border-color: var(--lk-ink); }
.store-btn.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.privacy-block {
  background: var(--lk-mist);
  border-radius: var(--lk-radius-lg);
  padding: 24px;
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 768px) { .privacy-block { padding: 32px; } }

.cross-ref {
  padding: 16px 20px;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-md);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lk-indigo);
  margin-top: 16px;
}
.cross-ref:hover { border-color: var(--lk-ink); }

/* Screenshot gallery placeholder */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
/* Wide screens (web apps): fewer, larger columns so the UI stays readable */
.screenshots-grid--wide {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .screenshots-grid--wide { grid-template-columns: repeat(2, 1fr); }
}
.screenshots-grid img {
  width: 100%;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-md);
  background: var(--lk-mist);
}
.screenshot-placeholder {
  aspect-ratio: 9/16;
  background: var(--lk-mist);
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lk-font-mono);
  font-size: var(--lk-text-caption);
  color: var(--lk-slate-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Video placeholder */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--lk-mist);
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 760px;
  padding: 48px 0;
}
@media (min-width: 768px) { .legal-content { padding: 64px 0; } }
.legal-content h2 {
  font-size: var(--lk-text-h2);
  font-weight: 600;
  margin: 48px 0 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: var(--lk-text-body);
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--lk-slate);
}
.legal-content ul {
  margin: 0 0 16px;
  color: var(--lk-slate);
}
.legal-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* === DARK SECTION (reusable) === */
.section--dark {
  background: var(--lk-ink);
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.08);
}
.section--dark .section-eyebrow { color: #94A3B8; }
.section--dark .section-eyebrow .num { color: #93B4FF; }
.section--dark h2, .section--dark .section-title { color: #fff; }
.section--dark .section-subtitle { color: #CBD5E1; }

.domain-list--dark li {
  border-color: rgba(255,255,255,0.15);
  color: #CBD5E1;
}

/* Domain expertise cards (dark section) */
.domain-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .domain-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .domain-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.domain-card {
  border-left: 3px solid rgba(255,255,255,0.15);
  padding: 28px 24px;
  border-radius: 0 var(--lk-radius-lg) var(--lk-radius-lg) 0;
  background: rgba(255,255,255,0.04);
  transition: background var(--lk-dur-base), border-color var(--lk-dur-base);
}
.domain-card:hover {
  background: rgba(255,255,255,0.07);
}
.domain-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #fff;
}
.domain-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #94A3B8;
  margin: 0;
}
.domain-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--lk-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Color variants */
.domain-card--indigo {
  border-left-color: var(--lk-indigo);
}
.domain-card--indigo .domain-card-icon {
  background: rgba(30,58,138,0.25);
  color: #93B4FF;
}
.domain-card--indigo h3 { color: #93B4FF; }

.domain-card--blue {
  border-left-color: var(--lk-blue);
}
.domain-card--blue .domain-card-icon {
  background: rgba(37,99,235,0.2);
  color: #60A5FA;
}
.domain-card--blue h3 { color: #60A5FA; }

.domain-card--amber {
  border-left-color: var(--lk-amber);
}
.domain-card--amber .domain-card-icon {
  background: rgba(217,119,6,0.2);
  color: #FBBF24;
}
.domain-card--amber h3 { color: #FBBF24; }

/* === DARK HERO (home page) === */
.hero--dark {
  background: var(--lk-ink);
  color: #fff;
  border-bottom: none;
}
.hero--dark .eyebrow {
  color: #94A3B8;
}
.hero--dark h1 {
  color: #fff;
}
.hero--dark h1 .highlight {
  color: #93B4FF;
}
.hero--dark .dot {
  background: var(--lk-amber);
}
.hero--dark .sub {
  color: #CBD5E1;
}
.hero--dark .meta-row {
  border-top-color: rgba(255,255,255,0.12);
}
.hero--dark .meta-row .label {
  color: #94A3B8;
}
.hero--dark .meta-row .val {
  color: #fff;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lk-blue);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--lk-radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: background var(--lk-dur-base);
}
.hero-cta-primary:hover {
  background: #1D4ED8;
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--lk-radius-md);
  font-size: 16px;
  font-weight: 500;
  color: #CBD5E1;
  transition: border-color var(--lk-dur-base), color var(--lk-dur-base);
}
.hero-cta-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* === COLORED DIRECTION CARDS === */
.direction-card--indigo {
  border-color: var(--lk-indigo);
  border-width: 1px;
  border-top: 3px solid var(--lk-indigo);
}
.direction-card--indigo h3 { color: var(--lk-indigo); }
.direction-card--indigo:hover { border-color: var(--lk-indigo); }

.direction-card--blue {
  border-color: var(--lk-blue);
  border-width: 1px;
  border-top: 3px solid var(--lk-blue);
}
.direction-card--blue h3 { color: var(--lk-blue); }
.direction-card--blue:hover { border-color: var(--lk-blue); }

.direction-card--ink {
  background: var(--lk-ink);
  color: #CBD5E1;
  border-color: var(--lk-ink);
}
.direction-card--ink h3 { color: #fff; }
.direction-card--ink p { color: #94A3B8; }
.direction-card--ink .arrow { color: #fff; }
.direction-card--ink:hover {
  border-color: var(--lk-ink);
  background: #1A2332;
}

.direction-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--lk-radius-md);
  background: var(--lk-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lk-indigo);
}
.direction-card--ink .direction-icon {
  background: rgba(255,255,255,0.08);
  color: #93B4FF;
}

/* === DARK CTA BLOCK === */
.cta-block--dark {
  background: var(--lk-ink);
  color: #fff;
}
.cta-block--dark h2 {
  color: #fff;
}
.cta-block--dark p {
  color: #CBD5E1;
}
.cta-btn--light {
  background: var(--lk-blue);
  color: #fff;
}
.cta-btn--light:hover {
  background: #1D4ED8;
}

/* Team card: linked name */
.team-card .name a {
  border-bottom: 1px solid var(--lk-slate);
  transition: color var(--lk-dur-base), border-color var(--lk-dur-base);
}
.team-card .name a::after {
  content: "\2197";
  font-size: 12px;
  color: var(--lk-blue);
  margin-left: 5px;
  vertical-align: super;
}
.team-card .name a:hover {
  color: var(--lk-blue);
  border-bottom-color: var(--lk-blue);
}

/* === USE CASES ("Who uses it") === */
.use-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 980px;
}
@media (min-width: 768px) { .use-cases { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.use-case {
  border: 1px solid var(--lk-line);
  border-left: 3px solid var(--lk-indigo);
  border-radius: var(--lk-radius-md);
  padding: 20px 22px;
  background: #FAFBFF;
  transition: transform 200ms var(--lk-ease), box-shadow var(--lk-dur-base);
}
.use-case:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.use-case h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--lk-indigo);
}
.use-case p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lk-slate);
}
/* Rotate the accent across the grid so the block reads as designed, not uniform */
.use-case:nth-child(3n+2) { border-left-color: var(--lk-blue); background: #F1F6FE; }
.use-case:nth-child(3n+2) h3 { color: #1D4ED8; }
.use-case:nth-child(3n+3) { border-left-color: var(--lk-amber); background: #FDF7EE; }
.use-case:nth-child(3n+3) h3 { color: #B45309; }

/* === WHAT IT DOES (features panel) === */
.features-list {
  list-style: none;
  margin: 0;
  padding: 30px 32px;
  background: var(--lk-indigo);
  border-radius: var(--lk-radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 32px;
  max-width: 860px;
}
@media (min-width: 720px) { .features-list { grid-template-columns: 1fr 1fr; } }
.features-list li {
  position: relative;
  padding-left: 30px;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}
.features-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid var(--lk-amber);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* === CUSTOM VERSION ("Where the free version ends") === */
.custom-version {
  background: var(--lk-mist);
  border-left: 3px solid var(--lk-amber);
  border-radius: var(--lk-radius-md);
  padding: 24px 28px;
  max-width: 860px;
}
.custom-version .cv-intro {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lk-ink);
}
.custom-version ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.custom-version li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lk-slate);
  margin-bottom: 8px;
}
.custom-version .cv-note {
  margin: 0;
  font-family: var(--lk-font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--lk-slate-2);
}

/* === TESTIMONIAL === */
.testimonial-block {
  position: relative;
  background: var(--lk-mist);
  border-radius: var(--lk-radius-lg);
  border-top: 3px solid var(--lk-amber);
  padding: 40px 24px;
  overflow: hidden;
}
@media (min-width: 768px) { .testimonial-block { padding: 56px 48px; } }
.testimonial-block::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 200px;
  line-height: 1;
  color: var(--lk-amber);
  opacity: 0.16;
  pointer-events: none;
}
@media (min-width: 768px) { .testimonial-block::before { font-size: 280px; right: 48px; top: 0; } }
.testimonial-eyebrow {
  font-family: var(--lk-font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lk-slate);
  margin-bottom: 24px;
}
.testimonial-block blockquote { margin: 0; position: relative; }
.testimonial-block blockquote p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--lk-ink);
  margin: 0 0 28px;
  max-width: 860px;
}
@media (min-width: 768px) { .testimonial-block blockquote p { font-size: 22px; } }
.testimonial-block footer {
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  border-top: 1px solid var(--lk-line);
  padding-top: 20px;
}
.testimonial-name { font-weight: 700; color: var(--lk-ink); }
.testimonial-name::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--lk-amber);
  margin-left: 8px;
  vertical-align: baseline;
}
.testimonial-role { color: var(--lk-slate); }
.testimonial-role a {
  color: var(--lk-blue);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.testimonial-role a:hover { border-bottom-color: var(--lk-blue); }

/* === BLOG === */
.post-meta {
  font-family: var(--lk-font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--lk-slate);
  margin-bottom: 12px;
}
.post-title {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}
@media (min-width: 768px) { .post-title { font-size: 40px; } }
.post {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--lk-ink);
}
.post p { margin: 0 0 20px; }
.post h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
}
.post ul, .post ol { margin: 0 0 20px; padding-left: 22px; }
.post li { margin-bottom: 8px; }
.post a { color: var(--lk-blue); border-bottom: 1px solid transparent; }
.post a:hover { border-bottom-color: var(--lk-blue); }
.post strong { color: var(--lk-ink); }
.post img, .post video {
  max-width: 100%;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-md);
}
.post figure { margin: 28px 0; }
.post figcaption {
  font-family: var(--lk-font-mono);
  font-size: 12px;
  color: var(--lk-slate-2);
  margin-top: 8px;
}
.post-hero-media { margin: 0 0 32px; }
.post-footer { margin-top: 40px; }
.post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 860px;
}
.post-card {
  display: block;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-lg);
  padding: 28px 28px 24px;
  background: #fff;
  transition: border-color var(--lk-dur-base), transform 200ms var(--lk-ease);
}
.post-card:hover { border-color: var(--lk-ink); transform: translateY(-2px); }
.post-card-date {
  font-family: var(--lk-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--lk-slate-2);
  margin-bottom: 10px;
}
.post-card h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lk-indigo);
  margin: 0 0 10px;
}
.post-card p {
  color: var(--lk-slate);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 72ch;
}

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

/* === PARTNERS PAGE === */
.cta-btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
}
.hero-actions--center {
  justify-content: center;
  margin-top: 28px;
}
.hero-note {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: #94A3B8;
}
.hero-note strong { color: #FBBF24; font-weight: 600; }
.lead-p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--lk-slate);
  max-width: 760px;
}
@media (min-width: 768px) { .lead-p { font-size: 19px; } }
.section--dark .lead-p { color: #CBD5E1; }
.note-block strong { color: var(--lk-ink); font-weight: 600; }
.note-block--onDark {
  background: rgba(255, 255, 255, 0.06);
  color: #CBD5E1;
}
.note-block--onDark strong { color: #fff; }
