﻿:root {
  --bg: #080b14;
  --panel: #1a2236;
  --border: #3a4663;
  --border-soft: #2a3450;
  --text: #ffffff;
  --muted: #d0d6e6;
  --muted-2: #a8b0c4;
  --cyan: #3de4f5;
  --blue: #7b96ff;
  --violet: #b57bff;
  --grad: linear-gradient(100deg, var(--cyan), var(--blue) 55%, var(--violet));
  --maxw: 1120px;
  --band-ink: #080b14;
  --band-slate: #10182a;
  --band-cyan: #0b1a22;
  --band-violet: #14101f;
  --band-deep: #06070d;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.01em;
  margin: 0;
}
p {
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
::selection {
  background: var(--blue);
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* progress bar */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 100;
  background: transparent;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--grad);
}

/* nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.navbg {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 13, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transition: opacity 0.3s;
}
.navbg.show {
  opacity: 1;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.logo-word {
  font-family: "Sora";
  font-weight: 700;
  font-size: 19px;
}
.logo-word span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.navlinks {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #c9d0e0;
}
.navlinks a {
  position: relative;
}
.navlinks a:hover {
  color: var(--text);
}
.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bg);
  background: var(--grad);
  padding: 9px 18px;
  border-radius: 1px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }
  .nav-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(5, 7, 13, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
  }
  .nav-panel.open {
    display: flex;
  }
  .navlinks {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    font-size: 22px;
    color: var(--text);
  }
}

/* hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}
.blob-violet {
  width: 560px;
  height: 560px;
  top: -220px;
  right: -160px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--violet),
    transparent 70%
  );
  opacity: 0.45;
}
.blob-cyan {
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle at 30% 30%, var(--blue), transparent 70%);
  opacity: 0.35;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 820px) {
  .hero-inner {
    padding-top: 88px;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 0 0 72px;
  }
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--cyan);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(42px, 6.8vw, 84px);
  font-weight: 700;
  line-height: 1.03;
  max-width: 840px;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  margin-top: 26px;
  max-width: 560px;
  font-size: 18px;
  color: #e4e8f2;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.btn {
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.btn-primary {
  background: var(--grad);
  color: #061018;
}
.btn-ghost {
  border: 1px solid #8a96b3;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #c5ccdc;
}
.btn:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #b7bfd2;
  font-size: 11.5px;
  letter-spacing: 0.05em;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--muted-2), transparent);
}

/* generic section shell */
section {
  position: relative;
  padding: 110px 32px;
}
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.marker {
  font-size: 12.5px;
  font-weight: 600;
  color: #c2c9da;
  margin-bottom: 16px;
}
.marker b {
  color: var(--violet);
}
h2.title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  max-width: 660px;
  line-height: 1.12;
}
.lede-2 {
  max-width: 600px;
  font-size: 16.5px;
  margin-top: 18px;
  margin-bottom: 48px;
  color: #d5dbe8;
}
.divider {
  display: none;
}

.band-ink {
  background: var(--band-ink);
}
.band-slate {
  background: var(--band-slate);
}
.band-cyan {
  background: var(--band-cyan);
}
.band-violet {
  background: var(--band-violet);
}
.band-deep {
  background: var(--band-deep);
}
.band-cyan,
.band-violet,
.band-slate,
.band-ink,
.band-deep {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

/* cards */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.grid6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .grid3,
  .grid2 {
    grid-template-columns: 1fr;
  }
  .grid6 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .grid6 {
    grid-template-columns: 1fr;
  }
}
.card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 3px;
  padding: 26px 24px;
  transition:
    border-color 0.25s,
    transform 0.25s,
    background 0.25s;
}
.card:hover {
  border-color: #6b7a9a;
  transform: translateY(-3px);
  background: #202a42;
}
.card p {
  color: #c9d1e3;
}
.card .idx {
  font-family: "Sora";
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.idx.c {
  color: var(--cyan);
}
.idx.b {
  color: var(--blue);
}
.idx.v {
  color: var(--violet);
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card p {
  font-size: 14.5px;
}

.stat {
  border: 1px solid #445275;
  background: #1c2640;
  border-radius: 2px;
  padding: 22px 20px;
}
.stat .num {
  font-family: "Sora";
  font-size: 34px;
  font-weight: 700;
}
.stat .num.c {
  color: var(--cyan);
}
.stat .num.b {
  color: var(--blue);
}
.stat .num.v {
  color: var(--violet);
}
.stat .label {
  font-size: 12.5px;
  color: #c5ccdc;
  margin-top: 6px;
  font-weight: 500;
}
.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 760px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.principle-box {
  border: 1px solid #4a5a80;
  background: linear-gradient(180deg, #243152, #1a2440);
  border-radius: 3px;
  padding: 30px 32px;
}
.principle-box .tag {
  font-size: 12.5px;
  font-weight: 700;
  color: #9bb0ff;
  margin-bottom: 10px;
}
.principle-box .stmt {
  font-family: "Sora";
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 640px;
  color: #f2f5fb;
}

/* ===== PINNED VISION (scrollytelling) ===== */
.pin-section {
  position: relative;
}
#vision-pin {
  height: 280vh;
  padding: 0;
}
.pin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.vision-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 900px) {
  .vision-wrap {
    grid-template-columns: 1fr;
  }
  .pin-sticky {
    padding-top: 40px;
  }
}
.rings {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.rings svg {
  width: 100%;
  height: 100%;
}
.vision-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.vrow {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-left: 2px solid var(--border);
  padding-left: 18px;
  opacity: 0.55;
  transition:
    opacity 0.4s,
    border-color 0.4s;
}
.vrow.active {
  opacity: 1;
}
.vrow[data-c="cyan"].active {
  border-color: var(--cyan);
}
.vrow[data-c="blue"].active {
  border-color: var(--blue);
}
.vrow[data-c="violet"].active {
  border-color: var(--violet);
}
.vrow .vlabel {
  font-family: "Sora";
  font-weight: 700;
  font-size: 20px;
  min-width: 96px;
}
.vrow[data-c="cyan"] .vlabel {
  color: var(--cyan);
}
.vrow[data-c="blue"] .vlabel {
  color: var(--blue);
}
.vrow[data-c="violet"] .vlabel {
  color: var(--violet);
}
.vrow .vdesc {
  color: #d4dae8;
  font-size: 15px;
}
.long-view {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: baseline;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.long-view .tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--violet);
}
.long-view .flow {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}

/* pill list */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pill {
  border: 1px solid #4a5a7a;
  background: #1c2740;
  border-radius: 3px;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: #f0f3fa;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
}

.tech-card {
  border: 1px solid #445275;
  background: #182238;
  border-radius: 2px;
  padding: 22px 22px 24px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.tech-card:hover {
  border-color: #6b7a9a;
  transform: translateY(-3px);
}
.tech-card h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.tech-card p {
  font-size: 14px;
  color: #c9d1e3;
}
.tech-card .bar {
  height: 2px;
  width: 34px;
  margin-top: 16px;
  border-radius: 2px;
}

/* ===== HORIZONTAL PINNED CAPABILITIES ===== */
#capabilities {
  height: 340vh;
  padding: 0;
}
.cap-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.cap-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  margin-bottom: 40px;
}
.cap-track {
  display: flex;
  gap: 24px;
  padding: 0 32px;
  will-change: transform;
}
.cap-card {
  flex: 0 0 auto;
  width: min(78vw, 420px);
  border: 1px solid #4a5a80;
  background: #1a2440;
  border-radius: 4px;
  padding: 38px 32px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.cap-card .glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.35;
}
.cap-card .num {
  font-family: "Sora";
  font-size: 52px;
  font-weight: 800;
  opacity: 0.9;
  position: absolute;
  top: 28px;
  left: 32px;
}
.cap-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cap-card p {
  font-size: 15px;
  position: relative;
  z-index: 1;
  color: #d4dae8;
}
.cap-progress {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 0 32px;
  width: 100%;
  display: flex;
  gap: 8px;
}
.cap-dot {
  height: 3px;
  flex: 1;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.cap-dot i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad);
}

/* ===== AI AUTOMATION PINNED FLOW ===== */
#auto-pin {
  height: 260vh;
  padding: 0;
}
.auto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auto-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.flow-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-top: 52px;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 96px;
}
.flow-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid #4a5a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora";
  font-weight: 700;
  font-size: 12.5px;
  color: #c5ccdc;
  transition: all 0.35s;
}
.flow-circle.lit {
  background: rgba(255, 255, 255, 0.04);
}
.flow-step:nth-child(1) .flow-circle.lit {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}
.flow-step:nth-child(2) .flow-circle.lit {
  border-color: #4fa9e6;
  color: #4fa9e6;
  box-shadow: 0 0 24px rgba(79, 169, 230, 0.3);
}
.flow-step:nth-child(3) .flow-circle.lit {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 24px rgba(91, 124, 250, 0.3);
}
.flow-step:nth-child(4) .flow-circle.lit {
  border-color: #7b6ee0;
  color: #7b6ee0;
  box-shadow: 0 0 24px rgba(123, 110, 224, 0.3);
}
.flow-step:nth-child(5) .flow-circle.lit {
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: 0 0 24px rgba(155, 93, 229, 0.3);
}
.flow-step .flabel {
  font-size: 12.5px;
  color: #c5ccdc;
  margin-top: 12px;
}
.flow-line {
  flex: none;
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 44px;
  position: relative;
  overflow: hidden;
}
.flow-line i {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--grad);
}
@media (max-width: 760px) {
  .flow-line {
    display: none;
  }
  .flow-wrap {
    flex-wrap: wrap;
  }
  .flow-step {
    flex: 0 0 30%;
  }
}

/* ===== PINNED ECOSYSTEM ===== */
#ecosystem {
  height: 240vh;
  padding: 0;
}
.eco-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eco-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.eco-diagram {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1/1;
  margin: 20px auto 0;
}
.eco-diagram svg {
  width: 100%;
  height: 100%;
}
.eco-ring {
  transition: stroke-dashoffset 0.1s linear;
}
.eco-tags {
  position: absolute;
  inset: 0;
}
.eco-tag {
  position: absolute;
  border: 1px solid #4a5a80;
  background: #1c2640;
  border-radius: 3px;
  padding: 12px 16px;
  text-align: center;
  width: 132px;
  opacity: 0;
  transition: opacity 0.5s;
}
.eco-tag.show {
  opacity: 1;
}
.eco-tag .t {
  font-family: "Sora";
  font-weight: 700;
  font-size: 13px;
}
.eco-tag .s {
  font-size: 11.5px;
  color: #c5ccdc;
  margin-top: 3px;
}
.eco-tag.crm {
  top: 32%;
  left: -6%;
}
.eco-tag.erp {
  top: 32%;
  right: -6%;
}
.eco-tag.strat {
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 560px) {
  .eco-tag {
    width: 100px;
    padding: 9px 10px;
  }
  .eco-tag .t {
    font-size: 11px;
  }
  .eco-tag .s {
    font-size: 9.5px;
  }
}
.eco-flow {
  margin-top: 44px;
  text-align: center;
  font-size: 14px;
  color: #d4dae8;
  font-weight: 500;
}
.eco-flow b {
  color: var(--text);
}

/* industries */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 900px) {
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ind {
  border: 1px solid #445275;
  background: #1a243a;
  border-radius: 3px;
  padding: 16px 10px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #e8ecf5;
}
.ind.focus {
  border-color: var(--cyan);
  color: #7ff0fb;
  background: #12343c;
}
.focus-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13.5px;
  font-weight: 500;
}
.focus-tag .badge {
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 700;
}

.tr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) {
  .tr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footnote {
  margin-top: 24px;
  font-size: 12.5px;
  color: #b7bfd2;
}

.eng-card {
  border: 1px solid #4a5a80;
  background: #1c2440;
  border-radius: 2px;
  padding: 24px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.eng-card:hover {
  border-color: #6b7a9a;
  transform: translateY(-3px);
}
.eng-card .tag {
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 10px;
}
.eng-card h3 {
  font-size: 20px;
  font-weight: 700;
}
.eng-card p {
  font-size: 13.5px;
  margin-top: 6px;
}
.eng-note {
  margin-top: 16px;
  border: 1px solid #4a5a80;
  background: #182238;
  border-radius: 2px;
  padding: 20px 22px;
  font-size: 14px;
  color: #d4dae8;
}

.founder-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .founder-wrap {
    grid-template-columns: 1fr;
  }
}
.founder-photo {
  aspect-ratio: 4/5;
  border-radius: 2px;
  background: linear-gradient(160deg, #2a3a62, #141a2c);
  border: 1px solid #4a5a80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(91, 124, 250, 0.25),
    transparent 60%
  );
}
.founder-initials {
  font-family: "Sora";
  font-weight: 800;
  font-size: 96px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.founder-role {
  color: #d0d6e6;
  font-size: 15px;
  margin-top: 6px;
}
.founder-bio {
  margin-top: 22px;
  font-size: 15.5px;
  max-width: 520px;
  color: #d8deec;
}
.founder-box {
  margin-top: 26px;
  border: 1px solid #4a5a80;
  background: #1c2640;
  border-radius: 2px;
  padding: 20px 22px;
}
.founder-box .tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 8px;
}
.founder-box .focus {
  font-family: "Sora";
  font-weight: 700;
  font-size: 17px;
}
.founder-box .sub {
  font-size: 13.5px;
  margin-top: 6px;
  color: #c5ccdc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.contact {
  position: relative;
  border-radius: 2px;
  background: #1a2440;
  border: 1px solid #4a5a80;
  padding: 64px 48px;
  overflow: hidden;
}
.contact .blob-violet {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
  opacity: 0.3;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  max-width: 420px;
  line-height: 1.1;
}
.contact-p {
  margin-top: 20px;
  max-width: 440px;
  font-size: 15.5px;
  color: #d8deec;
}
.contact-card {
  border: 1px solid #4a5a80;
  border-radius: 3px;
  padding: 28px;
  background: #12192c;
}
.cfield {
  margin-bottom: 16px;
  display: block;
}
.cfield:last-child {
  margin-bottom: 0;
}
.cfield .k {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.03em;
}
.cfield .v {
  font-size: 16px;
  margin-top: 6px;
  font-weight: 500;
}
.cfield a.v:hover {
  color: var(--cyan);
}
.cfield input,
.cfield textarea {
  width: 100%;
  margin-top: 8px;
  background: #0c1220;
  color: var(--text);
  border: 1px solid #4a5a80;
  border-radius: 2px;
  padding: 11px 12px;
  font:
    500 14.5px/1.4 Inter,
    sans-serif;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
}
.cfield input:focus,
.cfield textarea:focus {
  border-color: var(--blue);
}
.form-submit {
  width: 100%;
  margin-top: 6px;
}
.form-note {
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.form-note.ok {
  background: #0d1a20;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}
.form-note.err {
  background: #1a1018;
  border: 1px solid #e05b8a;
  color: #f3a0bb;
}

footer {
  padding: 72px 32px 36px;
  background: #0a0e18;
  border-top: 1px solid #3a4663;
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 40px 28px;
}
.foot-brand-col p {
  margin: 16px 0 22px;
  font-size: 14.5px;
  max-width: 280px;
}
.foot-cta {
  font-size: 13.5px;
  padding: 11px 18px;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot-head {
  font-family: "Sora";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 6px;
}
.foot-col a,
.foot-col span {
  font-size: 14px;
  color: #c9d1e3;
}
.foot-col a:hover {
  color: var(--text);
}
.foot-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--border-soft);
  margin-top: 48px;
  padding-top: 24px;
  padding-right: 64px;
}
.foot-brand {
  font-family: "Sora";
  font-weight: 700;
  font-size: 12.5px;
  color: #c9d1e3;
  letter-spacing: 0.06em;
}
.foot-tag {
  font-size: 13px;
  color: #b7bfd2;
}
@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  footer {
    padding: 56px 24px 28px;
  }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #6b7a9a;
  background: #1a2236;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    border-color 0.2s;
  cursor: pointer;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.to-top:hover {
  border-color: var(--blue);
}

/* section-specific treatments so bands don't all feel identical */
#marketing .card {
  border-top: 3px solid var(--cyan);
}
#marketing .card:nth-child(3n + 2) {
  border-top-color: var(--blue);
}
#marketing .card:nth-child(3n) {
  border-top-color: var(--violet);
}
.why-grid .card {
  border-left: 3px solid var(--cyan);
}
.why-grid .card:nth-child(3n + 2) {
  border-left-color: var(--blue);
}
.why-grid .card:nth-child(3n) {
  border-left-color: var(--violet);
}
#track .stat {
  background: linear-gradient(180deg, #243152, #1a2440);
  padding: 28px 22px;
}
#track .stat .num {
  font-size: 40px;
}
#strategy .principle-box {
  border-left: 4px solid var(--cyan);
}
#snapshot .principle-box {
  border-left: 4px solid var(--violet);
}
#work .eng-card {
  background: linear-gradient(180deg, #222a48, #182038);
}
.navbg {
  background: rgba(8, 11, 20, 0.88);
}
