:root {
  --bg: #08111d;
  --bg-soft: #0d1726;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.72);
  --accent: #71f0c3;
  --accent-2: #6cbcff;
  --dark: #0b1320;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: #122033;
  background:
    radial-gradient(circle at top left, rgba(108, 188, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(113, 240, 195, 0.18), transparent 26%),
    linear-gradient(180deg, #f4f8fc 0%, #eff4f8 100%);
}

h1, h2, h3, .navbar-brand {
  font-family: "Sora", system-ui, sans-serif;
}

.site-navbar {
  background: rgba(8, 17, 29, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
  letter-spacing: 0.04em;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link:hover {
  color: #fff !important;
}

.nav-link.active {
  color: #fff !important;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06111d;
  border: 0;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(108, 188, 255, 0.25);
}

.btn-accent:hover {
  color: #06111d;
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.btn-accent,
.btn-outline-light {
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5rem;
  background: linear-gradient(135deg, #09111c 0%, #0d1726 45%, #13243a 100%);
  color: var(--text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(113, 240, 195, 0.16), transparent 25%),
    radial-gradient(circle at 85% 25%, rgba(108, 188, 255, 0.14), transparent 28%),
    radial-gradient(circle at 60% 90%, rgba(255, 255, 255, 0.06), transparent 24%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow-dark {
  color: #0e6c54;
}



.hero-section h1 {
  font-size: clamp(2.45rem, 4.6vw, 4.1rem);
  line-height: 1.03;
  max-width: 12.5ch;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.lead {
  color: rgba(244, 247, 251, 0.78);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 34rem;
}

.hero-subline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.trust-pill,
.info-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.trust-pill::after,
.info-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-pill::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.info-pill {
  background: rgba(113, 240, 195, 0.12);
  color: var(--accent);
}

.info-pill::after {
  background: linear-gradient(135deg, rgba(113, 240, 195, 0.18), rgba(108, 188, 255, 0.08));
}

.trust-pill:hover,
.info-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.trust-pill:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.info-pill:hover {
  color: #7ff5d0;
}

.trust-pill:hover::after,
.info-pill:hover::after {
  opacity: 1;
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
  color: rgba(244, 247, 251, 0.86);
  font-size: 1.02rem;
}

.hero-points i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.hero-card {
  position: relative;
  padding: 1.8rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-card-top,
.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-card-bottom {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-bottom .h5 {
  font-size: 1.45rem;
  line-height: 1.12;
}

.hero-card-bottom .text-muted {
  color: var(--accent) !important;
}

.hero-card-top .mini-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.96rem;
  font-weight: 400;
}

.mini-label {
  color: rgba(244, 247, 251, 0.7);
  font-size: 0.9rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(113, 240, 195, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.status-pill i {
  font-size: 0.45rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 165px;
  padding: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(113, 240, 195, 0.12), rgba(108, 188, 255, 0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 240, 195, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.metric-card:hover::after {
  opacity: 1;
}

.metric-value {
  display: block;
  font-size: 2.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.metric-label {
  color: rgba(244, 247, 251, 0.72);
}

.section {
  padding: 5.5rem 0;
}

.section-light {
  background: transparent;
}

.section-dark {
  background: linear-gradient(180deg, #0d1726, #09111c);
  color: #fff;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(2.45rem, 4.6vw, 4.1rem);
  line-height: 1.03;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-head p {
  color: #607086;
  line-height: 1.8;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-card,
.sector-card,
.cta-box {
  height: 100%;
  border-radius: 26px;
  padding: 1.6rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 25, 41, 0.08);
  box-shadow: 0 18px 40px rgba(16, 25, 41, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feature-card:hover,
.timeline-item:hover,
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16, 25, 41, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(113, 240, 195, 0.2), rgba(108, 188, 255, 0.2));
  color: #0e2a45;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-header .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-card h3,
.sector-card h3,
.timeline h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.feature-header h3 {
  margin-bottom: 0;
  line-height: 1.05;
}

.quote-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-card p,
.sector-card p,
.timeline p,
.cta-box p {
  color: #607086;
  line-height: 1.75;
  margin-bottom: 0;
}

.sector-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sector-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.sector-header i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(113, 240, 195, 0.14);
  color: var(--accent);
  font-size: 1.2rem;
}

.sector-card p,
.sector-card li {
  color: rgba(255, 255, 255, 0.72);
}

.sector-header h3 {
  min-height: 2.6em;
  line-height: 1.1;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.sector-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.45rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 25, 41, 0.08);
  box-shadow: 0 12px 28px rgba(16, 25, 41, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f2944;
  background: linear-gradient(135deg, rgba(113, 240, 195, 0.35), rgba(108, 188, 255, 0.35));
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  background: linear-gradient(135deg, #0b1320 0%, #13243a 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-box .eyebrow {
  color: var(--accent);
}

.cta-box .small {
  letter-spacing: 0.01em;
}

.cta-box .btn-accent {
  box-shadow: 0 16px 40px rgba(113, 240, 195, 0.2);
}

.cta-email {
  width: 100%;
}

@media (min-width: 992px) {
  .cta-email {
    width: auto;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.site-footer {
  padding: 1.5rem 0 2rem;
  color: #607086;
}

.app-shell {
  padding: 0 0 4rem;
}

.app-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.app-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.glass-banner {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  border-radius: 26px;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 25, 41, 0.08);
  box-shadow: 0 18px 48px rgba(16, 25, 41, 0.08);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(108, 188, 255, 0.14);
  color: #0f2944;
  font-size: 0.85rem;
  font-weight: 800;
}

.quote-card {
  border-radius: 24px;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 25, 41, 0.08);
  box-shadow: 0 20px 50px rgba(16, 25, 41, 0.08);
}

.quote-card p {
  color: #607086;
  margin-bottom: 0;
}

.faq-item {
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 25, 41, 0.08);
}

.faq-item + .faq-item {
  margin-top: 0.9rem;
}

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

.footer-links a {
  color: inherit;
  text-decoration: none;
}

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

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 5.5rem;
  }

  .hero-section h1 {
    max-width: none;
  }

  .feature-header,
  .sector-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-header .feature-icon,
  .sector-header i {
    margin-bottom: 0.75rem;
  }

  .feature-header h3,
  .sector-header h3 {
    min-height: 0;
    line-height: 1.15;
    font-size: 1.35rem;
  }
}

@media (min-width: 992px) {
  .hero-section .row > .col-lg-6:first-child {
    padding-right: 2.5rem;
  }

  .hero-section .row > .col-lg-6:last-child {
    padding-left: 1.5rem;
  }

  .hero-card {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 4rem 0;
  }



  .card-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    width: 62px;
    height: 62px;
  }

  .hero-card-top,
  .hero-card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .glass-banner {
    margin-top: 0;
  }
}

.site-navbar .navbar-brand {
  padding: 0;
  line-height: 1;
}

.site-logo {
  display: block;
  height: 31px;
  width: auto;
}

@media (max-width: 767.98px) {
  .site-logo {
    height: 26px;
  }
}