:root {
  color-scheme: dark;
  --bg: #080b14;
  --surface: #12182a;
  --surface-2: #19223a;
  --text: #f4f7fb;
  --muted: #aab5c8;
  --cyan: #00d4ff;
  --violet: #8b5cf6;
  --green: #20d4a0;
  --border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(8, 11, 20, 0.72);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-nav nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.primary-button,
.ghost-button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 900;
}

.nav-cta,
.primary-button,
.lead-form button {
  border: 0;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: white;
}

.ghost-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 4vw, 64px) 72px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 20, 0.92), rgba(8, 11, 20, 0.38)),
    url("../data/public-preview-hero.svg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 16px;
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.slice-note {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  margin: 14px 0 0;
  padding: 0 12px;
  border: 1px solid rgba(32, 212, 160, 0.28);
  border-radius: 999px;
  background: rgba(32, 212, 160, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: 72px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

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

.offer-card,
.catalog-card,
.workflow-step,
.lead-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.offer-card,
.catalog-card,
.workflow-step {
  padding: 20px;
}

.offer-card p,
.split-section p,
.lead-section p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section,
.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: start;
}

.catalog-list,
.workflow-list {
  display: grid;
  gap: 12px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
}

.tag {
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.workflow-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-step strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 10px;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  padding: 12px;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

@media (max-width: 900px) {
  .site-nav,
  .offer-grid,
  .split-section,
  .lead-section,
  .workflow-list {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
