:root {
  --bg: #0d1421;
  --panel: rgba(13, 20, 33, 0.76);
  --panel-strong: rgba(20, 29, 45, 0.92);
  --text: #f4f7fb;
  --muted: #b5c1d6;
  --line: rgba(181, 193, 214, 0.18);
  --accent: #f59e0b;
  --accent-2: #38bdf8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 24%),
    linear-gradient(180deg, #0b1120 0%, #0d1421 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, calc(100vw - 2rem));
  margin: 0 auto;
}

.noise,
.orb {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.noise {
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 34px 34px;
}

.orb {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.5;
}

.orb-left {
  top: -180px;
  left: -130px;
  background: rgba(56, 189, 248, 0.42);
}

.orb-right {
  right: -160px;
  top: 180px;
  background: rgba(245, 158, 11, 0.34);
}

.topbar {
  width: min(1140px, calc(100vw - 2rem));
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(56, 189, 248, 0.95));
  color: #08111d;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.88rem 1.15rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #08111d;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
  padding: 4.2rem 0 2.4rem;
}

.hero-copy,
.hero-panel,
.card,
.panel,
.timeline,
.contact-block {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy,
.hero-panel,
.panel,
.contact-block {
  border-radius: 28px;
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font: 500 0.75rem/1 "IBM Plex Mono", monospace;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 10ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.lede {
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.7;
  font-size: 1.03rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.trust-row div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.trust-row strong,
.stat-value {
  display: block;
  font-weight: 700;
}

.trust-row span,
.stat-label,
.card p,
.panel p,
.timeline p,
.contact-block p,
.footer p {
  color: var(--muted);
}

.hero-panel {
  padding: 1.6rem;
  border-radius: 28px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font: 500 0.8rem/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(181, 193, 214, 0.12);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.mini-stats div {
  padding: 0.85rem;
  border-radius: 16px;
  background: var(--panel-strong);
  border: 1px solid rgba(181, 193, 214, 0.12);
}

.section {
  padding: 2rem 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.panel {
  border-radius: 24px;
  padding: 1.4rem;
}

.card {
  min-height: 220px;
}

.card-tag {
  font: 500 0.76rem/1 "IBM Plex Mono", monospace;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.section-alt {
  padding: 3rem 0;
  margin: 2rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(181, 193, 214, 0.12);
  border-bottom: 1px solid rgba(181, 193, 214, 0.12);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
  align-items: start;
}

.timeline {
  border-radius: 24px;
  padding: 0.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 20px;
}

.timeline-item + .timeline-item {
  border-top: 1px solid rgba(181, 193, 214, 0.12);
}

.timeline-item span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), rgba(245, 158, 11, 0.14));
  border: 1px solid rgba(181, 193, 214, 0.16);
  color: var(--text);
  font-weight: 800;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lead-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
}

.lead-form-heading {
  margin-bottom: 1rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.lead-grid label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-grid input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(181, 193, 214, 0.26);
  background: rgba(8, 17, 29, 0.52);
  color: var(--text);
  font: inherit;
  padding: 0.72rem 0.8rem;
}

.lead-grid input:focus {
  outline: 2px solid rgba(56, 189, 248, 0.55);
  outline-offset: 1px;
}

.full-width {
  grid-column: 1 / -1;
}

.lead-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.lead-status {
  margin: 0;
  color: var(--accent-2);
  font-weight: 600;
}

.lead-status.is-error {
  color: #fca5a5;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 240ms;
}

@media (max-width: 960px) {
  .topbar,
  .hero,
  .process-grid,
  .split-grid,
  .contact-block,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar {
    gap: 0.9rem;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .process-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .trust-row,
  .mini-stats,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .contact-block {
    justify-items: start;
  }

  .footer {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding-top: 0.4rem;
  }

  .button,
  .nav a {
    width: 100%;
  }

  .nav {
    width: 100%;
    gap: 0.5rem;
  }

  .brand {
    align-items: flex-start;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .panel,
  .contact-block {
    padding: 1.1rem;
  }
}
