:root {
  --navy: #071b2c;
  --navy-2: #0b2940;
  --ink: #102234;
  --muted: #60717f;
  --teal: #14c89a;
  --teal-dark: #08a67f;
  --teal-soft: #dff8f1;
  --orange: #ff9f43;
  --cream: #f4f3ed;
  --paper: #ffffff;
  --line: #dce4e7;
  --shadow: 0 28px 70px rgba(7, 27, 44, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: rgba(7, 27, 44, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  height: 84px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
}

.brand-mark {
  align-items: flex-end;
  display: flex;
  gap: 3px;
  height: 27px;
}

.brand-mark span {
  background: var(--teal);
  border-radius: 4px;
  display: block;
  width: 5px;
}

.brand-mark span:nth-child(1) {
  height: 13px;
}

.brand-mark span:nth-child(2) {
  height: 26px;
}

.brand-mark span:nth-child(3) {
  height: 19px;
}

.brand-name {
  color: white;
  font-size: 1.15rem;
  font-weight: 860;
  letter-spacing: .085em;
}

.brand-name span {
  color: var(--teal);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 31px;
}

.site-nav > a:not(.button) {
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  font-weight: 650;
}

.site-nav > a:not(.button):hover {
  color: white;
}

.site-nav .nav-phone {
  color: white !important;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.menu-toggle > span:not(.sr-only) {
  background: white;
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}

.button {
  align-items: center;
  background: var(--teal);
  border: 0;
  border-radius: 7px;
  color: var(--navy);
  display: inline-flex;
  font-size: .94rem;
  font-weight: 820;
  gap: 18px;
  justify-content: center;
  padding: 16px 21px;
  transition: background .18s, transform .18s, box-shadow .18s;
}

.button:hover {
  background: #25e0af;
  box-shadow: 0 12px 28px rgba(20, 200, 154, .22);
  transform: translateY(-2px);
}

.button-small {
  font-size: .84rem;
  padding: 12px 16px;
}

.hero {
  background: var(--navy);
  color: white;
  min-height: 780px;
  overflow: hidden;
  padding: 172px max(28px, calc((100vw - 1240px) / 2)) 110px;
  position: relative;
}

.hero::after {
  background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 50px 50px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
  position: absolute;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(5px);
  opacity: .18;
  pointer-events: none;
  position: absolute;
}

.hero-glow-one {
  background: var(--teal);
  height: 520px;
  right: -220px;
  top: 80px;
  width: 520px;
}

.hero-glow-two {
  background: #176a9f;
  bottom: -300px;
  height: 600px;
  left: 30%;
  width: 600px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 75px;
  grid-template-columns: 1.05fr .95fr;
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: rgba(255,255,255,.67);
  display: flex;
  font-size: .72rem;
  font-weight: 800;
  gap: 9px;
  letter-spacing: .13em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--teal);
  border-radius: 50%;
  height: 7px;
  box-shadow: 0 0 0 5px rgba(20,200,154,.12);
  width: 7px;
}

.eyebrow-dark {
  color: #65808b;
}

.hero h1,
.section-intro h2,
.proof-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

.hero h1 {
  font-size: clamp(3.6rem, 6.5vw, 6rem);
  line-height: .96;
  margin: 0 0 30px;
}

.hero h1 em,
.section-intro h2 em,
.proof-content h2 em {
  color: var(--teal);
  font-style: italic;
}

.hero-lead {
  color: #b7c6cf;
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 33px;
  max-width: 620px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 25px;
}

.text-link {
  border-bottom: 1px solid rgba(255,255,255,.35);
  color: white;
  font-size: .92rem;
  font-weight: 720;
  padding: 5px 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.hero-points span {
  color: #94a8b4;
  font-size: .79rem;
}

.hero-points i {
  color: var(--teal);
  font-style: normal;
  margin-right: 4px;
}

.system-visual {
  min-height: 480px;
  position: relative;
}

.visual-orbit {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  height: 430px;
  width: 430px;
}

.orbit-two {
  border-color: rgba(20,200,154,.16);
  height: 560px;
  width: 560px;
}

.system-card {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.main-card {
  left: 50%;
  max-width: 455px;
  padding: 25px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(1deg);
  width: 88%;
}

.system-card-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.system-card-head p,
.floating-card small {
  color: #7b8c96;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .12em;
  margin: 0 0 5px;
}

.system-card-head strong {
  font-size: .96rem;
}

.live-badge {
  background: var(--teal-soft);
  border-radius: 100px;
  color: #077157;
  font-size: .68rem;
  font-weight: 820;
  padding: 7px 10px;
}

.live-badge i {
  background: var(--teal-dark);
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin-right: 4px;
  width: 6px;
}

.call-row {
  align-items: center;
  background: var(--navy);
  border-radius: 12px;
  color: white;
  display: flex;
  padding: 18px;
}

.avatar {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  font-size: .7rem;
  font-weight: 850;
  height: 40px;
  justify-content: center;
  margin-right: 12px;
  width: 40px;
}

.call-copy {
  display: grid;
  flex: 1;
  gap: 3px;
}

.call-copy span {
  color: #93a7b4;
  font-size: .68rem;
}

.call-copy strong {
  font-size: .82rem;
}

.wave {
  align-items: center;
  display: flex;
  gap: 3px;
  height: 28px;
}

.wave i {
  animation: wave 1.2s ease-in-out infinite;
  background: var(--teal);
  border-radius: 4px;
  display: block;
  height: 10px;
  width: 3px;
}

.wave i:nth-child(2) { animation-delay: .1s; height: 20px; }
.wave i:nth-child(3) { animation-delay: .2s; height: 13px; }
.wave i:nth-child(4) { animation-delay: .3s; height: 24px; }
.wave i:nth-child(5) { animation-delay: .4s; height: 16px; }

@keyframes wave {
  0%, 100% { transform: scaleY(.65); }
  50% { transform: scaleY(1.05); }
}

.route-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.route-grid div {
  background: #f2f6f7;
  border-radius: 9px;
  display: grid;
  gap: 5px;
  padding: 13px;
}

.route-grid span {
  color: #7b8b95;
  font-size: .62rem;
}

.route-grid strong {
  font-size: 1.08rem;
}

.floating-card {
  align-items: center;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  position: absolute;
  z-index: 3;
}

.floating-card > div {
  display: grid;
}

.floating-card strong {
  font-size: .75rem;
}

.app-card {
  left: -5px;
  top: 65px;
}

.support-card {
  bottom: 53px;
  right: -12px;
}

.mini-icon {
  align-items: center;
  background: var(--teal-soft);
  border-radius: 8px;
  color: #08765b;
  display: flex;
  font-size: 1.1rem;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.pulse-dot {
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--teal-soft);
  height: 10px;
  margin: 0 9px;
  width: 10px;
}

.section {
  margin: 0 auto;
  max-width: 1320px;
  padding: 112px 40px;
}

.section-intro {
  align-items: end;
  display: grid;
  gap: 100px;
  grid-template-columns: 1.1fr .9fr;
  margin: 0 auto 62px;
  max-width: 1170px;
}

.section-intro h2,
.proof-content h2 {
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 4.45rem);
  line-height: 1;
  margin: 0;
}

.section-intro h2 em {
  color: var(--teal-dark);
}

.section-intro > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 5px;
}

.service-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1170px;
}

.service-card {
  border: 1px solid var(--line);
  min-height: 460px;
  padding: 37px 34px;
  position: relative;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}

.service-card:first-child {
  border-radius: 14px 0 0 14px;
}

.service-card:last-child {
  border-radius: 0 14px 14px 0;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
  z-index: 2;
}

.service-number {
  color: #9aa8af;
  font-family: Georgia, serif;
  font-style: italic;
  position: absolute;
  right: 28px;
  top: 28px;
}

.service-icon {
  align-items: center;
  background: var(--teal-soft);
  border-radius: 12px;
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 30px;
  width: 58px;
}

.service-icon svg {
  fill: none;
  height: 27px;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 27px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin: 0 0 14px;
}

.service-card > p {
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.7;
  margin: 0 0 28px;
}

.service-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card li {
  color: #384e5b;
  font-size: .83rem;
}

.service-card li::before {
  color: var(--teal-dark);
  content: "—";
  margin-right: 9px;
}

.platform-strip {
  align-items: center;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  gap: 38px;
  justify-content: space-between;
  margin: 34px auto 0;
  max-width: 1170px;
  padding: 22px 28px;
}

.platform-strip span {
  color: #839098;
  font-size: .61rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.platform-strip strong {
  color: #6a787f;
  font-size: .73rem;
  letter-spacing: .04em;
}

.proof-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.proof-panel {
  background: var(--navy);
  color: white;
  display: flex;
  justify-content: flex-end;
  padding: 104px 72px max(104px, calc((100vw - 1240px) / 2));
}

.proof-content {
  max-width: 550px;
}

.proof-content h2 {
  color: white;
  margin-bottom: 26px;
}

.proof-content > p:not(.eyebrow) {
  color: #adbdc7;
  line-height: 1.78;
  margin: 0;
}

.stats {
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 43px 0;
  padding: 30px 0;
}

.stats div:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.14);
}

.stats div:not(:first-child) {
  padding-left: 22px;
}

.stats strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.35rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.stats strong span {
  color: var(--teal);
}

.stats p {
  color: #8fa4b0;
  font-size: .68rem;
  line-height: 1.5;
  margin: 0;
}

.fit-list > p {
  color: #8fa4b0;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.fit-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fit-list span {
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 100px;
  color: #c1ced5;
  font-size: .72rem;
  padding: 8px 11px;
}

.contact-panel {
  background: var(--cream);
  padding: 104px max(36px, calc((100vw - 1240px) / 2)) 104px 72px;
}

.contact-content {
  max-width: 560px;
}

.contact-content h2 {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 17px;
}

.contact-lead {
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.7;
  margin: 0 0 30px;
}

.form-grid {
  display: grid;
  gap: 17px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 17px;
}

form label {
  color: #405460;
  display: grid;
  font-size: .67rem;
  font-weight: 800;
  gap: 7px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: white;
  border: 1px solid #d6deda;
  border-radius: 7px;
  color: var(--ink);
  outline: none;
  padding: 13px 12px;
  text-transform: none;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(20,200,154,.13);
}

textarea {
  line-height: 1.45;
  resize: vertical;
}

.form-button {
  margin-top: 18px;
  width: 100%;
}

.form-note,
.form-status {
  color: #7c898d;
  font-size: .68rem;
  line-height: 1.5;
  margin: 11px 0 0;
  text-transform: none;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 700;
}

.form-status {
  color: #08765b;
  font-weight: 720;
  min-height: 1em;
}

.contact-direct {
  border-top: 1px solid #d7dcd7;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  padding-top: 23px;
}

.contact-direct a {
  display: grid;
  gap: 5px;
}

.contact-direct span {
  color: #849096;
  font-size: .6rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.contact-direct strong {
  color: var(--navy);
  font-size: .79rem;
}

footer {
  align-items: center;
  background: #051520;
  color: #9babb4;
  display: grid;
  font-size: .73rem;
  gap: 25px;
  grid-template-columns: auto 1fr auto auto;
  padding: 28px max(28px, calc((100vw - 1240px) / 2));
}

.brand-footer .brand-name {
  font-size: .9rem;
}

.brand-footer .brand-mark {
  height: 22px;
}

.brand-footer .brand-mark span:nth-child(1) { height: 10px; }
.brand-footer .brand-mark span:nth-child(2) { height: 21px; }
.brand-footer .brand-mark span:nth-child(3) { height: 15px; }

footer p {
  margin: 0;
}

footer > div {
  display: flex;
  gap: 22px;
}

footer a:hover {
  color: white;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

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

  .site-nav {
    gap: 20px;
  }

  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-grid {
    gap: 30px;
  }

  .section-intro {
    gap: 55px;
  }

  .platform-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .proof-panel,
  .contact-panel {
    padding-left: 48px;
    padding-right: 48px;
  }

  footer {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    align-items: stretch;
    background: var(--navy);
    display: none;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    padding: 60px 34px;
    position: fixed;
    z-index: 21;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 1.25rem;
    padding: 15px 0;
  }

  .hero {
    padding: 145px 28px 82px;
  }

  .hero-grid,
  .section-intro,
  .proof-contact {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 72px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 14vw, 5.2rem);
  }

  .system-visual {
    min-height: 430px;
  }

  .section {
    padding: 80px 24px;
  }

  .section-intro {
    gap: 25px;
    margin-bottom: 45px;
  }

  .service-grid {
    gap: 15px;
    grid-template-columns: 1fr;
  }

  .service-card {
    border-radius: 12px !important;
    min-height: 0;
  }

  .platform-strip {
    gap: 22px 30px;
  }

  .platform-strip span {
    flex-basis: 100%;
  }

  .proof-panel,
  .contact-panel {
    justify-content: flex-start;
    padding: 78px 30px;
  }

  .proof-content,
  .contact-content {
    max-width: none;
  }

  footer {
    justify-items: start;
    grid-template-columns: 1fr 1fr;
  }

  footer > div {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-points {
    gap: 12px 18px;
  }

  .system-visual {
    min-height: 380px;
  }

  .orbit-two {
    height: 400px;
    width: 400px;
  }

  .orbit-one {
    height: 330px;
    width: 330px;
  }

  .main-card {
    padding: 18px;
    width: 100%;
  }

  .app-card {
    left: -8px;
    top: 22px;
  }

  .support-card {
    bottom: 14px;
    right: -5px;
  }

  .route-grid span {
    font-size: .53rem;
  }

  .route-grid strong {
    font-size: .9rem;
  }

  .section-intro h2,
  .proof-content h2 {
    font-size: 2.75rem;
  }

  .stats {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .stats div:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,.12);
    border-right: 0;
    padding-bottom: 16px;
  }

  .stats div:not(:first-child) {
    padding-left: 0;
  }

  .form-grid,
  .contact-direct {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }
}
