:root {
  --g-ink: #0a1a26;
  --g-body: #42555f;
  --g-muted: #6d818c;
  --g-line: #dde5e9;
  --g-tint: #f3f8fa;
  --g-sea: #0c7ca8;
  --g-sea-lt: #45b8dd;
  --g-less: #d1734a;
  --g-sec: 66px;
  --g-head: 28px;
  --g-card: 24px;
  --g-nav: 64px;
}

body {
  margin: 0;
  color: var(--g-body);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: #fff;
}

.node-v, .kicker, .foot-k {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--g-nav);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--g-line);
}
.site-head .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--g-ink);
  text-decoration: none;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: block;
  padding: 8px 13px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--g-body);
  text-decoration: none;
  border-radius: 7px;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--g-sea);
}
.site-nav a.active {
  color: var(--g-sea);
  background: rgba(12, 124, 168, 0.1);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 36px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--g-line);
  border-radius: 7px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--g-ink);
  border-radius: 2px;
}

.kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g-sea-lt);
}
.kicker--ink {
  color: var(--g-sea);
}

.hero {
  position: relative;
  padding-top: 66px;
  padding-bottom: 58px;
  overflow: hidden;
  background: var(--g-ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 26, 38, 0.95) 0%, rgba(10, 26, 38, 0.86) 46%, rgba(10, 26, 38, 0.42) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-title {
  margin: 13px 0 15px 0;
  font-size: clamp(1.75rem, 3.1vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #fff;
}
.hero-lead {
  max-width: 62ch;
  font-size: 1.01rem;
  line-height: 1.74;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding-top: var(--g-sec);
  padding-bottom: var(--g-sec);
  background: #fff;
}
.section-dark {
  background: var(--g-ink);
}
.section-dark .head-title {
  color: #fff;
}
.section-tint {
  background: var(--g-tint);
}

.head {
  margin-bottom: var(--g-head);
}
.head-title {
  font-size: clamp(1.32rem, 2.1vw, 1.76rem);
  line-height: 1.26;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--g-ink);
}
.head .kicker + .head-title {
  margin-top: 8px;
}

.lede {
  font-size: 1.01rem;
  line-height: 1.76;
  color: var(--g-body);
  margin: 0;
}
.lede + .lede {
  margin-top: 16px;
}

.fig {
  width: 100%;
  height: 100%;
  min-height: 210px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.row.align-items-center:has(> [class*="col-"] > .fig) {
  align-items: stretch !important;
}
.row:has(> [class*="col-"] > .fig) > [class*="col-"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row:has(> [class*="col-"] > .fig) > [class*="col-"] > .fig {
  flex: 1 1 auto;
}

.note {
  margin: var(--g-head) 0 0 0;
  padding: 15px 19px;
  background: var(--g-tint);
  border-left: 3px solid var(--g-sea);
  border-radius: 0 8px 8px 0;
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--g-body);
}
.section-dark .note {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}
.section-tint .note {
  background: #fff;
}

.tile {
  display: flex;
  flex-direction: column;
  padding: var(--g-card);
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: 12px;
}
.tile-title {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.34;
  color: var(--g-ink);
}
.tile-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--g-muted);
}

.flow {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: node;
}
.node {
  display: grid;
  grid-template-columns: 1fr 9rem;
  align-items: baseline;
  gap: 4px 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.node + .node {
  margin-top: 10px;
}
.node-t {
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
}
.node-v {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--g-sea-lt);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.node-w {
  grid-column: 1;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.node-d {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.6);
}
.node--less {
  border-left-color: var(--g-less);
}
.node--less .node-v {
  color: var(--g-less);
}
.node--end {
  border-left-color: var(--g-sea-lt);
  background: rgba(69, 184, 221, 0.08);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px var(--g-card);
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: 12px;
}
.step + .step {
  margin-top: 12px;
}
.step-n {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(12, 124, 168, 0.11);
  color: var(--g-sea);
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
}
.step-body {
  min-width: 0;
}

.kv-list {
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: 12px;
  overflow: hidden;
}
.kv {
  display: grid;
  grid-template-columns: minmax(110px, 10rem) 1fr;
  gap: 6px 18px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--g-line);
}
.kv:last-child {
  border-bottom: 0;
}
.kv-k {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--g-ink);
}
.kv-v {
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--g-muted);
}

.cta {
  padding-top: 52px;
  padding-bottom: 52px;
  background: var(--g-sea);
}
.cta-title {
  font-size: clamp(1.28rem, 2vw, 1.68rem);
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}
.cta-text {
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.87);
}
.cta-mail {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding-bottom: 4px;
}
.cta-mail:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.cta-place {
  display: block;
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.site-foot {
  padding-top: 42px;
  padding-bottom: 22px;
  background: #fff;
  border-top: 1px solid var(--g-line);
}
.foot-brand {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--g-ink);
}
.foot-tag {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--g-muted);
}
.foot-k {
  display: block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--g-muted);
}
.foot-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot-links li + li {
  margin-top: 7px;
}
.foot-links a,
.foot-links span {
  font-size: 0.9rem;
  color: var(--g-body);
  text-decoration: none;
}
.foot-links a:hover {
  color: var(--g-sea);
}
.foot-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--g-line);
  font-size: 0.82rem;
  line-height: 1.72;
  color: var(--g-muted);
}

@media (max-width: 991.98px) {
  :root {
    --g-sec: 44px;
    --g-head: 22px;
    --g-card: 20px;
  }
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--g-nav);
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--g-line);
    box-shadow: 0 12px 24px rgba(10, 26, 38, 0.08);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px 12px 12px;
  }
  .site-nav a {
    padding: 11px 12px;
  }
  .hero {
    padding-top: 46px;
    padding-bottom: 40px;
  }
  .hero-veil {
    background: rgba(10, 26, 38, 0.93);
  }
  .row:has(> [class*="col-"] > .fig) > [class*="col-"] {
    display: block;
  }
  .fig {
    height: auto;
    aspect-ratio: 3 / 2;
    min-height: 0;
  }
  .node {
    grid-template-columns: 1fr auto;
  }
  .kv {
    grid-template-columns: 1fr;
  }
}
