:root {
  --bg: #07111b;
  --bg-2: #0d1a29;
  --bg-3: #14263a;
  --text: #152434;
  --muted: #66778b;
  --line: rgba(21, 36, 52, 0.09);
  --brand: #0f66c2;
  --brand-2: #54a8ff;
  --white: #ffffff;
  --soft: #f4f8fc;
  --soft-2: #eef4fa;
  --gold: #c8a96b;
  --shadow: 0 24px 70px rgba(7, 17, 29, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef3f8 0%, #ffffff 24%);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page-shell { min-height: 100vh; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18, 35, 56, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 0 auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.brand strong,
.brand span {
  line-height: 1.15;
  white-space: nowrap;
}
.brand img {
  width: auto;
  height: auto;
  display: block;
}
.logo-plain {
  display: block;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  flex: 0 0 auto;
  max-width: 100%;
}
.logo-nav-plain {
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;
}
.single-line-title {
  max-width: none !important;
  font-size: clamp(1.85rem, 3vw, 2.7rem) !important;
}
.brand strong { display: block; font-size: .96rem; }
.brand span { display: block; color: var(--muted); font-size: .74rem; }
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: nowrap;
  font-size: .94rem;
}
.nav a { white-space: nowrap; }
.nav-nowrap { white-space: nowrap !important; }
.nav a:hover { color: var(--text); }

.btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: .2s ease;
}
.btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 16px; }
.ghost-btn {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.ghost-btn:hover { background: rgba(255,255,255,.1); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(84,168,255,0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(200,169,107,0.12), transparent 24%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 58%, #16304a 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .15;
  pointer-events: none;
}
.hero-layout-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
}
.eyebrow { color: #8fc6ff; margin-bottom: 14px; }
.section-label { color: var(--brand); margin-bottom: 12px; }
.section-label.light { color: #91c6ff; }
.hero h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(1.9rem, 3.1vw, 3.15rem);
  line-height: 1.08;
}
.hero-copy {
  max-width: 720px;
  color: rgba(255,255,255,.8);
  font-size: 1.08rem;
}
.hero-impact-line {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-proof-row span {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  font-size: .93rem;
}
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  border-radius: 28px;
}
.hero-logo-card {
  padding: 28px;
}
.hero-mark {
  width: 132px;
  height: 104px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 18px;
}
.logo-hero-plain {
  display: none;
  max-width: 120px;
  max-height: 120px;
}
.logo-card-plain {
  width: calc(100% + 140px);
  height: 200px;
  max-width: none;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
  margin-left: -70px;
  margin-bottom: 18px;
}
.signal-topline {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #8ec5ff;
  font-size: .74rem;
  font-weight: 700;
}
.hero-logo-card h3 {
  margin: 8px 0 14px;
  font-size: 1.45rem;
  line-height: 1.2;
}
.hero-logo-card p { color: rgba(255,255,255,.76); }
.signal-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.signal-grid div {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.signal-grid strong { display: block; color: #fff; margin-bottom: 4px; }
.signal-grid span { color: rgba(255,255,255,.72); }

.section { padding: 96px 0; }
.section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  max-width: 920px;
}
.stack-text p + p { margin-top: 14px; }
.large-copy p { font-size: 1.05rem; }
.split-premium,
.contact-shell,
.founder-band-grid,
.two-col-readable {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.split-premium-top { align-items: start; }

.section-jump-shell {
  padding: 22px 0 10px;
  background: linear-gradient(180deg, #f3f8fd 0%, #ffffff 100%);
}
.section-jump-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.section-jump-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(21, 36, 52, 0.1);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(7, 17, 29, 0.06);
}
.section-jump-btn:hover {
  border-color: rgba(15, 102, 194, 0.25);
  color: var(--brand);
}
.premium-stats-shell {
  padding-top: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 5;
}
.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.premium-stats-grid article {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 35, 56, .08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.premium-stats-grid strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--bg-2);
}
.premium-stats-grid span { color: var(--muted); }

.service-cards-section { padding-top: 20px; }
.premium-grid {
  display: grid;
  gap: 24px;
}
.premium-grid-3 { grid-template-columns: repeat(3, 1fr); }
.premium-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card,
.info-card,
.industry-grid article,
.advantage-list > div,
.founder-band-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.card-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: .14em;
}
.service-card h3,
.info-card h3,
.industry-grid h3,
.advantage-list h3,
.founder-band-card h3 { margin: 0 0 12px; }
.service-card p,
.info-card p,
.industry-grid p,
.advantage-list p { margin: 0; color: var(--muted); }
.service-highlight {
  margin-top: 12px !important;
  color: var(--brand) !important;
  font-weight: 700;
}

.dark-section {
  background: linear-gradient(180deg, #0c1521, #101d2d);
  color: var(--white);
}
.dark-section h2,
.contact-section h2 { color: var(--white); }
.premium-card {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
}
.premium-card h3 { margin: 0 0 12px; font-size: 1.2rem; }
.premium-card p { margin: 0; color: rgba(255,255,255,.74); }
.premium-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #91c6ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.timeline-grid,
.industry-grid,
.reference-strip {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.timeline-grid { grid-template-columns: repeat(4, 1fr); }
.industry-grid { grid-template-columns: repeat(4, 1fr); }
.reference-strip { grid-template-columns: repeat(4, 1fr); }
.reference-strip span {
  padding: 16px 18px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbff);
  font-weight: 700;
  color: var(--muted);
}
.reference-note {
  margin-top: 18px;
  color: var(--muted);
  max-width: 820px;
}
.references-section { background: var(--white); }
.why-combined-grid {
  margin-bottom: 34px;
}
.why-combined-bottom {
  margin-top: 10px;
}
.work-model-section { background: linear-gradient(180deg, #ffffff, #f6f9fc); }
.work-model-copy {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 620px;
}
.compact-card { padding: 24px; }
.compact-card h3 { margin-bottom: 8px; }
.difference-section { background: linear-gradient(180deg, #f7f9fc, #eef3f8); }
.advantage-list { display: grid; gap: 18px; }
.founder-band-section { background: linear-gradient(180deg, #ffffff, #f6f9fc); }
.outreach-band-section {
  background: linear-gradient(180deg, #f4f8fc, #ffffff);
}
.outreach-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.outreach-band-copy p {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.03rem;
}
.founder-band-card ul,
.clean-list { margin: 0; padding-left: 20px; }
.founder-band-card li + li,
.clean-list li + li { margin-top: 10px; }

.contact-section {
  background: linear-gradient(140deg, #07101a, #102131 58%, #17324a 100%);
  color: var(--white);
}
.contact-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.contact-row { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-row:first-child { border-top: 0; padding-top: 0; }
.contact-row span {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin-bottom: 4px;
}
.contact-row strong { font-size: 1.02rem; }
.contact-impact-line {
  margin-top: 16px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
}
.contact-cta-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.contact-cta-list strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}
.contact-cta-list span {
  color: rgba(255,255,255,.72);
}

.site-footer {
  background: #08111b;
  color: rgba(255,255,255,.62);
  padding: 26px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.subhero {
  padding: 90px 0 34px;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}
.narrow { max-width: 860px; }
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 780px;
}
.page-light main { background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 18%); }
.soft-section { background: linear-gradient(180deg, #f8fbfe, #eef3f8); }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profile-page {
  background: linear-gradient(135deg, #0a121e, #122338 65%, #183a5f);
  color: #fff;
}
.profile-main { min-height: 100vh; }
.profile-hero { padding: 70px 0; }
.profile-container { max-width: 1080px; }
.profile-topline {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #92c8ff;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.profile-page h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
}
.profile-subtitle {
  max-width: 780px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 34px;
}
.profile-grid,
.profile-split,
.profile-contact {
  display: grid;
  gap: 20px;
}
.profile-grid,
.profile-split { grid-template-columns: repeat(2, 1fr); }
.profile-contact { grid-template-columns: repeat(4, 1fr); }
.profile-card,
.profile-contact div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.profile-contact div { border-radius: 18px; padding: 18px; }
.profile-card h2 { margin-top: 0; font-size: 1.2rem; }
.dark-list { color: rgba(255,255,255,.86); }
.profile-contact span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .84rem;
  margin-bottom: 6px;
}
.profile-contact strong { display: block; color: #fff; }

@media (max-width: 1024px) {
  .hero-layout-v2,
  .split-premium,
  .contact-shell,
  .founder-band-grid,
  .two-col-readable,
  .premium-stats-grid,
  .premium-grid-3,
  .industry-grid,
  .timeline-grid,
  .reference-strip,
  .cards-3,
  .profile-grid,
  .profile-split,
  .profile-contact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .hero-layout-v2,
  .split-premium,
  .contact-shell,
  .founder-band-grid,
  .two-col-readable,
  .premium-stats-grid,
  .premium-grid-3,
  .industry-grid,
  .timeline-grid,
  .reference-strip,
  .cards-3,
  .profile-grid,
  .profile-split,
  .profile-contact,
  .outreach-band {
    grid-template-columns: 1fr;
  }
  .section-jump-shell { padding: 18px 0 6px; }
  .section-jump-bar { justify-content: flex-start; }
  .hero { padding: 88px 0 74px; }
  .section { padding: 72px 0; }
  .container { width: min(100% - 32px, 1160px); }
  .brand-large img { width: 48px; height: 48px; }
}
