:root {
  --bg: #0a0f14;
  --bg-soft: #111a22;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f7fb;
  --muted: #c3cbd8;
  --accent: #2fd3a2;
  --accent-strong: #1ab88b;
  --accent-cool: #4aa3ff;
  --stroke: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
  --radius: 20px;
  --focus: #ffd166;
}

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

body {
  font-family: "Zen Kaku Gothic New", "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 999px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.85;
}

.orb--one {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 30% 30%, rgba(47, 211, 162, 0.7), transparent 62%);
  top: -120px;
  left: -120px;
}

.orb--two {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 70% 30%, rgba(74, 163, 255, 0.7), transparent 65%);
  bottom: -180px;
  right: -180px;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(11, 15, 20, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-mark {
  background: var(--accent);
  color: #0b0f14;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.logo-text {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--text);
}

.hero {
  padding: 120px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  line-height: 1.2;
  margin: 14px 0 18px;
  font-family: "Space Grotesk", sans-serif;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0b0f14;
  box-shadow: 0 12px 30px rgba(47, 211, 162, 0.42);
}

.btn.ghost {
  border-color: var(--surface-strong);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.trust {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.trust-label {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.panel-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.panel-title {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.panel-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.03);
}

.section-head {
  margin-bottom: 36px;
  max-width: 720px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  margin: 10px 0 12px;
  font-family: "Space Grotesk", sans-serif;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.policy h3 {
  margin-top: 24px;
  padding-top: 18px;
  font-size: 1.08rem;
  border-top: 1px solid var(--stroke);
}

.policy h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy p {
  margin-top: 10px;
  margin-bottom: 6px;
  color: var(--muted);
}


.card ul {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
}

.process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.process-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: center;
}

.about-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.about-metrics {
  display: grid;
  gap: 18px;
}

.metric {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--accent);
}

.accordion {
  display: grid;
  gap: 12px;
}

summary {
  cursor: pointer;
  padding: 16px 18px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--stroke);
  font-weight: 600;
}

summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

details p {
  padding: 14px 18px 18px;
  color: var(--muted);
}

.contact {
  padding-bottom: 120px;
}

.contact-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 10px;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-links a {
  color: var(--muted);
}

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

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

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 0 60px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .header-inner {
    padding: 14px 0;
  }
}
