:root {
  --sky-100: #ecf9ff;
  --sky-200: #d8f2ff;
  --sky-300: #b9e8ff;
  --sky-500: #2cb7f7;
  --sky-600: #1598df;
  --sky-700: #0a72bc;
  --ink-900: #07325a;
  --ink-700: #1e4d77;
  --white: #ffffff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-soft: 0 14px 35px rgba(10, 114, 188, 0.14);
  --shadow-strong: 0 18px 45px rgba(4, 85, 151, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 0% 0%, rgba(44, 183, 247, 0.13), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(21, 152, 223, 0.2), transparent 42%),
    linear-gradient(160deg, #f9fdff 0%, #eef9ff 48%, #f6fcff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -2;
}

.bg-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(44, 183, 247, 0.32);
  top: -100px;
  left: -80px;
}

.bg-glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(10, 114, 188, 0.2);
  right: -120px;
  bottom: -120px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(217, 242, 255, 0.55) 100%);
  border-top: 1px solid rgba(10, 114, 188, 0.12);
  border-bottom: 1px solid rgba(10, 114, 188, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(10, 114, 188, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-900);
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a,
.footer-links a {
  text-decoration: none;
  color: var(--ink-700);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--sky-700);
}

.button {
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--sky-700);
  border: 1px solid rgba(10, 114, 188, 0.2);
  box-shadow: none;
}

.button-nav {
  white-space: nowrap;
}

.hero {
  padding-top: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sky-700);
  background: rgba(44, 183, 247, 0.14);
  border: 1px solid rgba(10, 114, 188, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  margin-top: 16px;
}

.lead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-700);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  background: linear-gradient(170deg, #ffffff 0%, #e9f7ff 100%);
  border: 1px solid rgba(10, 114, 188, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.hero-logo {
  width: 140px;
  height: auto;
}

.hero-card h2 {
  margin-top: 8px;
  font-size: 1.4rem;
}

.hero-card p {
  margin: 10px 0 14px;
  color: var(--ink-700);
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.hero-card li {
  margin: 8px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.benefit-card,
.stat-card,
.faq-item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 114, 188, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.step-card,
.benefit-card,
.stat-card {
  padding: 22px;
}

.step-index {
  margin: 0 0 6px;
  color: var(--sky-700);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.step-card h3,
.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.step-card p,
.benefit-card p,
.faq-item p,
.site-footer p {
  margin: 0;
  color: var(--ink-700);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stats {
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  text-align: center;
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  color: var(--sky-700);
  margin: 0;
}

.stat-label {
  margin: 4px 0 0;
  color: var(--ink-700);
  font-weight: 600;
}

.stats-meta {
  margin-top: 18px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.about-team {
  margin-top: 38px;
}

.about-team-title {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 114, 188, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.team-avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(10, 114, 188, 0.2);
  background: var(--sky-100);
}

.team-name {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-900);
}

.team-role {
  margin: 2px 0 0;
  color: var(--ink-700);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 14px 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 8px;
}

.site-footer {
  padding: 30px 0 45px;
  border-top: 1px solid rgba(10, 114, 188, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 26px;
}

.footer-grid p {
  margin-top: 10px;
  max-width: 55ch;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .steps-grid,
  .benefits-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .button-nav {
    padding: 10px 16px;
  }

  .hero-card {
    padding: 22px;
  }
}
