:root {
  --bg: #090d13;
  --bg-soft: #0e1420;
  --panel: #121b2a;
  --panel-elevated: #172335;
  --line: #27364d;
  --text: #f4f7fb;
  --muted: #9fb0c8;
  --brand: #d23b3a;
  --brand-soft: rgba(210, 59, 58, 0.16);
  --green: #2ec27e;
  --blue: #46a0ff;
  --amber: #f5a524;
  --radius: 16px;
  --shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(1200px 520px at 90% -10%, rgba(210, 59, 58, 0.22), transparent 65%),
    radial-gradient(900px 450px at -10% 10%, rgba(70, 160, 255, 0.2), transparent 65%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

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

.site-shell {
  width: min(1180px, 100% - 32px);
  margin: 0 auto;
  padding: 18px 0 48px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 20, 32, 0.82);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  position: sticky;
  top: 10px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-kicker,
.brand-sub,
.eyebrow,
p,
h1,
h2,
h3,
ul,
ol {
  margin: 0;
}

.brand-kicker {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.76rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  min-height: 40px;
  padding: 8px 12px;
  font-weight: 700;
}

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

.solid-button,
.ghost-button,
.link-button {
  border-radius: 11px;
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 700;
}

.solid-button {
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
}

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

.link-button {
  color: #fda4a4;
  padding-inline: 0;
}

.nav-actions .nav-active {
  border-color: rgba(210, 59, 58, 0.65);
  background: var(--brand-soft);
  color: #ffd8d7;
}

.breadcrumb {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.02);
  color: #d9e3f2;
  font-size: 0.76rem;
}

.context-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
}

.hero,
.surface,
.site-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.hero,
.surface {
  margin-top: 16px;
  padding: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.69rem;
  font-weight: 800;
  color: #ffb4b4;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  line-height: 1.06;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.25rem, 3.2vw, 1.95rem);
  margin-bottom: 8px;
}

h3 {
  font-size: 1.03rem;
  margin-bottom: 8px;
}

.hero-copy,
.section-heading p,
.meta-note {
  color: var(--muted);
}

.hero-actions {
  margin-top: 14px;
}

.hero-highlights {
  margin-top: 14px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 7px;
}

.hero-highlights li {
  color: #dbe6f8;
  font-size: 0.88rem;
}

.hero-highlights li::before {
  content: "• ";
  color: #ffb4b4;
}

.hero-board {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 16px;
}

.hero-stats,
.confidence-preview,
.trust-list,
.check-list,
.event-feed,
.live-list,
.lane-list,
.site-footer ul,
.mini-list,
.offering-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-stats,
.confidence-preview,
.event-feed,
.live-list,
.lane-list,
.mini-list,
.offering-list {
  display: grid;
  gap: 9px;
}

.hero-stats li,
.confidence-preview li,
.live-list li,
.lane-list li,
.mini-list li,
.offering-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-elevated);
  padding: 10px 12px;
}

.confidence-preview span,
.hero-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.confidence-preview strong,
.hero-stats strong {
  font-size: 0.9rem;
}

.hero-map {
  margin-top: 12px;
}

.map-label {
  color: #d8e3f4;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sync-live {
  color: var(--green);
}

.sync-offline {
  color: #f87171;
}

.section-heading {
  margin-bottom: 12px;
}

.categories-grid,
.how-grid,
.lane-grid,
.service-columns-grid,
.lane-offering-panels {
  display: grid;
  gap: 12px;
}

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

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

.category-card,
.how-grid article,
.lane-card,
.service-column-card,
.lane-offering-panel,
.two-column > article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check-list {
  display: grid;
  gap: 8px;
}

.check-list li {
  border-left: 3px solid var(--brand);
  padding-left: 10px;
  color: #dce8fb;
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  padding: 10px 12px;
  color: #d7e4f8;
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 7px;
  background: var(--green);
}

.request-form {
  display: grid;
  gap: 12px;
}

.request-form label {
  display: grid;
  gap: 6px;
  color: #dae5f8;
  font-size: 0.84rem;
  font-weight: 700;
}

.request-form input,
.request-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0e1624;
  color: var(--text);
  padding: 10px 11px;
}

.request-form .solid-button {
  width: fit-content;
}

.request-result {
  margin-top: 10px;
  border: 1px dashed rgba(255, 179, 179, 0.56);
  border-radius: 10px;
  background: rgba(210, 59, 58, 0.09);
  color: #ffd7d7;
  padding: 12px;
  font-size: 0.88rem;
}

.lane-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.lane-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  min-height: 34px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lane-filter.is-active {
  border-color: rgba(210, 59, 58, 0.66);
  background: rgba(210, 59, 58, 0.15);
  color: #ffd8d7;
}

.lane-notary {
  border-color: rgba(210, 59, 58, 0.45);
}

.lane-process {
  border-color: rgba(245, 165, 36, 0.45);
}

.lane-geeksquid,
.lane-forge {
  border-color: rgba(70, 160, 255, 0.45);
}

.event-feed li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 10px 12px;
  display: grid;
  gap: 2px;
}

.event-feed time {
  color: #ffb4b4;
  font-size: 0.74rem;
  font-weight: 800;
}

.event-feed p {
  color: #dbe7f9;
  font-size: 0.88rem;
}

.site-footer {
  margin-top: 16px;
  padding: 18px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-footer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.site-footer a {
  color: #d6e4f9;
  font-size: 0.86rem;
}

@media (max-width: 1160px) {
  .categories-grid,
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .lane-grid,
  .service-columns-grid,
  .lane-offering-panels,
  .footer-grid,
  .site-footer ul {
    grid-template-columns: 1fr;
  }

  .top-nav {
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-actions {
    width: 100%;
    display: none;
    padding-top: 6px;
  }

  .nav-actions.is-open {
    display: flex;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(1180px, 100% - 20px);
  }

  .hero,
  .surface {
    padding: 18px;
  }

  .categories-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-kicker {
    font-size: 0.81rem;
  }

  .brand-sub {
    font-size: 0.71rem;
  }
}
