/* CapEx Layer landing page. No framework. No tracking. No em dashes. */

:root {
  --bg: #0b0d12;
  --bg-elevated: #12151c;
  --fg: #e9ecf1;
  --fg-muted: #9aa3b2;
  --accent: #5b8cff;
  --accent-hover: #7aa3ff;
  --border: #232834;
  --max-width: 1120px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

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

nav.top {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

nav.top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.brand .dot {
  color: var(--accent);
}

section.hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--border);
}

h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 650;
  max-width: 18ch;
}

.hero p.subhead {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 0 32px;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #0b0d12;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background: rgba(91, 140, 255, 0.10);
  color: var(--fg);
}

.cta-caption {
  color: var(--fg-muted);
  font-size: 15px;
  margin-top: 14px;
  max-width: 50ch;
}

section.proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-item {
  font-weight: 600;
  color: var(--fg);
  font-size: 18px;
}

.proof-item .label {
  display: block;
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

section.show-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

section.show-section h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

section.show-section p.lead {
  color: var(--fg-muted);
  margin: 0 0 20px;
  font-size: 17px;
  max-width: 64ch;
}

.show-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 100%;
}

.show-bullets li {
  position: relative;
  padding: 14px 18px 14px 44px;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.55;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.show-bullets li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.show-bullets li strong {
  color: var(--fg);
  font-weight: 600;
}

@media (max-width: 760px) {
  .show-bullets {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.show-image-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  margin: 0 0 28px;
  padding: 0;
}

.show-image-wrap figcaption {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  line-height: 1.55;
}

.show-image {
  display: block;
  width: 100%;
  height: auto;
}

.show-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.show-cta-caption {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 48ch;
}

section.pipeline-stats {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

section.pipeline-stats h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.stat-num {
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.5;
}

section.faq {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

section.faq h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 880px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.faq-item p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

section.how {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

section.how h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
}

section.booking {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

section.booking h2 {
  font-size: 32px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

section.booking p.lead {
  color: var(--fg-muted);
  margin: 0 0 32px;
  font-size: 17px;
  max-width: 52ch;
}

form.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
}

form.booking-form .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea {
  min-height: 80px;
  resize: vertical;
}

form.booking-form .submit-row {
  margin-top: 8px;
}

footer {
  padding: 32px 0;
  color: var(--fg-muted);
  font-size: 14px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

@media (max-width: 760px) {
  h1 { font-size: 36px; }
  section.hero { padding: 56px 0 40px; }
  section.how, section.booking, section.show-section, section.pipeline-stats, section.faq { padding: 56px 0; }
  .proof-row, .how-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  form.booking-form { grid-template-columns: 1fr; }
  .show-cta-row { align-items: flex-start; }
}
