:root {
  --navy: #082b59;
  --navy-dark: #061d3d;
  --navy-deep: #04142b;
  --blue: #0879d9;
  --blue-bright: #1199ee;
  --charcoal: #383d42;
  --steel: #667085;
  --white: #ffffff;
  --soft: #f2f6f9;
  --line: #d9e2ea;
  --shadow: 0 20px 55px rgba(8, 43, 89, 0.13);
  --radius: 16px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.skip-link { position: fixed; left: 18px; top: -90px; z-index: 3000; padding: 10px 14px; color: var(--white); background: var(--blue); text-decoration: none; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 29, 61, 0.97);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; color: var(--white); text-decoration: none; }
.brand-icon { width: 52px; height: 52px; object-fit: contain; flex: 0 0 auto; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-family: "Montserrat", Arial, sans-serif; font-size: .92rem; line-height: 1.2; letter-spacing: .01em; }
.brand-copy small { margin-top: 3px; color: #8fd2ff; font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 23px; }
.main-nav a { color: #e6eef6; font-size: .86rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.main-nav a:hover, .main-nav a:focus-visible { color: #8fd2ff; }
.nav-cta { padding: 10px 15px; border: 1px solid rgba(143,210,255,.75); }
.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 27px; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 30%, rgba(17,153,238,.34), transparent 28%),
    linear-gradient(118deg, var(--navy-deep) 8%, var(--navy) 58%, #0a4a88 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, black 40%, black);
}
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; right: -120px; top: 65px; }
.orbit-two { width: 330px; height: 330px; right: 110px; top: 180px; border-color: rgba(17,153,238,.42); }
.hero-content { position: relative; z-index: 2; padding-block: 115px 90px; }
.eyebrow, .section-label { margin: 0 0 14px; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow, .section-label.light { color: #8fd2ff; }
h1, h2, h3 { margin-top: 0; font-family: "Montserrat", Arial, sans-serif; line-height: 1.14; }
h1 { max-width: 900px; margin-bottom: 26px; font-size: clamp(2.75rem, 6.2vw, 5.7rem); letter-spacing: -.048em; }
h2 { margin-bottom: 23px; font-size: clamp(2.05rem, 4.2vw, 3.55rem); letter-spacing: -.035em; }
h3 { margin-bottom: 11px; font-size: 1.25rem; }
p { margin-top: 0; }
.hero-copy { max-width: 800px; margin-bottom: 16px; color: #e3edf7; font-size: 1.19rem; }
.hero-purpose { max-width: 750px; margin-bottom: 30px; color: #c8d8e8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--blue); }
.btn-primary:hover { background: var(--blue-bright); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.02); }
.btn-secondary:hover { color: #a9dcff; border-color: #a9dcff; }
.hero-note { margin: 48px 0 0; padding-left: 18px; color: #d7e6f5; border-left: 3px solid var(--blue-bright); }

.trust-strip { position: relative; z-index: 3; background: var(--white); box-shadow: var(--shadow); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid div { padding: 24px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy); font-family: "Montserrat", sans-serif; }
.trust-grid span { color: var(--steel); font-size: .82rem; }

.section { padding: 105px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: var(--navy-deep); }
.section-dark p { color: #c9d8e7; }
.two-column, .split-feature, .contact-grid, .partnership-layout, .founder-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; }
.align-start { align-items: start; }
.lead { color: #3e5266; font-size: 1.12rem; }
.section-heading { max-width: 830px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered p:last-child { max-width: 710px; margin-inline: auto; }

.meaning-card { position: relative; overflow: hidden; padding: 43px; color: var(--white); background: linear-gradient(145deg,var(--navy),#0c5598); box-shadow: var(--shadow); }
.star-symbol { position: absolute; right: 24px; top: 8px; color: rgba(255,255,255,.12); font-size: 9rem; line-height: 1; }
.meaning-card h3 { font-size: 2rem; }
.meaning-card p { color: #d7e6f4; }
.principle-line { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); font-weight: 700; }

.card-grid { display: grid; gap: 23px; }
.card-grid.three { grid-template-columns: repeat(3,1fr); }
.info-card, .service-card { padding: 31px; background: var(--white); border: 1px solid var(--line); }
.section-dark .info-card { color: var(--white); background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.14); }
.card-number, .service-number { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 23px; color: var(--blue); border: 1px solid var(--blue); font-weight: 800; }
.section-dark .card-number { color: #8fd2ff; border-color: #8fd2ff; }

.value-grid { display: grid; gap: 19px; }
.value-grid.four { grid-template-columns: repeat(4,1fr); }
.value-grid article { position: relative; min-height: 250px; padding: 32px; background: var(--soft); border-top: 4px solid var(--blue); }
.value-grid article span { display: block; margin-bottom: 42px; color: var(--blue); font-weight: 800; }
.value-grid article p { color: var(--steel); }

.service-card { transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card p { color: var(--steel); }
.honesty-note { margin-top: 28px; padding: 20px 23px; color: #28455f; background: #e5f2fb; border-left: 4px solid var(--blue); }

.check-list { margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.commitment-panel { padding: 42px; color: var(--white); background: var(--navy); }
.commitment-panel blockquote { margin: 0 0 30px; font-family: "Montserrat", sans-serif; font-size: 1.8rem; font-weight: 700; line-height: 1.35; }
.commitment-line { padding: 19px 0; border-top: 1px solid rgba(255,255,255,.16); }
.commitment-line strong, .commitment-line span { display: block; }
.commitment-line strong { color: #8fd2ff; }
.commitment-line span { color: #cad9e8; }

.section-industries { color: var(--white); background: linear-gradient(135deg,var(--navy),#0d4f8c); }
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.industry-grid div { min-height: 115px; display: grid; place-items: center; padding: 20px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.055); text-align: center; font-weight: 800; }

.roadmap { padding-left: 31px; border-left: 2px solid var(--blue); }
.roadmap-item { position: relative; margin-bottom: 34px; }
.roadmap-item:last-child { margin-bottom: 0; }
.roadmap-item::before { content: ""; position: absolute; left: -38px; top: 5px; width: 12px; height: 12px; border: 3px solid var(--white); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.roadmap-item span { color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.roadmap-item p { color: var(--steel); }

.founder-section { color: var(--white); background: var(--navy-deep); }
.founder-layout { grid-template-columns: .75fr 1.25fr; align-items: start; }
.founder-heading { position: sticky; top: 125px; }
.founder-heading h2 { font-size: clamp(2.1rem,3.8vw,3.4rem); }
.founder-signature { margin-top: 40px; color: #8fd2ff; font-family: "Montserrat", sans-serif; font-weight: 800; }
.founder-signature span { color: #bfcede; font-family: "Inter", sans-serif; font-size: .82rem; font-weight: 500; }
.founder-message { padding-left: 45px; border-left: 1px solid rgba(255,255,255,.18); }
.founder-message p { color: #d3e0ec; font-size: 1.05rem; }
.founder-message blockquote { margin: 35px 0 0; padding: 24px 0 0; color: #a9dcff; border-top: 1px solid rgba(255,255,255,.18); font-family: "Montserrat", sans-serif; font-size: 1.55rem; font-weight: 700; }

.partnership-layout { align-items: start; }
.partner-list { display: grid; gap: 11px; }
.partner-list span { padding: 15px 18px; background: var(--soft); border-left: 3px solid var(--blue); font-weight: 600; }
.partnership-cta { margin-top: 45px; display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 31px 34px; color: var(--white); background: var(--navy); }
.partnership-cta p { max-width: 790px; margin: 0; color: #d8e5f1; }
.partnership-cta .btn { flex: 0 0 auto; }

.contact-section { color: var(--white); background: linear-gradient(135deg,var(--navy-deep),var(--navy)); }
.contact-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
.contact-copy > p:not(.section-label) { color: #cddbe8; }
.contact-details { margin-top: 34px; display: grid; gap: 12px; }
.contact-details a, .contact-details div { display: block; padding: 18px; color: inherit; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); text-decoration: none; }
.contact-details span, .contact-details strong { display: block; }
.contact-details span { color: #8fd2ff; font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-details strong { margin-top: 4px; font-size: .96rem; }
.contact-form { padding: 34px; color: var(--charcoal); background: var(--white); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-form label { display: block; margin-bottom: 18px; color: var(--navy); font-size: .83rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--charcoal); background: var(--white); border: 1px solid #c9d5df; border-radius: 0; outline: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,121,217,.12); }
.contact-form textarea { resize: vertical; }
.form-note, .form-status { margin: 13px 0 0; color: var(--steel); font-size: .8rem; }
.form-status { color: var(--blue); font-weight: 700; }

.site-footer { padding: 65px 0 20px; color: #ccd9e5; background: #031126; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 60px; }
.footer-brand img { width: 260px; max-height: 130px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 490px; margin-top: 20px; }
.footer-brand strong { color: #8fd2ff; }
.site-footer h3 { color: var(--white); font-size: 1rem; }
.site-footer a, .site-footer span { display: block; margin: 9px 0; color: #bbcbd9; text-decoration: none; }
.site-footer a:hover { color: #8fd2ff; }
.footer-bottom { margin-top: 46px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.11); font-size: .78rem; }
.footer-bottom span { margin: 0; }

@media (max-width: 1080px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .78rem; }
  .brand-copy strong { font-size: .82rem; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 75px; }
  .nav-wrap { min-height: 74px; }
  .brand-icon { width: 46px; height: 46px; }
  .brand-copy strong { font-size: .78rem; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.1); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 4px; font-size: .9rem; }
  .nav-cta { margin-top: 8px; padding: 12px 14px !important; text-align: center; }
  .hero { min-height: 690px; }
  .hero-content { padding-block: 92px 75px; }
  .orbit-one { right: -280px; }
  .orbit-two { right: -70px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .two-column, .split-feature, .contact-grid, .partnership-layout, .founder-layout { grid-template-columns: 1fr; gap: 45px; }
  .card-grid.three { grid-template-columns: repeat(2,1fr); }
  .value-grid.four, .industry-grid { grid-template-columns: repeat(2,1fr); }
  .founder-heading { position: static; }
  .founder-message { padding-left: 0; border-left: 0; }
  .partnership-cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.45rem,14vw,3.55rem); }
  h2 { font-size: clamp(1.9rem,10vw,2.7rem); }
  .hero { min-height: 700px; }
  .hero-copy { font-size: 1.06rem; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div:last-child { border-bottom: 0; }
  .card-grid.three, .value-grid.four, .industry-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .meaning-card, .commitment-panel, .contact-form { padding: 29px; }
  .partnership-cta { padding: 26px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
