:root {
  --ink: #06164c;
  --muted: #52647a;
  --paper: #eef8ff;
  --white: #ffffff;
  --line: rgba(6, 22, 76, .14);
  --cyan: #22c3ec;
  --cyan-bright: #63ddff;
  --blue: #075be8;
  --electric: #139eea;
  --navy: #0a2d86;
  --navy-deep: #06164c;
  --ice: #dff4ff;
  --soft-blue: #e8f6ff;
  --soft-cyan: #d9f7ff;
  --shadow: 0 24px 70px rgba(6, 22, 76, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid transparent;
  background: rgba(248, 252, 255, .92);
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(23, 32, 42, .06);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--navy);
}
.brand img {
  width: auto;
  height: 46px;
  max-width: min(190px, 48vw);
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}
.nav-item {
  position: relative;
}
.nav-link {
  min-height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  border: 0;
  color: #52647a;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"],
.nav-item.is-open > .nav-link {
  color: var(--navy);
  background: var(--soft-blue);
  outline: 0;
}
.nav-trigger span {
  font-size: 13px;
  line-height: 1;
  transition: transform .2s ease;
}
.nav-item.is-open .nav-trigger span {
  transform: rotate(180deg);
}
.nav-contact {
  color: var(--navy);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(7, 91, 232, .18);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(760px, calc(100vw - 36px));
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 14px;
  border: 1px solid rgba(6, 22, 76, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(6, 22, 76, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .18s ease, transform .18s ease;
}
.mega-menu::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}
.mega-menu-wide {
  left: auto;
  right: 0;
  width: min(920px, calc(100vw - 36px));
  transform: translateY(-6px);
}
.nav-item.is-open .mega-menu,
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-item.is-open .mega-menu-wide,
.nav-item:hover .mega-menu-wide,
.nav-item:focus-within .mega-menu-wide {
  transform: translateY(0);
}
.mega-intro {
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(34, 195, 236, .22), rgba(7, 91, 232, .3)),
    var(--navy-deep);
}
.mega-intro span,
.mega-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mega-intro span { color: var(--cyan-bright); }
.mega-intro strong,
.mega-card strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.16;
}
.mega-intro p,
.mega-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  line-height: 1.5;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mega-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mega-card {
  min-height: 156px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mega-card:hover,
.mega-card:focus-visible {
  border-color: rgba(7, 91, 232, .34);
  box-shadow: 0 16px 32px rgba(6, 22, 76, .1);
  outline: 0;
  transform: translateY(-1px);
}
.mega-card-featured {
  background: linear-gradient(180deg, var(--soft-blue), #ffffff);
}
.mega-card strong {
  color: var(--ink);
  font-size: 18px;
}
.mega-card p {
  color: var(--muted);
  font-size: 13px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 34px rgba(7, 91, 232, .25);
}
.button-primary:hover { background: linear-gradient(135deg, var(--cyan-bright), var(--electric)); }
.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, .66);
}
.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(7, 91, 232, .32);
}

.hero {
  min-height: min(760px, calc(100svh - 48px));
  padding: 112px clamp(20px, 6vw, 88px) 42px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  position: relative;
  color: var(--white);
  background: var(--navy-deep);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .36));
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 76, .94) 0%, rgba(10, 45, 134, .74) 42%, rgba(10, 45, 134, .18) 100%),
    linear-gradient(180deg, rgba(10, 45, 134, .12), rgba(6, 22, 76, .52));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.eyebrow,
.section-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-kicker.light { color: var(--cyan-bright); }
.hero h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.06;
}
.hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.58;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tech-strip {
  width: min(760px, 100%);
  margin-top: 28px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}
.tech-strip > span {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.tech-logos {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.tech-badge {
  min-height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .1);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}
.tech-badge svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.tech-gemini {
  color: #eef6ff;
  border-color: rgba(66, 133, 244, .32);
  background: linear-gradient(135deg, rgba(66, 133, 244, .2), rgba(167, 86, 255, .18), rgba(52, 168, 83, .14));
}
.tech-gemini svg path {
  fill: url("#gemini-mark");
}
.tech-openai {
  color: #e8fff7;
  border-color: rgba(16, 163, 127, .36);
  background: rgba(16, 163, 127, .16);
}
.tech-openai svg {
  fill: none;
  stroke: #10a37f;
  stroke-width: 1.8;
}
.tech-claude {
  color: #fff0e8;
  border-color: rgba(217, 119, 87, .4);
  background: rgba(217, 119, 87, .18);
}
.tech-claude svg path:first-child {
  fill: #d97757;
}
.tech-claude svg path:last-child {
  fill: rgba(255, 255, 255, .9);
}
.tech-openclaw {
  color: #ecfbff;
  border-color: rgba(34, 195, 236, .42);
  background: rgba(34, 195, 236, .16);
}
.tech-openclaw svg {
  fill: none;
  stroke: #22c3ec;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}
.tech-n8n {
  color: #fff0f5;
  border-color: rgba(234, 75, 113, .44);
  background: rgba(234, 75, 113, .18);
}
.tech-n8n svg {
  fill: none;
  stroke: #ea4b71;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.tech-n8n svg circle {
  fill: #ea4b71;
  stroke: none;
}
.hero-card {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(360px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
}
.hero-card strong,
.hero-card span { display: block; }
.hero-card strong {
  margin-bottom: 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
}
.hero-card span {
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}
.ticker div {
  width: max-content;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}
.ticker span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 88px);
}
.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}
.section-heading h2,
.platform-copy h2,
.trust-panel h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.08;
}
.section-heading p,
.platform-copy p,
.trust-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.company-section,
.contact-section { background: var(--white); }
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.principle-card,
.product-card,
.contact-form,
.platform-flow div,
.trust-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(27, 20, 52, .06);
}
.principle-card {
  min-height: 290px;
  padding: 28px;
}
.principle-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.principle-card span,
.product-topline span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.principle-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 98, 255, .18);
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(145deg, rgba(40, 204, 255, .18), rgba(255, 255, 255, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 14px 28px rgba(5, 40, 95, .08);
}
.principle-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.principle-card h3,
.product-card h3 {
  margin: 26px 0 14px;
  font-size: 25px;
  line-height: 1.15;
}
.principle-card p,
.product-card p,
.product-card li {
  color: var(--muted);
  line-height: 1.6;
}

.products-section {
  background:
    linear-gradient(180deg, var(--paper), #e4f6ff);
}
.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 18px;
}
.product-card {
  padding: clamp(26px, 4vw, 42px);
}
.product-mia-plus {
  color: var(--white);
  border-color: rgba(255, 255, 255, .18);
  background:
    radial-gradient(circle at 84% 12%, rgba(239, 90, 161, .48), transparent 34%),
    linear-gradient(140deg, #3f178f, #6432d5 54%, #ef5aa1);
  box-shadow: 0 26px 70px rgba(100, 50, 213, .22);
}
.product-municipal {
  color: var(--white);
  border-color: rgba(255, 255, 255, .2);
  background:
    radial-gradient(circle at 82% 16%, rgba(34, 195, 236, .44), transparent 36%),
    linear-gradient(140deg, #06164c, #087a98 54%, #10c9ad);
  box-shadow: 0 26px 70px rgba(8, 122, 152, .2);
}
.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.product-logo {
  display: block;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}
.product-logo-plus {
  height: 64px;
  max-width: min(180px, 42vw);
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 34px rgba(63, 23, 143, .2);
}
.product-logo-municipal {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  outline: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 16px 34px rgba(3, 13, 48, .22);
}
.product-mia-plus .product-topline span,
.product-mia-plus p,
.product-mia-plus li,
.product-municipal .product-topline span,
.product-municipal p,
.product-municipal li { color: rgba(255, 255, 255, .8); }
.product-card h3 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 48px);
}
.product-card ul {
  margin: 28px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.product-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}
.product-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: currentColor;
}
.product-mia-plus .button-primary {
  color: #3f178f;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(63, 23, 143, .24);
}
.product-mia-plus .button-primary:hover {
  background: #eee8ff;
}
.product-municipal .button-outline {
  color: #06164c;
  background: var(--white);
  border-color: rgba(255, 255, 255, .72);
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background: #eaf8ff;
}
.platform-copy p { margin-top: 22px; }
.platform-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.platform-flow div {
  min-height: 180px;
  padding: 26px;
}
.platform-flow span {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
}
.platform-flow strong,
.platform-flow small {
  display: block;
}
.platform-flow strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
}
.platform-flow small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 24px;
  color: var(--white);
  background: var(--navy-deep);
}
.trust-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(34, 195, 236, .18), rgba(7, 91, 232, .24));
}
.trust-panel p { color: rgba(255, 255, 255, .74); }
.trust-list {
  display: grid;
  gap: 12px;
}
.trust-list div {
  padding: 24px;
  color: var(--ink);
}
.trust-list strong,
.trust-list span {
  display: block;
}
.trust-list strong {
  margin-bottom: 7px;
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
}
.trust-list span {
  color: var(--muted);
  line-height: 1.5;
}

.about-hero {
  min-height: min(760px, calc(100svh - 48px));
  padding: 128px clamp(20px, 6vw, 88px) 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: end;
  gap: clamp(28px, 6vw, 86px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 22, 76, .96), rgba(10, 45, 134, .88) 50%, rgba(34, 195, 236, .35)),
    url("assets/hero-mia-digital.png") center / cover;
}
.about-hero-copy {
  max-width: 880px;
}
.about-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
}
.about-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.58;
}
.about-hero-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}
.about-hero-panel span,
.mission-card span,
.founder-content span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.about-hero-panel strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}
.about-hero-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}
.mission-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  background: var(--white);
}
.mission-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}
.mission-copy h2,
.conviction-panel h2,
.about-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.08;
}
.mission-copy p,
.conviction-panel p,
.about-cta p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.mission-grid {
  display: grid;
  gap: 14px;
}
.mission-card {
  min-height: 210px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  box-shadow: 0 20px 52px rgba(27, 20, 52, .06);
}
.mission-card span {
  color: var(--blue);
}
.mission-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}
.mission-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.conviction-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 24px;
  color: var(--white);
  background: var(--navy-deep);
}
.conviction-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(34, 195, 236, .18), rgba(7, 91, 232, .24));
}
.conviction-panel p,
.about-cta p {
  color: rgba(255, 255, 255, .76);
}
.conviction-list {
  display: grid;
  gap: 12px;
}
.conviction-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}
.conviction-list strong,
.conviction-list span {
  display: block;
}
.conviction-list strong {
  margin-bottom: 7px;
  color: var(--cyan-bright);
  font-family: "Manrope", Arial, sans-serif;
}
.conviction-list span {
  color: rgba(255, 255, 255, .74);
  line-height: 1.5;
}
.founders-section {
  background: var(--white);
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.founder-card {
  min-height: 360px;
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  box-shadow: 0 20px 52px rgba(27, 20, 52, .06);
}
.founder-avatar {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(6, 22, 76, .12);
  box-shadow: 0 14px 30px rgba(6, 22, 76, .14);
}
.founder-content span {
  color: var(--blue);
}
.founder-content h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}
.founder-content p {
  color: var(--muted);
  line-height: 1.62;
}
.founder-content a {
  min-height: 40px;
  margin-top: 8px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 91, 232, .28);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}
.about-cta {
  padding: clamp(54px, 7vw, 82px) clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(34, 195, 236, .34), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.about-cta div {
  max-width: 840px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.contact-copy {
  position: sticky;
  top: 110px;
}
.contact-copy p { margin-top: 20px; }
.contact-form {
  padding: clamp(22px, 4vw, 36px);
}
.contact-form > input[name="website"] {
  position: absolute;
  left: -9999px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  color: #243653;
  font-size: 13px;
  font-weight: 900;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 32, 42, .18);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: 500 15px "DM Sans", Arial, sans-serif;
}
textarea {
  min-height: 136px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(7, 91, 232, .18);
  border-color: rgba(7, 91, 232, .55);
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form small {
  color: var(--muted);
  line-height: 1.45;
}
.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(14, 16, 24, .58);
}
.modal-overlay[hidden] { display: none; }
.contact-modal {
  width: min(520px, 100%);
  padding: 30px;
  position: relative;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}
.modal-mark {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
}
.modal-overlay.is-error .modal-mark { background: var(--electric); }
.contact-modal h2 {
  margin-bottom: 12px;
  font-size: 28px;
}
.contact-modal p {
  color: var(--muted);
  line-height: 1.6;
}

footer {
  padding: 40px clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.footer-brand img {
  width: auto;
  height: 46px;
  max-width: min(190px, 60vw);
}
footer p,
footer small { margin: 0; }
footer div:last-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

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

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

@media (max-width: 980px) {
  .site-header { min-height: 66px; }
  .brand img {
    width: auto;
    height: 40px;
    max-width: 152px;
  }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 66px 0 auto;
    max-height: calc(100svh - 66px);
    padding: 12px 20px 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 22px 46px rgba(23, 32, 42, .12);
  }
  body.menu-open .main-nav { display: flex; }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    min-height: 48px;
    padding: 0 10px;
    justify-content: space-between;
  }
  .nav-contact {
    justify-content: center;
  }
  .mega-menu,
  .mega-menu-wide {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height .22s ease, padding .22s ease;
  }
  .mega-menu::before {
    display: none;
  }
  .nav-item.is-open .mega-menu,
  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    max-height: 860px;
    padding: 8px 0 14px;
    transform: none;
  }
  .mega-grid,
  .mega-grid-three {
    grid-template-columns: 1fr;
  }
  .mega-intro,
  .mega-card {
    min-height: auto;
    padding: 16px;
  }
  .hero {
    min-height: auto;
    padding-top: 112px;
    grid-template-columns: 1fr;
  }
  .hero-card {
    justify-self: start;
  }
  .company-grid,
  .products-grid,
  .platform-section,
  .trust-section,
  .about-hero,
  .mission-section,
  .conviction-section,
  .founders-grid,
  .about-cta,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    position: static;
  }
  .mission-copy {
    position: static;
  }
  .founder-card {
    grid-template-columns: 1fr;
  }
  .about-cta .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 18px;
    padding-bottom: 28px;
    padding-top: 96px;
  }
  .about-hero {
    min-height: auto;
    padding: 104px 18px 44px;
  }
  .about-hero h1 {
    font-size: clamp(36px, 10vw, 46px);
  }
  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(35px, 9.6vw, 42px);
  }
  .hero p {
    font-size: 17px;
    line-height: 1.5;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .tech-strip {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 20px;
  }
  .tech-logos {
    justify-content: flex-start;
  }
  .ticker div {
    min-height: 42px;
    gap: 22px;
  }
  .section {
    padding: 66px 18px;
  }
  .about-cta {
    padding: 54px 18px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .form-row,
  .platform-flow {
    grid-template-columns: 1fr;
  }
  .product-topline {
    align-items: flex-start;
    flex-direction: column;
  }
  footer {
    grid-template-columns: 1fr;
  }
}
