:root {
  --bg-1: #07142a;
  --bg-2: #0a1d3a;
  --bg-3: #0c2745;
  --panel: rgba(13, 30, 55, 0.8);
  --panel-border: rgba(123, 185, 255, 0.24);
  --text: #e8f1ff;
  --muted: #9fb4d1;
  --brand: #7ebeff;
  --brand-strong: #52a5ff;
  --accent: #5cd37a;
  --accent-strong: #39b25a;
  --danger: #ff7777;
  --shadow: 0 18px 48px rgba(3, 9, 20, 0.45);
  --radius: 14px;
  --max-width: 1160px;
  --space: 1.25rem;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: linear-gradient(180deg, #061125 0%, #12345d 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

.site-header,
.breadcrumbs-bar,
.site-footer {
  flex-shrink: 0;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  background: #0f2c52;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  border-bottom: 1px solid rgba(126, 190, 255, 0.24);
  backdrop-filter: blur(9px);
  background: rgba(6, 18, 36, 0.78);
}

.site-header.scrolled {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  background: rgba(6, 18, 36, 0.9);
}

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

.brand-home-link {
  text-decoration: none;
  color: inherit;
}

.brand-home-link:hover,
.brand-home-link:focus-visible {
  opacity: 0.92;
}

.breadcrumbs-bar {
  background: rgba(7, 21, 40, 0.45);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs .crumb-home {
  color: #dbeaff;
  font-weight: 700;
}

.breadcrumbs .sep {
  color: rgba(159, 180, 209, 0.75);
}

.breadcrumbs a {
  color: #9fd2ff;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: #d8ecff;
}

.breadcrumbs a.crumb-home,
.breadcrumbs a.crumb-home:hover,
.breadcrumbs a.crumb-home:focus-visible {
  color: #dbeaff;
  font-weight: 700;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.01rem;
  margin-right: auto;
}

.site-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  word-spacing: 0.18em;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 0.68rem 1.08rem;
  border: 1px solid rgba(126, 190, 255, 0.34);
  background: rgba(15, 36, 67, 0.72);
  color: #dcedff;
  text-decoration: none;
  font-weight: 700;
}

.nav-mobile-call {
  display: none !important;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  border-color: rgba(126, 190, 255, 0.6);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(126, 190, 255, 0.35);
  background: rgba(12, 33, 60, 0.85);
  color: #eaf3ff;
  border-radius: 6px;
  padding: 0.95rem 0.75rem;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.page-main {
  padding: 2.5rem 0 3.3rem;
}

.hero {
  padding: 2.8rem 0 1.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: #9dc9ff;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  max-width: 14ch;
}

.hero h1 .accent {
  color: #9fd2ff;
}

.hero .lead {
  margin: 0;
  max-width: 39ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.checklist {
  list-style: none;
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #cfdef3;
  font-size: 1.02rem;
}

.checklist .icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  margin-top: 0.04rem;
  color: #88d2ff;
}

.checklist .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.btn,
button.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.68rem 1.08rem;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn,
.nav-phone {
  min-width: 152px;
  min-height: 44px;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.35s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  left: 130%;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #072616;
  box-shadow: 0 8px 20px rgba(57, 178, 90, 0.35);
}

.btn.ghost {
  border-color: rgba(126, 190, 255, 0.34);
  background: rgba(17, 41, 74, 0.78);
  color: #dfefff;
}

.call-btn {
  border-color: rgba(92, 211, 122, 0.75) !important;
}

.funding-card {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(19, 40, 70, 0.88), rgba(10, 23, 43, 0.92));
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.funding-card h2,
.funding-card h3 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.funding-card .fine {
  margin: 0.75rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 0.62rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.89rem;
  color: #c6ddfb;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(126, 190, 255, 0.32);
  background: rgba(8, 20, 38, 0.85);
  color: #f5f9ff;
  padding: 0.68rem 0.76rem;
  font-size: 1rem;
  font-family: inherit;
}

.form-row textarea {
  resize: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #8ea9c8;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(126, 190, 255, 0.45);
  border-color: rgba(126, 190, 255, 0.55);
}

.form-status {
  margin-top: 0.55rem;
  min-height: 1.2em;
  color: #9cd8ad;
}

.section {
  padding: 2.5rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-bar {
  padding: 0;
}

.trust-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-items li {
  color: #d8e8fc;
}

.trust-items h3 {
  margin: 0 0 0.5rem;
  font-size: 1.03rem;
  color: #e9f3ff;
}

.trust-items p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.trust-items p + p {
  margin-top: 0.45rem;
}

.section-head {
  text-align: center;
  margin-bottom: 1.3rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-head p {
  max-width: 68ch;
  margin: 0.8rem auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.slogan-line {
  margin-top: 0.6rem;
  color: #cfe4ff;
  font-weight: 600;
}

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

.feature-card {
  border: 1px solid rgba(126, 190, 255, 0.2);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 1rem;
  text-align: center;
  min-height: 100%;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.flip-card {
  cursor: pointer;
  perspective: 1000px;
  padding: 0;
  min-height: 250px;
}

.flip-card .flip-inner {
  position: relative;
  min-height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.flip-card.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flip-back {
  transform: rotateY(180deg);
  justify-content: center;
  background: linear-gradient(180deg, rgba(14, 34, 61, 0.95), rgba(8, 22, 42, 0.97));
}

.flip-back h3 {
  margin-bottom: 0.7rem;
}


.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 0.72rem;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #cfe7ff;
  border: 1px solid rgba(126, 190, 255, 0.35);
  background: radial-gradient(circle at 30% 25%, rgba(126, 190, 255, 0.26), rgba(17, 38, 66, 0.88));
  box-shadow: 0 0 0 1px rgba(126, 190, 255, 0.15), 0 0 18px rgba(126, 190, 255, 0.2);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(126, 190, 255, 0.46);
  box-shadow: 0 0 0 1px rgba(126, 190, 255, 0.14), 0 18px 44px rgba(3, 9, 20, 0.5), 0 0 24px rgba(126, 190, 255, 0.18);
}

.feature-card h3 {
  margin: 0.1rem 0 0.5rem;
  font-size: 1.42rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

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

.quote-card {
  border: 1px solid rgba(126, 190, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(12, 30, 55, 0.8);
  box-shadow: var(--shadow);
  padding: 1rem;
  position: relative;
}

.quote-card p {
  margin: 0.7rem 0 0.75rem;
  color: #d9e8fb;
  line-height: 1.55;
}

.quote-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}

.testimonials-rotator {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-list {
  --cards-visible: 1;
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  align-items: stretch;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--cards-visible) - 1) * 0.9rem) / var(--cards-visible));
  width: calc((100% - (var(--cards-visible) - 1) * 0.9rem) / var(--cards-visible));
  border: 1px solid rgba(126, 190, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(12, 30, 55, 0.65);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.testimonial-name {
  color: var(--brand-strong);
  font-weight: 800;
}

.testimonial-stars {
  color: #ffd24a;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.testimonial-text {
  margin: 0.7rem 0 0;
  color: #d7e7fb;
  line-height: 1.6;
}

.final-cta {
  margin-top: 3.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 1.8rem 0 0;
  align-items: flex-start;
  gap: 1rem;
}

.final-cta h2 {
  font-family: inherit;
  font-style: normal;
  font-size: clamp(1.38rem, 2.88vw, 2.19rem);
  color: var(--text);
  line-height: 1.05;
  max-width: none;
  white-space: nowrap;
  letter-spacing: 0.0275em;
  text-shadow: 0 0 24px rgba(126, 190, 255, 0.28);
}

.final-cta h2 .slogan-first {
  color: var(--text);
}

.final-cta h2 .slogan-second {
  color: #9fd2ff;
}

.contact-bar.final-cta {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 1.8rem 0 0;
}

.final-cta .btn {
  border: 0 !important;
}

.final-cta .call-btn {
  border: 1px solid rgba(92, 211, 122, 0.75) !important;
}

.pillar {
  border: 1px solid rgba(126, 190, 255, 0.2);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.pillar h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.3rem;
}

.panel {
  border: 1px solid rgba(126, 190, 255, 0.2);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.panel h2,
.panel h3 {
  margin: 0 0 0.7rem;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.6;
}

.panel ul {
  margin: 0.55rem 0 0;
  padding-left: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.55rem 0;
}

.faq-item p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-bar {
  margin-top: 1.2rem;
  border: 1px solid rgba(126, 190, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(10, 23, 43, 0.85);
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.contact-bar h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
}

.contact-bar.final-cta h2 {
  font-size: clamp(1.38rem, 2.88vw, 2.19rem);
}

.contact-bar .actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.funding-explained .feature-card h3 {
  font-size: 1.24rem;
}

.funding-explained .feature-card p {
  font-size: 0.98rem;
}

.site-footer {
  border-top: 2px solid rgba(126, 190, 255, 0.45);
  margin-top: 1.2rem;
  background: rgba(6, 18, 36, 0.86);
}

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

.footer-inner p,
.footer-links a {
  font-size: 1.12rem;
  line-height: 1.3;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

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

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

.brand-link {
  color: #c9e2ff;
  text-decoration: none;
}

.brand-link:hover,
.brand-link:focus-visible {
  color: #fff;
}

.legal-main,
.thankyou-main {
  padding: 3rem 0;
}

.legal-return,
.thankyou-return {
  margin-top: 1.1rem;
}

.thankyou-main {
  text-align: center;
}

.thankyou-countdown {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  left: -9999px;
}

.close-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1600;
  border-radius: 10px;
  border: 1px solid rgba(126, 190, 255, 0.28);
  background: rgba(11, 29, 52, 0.86);
  color: #d6e9ff;
  text-decoration: none;
  padding: 0.42rem 0.75rem;
}

.close-btn:hover,
.close-btn:focus-visible {
  border-color: rgba(126, 190, 255, 0.55);
}

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

  .card-grid,
  .pillars,
  .social-proof-grid,
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 810px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 4%;
    width: min(280px, 92vw);
    border: 1px solid rgba(126, 190, 255, 0.3);
    border-radius: 12px;
    background: rgba(7, 21, 40, 0.96);
    box-shadow: var(--shadow);
    padding: 0.9rem;
    display: none;
  }

  .primary-nav[aria-hidden='false'] {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav-phone {
    display: none;
  }

  .nav-mobile-call {
    display: inline-flex !important;
    margin-top: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 1.9rem;
  }

  .card-grid,
  .pillars,
  .social-proof-grid,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2rem 0;
  }

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

  .breadcrumbs {
    font-size: 0.84rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 810px) {
  .final-cta h2 {
    max-width: 14ch;
    white-space: normal;
  }
}

@media (orientation: portrait) {
  .final-cta,
  .contact-bar.final-cta {
    align-items: center;
    text-align: center;
  }

  .final-cta h2 {
    width: 100%;
    text-align: center;
  }

  .final-cta .actions {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
  }

  .footer-inner p,
  .footer-links a {
    font-size: 0.8rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .footer-links {
    flex-wrap: nowrap;
    gap: 0.45rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
