:root {
  --bg: #040804;
  --bg-soft: #0c130d;
  --panel: rgba(10, 17, 11, 0.84);
  --panel-strong: #101810;
  --line: rgba(117, 255, 162, 0.16);
  --primary: #63f89b;
  --primary-strong: #2ddb71;
  --text: #f5fff7;
  --muted: #c1d0c4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(99, 248, 155, 0.15), transparent 28%),
    radial-gradient(circle at left center, rgba(99, 248, 155, 0.08), transparent 24%),
    linear-gradient(180deg, #020402 0%, #071008 48%, #030503 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 255, 146, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 255, 146, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(3, 7, 4, 0.74);
  border-bottom: 1px solid rgba(117, 255, 162, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 7, 4, 0.9);
  border-color: rgba(117, 255, 162, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.header-inner,
.footer-inner,
.hero-grid,
.split-layout,
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-inner {
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.brand-mark-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(117, 255, 162, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(99, 248, 155, 0.1), rgba(99, 248, 155, 0.04));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.brand-logo {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.1;
}

.brand-text strong,
.footer-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(117, 255, 162, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(99, 248, 155, 0.08), rgba(99, 248, 155, 0.04));
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(93, 255, 146, 0.08);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
}

.hero,
.section {
  padding: 6rem 0;
}

.hero {
  padding-top: 6.5rem;
}

.hero-grid {
  align-items: stretch;
  gap: 3.5rem;
}

.hero-copy,
.hero-panel {
  flex: 1 1 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.9rem, 6.1vw, 4.9rem);
  max-width: 9.5ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.hero-text,
.copy-block p,
.section-heading + *,
.cta-box p,
.info-card p,
.feature-card p,
.faq-item p {
  color: var(--muted);
}

.hero-text {
  max-width: 56ch;
  font-size: 1.04rem;
  margin: 1.5rem 0 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-badges span,
.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(99, 248, 155, 0.07);
  color: var(--text);
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #031006;
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  max-width: 42ch;
  list-style: none;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(93, 255, 146, 0.55);
}

.status-card,
.info-card,
.feature-card,
.cta-box,
.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.status-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  min-height: 100%;
  border-radius: calc(var(--radius) + 4px);
}

.status-top {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero-logo {
  width: clamp(68px, 10vw, 92px);
  height: auto;
  flex-shrink: 0;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.status-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 255, 146, 0.25), transparent 60%);
}

.status-badge {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(93, 255, 146, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.metric-grid,
.card-grid,
.feature-grid,
.faq-list {
  display: grid;
  gap: 1.25rem;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.metric-grid div,
.info-card,
.feature-card,
.process-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.metric-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

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

.section-heading {
  margin-bottom: 2rem;
}

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

.info-card {
  position: relative;
}

.card-tag {
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(93, 255, 146, 0.03));
}

.split-layout {
  align-items: start;
}

.copy-block {
  max-width: 58ch;
}

.about-points,
.process-grid,
.trust-strip {
  display: grid;
  gap: 1rem;
}

.about-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.about-points div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.about-points strong,
.trust-strip strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
}

.about-points span,
.trust-strip span,
.cta-note,
.process-card p {
  color: var(--muted);
}

.cta-section {
  padding-top: 2rem;
}

.cta-box {
  padding: 2rem;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(93, 255, 146, 0.13), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.cta-note {
  margin: 0;
  max-width: 26ch;
  font-size: 0.95rem;
}

.trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.trust-strip div,
.process-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 14, 9, 0.72);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 1rem 1.1rem;
}

.mini-console {
  margin-top: 1.5rem;
  padding: 1rem 1rem 0.25rem;
  border: 1px solid rgba(99, 248, 155, 0.18);
  border-radius: 18px;
  background: rgba(3, 8, 4, 0.85);
}

.console-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.console-bar span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.console-bar span:first-child {
  background: #ff6057;
}

.console-bar span:nth-child(2) {
  background: #ffbd2e;
}

.console-bar span:nth-child(3) {
  background: var(--primary);
}

.mini-console p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
}

.mini-console span {
  color: var(--primary);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.faq-item p {
  margin-bottom: 0;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(117, 255, 162, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-mark {
  width: 3.1rem;
  height: 3.1rem;
  flex-shrink: 0;
}

.footer-logo {
  width: 1.7rem;
  height: 1.7rem;
}

.footer-inner {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-brand p {
  margin: 0;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-layout,
  .cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid,
  .feature-grid,
  .about-points,
  .trust-strip,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero,
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 4.75rem;
  }

  .header-inner {
    min-height: 80px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 11, 6, 0.96);
    box-shadow: var(--shadow);
  }

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

  .card-grid,
  .feature-grid,
  .metric-grid,
  .about-points,
  .trust-strip,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .status-top,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    max-width: 11ch;
  }
}
