﻿:root {
  --bg: #0b0f14;
  --surface: #141b24;
  --ink: #e7eaf0;
  --muted: #94a3b8;
  --accent: #8a6f4a;
  --accent-ink: #f6f1ea;
  --line: #1f2933;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(138, 111, 74, 0.14), transparent 60%),
    radial-gradient(900px 400px at 100% 20%, rgba(15, 23, 42, 0.45), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }

p { margin: 8px 0; color: var(--muted); }
.lead { font-size: 17px; color: #c0cad6; }

.public-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.public-nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.public-logo {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 16px;
}
.public-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.public-links a { color: var(--muted); }
.public-nav .cta {
  margin-left: auto;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 20px 96px;
}
.section {
  margin-top: 36px;
  scroll-margin-top: 90px;
}
.section-head { margin-bottom: 18px; }
.section-head p { margin: 0; }

.hero {
  background: linear-gradient(120deg, #141b24 0%, #0f141b 60%, #0b0f14 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-grid {
  display: grid;
  gap: 24px;
}
.hero-copy { display: grid; gap: 14px; }
.hero-panel {
  display: grid;
  gap: 12px;
}
.hero-card {
  background: rgba(20, 27, 36, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}
.hero-card-title { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1.2px; }
.hero-card-text { color: var(--muted); font-size: 14px; margin-top: 6px; }
.trust-line { font-size: 12px; color: var(--muted); letter-spacing: 0.6px; text-transform: uppercase; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  background: #111822;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 111, 74, 0.35);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
}

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.card-grid.two { grid-template-columns: 1fr; }
.form-card {
  max-width: 760px;
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.metric-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface);
}
.metric-value {
  font-size: 22px;
  font-weight: 700;
}
.metric-label {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.icon-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111822;
  color: var(--ink);
}
.icon-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(138, 111, 74, 0.15);
}

.narrative {
  border-left: 2px solid rgba(138, 111, 74, 0.6);
  padding: 8px 0 8px 16px;
  color: var(--ink);
  font-weight: 500;
}

.plain-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.plain-list li { list-style: none; }

.steps {
  display: grid;
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111822;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: #0b0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.step-title { font-weight: 700; }
.step-text { color: var(--muted); font-size: 14px; margin-top: 4px; }

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 22px rgba(138, 111, 74, 0.22); }
.btn[disabled] { opacity: 0.7; cursor: not-allowed; box-shadow: none; transform: none; }
.link-muted { color: var(--muted); font-weight: 600; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

form .row { margin-bottom: 14px; }
label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f141b;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
}
button { font-family: inherit; }
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 8px; }
.form-card.compact .row { margin-bottom: 10px; }
.form-card.compact textarea { min-height: 90px; }

.notice {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.notice.success { border-color: #2f5b3b; background: #132019; color: #b9e2c4; }
.notice.error { border-color: #6b2b2b; background: #241212; color: #f2b9b9; }

.examples-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.example-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 12px;
}
.example-media {
  background: #111822;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.example-media img { width: 100%; height: 100%; object-fit: cover; }
.example-meta { color: var(--muted); font-size: 12px; }

.checklist {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  list-style: none;
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}
.checklist li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.accordion {
  display: grid;
  gap: 10px;
}
.accordion details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  background: var(--surface);
}
.accordion summary {
  cursor: pointer;
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.public-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 12px;
  display: grid;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 22, 29, 0.95);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.sticky-cta span { color: var(--muted); font-size: 12px; }
.sticky-cta.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.b2b-page .hero {
  background: linear-gradient(130deg, #141b24 0%, #0f141b 55%, #0b0f14 100%);
}

@media (min-width: 900px) {
  h1 { font-size: 40px; }
  .hero-grid { grid-template-columns: 1.1fr 0.7fr; align-items: start; }
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid.two { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 24px 28px; }
  .sticky-cta { display: none; }
}

@media (max-width: 640px) {
  .public-nav { gap: 12px; }
  .public-links { width: 100%; justify-content: flex-start; }
  .public-nav .cta { width: 100%; text-align: center; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .hero { padding: 24px; }
}
