@font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-Bold.woff2') format('woff2'),
         url('/fonts/SpaceGrotesk-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-Light.woff2') format('woff2'),
         url('/fonts/SpaceGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-Medium.woff2') format('woff2'),
         url('/fonts/SpaceGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-Regular.woff2') format('woff2'),
         url('/fonts/SpaceGrotesk-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-SemiBold.woff2') format('woff2'),
         url('/fonts/SpaceGrotesk-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



:root {
  --bg-page: #e5edf7;
  --bg-shell-from: #f9fafb;
  --bg-shell-to: #e5edf7;
  --bg-surface: #ffffff;
  --border-subtle: #d4dbe7;
  --text-main: #0f172a;
  --text-soft: #475569;
  --text-muted: #94a3b8;
  --accent: #2563eb;
  --accent-strong: #2563eb;
  --accent-soft: #dbeafe;
  --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.25);
  --font-main: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}



*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at 0% 0%, #ffffff 0, #eef2ff 40%, #e5edf7 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



.top-shell {
  position: relative;
  overflow: visible;
  padding-bottom: 20px;
  background:
    linear-gradient(180deg, rgba(8, 12, 26, 0.62), rgba(8, 12, 26, 0.4)),
    url("images/background.webp") center/cover no-repeat;
  color: #e2e8f0;
}

.top-shell.top-shell--compact {
  padding-bottom: 0;
}

.page-secondary .top-shell {
  background: transparent;
  padding-bottom: 0;
}



.site-header {
  position: relative;
  z-index: 1;
  padding-top: 6px;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e5e7eb;
}

.header-logo {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 22%, #1e293b, #0b1224 68%, #020617 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.55), 0 8px 24px rgba(15, 23, 42, 0.18);
}

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.header-brand-title {
  font-size: 15px;
  font-weight: 600;
  color: #f8fafc;
}

.header-brand-sub {
  font-size: 11px;
  color: #cbd5e1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.header-link {
  color: #e2e8f0;
  padding: 6px 8px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.header-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  text-decoration: none;
}

.header-link-cta {
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #f9fafb;
  font-weight: 600;
  text-decoration: none;
}

.header-link-cta:hover {
  background: linear-gradient(135deg, #4f46e5, #1d4ed8);
  text-decoration: none;
}


.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.page-secondary main {
  padding-top: 90px;
}



.page-secondary .site-header:not(.site-header--scrolled) .header-brand-title {
  color: #0f172a;
}

.page-secondary .site-header:not(.site-header--scrolled) .header-brand-sub {
  color: #475569;
}

.page-secondary .site-header:not(.site-header--scrolled) .header-brand {
  color: #1e293b;
}

.page-secondary .site-header:not(.site-header--scrolled) .header-link {
  color: #334155;
}

.page-secondary .site-header:not(.site-header--scrolled) .header-link:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #0f172a;
  text-decoration: none;
}

.page-secondary .site-header:not(.site-header--scrolled) .header-link-cta {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
}

.page-secondary .site-header:not(.site-header--scrolled) .header-link-cta:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}


.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 999px;
  display: block;
  margin: 3px 0;
}




.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding-top: 6px;
}

.site-header.site-header--scrolled {
  top: 5px; 
}

.site-header.site-header--scrolled .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 18px;

  background: rgba(15, 23, 42, 0.98);
  border-radius: 999px;
}

.site-header .header-inner {
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    border-radius 0.18s ease,
    margin-top 0.18s ease,
    padding 0.18s ease,
    max-width 0.18s ease;
}

@media (max-width: 960px) {
  .site-header.site-header--scrolled .header-inner {
    max-width: 100%;
    border-radius: 14px;
  }
}










.hero-section {
  position: relative;
  z-index: 1;
  padding: 72px 0 46px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 8px;
}

.hero-main {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: #e2e8f0;
}

.hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #cbd5f5;
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.6rem);
  line-height: 1.12;
  margin: 0 0 12px;
  color: #f8fafc;
  letter-spacing: -0.01em;
  text-shadow:
    0 10px 28px rgba(6, 10, 22, 0.45),
    0 5px 14px rgba(37, 99, 235, 0.16);
}

.hero-title-accent {
  display: inline-block;
  margin-top: 4px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  isolation: isolate;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  inset: 52% -3px -6px -3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.5), rgba(34, 197, 94, 0.58), rgba(37, 99, 235, 0.5));
  opacity: 0.24;
  filter: blur(14px);
  z-index: -1;
}

.hero-text {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.hero-text strong {
  color: #e2e8f0;
}



.hero-visual {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-shot-shell {
  position: relative;
  max-width: 1120px;
  width: 100%;
  padding-bottom: 96px;
}

.hero-shot-frame {
  position: relative;
  isolation: isolate;
}


.hero-shot-mask {
  position: relative;
  height: 470px;
  border-radius: 0;
  overflow: hidden;
  background: #020617;
  box-shadow: var(--shadow-soft);
}

.hero-shot-img {
  display: block;
  width: 100%;
  height: 102%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(0);
}


.hero-shot-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 60% at 50% 78%, rgba(6, 10, 22, 0.28) 0%, rgba(6, 10, 22, 0.08) 56%, rgba(6, 10, 22, 0) 72%),
    linear-gradient(180deg, rgba(6, 10, 22, 0) 0%, rgba(6, 10, 22, 0.14) 62%, rgba(6, 10, 22, 0.6) 82%, rgba(6, 10, 22, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}


.hero-shot-cta {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: min(calc(100% + 152px), 1400px);
  max-width: calc(100vw - 24px);
  z-index: 3;
  overflow: visible;
  isolation: isolate;
}


.hero-shot-cta::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(360px, calc(100% - 140px), 1120px);
  height: 66px;
  background: #0b0d14;
  filter: blur(26px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.hero-shot-cta-inner {
  position: relative;
  padding: 10px 24px;
  background:
    linear-gradient(135deg, rgba(12, 18, 32, 0.94), rgba(12, 18, 32, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 12px;
  align-items: center;
  z-index: 2;
}

.hero-shot-cta-left {
  text-align: left;
}

.hero-shot-cta-title {
  font-size: 13px;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 2px;
}

.hero-shot-cta-sub {
  font-size: 12.2px;
  color: #9ca3af;
  max-width: 610px;
  margin-bottom: 10px;
}

.hero-shot-cta-right {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-end;
}



.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 0;
  white-space: nowrap;
  border: 1px solid transparent;
  gap: 8px;
}

.hero-btn-primary-rect {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: transparent;
  color: #f9fafb;
}

.hero-btn-primary-rect:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  text-decoration: none;
}

.hero-btn-secondary-rect {
  background: #020617;
  border-color: rgba(148, 163, 184, 0.9);
  color: #e5e7eb;
}

.hero-btn-secondary-rect:hover {
  background: #0b1120;
  text-decoration: none;
}

.hero-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.7);
  color: #e2e8f0;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.hero-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}



.hero-shot-shadow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -80px;
  height: 40px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 50%, rgba(148, 163, 184, 0.25), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(129, 140, 248, 0.55), transparent 60%);
  filter: blur(24px);
  opacity: 1;
  z-index: -3;
}

.hero-footnote {
  font-size: 12px;
  color: #cbd5e1;
  margin-top: 48px;
  text-align: center;
}



.hero-stats {
  margin-top: 16px;
  padding: 10px 12px 9px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat {
  font-size: 12px;
}

.hero-stat-value {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.hero-stat-label {
  color: #6b7280;
}



.section {
  padding: 32px 0 38px;
}

.section-plain {
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.08), transparent 55%),
    linear-gradient(to bottom, #f9fafb 0%, #e5edf7 60%, #dee7ff 100%);
}

.section-surface {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-inner.narrow {
  max-width: 760px;
}

.section-header {
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 20px;
  margin: 0 0 4px;
  color: #0f172a;
}

.section-subtitle {
  font-size: 13px;
  color: #94a3b8;
}

.section-plain .section-body p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}



.site-footer {
  background:
    radial-gradient(180% 90% at 50% 120%, rgba(15, 23, 42, 0.48), rgba(2, 6, 23, 0) 70%),
    linear-gradient(180deg, #0b1224 0%, #050914 100%);
  color: #e5e7eb;
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 1);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 16px 18px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 3fr);
  gap: 26px;
  border-bottom: 1px solid rgba(30, 64, 175, 0.65);
  padding-bottom: 36px;
}



.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.footer-logo {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 22%, #1e293b, #020617 75%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 600;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.6),
    0 10px 26px rgba(15, 23, 42, 0.9);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  font-size: 15px;
  font-weight: 600;
  color: #f9fafb;
}

.footer-brand-sub {
  font-size: 11px;
  color: #9ca3af;
}

.footer-lead {
  font-size: 15px;
  color: #cbd5e1;
  margin: 8px 0 6px;
}



.footer-contact {
  font-size: 12px;
  color: #9ca3af;
  margin: 2px 0 10px;
}

.footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}



.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


.footer-btn {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: rgba(37, 99, 235, 0.9);
  color: #f9fafb;
  text-decoration: none;
  margin-top: 5px;
}

.footer-btn-primary:hover {
  text-decoration: none;
  opacity: 0.9;
}


.footer-btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
}

.footer-btn-secondary:hover {
  background: rgba(30, 64, 175, 0.5);
  text-decoration: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.footer-heading {
  font-size: 14.5px;
  font-weight: 600;
  margin: 10px 0 5px;
  color: #e5e7eb;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 15px;
}

.footer-list a {
  font-size: 14px;
  color: #9ca3af;
}

.footer-list a:hover {
  color: #e5e7eb;
  text-decoration: none;
}


.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 10px;
  font-size: 12.3px;
  color: #6b7280;
}

.footer-meta {
  margin: 0;
  color: #9ca3af;
}


@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 720px) {
  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer-contact {
  font-size: 13px;
  color: #9ca3af;
  margin: 17px 0 0;
}

.footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}


@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-shot-mask {
    height: 500px;
  }
}

@media (max-width: 720px) {
  .header-nav {
    position: absolute;
    top: 56px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 12px;
    padding: 8px 10px 10px;
    border: 1px solid rgba(30, 64, 175, 0.8);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .header-nav.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-shot-mask {
    height: 360px;
  }

  .hero-shot-img {
    height: 108%;
    object-position: center top;
    transform: translateY(0);
  }

  .hero-shot-cta {
    left: 50%;
    width: calc(100% - 12px);
    max-width: 1250px;
    top: 100%;
  }

  .hero-shot-cta-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px 20px;
  }

  .hero-shot-cta-left {
    text-align: left;
    white-space: normal;
  }

  .hero-shot-shadow {
    left: 22%;
    right: 22%;
    bottom: -72px;
  }

.hero-stats {
  grid-template-columns: minmax(0, 1fr);
  }
}

.benefits-section .section-inner {
  max-width: 1120px;
}

.benefits-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.benefits-head {
  text-align: left;
  margin-bottom: 0;
  padding: 10px 0;
}

.benefits-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.7);
}

.benefits-head h2 {
  font-size: 26px;
  margin: 10px 0 8px;
  color: #0f172a;
}

.benefits-lede {
  font-size: 14px;
  color: #4b5563;
  margin: 6px 0;
}

.benefits-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.benefits-pill {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

.benefits-visual {
  display: flex;
  justify-content: flex-end;
}



.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(12, 18, 32, 0.96), rgba(10, 14, 26, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  color: #e2e8f0;
}

.benefit-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.benefit-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #cbd5f5;
}

.benefit-chip {
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  color: #bfdbfe;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.benefit-card h3 {
  margin: 4px 0 8px;
  font-size: 16px;
  color: #f8fafc;
}

.benefit-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px;
}

.benefit-points li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

.benefit-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.benefit-card.card-blue {
  border-color: rgba(59, 130, 246, 0.5);
}

.benefit-card.card-emerald {
  border-color: rgba(52, 211, 153, 0.5);
}

.benefit-card.card-amber {
  border-color: rgba(249, 115, 22, 0.5);
}

.benefit-card.card-orange {
  border-color: rgba(244, 114, 182, 0.4);
}

.benefit-card.card-slate {
  border-color: rgba(100, 116, 139, 0.45);
}

.benefits-cards article:nth-child(4) {
  grid-column: span 2;
}

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

  .benefits-visual {
    justify-content: center;
  }

  .benefits-img {
    max-width: 420px;
  }

  .benefits-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .benefits-cards article:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .benefits-head h2 {
    font-size: 22px;
  }

  .benefits-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}






.hero-shot-cta-inner {
  position: relative;
  padding: 10px 24px;
  background:
    linear-gradient(135deg, rgba(12, 18, 32, 0.94), rgba(12, 18, 32, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 3px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 12px;
  align-items: center;
  z-index: 2;
  overflow: visible; 
}

.hero-shot-cta-inner::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 150px);
  max-width: 1120px;
  height: 42px;
  pointer-events: none;
  z-index: -1;

  background: radial-gradient(
    120% 85% at 50% 100%,
    rgba(12, 18, 32, 1) 0%,        
    rgba(12, 18, 32, 0.65) 45%,    
    rgba(7, 13, 24, 0.28) 72%,     
    rgba(7, 13, 24, 0) 100%        
  );

  filter: blur(12px);              
  opacity: 0.9;
}




.hero-shot-cta-inner {
  position: relative;
  padding: 17px 24px;
  
  background:#070d18;
  border-radius: 3px;

  
  border: 2px solid transparent;
  border-image: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.9),   
    rgba(56, 189, 248, 0.9),  
    rgba(34, 197, 94, 0.9)    
  ) 1;

  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 12px;
  align-items: center;
  z-index: 2;
}






.section-contrast-light.benefits-what-changes {
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 60%, #e5edf7 100%);
  padding: 82px 0 90px;
}

.benefits-what-header {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.benefits-what-header h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 10px;
}

.benefits-what-header .section-lede {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 0 auto;
  max-width: 640px;
}



.flows-contrast {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}



.flow-column {
  position: relative;
  border-radius: 5px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.flow-column-before {
  opacity: 0.96;
}

.flow-column-after {
  border-color: rgba(99, 102, 241, 0.9);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
}



.flow-column-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}

.flow-column-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 0 0 14px;
}



.flow-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.flow-line-after {
  border-bottom-color: rgba(129, 140, 248, 0.9);
}



.flow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: #4b5563;
  background: #e5e7eb;
}

.flow-pill-strong {
  font-weight: 500;
  color: #0b1120;
  background: #e0ecff;
}



.flow-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.flow-points li {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.flow-column-before .flow-points li {
  color: #525e6a;
}



@media (max-width: 960px) {
  .benefits-what-header h2 {
    font-size: 26px;
  }

  .benefits-what-header .section-lede {
    font-size: 15px;
  }

  .flows-contrast {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .section-contrast-light.benefits-what-changes {
    padding: 56px 0 64px;
  }

  .flow-column {
    padding: 16px 14px 16px;
    border-radius: 8px;
  }

  .flow-points li {
    font-size: 14px;
  }
}







.ops-layer-section {
background:
  radial-gradient(circle at 4% 6%, rgba(59, 130, 246, 0.10), transparent 70%),
  radial-gradient(circle at 90% 10%, rgba(15, 23, 42, 0.55), transparent 65%),
  linear-gradient(120deg, #020617 0%, #02081d 40%, #020a27 100%);

  padding: 82px 0 90px;
  color: #e2e8f0;
}

.ops-layer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}



.ops-layer-header {
  max-width: 780px;
  margin: 0 0 30px;
  text-align: left;
}

.ops-layer-header h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #f9fafb;
}

.ops-layer-subtitle {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: #9ca3af;
}



.ops-arch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 30px;
}



.ops-arch-box {
  padding: 14px 16px 12px;
  border-radius: 4px;
  background: radial-gradient(circle at 0 0, #020617, #020818);
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.85);
  min-width: 190px;
  max-width: 230px;
}

.ops-arch-box-main {
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.45), transparent 65%),
    #020617;
  border-color: rgba(96, 165, 250, 0.16);
  box-shadow:
    0 12px 40px rgba(37, 99, 235, 0.2),
    0 0 0 1px rgba(15, 23, 42, 0.2);
}



.ops-arch-connector {
  flex: 0 0 40px;
  height: 1.5px;
  background: rgba(148, 163, 184, 0.75);
  margin: 0 10px;
}



.ops-arch-box-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #64748b;
  margin-bottom: 4px;
}

.ops-arch-box-main .ops-arch-box-label {
  color: #bfdbfe;
}

.ops-arch-box-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #e5e7eb;
}

.ops-arch-box-main .ops-arch-box-title {
  color: #f9fafb;
}

.ops-arch-box-meta {
  font-size: 13px;
  color: #94a3b8;
}



.ops-layer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 4px;
}

.ops-layer-card {
  padding: 18px 18px 16px;
  border-radius: 6px;
  background: radial-gradient(circle at 0 0, #020617, #020818);
  border: 1px solid rgba(51, 65, 85, 0.95);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.9);
}

.ops-layer-card-muted {
  background: radial-gradient(circle at 0 0, #020617, #020920);
  border-color: rgba(148, 163, 184, 0.95);
}



.ops-layer-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  margin-bottom: 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}

.ops-layer-card-muted .ops-layer-tag {
  border-color: rgba(250, 204, 21, 0.75);
  color: #facc15;
}

.ops-layer-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 9px;
  color: #f1f5f9;
}

.ops-layer-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #cbd5e1;
}

.ops-layer-card ul li + li {
  margin-top: 5px;
}



@media (max-width: 1080px) {
  .ops-arch-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .ops-arch-connector {
    display: none;
  }

  .ops-arch-box {
    flex: 1 1 45%;
    max-width: none;
  }

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

@media (max-width: 720px) {
  .ops-layer-section {
    padding: 56px 0 64px;
  }

  .ops-layer-header h2 {
    font-size: 24px;
  }

  .ops-layer-subtitle {
    font-size: 14px;
  }

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

  .ops-arch-box {
    width: 100%;
  }

  .ops-layer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ops-layer-card {
    padding: 16px 16px 14px;
  }

  .ops-layer-card ul {
    font-size: 13px;
  }
}




#benefits.benefits-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 60%, #e5edf7 100%);
  padding: 82px 0 90px; 
}



.capabilities-section-header {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.capabilities-section-header h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 10px;
}



.benefits-hero {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: flex-start;
}



.benefits-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 0 0 14px;
}



.benefits-lede {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 8px;
}



.benefits-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.benefits-pill {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}



.benefits-visual {
  display: flex;
  justify-content: flex-end;
  align-self: flex-start;
}

.benefits-img {
  width: 100%;
  max-width: 1120px;
  height: auto;
  display: block;
  border-radius: 10px;
}



@media (max-width: 960px) {
  .capabilities-section-header h2 {
    font-size: 26px;
  }

  .benefits-lede {
    font-size: 15px;
  }

  .benefits-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .benefits-visual {
    justify-content: center;
  }

  .benefits-img {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  #benefits.benefits-section {
    padding: 56px 0 64px; 
  }

  .benefits-hero {
    gap: 16px;
  }

  .benefits-img {
    max-width: 340px;
  }

  .benefits-lede {
    font-size: 14px;
  }
}








.download-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.22), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.85), transparent 65%),
    linear-gradient(135deg, #020617 0%, #02091c 40%, #020b24 100%);
  border-top: 1px solid rgba(15, 23, 42, 1);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
  padding: 30px 0 34px;
  color: #e5e7eb;
}

.download-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.download-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.4fr);
  gap: 20px;
  align-items: center;
}

.download-copy {
  text-align: left;
}

.download-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: #f9fafb;
}

.download-subtitle {
  font-size: 14px;
  color: #cbd5f5;
  margin: 0;
}

.download-reco {
  margin: 6px 0 0;
  font-size: 13px;
  color: #a5b4fc;
}



.download-options {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
}

.download-option {
  position: relative;

  flex: 1 1 0;
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding: 10px 14px 9px;

  border-radius: 4px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: linear-gradient(135deg, #020617, #020b1f);

  text-decoration: none;
  color: #e5e7eb;

  
  transition: background 0.14s ease, border-color 0.14s ease;
}



.download-badge {
  display: none;
  position: absolute;
  top: 6px;
  right: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #facc15;
  color: #111827;
}



.download-option.recommended {
  border-color: #facc15;
}



.download-option.recommended .download-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



.download-option:hover {
  background: linear-gradient(135deg, #1e293b, #020617);
  border-color: rgba(191, 219, 254, 0.95);
}




.download-os {
  font-size: 15px;
  font-weight: 600;
  color: #f9fafb;
}

.download-note {
  font-size: 12px;
  margin-top: 1px;
  color: #cbd5f5;
}



@media (max-width: 840px) {
  .download-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .download-options {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .download-section {
    padding: 26px 0 30px;
  }

  .download-title {
    font-size: 20px;
  }

  .download-options {
    flex-wrap: wrap;
    gap: 8px;
  }

  .download-option {
    flex: 1 1 calc(50% - 8px);
  }
}
.download-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 2px;
}

.download-option:hover .download-os {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 2px;
}


.download-option:hover .download-label,
.download-option:hover .download-note {
  text-decoration: none;
}

.download-option,
.download-option:hover {
  text-decoration: none !important;
}





.faq-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 60%, #e5edf7 100%);
  padding: 72px 0 84px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}



.faq-header-left {
  max-width: 720px;
  margin-bottom: 30px;
}

.faq-header-left h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 10px;
}

.faq-lede {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  max-width: 620px;
  margin: 0;
}



.faq-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 32px;
  max-width: 1120px;
}



.faq-column {
  position: relative;
  padding-left: 14px;
}

.faq-column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(148, 163, 184, 0.8),
    rgba(148, 163, 184, 0.15)
  );
}



.faq-column-title {
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-column-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.faq-column-title span:last-child {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f172a;
}



.faq-entry {
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  padding: 14px 0 8px;
}

.faq-entry:first-of-type {
  border-top-color: rgba(203, 213, 225, 1);
}

.faq-entry summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  font-size: 14.4px;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.01em;

  padding-right: 2px;
}

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


.faq-entry summary::after {
  content: "+";
  font-size: 16px;
  line-height: 1;
  color: #9ca3af;
  flex-shrink: 0;
}

.faq-entry[open] summary {
  color: #1e3a8a;
}

.faq-entry[open] summary::after {
  content: "–";
  color: #1e3a8a;
}



.faq-entry p {
  margin: 6px 0 4px;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  padding-right: 4px;
}



.faq-footer-strip {
  margin: 32px auto 0;
  max-width: 1120px;
  padding: 12px 16px;
  border-radius: 5px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-footer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #64748b;
  margin-right: 8px;
}

.faq-footer-text {
  font-size: 13px;
  color: #475569;
}

.faq-footer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.faq-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-footer-link {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
}

.faq-footer-link:hover {
  background: #e0f2fe;
  border-color: rgba(37, 99, 235, 0.8);
}

@media (max-width: 1040px) {
  .faq-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .faq-section {
    padding: 56px 0 64px;
  }

  .faq-header-left h2 {
    font-size: 26px;
  }

  .faq-lede {
    font-size: 15px;
  }

  .faq-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .faq-entry p {
    font-size: 13px;
  }

  .faq-footer-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-footer-links {
    justify-content: flex-start;
  }
}







@media (max-width: 1160px) {
  .hero-shot-cta-inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
  }

  .hero-shot-cta-right {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 920px) {
  .hero-shot-cta {
    left: 50%;
    width: 100%;
    max-width: 1250px;
    top: 100%;
  }

  .hero-shot-cta-inner {
    padding: 12px 16px;
  }

  .hero-shot-cta-right {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .hero-shot-cta-right .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-shot-cta-left {
    text-align: left;
    white-space: normal;
  }
}


@media (max-width: 1250px) {
  .site-header.site-header--scrolled {
    top: 0; 
  }

  .site-header.site-header--scrolled .header-inner {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 1250px) {
  .site-header {
    padding-top: 0;
  }
  }


@media (max-width: 960px) {
  .site-header {
    padding-top: 0;
  }
  
  .top-shell {
    padding-bottom: 40px;
  }

  .header-inner {
    max-width: 100%;
    padding: 8px 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 36px;
    padding: 0;
    margin-left: auto;
    border-radius: 2px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(15, 23, 42, 0.95);
    cursor: pointer;
    position: relative;
    transition:
      background 0.18s ease,
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      transform 0.12s ease;
  }

  .nav-toggle:hover {
    background: rgba(15, 23, 42, 1);
    box-shadow:
      0 0 0 1px rgba(148, 163, 184, 0.4),
      0 6px 14px rgba(15, 23, 42, 0.7);
  }

  .nav-toggle:active {
    transform: scale(0.97);
  }

  .nav-toggle:focus-visible {
    outline: 2px solid #facc15;
    outline-offset: 3px;
  }

  .nav-toggle-line {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 999px;
    transform: translateX(-50%);
    margin: 0; 
  }

  .nav-toggle-line:nth-child(1) {
    top: 13px;
  }

  .nav-toggle-line:nth-child(2) {
    top: 21px;
  }

  .header-nav {
    position: absolute;
    top: 56px;
    right: 12px;
    left: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;

    background: rgba(15, 23, 42, 0.98);
    border-radius: 14px;
    padding: 10px 10px 12px;
    border: 1px solid rgba(30, 64, 175, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .header-nav.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 460px) {
  .top-shell {
    padding-bottom: 40px;
  }
}

.footer-legal-link {
  color: #9ca3af;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: #e5e7eb;
}






.download-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}



.download-modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.65);
  z-index: 80;
}

.download-modal-backdrop.is-open {
  display: flex;
}

.download-modal-dialog {
  width: 100%;
  max-width: 420px;
  margin: 0 16px;
  background:
    radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.3), transparent 60%),
    #020617;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.8);
  padding: 18px 18px 16px;
  color: #e5e7eb;
  position: relative;
}

.download-modal-header {
  border-bottom: 1px solid rgba(30, 64, 175, 0.5);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.download-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #f9fafb;
}

.download-modal-os {
  font-size: 14px;
  color: #cbd5f5;
  margin: 0;
}

.download-modal-copy {
  font-size: 13px;
  color: #cbd5f5;
  margin: 4px 0 8px;
}

.download-modal-list {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 12.5px;
  color: #9ca3af;
}

.download-modal-list li + li {
  margin-top: 3px;
}

.download-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.download-modal-btn {
  appearance: none;
  border: none;
  font: inherit;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 14px 9px;
  font-size: 14px;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.download-modal-btn-primary {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: hsl(240, 100%, 100%);
  font-weight: 600;
}

.download-modal-btn-primary:hover {
  filter: brightness(1.06);
}

.download-modal-btn-secondary {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.download-modal-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.7);
}

.download-modal-footnote {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
}

.download-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: #9ca3af;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.download-modal-close:hover {
  background: rgba(30, 64, 175, 0.7);
  color: #e5e7eb;
}

@media (max-width: 480px) {
  .download-modal-dialog {
    padding: 16px 14px 14px;
  }

  .download-modal-title {
    font-size: 17px;
  }

  .download-modal-os {
    font-size: 13px;
  }
}

.section-pulse {
  position: relative;
  animation: sectionPulseInset 0.9s ease-out 0s 2;
  box-shadow: inset 0 0 0 0 rgba(250, 204, 21, 0.95);
}

@keyframes sectionPulseInset {
  0% {
    box-shadow: inset 0 0 0 0 rgba(250, 204, 21, 0.85);
  }
  50% {
    box-shadow: inset 0 0 4px 1px rgba(250, 204, 21, 0.95);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(250, 204, 21, 0);
  }
}


.download-modal-title {
  display: flex;
  align-items: center;
  gap: 8px; 
  font-size: 22px;
  font-weight: 600;
}

.download-modal-os-icon img {
  width: 25px;
  height: 25px;
  opacity: 0.9;
}

.download-modal-os-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-os {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.download-os-icon {
  width: 18px;          
  height: 18px;
  opacity: 0.85;
  flex-shrink: 0;
  vertical-align: middle;
}

.download-option:hover .download-os-icon {
  opacity: 1;
  transform: translateY(-1px);
  transition: 0.18s ease;
}