@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --ink: #0b3440;
  --ink-deep: #072733;
  --ink-soft: #506b72;
  --teal: #0e6f6a;
  --teal-deep: #0e6f6a;
  --teal-pale: #dff3ef;
  --ocean: #1479a8;
  --sky: #dff3ef;
  --mist: #f4f8f7;
  --white: #ffffff;
  --lime: #d9f27c;
  --line: #6b9996;
   --line-soft: #d5e4e5;
  --shadow: 0 24px 70px rgba(11, 52, 64, .12);
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 3rem), var(--shell)); margin-inline: auto; }

.site-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 248, 247, .88);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-nav.is-scrolled { border-color: var(--line); box-shadow: 0 7px 28px rgba(11, 52, 64, .07); }
.nav-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 750;
  letter-spacing: -.035em;
  text-decoration: none;
}
.brand-mark { display: block; width: 39px; height: 28px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.8rem); }
.nav-links > a { color: var(--ink-soft); font-size: .88rem; font-weight: 650; text-decoration: none; }
.nav-links > a:hover { color: var(--ink); }
.lang-toggle { display: inline-flex; overflow: hidden; border: 1px solid #b9ced1; border-radius: 8px; }
.lang-toggle a { padding: .38rem .52rem; color: var(--ink-soft); font-size: .66rem; font-weight: 800; text-decoration: none; }
.lang-toggle .active { color: var(--white); background: var(--ink); }
.nav-links .nav-login { padding: .65rem .9rem; color: var(--ink); border: 1px solid #b9ced1; border-radius: 9px; background: rgba(255,255,255,.7); }
.nav-links .nav-login:hover { color: var(--ink); background: var(--white); }
.nav-links .nav-cta { padding: .72rem 1rem; color: var(--white); background: var(--ink); border-radius: 9px; }
.nav-links .nav-cta:hover { color: var(--white); background: #124b58; }
.mobile-label { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.94), transparent 32%),
    linear-gradient(145deg, var(--mist) 15%, #e8f3f1 100%);
}
.hero-inner { position: relative; min-height: 600px; display: flex; align-items: center; }
.hero-copy { position: relative; z-index: 4; width: 51%; padding: 4rem 0 5.5rem; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.25rem;
  color: var(--teal-deep);
  font-family: "Sora", sans-serif;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; content: ""; background: currentColor; }
.display {
  max-width: 690px;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.25rem, 5.15vw, 4.65rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.065em;
}
.display em { color: var(--teal); font-style: normal; }
.hero-lede { max-width: 570px; margin: 1.65rem 0 0; color: var(--ink-soft); font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ink); box-shadow: 0 10px 24px rgba(11, 52, 64, .16); }
.button-primary:hover { background: #124b58; }
.button-secondary { color: var(--ink); background: rgba(255,255,255,.62); }
.button-secondary:hover { background: var(--white); }
.hero-note { margin-top: 1rem; color: #506B72; font-size: .78rem; }

.hero-media {
  position: absolute;
  z-index: 1;
  top: 2rem;
  right: 0;
  bottom: 2rem;
  width: 64%;
  overflow: hidden;
  border-radius: 52% 0 0 52% / 58% 0 0 58%;
  box-shadow: -24px 30px 80px rgba(13, 65, 73, .12);
}
.hero-media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #edf6f3 0%, rgba(237,246,243,.92) 18%, transparent 42%),
    linear-gradient(0deg, rgba(7,39,51,.2), transparent 42%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; transform: scale(1.03); }
.signal-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .7rem;
  min-width: 210px;
  padding: .85rem .95rem;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 40px rgba(7,39,51,.18);
  backdrop-filter: blur(14px);
}
.signal-card strong { display: block; font-size: .78rem; }
.signal-card small { display: block; margin-top: .1rem; color: var(--ink-soft); font-size: .68rem; }
.signal-icon { display: grid; width: 34px; height: 34px; place-items: center; color: var(--teal-deep); background: var(--teal-pale); border-radius: 10px; font-weight: 900; }
.signal-one { right: 4%; top: 16%; }
.signal-two { right: 31%; bottom: 10%; }

.journey { position: relative; z-index: 5; margin-top: -38px; }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.journey-step { display: grid; grid-template-columns: 31px 1fr; gap: .8rem; align-items: center; padding: 1.25rem 1.35rem; border-right: 1px solid rgba(255,255,255,.12); }
.journey-step:last-child { border: 0; }
.journey-number { display: grid; width: 31px; height: 31px; place-items: center; color: #a9ece1; background: rgba(255,255,255,.08); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.journey-step strong { display: block; font-family: "Sora", sans-serif; font-size: .85rem; }
.journey-step small { color: #a9bec4; font-size: .7rem; }

.section { padding: clamp(5.5rem, 9vw, 8.5rem) 0; }
.section-label { margin: 0 0 .8rem; color: var(--teal-deep); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-title { max-width: 780px; margin: 0; font-family: "Sora", sans-serif; font-size: clamp(2.1rem, 4.2vw, 3.65rem); font-weight: 650; line-height: 1.09; letter-spacing: -.05em; }
.section-intro { max-width: 650px; margin: 1.1rem 0 0; color: var(--ink-soft); font-size: 1.03rem; line-height: 1.7; }
.section-head.center { display: grid; justify-items: center; text-align: center; }

.features-section { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3.2rem; }
.feature-card { min-height: 260px; padding: 1.6rem; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(155deg, #fff, #f8fbfb); }
.feature-icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--teal-deep); background: var(--teal-pale); border-radius: 11px; font-family: "Sora", sans-serif; font-weight: 800; }
.feature-card h3 { margin: 1.5rem 0 .65rem; font-family: "Sora", sans-serif; font-size: 1.08rem; line-height: 1.25; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.65; }
.feature-list { display: grid; gap: .45rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.feature-list li { color: #48656c; font-size: .77rem; }
.feature-list li::before { margin-right: .45rem; color: var(--teal); content: "✓"; font-weight: 800; }

.coverage-section { background: var(--sky); }
.coverage-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.coverage-copy .section-title { max-width: 470px; }
.coverage-copy .button { margin-top: 1.8rem; }
.workflow {
  padding: 1rem;
  border: 1px solid rgba(20,121,168,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.workflow-top { display: flex; align-items: center; justify-content: space-between; padding: .6rem .75rem 1rem; border-bottom: 1px solid var(--line); }
.workflow-top strong { font-family: "Sora", sans-serif; }
.live-pill { padding: .3rem .55rem; color: var(--teal-deep); background: var(--teal-pale); border-radius: 999px; font-size: .62rem; font-weight: 800; }
.workflow-row { display: grid; grid-template-columns: 38px 1fr auto; gap: .8rem; align-items: center; padding: 1rem .75rem; border-bottom: 1px solid var(--line); }
.workflow-row:last-child { border: 0; }
.workflow-check { display: grid; width: 38px; height: 38px; place-items: center; color: var(--teal-deep); background: var(--white); border-radius: 11px; box-shadow: 0 5px 14px rgba(11,52,64,.08); font-weight: 900; }
.workflow-row strong { display: block; font-size: .86rem; }
.workflow-row small { color: var(--ink-soft); font-size: .72rem; }
.workflow-status { padding: .35rem .55rem; color: var(--teal-deep); background: var(--teal-pale); border-radius: 999px; font-size: .58rem; font-weight: 850; }

.network-section { overflow: hidden; background: var(--ink-deep); color: var(--white); }
.network-section .section-label { color: #78dbce; }
.network-section .section-intro { color: #a9c1c6; }
.network-map { display: grid; grid-template-columns: 1fr 70px 1fr 70px 1fr; align-items: center; margin-top: 3.5rem; }
.network-node { min-height: 180px; padding: 1.55rem; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; background: rgba(255,255,255,.055); }
.network-node span { color: #78dbce; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.network-node h3 { margin: .8rem 0 .45rem; font-family: "Sora", sans-serif; font-size: 1.15rem; }
.network-node p { margin: 0; color: #a9c1c6; font-size: .82rem; line-height: 1.55; }
.network-arrow { color: #78dbce; text-align: center; font-size: 1.5rem; }

.trust-section { background: var(--white); }
.trust-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: start; }
.trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.trust-item { padding: 1.3rem; border: 1px solid var(--line); border-radius: 13px; }
.trust-item strong { display: block; font-family: "Sora", sans-serif; font-size: .9rem; }
.trust-item p { margin: .45rem 0 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.55; }

.final-cta { padding: 2.5rem 0 6rem; background: var(--white); }
.cta-panel { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5rem); color: var(--white); background: linear-gradient(120deg, var(--ink-deep), #0d6270); border-radius: 20px; }
.cta-panel::after { position: absolute; right: -80px; bottom: -150px; width: 390px; height: 390px; content: ""; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025); }
.cta-panel h2 { position: relative; z-index: 1; max-width: 760px; margin: 0; font-family: "Sora", sans-serif; font-size: clamp(2.2rem, 4.6vw, 4.1rem); line-height: 1.04; letter-spacing: -.055em; }
.cta-panel p { position: relative; z-index: 1; max-width: 600px; margin: 1rem 0 1.7rem; color: #bdd3d7; }
.cta-panel .button { position: relative; z-index: 1; color: #15372c; background: var(--lime); border-color: var(--lime); }

.site-footer { padding: 4rem 0 2rem; color: var(--white); background: var(--ink); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem; }
.footer-statement { max-width: 520px; margin: 1.3rem 0 0; color: rgba(255,255,255,.6); line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(120px,1fr)); gap: .8rem 2.5rem; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .82rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.43); font-size: .7rem; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,.7,.3,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .nav-links > a:not(.nav-cta):not(.nav-login) { display: none; }
  .hero { min-height: 760px; }
  .hero-inner { min-height: 760px; align-items: flex-start; }
  .hero-copy { width: 64%; padding-top: 4.5rem; }
  .hero-media { top: 10rem; right: -12%; bottom: 0; width: 90%; }
  .signal-one { right: 2%; top: 29%; }
  .signal-two { right: 25%; bottom: 7%; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .network-map { grid-template-columns: 1fr 45px 1fr 45px 1fr; }
  .trust-grid { gap: 3rem; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 2rem), var(--shell)); }
  .nav-inner { min-height: 66px; }
  .brand { font-size: 1.25rem; }
  .brand-mark { width: 35px; height: 25px; }
  .nav-links { gap: .55rem; }
  .nav-links .nav-login,
  .nav-links .nav-cta { padding: .62rem .68rem; font-size: .74rem; }
  .desktop-label { display: none; }
  .mobile-label { display: inline; }
  .lang-toggle a { padding: .34rem .42rem; }
  .hero { min-height: 1100px; }
  .hero-inner { min-height: 1100px; display: block; }
  .hero-copy { width: 100%; padding: 3.8rem 0 0; }
  .display { font-size: clamp(3rem, 14.5vw, 4.3rem); }
  .hero-lede { max-width: 95%; }
  .hero-actions { align-items: stretch; }
  .button { min-height: 48px; }
  .hero-media { top: 700px; right: -18%; bottom: 0; width: 125%; border-radius: 52% 0 0 0 / 32% 0 0 0; }
  .hero-media::before { background: linear-gradient(180deg, var(--mist) 0%, rgba(244,248,247,.42) 22%, transparent 48%), linear-gradient(0deg, rgba(7,39,51,.24), transparent 45%); }
  .signal-card { min-width: 185px; padding: .7rem; }
  .signal-one { top: 735px; right: 1rem; bottom: auto; }
  .signal-two { right: auto; bottom: 2rem; left: 1rem; }
  .journey { margin-top: 0; padding: 1rem 0 0; background: var(--ink); }
  .journey .shell { width: 100%; }
  .journey-grid { grid-template-columns: 1fr 1fr; border-radius: 0; box-shadow: none; }
  .journey-step { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
  .journey-step:nth-child(2) { border-right: 0; }
  .section { padding: 5rem 0; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 2.3rem; }
  .feature-card { min-height: auto; }
  .coverage-grid, .trust-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .workflow-row { grid-template-columns: 35px 1fr; }
  .workflow-status { grid-column: 2; justify-self: start; }
  .network-map { grid-template-columns: 1fr; gap: .8rem; margin-top: 2.5rem; }
  .network-node { min-height: auto; }
  .network-arrow { transform: rotate(90deg); }
  .trust-list { grid-template-columns: 1fr; }
  .cta-panel { border-radius: 15px; }
  .footer-top { display: grid; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
