:root {
  --bg: #edf4f8;
  --paper: #ffffff;
  --ink: #102033;
  --muted: #607286;
  --soft: #dce9ef;
  --line: rgba(20, 42, 61, 0.12);
  --teal: #0b9cb4;
  --teal-dark: #087f93;
  --green: #168257;
  --violet: #6a4fcc;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.shell,
body > h1,
body > p,
body > ul {
  width: min(1160px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.shell {
  padding: 22px 0 58px;
}

body > h1 {
  margin-top: clamp(56px, 9vw, 96px);
}

body > p,
body > ul {
  max-width: 820px;
}

.nav,
.foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.nav {
  align-items: center;
  margin-bottom: clamp(34px, 6vw, 76px);
}

.brand,
.links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 26px rgba(11, 156, 180, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.links a {
  text-decoration: none;
}

.links a:hover,
.foot a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  min-height: calc(100svh - 150px);
  padding: clamp(24px, 4vw, 56px) 0 clamp(48px, 7vw, 88px);
}

.hero > :not(.hero-inner) {
  max-width: 820px;
}

.hero:not(:has(.hero-inner)) {
  padding: clamp(34px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.08;
}

p,
li {
  color: #40566c;
}

.lead {
  margin-bottom: 24px;
  color: #40566c;
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.46;
}

.origin {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 16px;
  align-items: baseline;
  width: min(100%, 620px);
  margin: 0 0 26px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
}

.origin strong {
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 820;
  line-height: 1;
}

.origin span,
.origin em {
  color: #40566c;
  font-size: 16px;
  line-height: 1.35;
}

.origin em {
  font-style: italic;
}

.vision,
.section-intro,
.lane-note {
  color: var(--muted);
}

.vision {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 680;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 780;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  border-color: rgba(20, 42, 61, 0.2);
  background: #ffffff;
}

.btn-primary {
  border-color: var(--teal);
  color: #f6fbfd;
  background: var(--teal);
}

.btn-primary:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.side {
  display: grid;
  gap: 14px;
}

.panel,
.section,
.card,
.mini {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.08);
}

.panel {
  padding: 22px;
}

.panel strong,
.tag {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel strong {
  margin-bottom: 8px;
}

.panel p,
.card p,
.mini li {
  color: #40566c;
}

.section {
  margin-top: 0;
  padding: clamp(54px, 8vw, 92px) 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 17px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 14px;
  width: 100%;
}

.grid > *,
.split > *,
.hero-inner > *,
.panel,
.card,
.mini {
  min-width: 0;
}

.card,
.mini {
  padding: 22px;
}

.tag {
  margin-bottom: 14px;
}

.lane-note {
  margin-top: 12px;
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini ul {
  margin: 0;
  padding-left: 18px;
}

.quote {
  max-width: 900px;
  border-left: 4px solid var(--green);
  padding-left: 18px;
  color: #233b52;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 720;
  line-height: 1.18;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
}

body > ul {
  padding-left: 24px;
}

body > p:last-of-type {
  padding-bottom: 58px;
}

body > p a {
  color: var(--teal-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .hero-inner,
  .split,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 72px);
    line-height: 0.95;
  }
}

@media (max-width: 640px) {
  .shell,
  body > h1,
  body > p,
  body > ul {
    width: min(100% - 32px, 1160px);
  }

  .shell {
    padding: 20px 0 48px;
  }

  .links {
    gap: 14px;
  }

  h1 {
    font-size: clamp(38px, 14vw, 58px);
    line-height: 0.98;
  }

  .lead {
    font-size: 17px;
  }

  .origin {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }

  .section {
    padding: 44px 0;
  }
}
