:root {
  --ink: #102030;
  --muted: #637587;
  --line: #d8e4ed;
  --paper: #f7fbfd;
  --white: #ffffff;
  --navy: #07476f;
  --navy-2: #0b5c8b;
  --teal: #0fa7b5;
  --mint: #54d0bc;
  --gold: #f3b44d;
  --shadow: 0 22px 60px rgba(8, 46, 76, 0.16);
  --soft-shadow: 0 14px 34px rgba(8, 46, 76, 0.11);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(8, 46, 76, 0.08);
  padding: 9px 0;
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
  max-width: 244px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(8, 46, 76, 0.08);
}

.brand img {
  width: 100%;
  height: 42px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(8, 46, 76, 0.08);
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 7px;
  color: #214050;
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(15, 167, 181, 0.12);
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-menu .nav-app {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 10px 22px rgba(7, 71, 111, 0.22);
}

.nav-menu .nav-app:hover,
.nav-menu .nav-app:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-2), var(--mint));
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 148px 0 88px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 16%, rgba(84, 208, 188, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(3, 38, 62, 0.94), rgba(4, 48, 76, 0.75) 48%, rgba(4, 48, 76, 0.42));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  gap: 40px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.intro-copy h2,
.experience-copy h2,
.platform-card h2,
.investment-copy h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.06;
  font-weight: 860;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
}

.hero-lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: auto auto -45% 50%;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%) scale(0);
  z-index: -1;
  transition: transform 240ms ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(-50%) scale(1);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--navy-2));
  box-shadow: 0 18px 36px rgba(15, 167, 181, 0.28);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-app {
  color: #092234;
  background: var(--white);
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.18);
}

.hero-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.pulse-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(84, 208, 188, 0.15);
  animation: pulse 1.8s ease infinite;
}

.pulse-card strong {
  font-size: 1.15rem;
}

.pulse-card small {
  color: rgba(255, 255, 255, 0.76);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.metric-grid div {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.metric-grid strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.intro-band,
.services-section,
.experience-section,
.platform-section,
.investment-section,
.contact-section {
  padding: 88px 0;
}

.intro-band {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.intro-copy h2,
.section-heading h2,
.experience-copy h2,
.platform-card h2,
.investment-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  color: var(--ink);
}

.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.services-section {
  background:
    linear-gradient(180deg, var(--paper), #edf7fa);
}

.section-heading {
  max-width: 820px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 28px;
}

.filter-chip {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #29475a;
  background: var(--white);
  font-weight: 760;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(8, 46, 76, 0.07);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  transform: translateY(-1px);
}

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216, 228, 237, 0.85);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transform-origin: center;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 180ms ease;
}

.service-card.is-hidden {
  display: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.service-body span {
  color: var(--teal);
  font-weight: 840;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-body h3 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: 1.23rem;
  line-height: 1.2;
}

.service-body p {
  margin: 0;
  color: var(--muted);
}

.service-body a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy);
  font-weight: 840;
}

.service-body a::after {
  content: ">";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.service-body a:hover::after,
.service-body a:focus-visible::after {
  transform: translateX(4px);
}

.experience-section {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.experience-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.value-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.value-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #f2f9fb;
}

.value-list strong {
  color: var(--navy);
}

.value-list span {
  color: var(--muted);
}

.process-board {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fcfd, #e9f6f9);
  box-shadow: var(--soft-shadow);
}

.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(216, 228, 237, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-step span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 840;
}

.process-step strong {
  font-size: 1.05rem;
}

.process-step small {
  color: var(--muted);
}

.process-step:hover,
.process-step:focus-visible,
.process-step.active {
  transform: translateX(4px);
  border-color: rgba(15, 167, 181, 0.52);
  box-shadow: 0 12px 28px rgba(8, 46, 76, 0.1);
}

.process-step.active span {
  background: linear-gradient(135deg, var(--teal), var(--navy));
}

.platform-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(84, 208, 188, 0.18), transparent 30%),
    linear-gradient(135deg, #073955, #0c638d);
  color: var(--white);
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.platform-card .eyebrow {
  color: var(--mint);
}

.platform-card h2 {
  color: var(--white);
}

.platform-card p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.investment-section {
  background: var(--paper);
}

.updates-section {
  padding: 88px 0;
  background: var(--white);
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.update-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216, 228, 237, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.update-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.update-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.update-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.update-body span {
  color: var(--teal);
  font-weight: 840;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.update-body h3 {
  margin: 10px 0;
  line-height: 1.2;
}

.update-body p {
  margin: 0;
  color: var(--muted);
}

.update-body a {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy);
  font-weight: 840;
}

.public-notice {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #065f46;
  background: #dcfce7;
  font-weight: 760;
}

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

.post-hero {
  padding: 138px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(84, 208, 188, 0.22), transparent 34%),
    linear-gradient(135deg, #073955, #0c638d);
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.post-layout h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.post-layout p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.post-layout small {
  color: rgba(255, 255, 255, 0.68);
}

.post-layout img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.post-body {
  padding: 68px 0;
  background: var(--white);
}

.narrow {
  max-width: 780px;
  color: var(--ink);
  font-size: 1.08rem;
}

.narrow .btn {
  margin-top: 24px;
}

.investment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 42px;
  align-items: center;
}

.investment-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.funding-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.funding-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 720;
}

.investment-card {
  padding: 24px;
  border: 1px solid rgba(216, 228, 237, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.investment-card label {
  display: block;
  color: var(--navy);
  font-weight: 840;
}

.investment-card input[type="range"] {
  width: 100%;
  margin: 22px 0 10px;
  accent-color: var(--teal);
}

.investment-amount {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2.2rem;
  font-weight: 880;
}

.allocation-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.allocation-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.allocation-track {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5f1f5;
}

.allocation-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.investment-card .btn-ghost,
.contact-form .btn-primary {
  width: 100%;
}

.investment-card .btn-ghost {
  color: var(--navy);
  border-color: rgba(7, 71, 111, 0.24);
  background: #edf8fb;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-methods a,
.contact-methods span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: #f7fbfd;
  font-weight: 760;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fcfd;
  box-shadow: var(--soft-shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cddde7;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 167, 181, 0.15);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #062f48;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  width: 190px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.footer-brand img {
  height: 38px;
  width: 100%;
  object-fit: contain;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--white);
  font-weight: 780;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 8px rgba(84, 208, 188, 0.12);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(84, 208, 188, 0);
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    justify-content: center;
  }

  .hero-grid,
  .intro-grid,
  .experience-grid,
  .investment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .update-grid,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 166px;
    max-width: 190px;
  }

  .hero {
    padding-bottom: 64px;
  }

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

  .hero-actions,
  .filter-bar {
    flex-direction: column;
  }

  .btn,
  .filter-chip {
    width: 100%;
  }

  .metric-grid,
  .service-grid,
  .update-grid {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .services-section,
  .experience-section,
  .platform-section,
  .updates-section,
  .investment-section,
  .contact-section {
    padding: 64px 0;
  }

  .process-step {
    grid-template-columns: 36px 1fr;
  }

  .process-step span {
    width: 36px;
    height: 36px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
