:root {
  --bg: #edf3ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #0f1b35;
  --muted: #5f6d88;
  --primary: #2457ff;
  --primary-dark: #1639a4;
  --accent: #16a34a;
  --line: rgba(83, 113, 214, 0.16);
  --shadow: 0 24px 60px rgba(24, 46, 113, 0.12);
  --shadow-soft: 0 16px 34px rgba(24, 46, 113, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(90, 133, 255, 0.24), transparent 28%),
    radial-gradient(circle at 88% 7%, rgba(47, 181, 115, 0.16), transparent 16%),
    linear-gradient(180deg, #0c1430 0%, #12214a 16%, var(--bg) 17%, var(--bg) 100%);
}

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

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

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(12, 20, 48, 0.68);
  border-bottom: 1px solid rgba(163, 184, 255, 0.12);
}

.nav-bar,
.footer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-bar {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8fbff;
}

.brand-mark {
  width: 46px;
  height: 46px;
  padding: 8px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(220, 230, 255, 0.9));
  box-shadow: 0 16px 30px rgba(33, 58, 136, 0.18);
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links {
  color: rgba(238, 244, 255, 0.76);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.button,
.button-secondary,
.mobile-cta a,
.related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, #5f82ff 100%);
  box-shadow: 0 20px 36px rgba(36, 87, 255, 0.24);
}

.button-secondary {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 202, 255, 0.18);
}

.button:hover,
.button-secondary:hover,
.related-link:hover,
.card:hover {
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 44px 0 42px;
}

.hero-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
}

.hero-grid {
  align-items: start;
}

.cta-grid {
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(176, 196, 255, 0.16);
  color: rgba(236, 243, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.9rem, 6vw, 5.1rem);
  color: #f8fbff;
  max-width: 11ch;
}

.hero h1 span {
  color: #9ec0ff;
}

.hero-copy,
.section-heading p,
.card p,
.cta-panel p,
.footer-copy {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}

.hero-copy {
  max-width: 60ch;
  margin-top: 18px;
  color: rgba(229, 236, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 202, 255, 0.14);
  color: rgba(236, 243, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-panel,
.card,
.cta-panel,
.footer-panel {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(60, 103, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 255, 0.92));
}

.hero-shot {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(92, 122, 220, 0.14);
  box-shadow: var(--shadow-soft);
}

.floating-note {
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(17, 31, 69, 0.92);
  color: rgba(238, 243, 255, 0.84);
}

.floating-note strong,
.card strong,
.related-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

.floating-note p {
  margin: 8px 0 0;
  line-height: 1.68;
}

.section {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading-main {
  display: grid;
  gap: 10px;
}

.section-kicker {
  color: var(--primary-dark);
  background: rgba(36, 87, 255, 0.08);
  border-color: rgba(36, 87, 255, 0.12);
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 12ch;
}

.grid-three,
.feature-grid,
.faq-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

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

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(36, 87, 255, 0.14), rgba(36, 87, 255, 0.05));
  color: var(--primary);
  font-weight: 800;
}

.card strong {
  font-size: 1.26rem;
}

.card p {
  margin-top: 12px;
}

.feature-list,
.cta-panel ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.feature-list li,
.cta-panel li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.feature-list li::before,
.cta-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.52rem;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.visual-card {
  padding: 0;
  overflow: hidden;
}

.visual-card img {
  aspect-ratio: 11 / 9;
  object-fit: cover;
  width: 100%;
}

.visual-copy {
  padding: 22px;
}

.visual-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(36, 87, 255, 0.08);
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.visual-copy strong {
  margin-top: 12px;
  font-size: 1.25rem;
}

.visual-copy p {
  margin-top: 10px;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
  font-family: "Outfit", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.72;
}

.cta-panel {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(36, 87, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 255, 0.92));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.related-link {
  min-height: 46px;
  justify-content: flex-start;
  padding-inline: 18px;
  background: rgba(36, 87, 255, 0.08);
  color: var(--primary-dark);
}

.footer {
  padding: 16px 0 34px;
}

.footer-panel {
  padding: 22px 24px;
}

.footer-copy {
  max-width: 42ch;
}

.support-email {
  margin: 10px 0 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 700;
}

.support-email a {
  color: var(--primary-dark);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .cta-grid,
  .grid-three,
  .feature-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .nav-bar,
  .nav-links,
  .nav-actions,
  .footer-panel {
    flex-wrap: wrap;
  }

  .nav-bar {
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid,
  .cta-grid,
  .grid-three,
  .feature-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .card,
  .cta-panel,
  .footer-panel {
    padding: 18px;
  }

  .hero h1,
  .section-heading h2,
  .cta-panel h2 {
    max-width: none;
  }

  .footer {
    padding-bottom: 112px;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
  }

  .mobile-cta a {
    min-height: 56px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #5f82ff 100%);
    box-shadow: 0 22px 40px rgba(36, 87, 255, 0.26);
  }
}
