/* Landing layout — dark theme */

:root {
  --cdb-primary: #6875F7;
  --cdb-primary-hover: #5a66e8;
  --cdb-primary-fg: #ffffff;
  --cdb-accent: #c4bfff;
  --cdb-accent-muted: #a5a0ff;
  --cdb-muted-fg: #6b6b7a;
  --cdb-surface: #16161a;
  --cdb-surface-elevated: #131316;
  --cdb-border: rgba(255, 255, 255, 0.08);
  --cdb-border-strong: rgba(255, 255, 255, 0.12);
  --section-gap: 112px;
}

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

html {
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
}

body.landing {
  font-family: Inter, system-ui, sans-serif;
  background: #09090b;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(104, 117, 247, 0.08), transparent 55%),
    linear-gradient(180deg, #09090b 0%, #0c0c0f 40%, #09090b 100%);
  color: #e8e8ec;
  min-height: 100vh;
  line-height: 1.5;
}

.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.l-container--wide { max-width: 1080px; }

.l-section {
  padding: var(--section-gap) 0;
}

.l-section + .l-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.l-section--tight { padding: 80px 0; }

.l-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.l-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cdb-accent-muted, #a5a0ff);
  margin-bottom: 12px;
}

.l-section__title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #f0f0f4;
}

.l-section__title--accent { color: var(--cdb-primary, #6875F7); }

.l-section__sub {
  font-size: 1.0625rem;
  color: #8b8b9a;
  line-height: 1.65;
}

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

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.l-grid-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 32px;
}

@media (max-width: 1024px) {
  .l-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .l-grid-results { gap: 32px; }
}

@media (max-width: 640px) {
  .l-grid-3, .l-grid-2, .l-grid-results { grid-template-columns: 1fr; }
  .l-section { padding: 72px 0; }
  .l-section__head { margin-bottom: 40px; }
}
