:root {
  color-scheme: dark;
  --bg: #040b1a;
  --bg-alt: #09152d;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #eff6ff;
  --muted: #aac2f2;
  --accent: #ff8a32;
  --accent-soft: #ffd3b0;
  --border: rgba(255, 255, 255, 0.1);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: radial-gradient(circle at top left, rgba(24, 112, 255, 0.18), transparent 28%), linear-gradient(180deg, #061027 0%, #040b1a 100%);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

button,
input,
textarea,
a {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(4, 11, 26, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  text-decoration: none;
}

.brand-logo,
.footer-logo {
  width: 3.2rem;
  height: auto;
  display: block;
}

.brand span {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.footer-logo {
  width: 2.6rem;
}

.footer-brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  color: #fff;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.section {
  padding: clamp(3rem, 4vw, 5rem) 0;
}

.hero {
  padding-top: 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy-panel {
  display: grid;
  gap: 1.8rem;
}

.hero-copy-panel .eyebrow {
  color: #8fbbff;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.02;
  max-width: 13ch;
  margin: 0;
}

.hero-copy {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats div {
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

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

.hero-panel {
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 138, 50, 0.24), transparent 36%), radial-gradient(circle at bottom left, rgba(29, 118, 255, 0.18), transparent 30%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(7, 15, 40, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 138, 50, 0.16);
  color: #ffb87b;
  font-weight: 600;
}

.hero-card h2 {
  margin: 0 0 0.85rem;
  font-size: 2rem;
}

.hero-card p {
  margin: 0 0 1.7rem;
  color: var(--muted);
}

.hero-card-list {
  display: grid;
  gap: 1rem;
}

.hero-card-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.hero-card-list strong {
  color: #fff;
}

.section-heading {
  display: grid;
  gap: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  color: #94b8ff;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.services {
  background: #071029;
}

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

.service-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,138,50,0.16), rgba(255,138,50,0.05));
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.service-card h3 {
  margin: 0 0 0.85rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.how-it-works {
  background: #020716;
}

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

.step-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: #1839ff;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin: 0 0 0.85rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.contact {
  background: linear-gradient(180deg, rgba(9, 20, 45, 0.92) 0%, rgba(4, 11, 26, 0.96) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.contact-panel .eyebrow {
  color: #94b8ff;
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.contact-panel p {
  color: var(--muted);
  margin: 0;
}

.support-card {
  padding: 1.5rem 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.support-card-secondary {
  background: rgba(255,255,255,0.03);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}

.contact-form h3 {
  margin: 0 0 0.5rem;
}

.contact-form label {
  font-weight: 600;
  color: #e7f1ff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.62);
}

.checkbox-label {
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.checkbox-label input {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-label a {
  color: #b2d5ff;
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #ff8a32, #ffb55a);
  color: #06101c;
  box-shadow: 0 14px 40px rgba(255, 138, 50, 0.24);
}

.button.secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}

.form-note {
  margin: 0;
  color: #92b1e0;
  font-size: 0.95rem;
}

.site-footer {
  padding: 1.75rem 0;
}

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

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

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

.footer-links a:hover {
  color: #fff;
}

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

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .site-nav.active {
    display: flex;
  }

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

  .header-inner {
    flex-wrap: wrap;
  }

  .button {
    width: fit-content;
  }
}
