:root {
  --ink: #f7fbff;
  --muted: #9fb0c8;
  --soft: #d8e4f4;
  --bg: #07111f;
  --panel: #0d1a2c;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #55a7ff;
  --teal: #43d3c7;
  --green: #85d48f;
  --amber: #f0c76d;
  --coral: #ff8f70;
  --max: 1160px;
  --nav: 72px;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #06101d 0%, #08192c 44%, #111827 100%);
  background-size: 72px 72px, 72px 72px, auto;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 31, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #06101d;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  box-shadow: 0 14px 30px rgba(67, 211, 199, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.hero {
  padding: 74px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.62fr);
  gap: 36px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.2vw, 5.2rem);
  font-weight: 900;
}

.lead {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.badge-row,
.tool-cloud,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge,
.tool {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.065);
  color: #eef6ff;
  font-size: 0.88rem;
  font-weight: 750;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
}

.btn-primary {
  color: #06101d;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  box-shadow: 0 18px 34px rgba(67, 211, 199, 0.2);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
}

.hero-panel,
.metric-card,
.feature-card,
.experience-card,
.faq-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 26, 44, 0.78);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.hero-panel {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
}

.hero-panel strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.hero-panel span {
  color: var(--muted);
}

.signal-row {
  display: grid;
  gap: 10px;
}

.signal-line {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(255, 255, 255, 0.08));
}

.signal-line:nth-child(2) {
  width: 82%;
  background: linear-gradient(90deg, var(--amber), rgba(255, 255, 255, 0.08));
}

.signal-line:nth-child(3) {
  width: 62%;
  background: linear-gradient(90deg, var(--coral), rgba(255, 255, 255, 0.08));
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.section-title {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
}

.section-copy {
  color: var(--muted);
  font-size: 1rem;
}

.metric-grid,
.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card,
.feature-card,
.faq-card {
  min-height: 178px;
  padding: 20px;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.metric-card span,
.feature-card p,
.experience-card p,
.faq-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-card h3,
.experience-card h3,
.faq-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
}

.experience-card {
  padding: 22px;
  border-top: 4px solid var(--blue);
}

.experience-card:nth-child(2) {
  border-top-color: var(--teal);
}

.experience-card:nth-child(3) {
  border-top-color: var(--amber);
}

.experience-card.wide {
  grid-column: 1 / -1;
}

.cta-panel {
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .experience-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .feature-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand span:last-child {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 8px 0;
  }

  .hero {
    padding: 42px 0 44px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .metric-grid,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}
