:root {
  --bg: #090f17;
  --bg-2: #111a25;
  --panel: rgba(16, 27, 41, 0.78);
  --panel-strong: #18283c;
  --text: #edf6ff;
  --muted: #9cb2c7;
  --line: rgba(147, 188, 220, 0.2);
  --orange: #ff9800;
  --orange-2: #ffb547;
  --orange-3: #ffd08a;
  --blue: #1a5d8d;
  --radius: 20px;
  --shadow: 0 28px 80px rgba(2, 8, 16, 0.56);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(70% 45% at 12% -5%, rgba(255, 152, 0, 0.24), transparent 60%),
    radial-gradient(42% 35% at 88% 0%, rgba(20, 97, 145, 0.28), transparent 70%),
    linear-gradient(180deg, #070d15 0%, #0a121d 42%, #0c1420 100%);
  overflow-x: clip;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 88%);
}

.page-shell,
.topbar,
.footer {
  width: min(1200px, calc(100vw - 2.4rem));
  margin-inline: auto;
}

.topbar {
  margin-top: 0.8rem;
  position: sticky;
  top: 0.75rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.76rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 15, 24, 0.76);
  backdrop-filter: blur(16px);
}

.brand {
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.brand .main {
  color: var(--orange);
}

.brand .dot,
.brand .main span {
  color: #2b8cc7;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.btn.primary {
  color: #09121e;
  background: linear-gradient(120deg, var(--orange), var(--orange-2));
  box-shadow: 0 12px 28px rgba(255, 152, 0, 0.26);
}

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

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

.btn.secondary:hover {
  border-color: rgba(255, 165, 49, 0.7);
}

.section {
  padding: 4.8rem 0;
}

.kicker {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

p,
li,
a,
small {
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
}

.lead {
  margin: 1.05rem 0 1.35rem;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.62;
  font-size: 1.02rem;
}

.hero {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: center;
}

.hero strong.accent {
  color: transparent;
  background: linear-gradient(120deg, var(--orange-3), var(--orange), #2aa4ea);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.pain-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.pain-grid article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
}

.pain-grid strong {
  display: block;
  font-size: 0.95rem;
}

.pain-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.32), transparent 68%);
}

.metric-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.live {
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 999px;
  color: #102335;
  background: linear-gradient(120deg, var(--orange-3), var(--orange));
  padding: 0.25rem 0.5rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.68rem;
}

.metric-grid article {
  border: 1px solid rgba(151, 197, 231, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.78rem;
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.metric-grid strong {
  font-size: 1.26rem;
}

.spark-bars {
  margin-top: 0.95rem;
  height: 120px;
  display: flex;
  gap: 0.35rem;
  align-items: flex-end;
}

.spark-bars span {
  flex: 1;
  height: calc(var(--v) * 1%);
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--orange-3), var(--orange));
}

.trust-ticker {
  margin-top: 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.58rem;
  display: flex;
  gap: 0.5rem;
  overflow: hidden;
}

.trust-ticker span {
  white-space: nowrap;
  display: inline-block;
  color: #cfe5f6;
  border: 1px solid rgba(160, 205, 236, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: rgba(6, 20, 33, 0.82);
  font-size: 0.8rem;
  animation: slide 20s linear infinite;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.card .tag {
  margin: 0 0 0.45rem;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0b2134;
  background: linear-gradient(120deg, var(--orange-3), var(--orange));
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
}

.card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.quote-meta {
  margin-top: 0.65rem;
  color: #d6e9f8;
  font-size: 0.84rem;
  font-weight: 600;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 180, 93, 0.6);
}

.timeline {
  padding: 1rem;
}

.timeline ol {
  margin: 0.8rem 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.6rem;
  align-items: start;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.45rem;
}

.timeline li span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #112335;
  background: linear-gradient(180deg, var(--orange-3), var(--orange));
}

.timeline p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.kpi-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.kpi-band article {
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 30, 46, 0.86), rgba(10, 22, 34, 0.88));
}

.kpi-band strong {
  display: block;
  font-size: 1.08rem;
}

.kpi-band span {
  color: var(--muted);
  font-size: 0.85rem;
}

.cta-box {
  text-align: center;
  padding: 2rem 1.2rem;
}

.cta-box p {
  color: var(--muted);
  max-width: 64ch;
  margin-inline: auto;
}

.faq details {
  margin-bottom: 0.55rem;
  padding: 0.9rem;
}

.faq summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer .links {
  display: flex;
  gap: 1rem;
}

.footer small {
  width: 100%;
  color: #86a5bc;
}

.page-hero {
  padding-top: 3.5rem;
}

.page-hero h1 {
  max-width: 18ch;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.list li {
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--orange), var(--orange-3));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .kpi-band,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar {
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .feature-grid,
  .kpi-band,
  .metric-grid,
  .pain-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-18px); }
}
