:root {
  color-scheme: dark;
  --bg: #06100f;
  --panel: #0b1715;
  --panel-2: #10221f;
  --line: rgba(196, 235, 225, 0.14);
  --line-strong: rgba(31, 211, 177, 0.34);
  --text: #f3fbf8;
  --muted: #abc2bd;
  --soft: #78918b;
  --brand: #18d3b2;
  --brand-2: #79f1dc;
  --warning: #ffc66d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(24, 211, 178, 0.14), transparent 30rem),
    linear-gradient(180deg, #071211 0%, var(--bg) 44%, #040908 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 15, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: #03110f;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(24, 211, 178, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--brand-2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 34px;
  align-items: stretch;
  padding: 74px 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(24, 211, 178, 0.08);
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--brand);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #03110f;
  font-weight: 800;
}

.btn:hover { filter: brightness(1.06); }

.btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--brand-2);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--soft);
  font-size: 14px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.025);
}

.proof-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(24, 211, 178, 0.1), transparent 42%),
    rgba(11, 23, 21, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-panel-inner { padding: 24px; }

.proof-panel h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
}

.proof-panel p,
.proof-panel li {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.metric {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.metric:nth-child(2n) { border-right: 0; }

.metric strong {
  display: block;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 13px;
}

.section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.52fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.section h2 {
  margin-bottom: 8px;
  font-size: 44px;
  line-height: 1.08;
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 16px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.panel,
.workflow-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 23, 21, 0.72);
  padding: 22px;
}

.workflow-card {
  min-height: 100%;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.workflow-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(15, 34, 31, 0.9);
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 800;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.24;
}

.panel p,
.workflow-card p {
  color: var(--muted);
}

ul.clean {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.clean li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

ul.clean li::before {
  content: "";
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(24, 211, 178, 0.08);
}

.quote-band {
  margin: 20px 0 0;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(24, 211, 178, 0.08);
  color: var(--text);
  font-size: 30px;
  line-height: 1.28;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 23, 21, 0.72);
  padding: 16px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  margin: 46px 0 72px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 211, 178, 0.16), rgba(255, 198, 109, 0.06)),
    rgba(11, 23, 21, 0.9);
}

.final-cta p { color: var(--muted); max-width: 760px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--soft);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero,
  .section-head,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 48px; }
  .nav-links { display: none; }
  h1 { font-size: 56px; }
  .lead { font-size: 20px; }
  .section h2 { font-size: 36px; }
  .quote-band { font-size: 25px; }
}

@media (max-width: 560px) {
  .site-shell { width: min(100% - 28px, 1160px); }
  .nav { min-height: 64px; }
  h1 { font-size: 40px; }
  .lead { font-size: 18px; }
  .section h2 { font-size: 30px; }
  .quote-band { font-size: 21px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .btn { width: 100%; }
}
