/* ===== Tokens ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f9fa;
  --bg-band: #f1f5f6;
  --text: #0a0a0a;
  --text-muted: #525252;
  --text-soft: #737373;
  --border: #e5e7e8;
  --border-strong: #d4d7d9;

  --accent: #0d4f5c;
  --accent-strong: #0a3d47;
  --accent-soft: #e6f1f3;
  --accent-2: #14b8a6;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04), 0 1px 1px rgba(10, 10, 10, 0.03);
  --shadow-md: 0 8px 24px rgba(10, 30, 35, 0.06), 0 2px 6px rgba(10, 30, 35, 0.04);

  --container: 1180px;
  --section-pad: clamp(64px, 9vw, 120px);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ===== Reset-ish ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 { color: var(--text); letter-spacing: -0.02em; line-height: 1.15; margin: 0; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section-band { background: var(--bg-band); }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}
.brand:hover { color: var(--text); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0;
  transform: translateY(2px);
}
.brand-mark.small { width: 22px; height: 22px; font-size: 12px; border-radius: 6px; margin-right: 8px; vertical-align: middle; }
.brand-name { font-size: 1.1rem; letter-spacing: 0.02em; }
.brand-sub { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-links .btn { color: #fff; }
.nav-links .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  padding: 0;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--text);
  display: block; border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu a {
  padding: 12px 4px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu a.btn { border-bottom: 0; margin-top: 8px; color: #fff; }
.mobile-menu[hidden] { display: none !important; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 120ms ease, background-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 0.9rem; border-radius: 8px; }
.btn-lg { padding: 14px 24px; font-size: 1.02rem; border-radius: 12px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(13, 79, 92, 0.18);
}
.btn-primary:hover { background: var(--accent-strong); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--text); }

/* ===== Hero ===== */
.hero {
  padding: clamp(72px, 11vw, 140px) 0 clamp(56px, 9vw, 110px);
  background:
    radial-gradient(1100px 480px at 80% -10%, rgba(20, 184, 166, 0.10), transparent 60%),
    radial-gradient(900px 420px at 0% 10%, rgba(13, 79, 92, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 940px; }
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 { margin-bottom: 22px; }
.hero .lede {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 740px;
  margin-bottom: 32px;
}
.hero .lede strong { color: var(--text); font-weight: 600; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.trust { margin-top: 36px; padding-top: 28px; border-top: 1px dashed var(--border-strong); }
.trust-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
}
.trust-logos li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

/* ===== Grids ===== */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== Cards (Why) ===== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card p { color: var(--text-muted); font-size: 0.97rem; }

/* ===== Pillars (How we help) ===== */
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  margin-bottom: 18px;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pillar > p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 14px; }
.pillar-proof {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.pillar-proof strong { color: var(--text); font-weight: 700; }

/* ===== Lanes (Services) ===== */
.lane {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.lane-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.lane h3 { font-size: 1.35rem; margin-bottom: 10px; }
.lane > p { color: var(--text-muted); margin-bottom: 18px; }
.lane-list {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.lane-list li {
  font-size: 0.96rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.lane-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px;
  background: var(--accent-2);
  border-radius: 2px;
}
.lane-list strong { color: var(--text); font-weight: 600; }

/* ===== Founders ===== */
.founder {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.founder-head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 16px; }
.avatar {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; letter-spacing: 0.05em;
}
.founder h3 { font-size: 1.25rem; margin-bottom: 2px; }
.founder-role { font-size: 0.95rem; color: var(--text); font-weight: 500; margin-bottom: 2px; }
.founder-meta { font-size: 0.85rem; color: var(--text-soft); }
.founder-bio { color: var(--text-muted); margin-bottom: 18px; font-size: 0.97rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-band);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ===== Segments (Industries) ===== */
.segments { gap: 16px; }
.segment {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex; flex-direction: column;
  transition: border-color 140ms ease, transform 140ms ease;
}
.segment:hover { border-color: var(--accent); transform: translateY(-2px); }
.segment h3 { font-size: 1.05rem; margin-bottom: 8px; }
.segment p { color: var(--text-muted); font-size: 0.94rem; flex: 1; }
.segment-offer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-strong);
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 600;
}
.segment-wide { grid-column: span 3; }
@media (max-width: 980px) {
  .segment-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .segment-wide { grid-column: auto; }
}

/* ===== Stats ===== */
.stats { gap: 16px; }
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* ===== Engagement steps ===== */
.engagement { margin-bottom: 32px; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.97rem; }

.pricing-note {
  margin-top: 28px;
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.65;
}
.pricing-note strong { color: var(--accent-strong); }

/* ===== CTA section ===== */
.section-cta {
  background:
    radial-gradient(800px 400px at 50% 100%, rgba(20, 184, 166, 0.12), transparent 60%),
    linear-gradient(180deg, #0a3d47 0%, #0d4f5c 100%);
  color: #fff;
}
.cta-inner { max-width: 820px; text-align: center; }
.section-cta h2 { color: #fff; margin-bottom: 14px; }
.section-cta > .container > p { color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; margin-bottom: 28px; }
.section-cta .cta-row { justify-content: center; margin-bottom: 24px; }
.section-cta .btn-primary {
  background: #fff; color: var(--accent-strong);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.section-cta .btn-primary:hover { background: #f3f8f9; color: var(--accent-strong); }
.section-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.section-cta .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.cta-foot { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 8px; }

/* ===== Footer ===== */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.65);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer strong { color: #fff; font-weight: 600; }
.footer p { font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
  .mobile-menu[hidden] { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
