/* ===========================================================
   BRANDRISE CPG — FOUNDATION STYLESHEET
   Token system: colors, type, spacing
=========================================================== */

:root {
  /* Colors */
  --deep-space: #05101E;
  --ink-navy: #04162E;
  --cobalt: #0064DD;
  --sky-cobalt: #2A7DE1;
  --flame: #FC4804;
  --flame-light: #FFB830;
  --cream: #FCFAF8;
  --paper: #FCFAF8;
  --paper-dim: #F1EFEA;
  --line: #1a2535;
  --line-light: #E4E0D8;
  --text-muted: #4A5568;
  --text-dim: #8892A8;
  --headline-sub: #5A6472;

  /* Type */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-unbounded: 'Unbounded', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-pad: 120px;
  --section-pad-mobile: 64px;
  --max-width: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-navy);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cobalt);
  display: inline-block;
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-navy);
}

h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
h3 { font-size: 22px; margin-bottom: 12px; }

p { color: var(--text-muted); font-size: 16px; }

.section {
  padding: var(--section-pad) 0;
}

@media (max-width: 768px) {
  .section { padding: var(--section-pad-mobile) 0; }
}

.section-dark {
  background: var(--deep-space);
  color: var(--paper);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.6); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--flame);
  color: #fff;
}
.btn-primary:hover { background: #E23E00; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--cobalt);
  color: var(--cobalt);
}
.btn-outline:hover { background: var(--cobalt); color: #fff; }

.btn-outline-blue {
  background: #fff;
  border: 1.5px solid var(--cobalt);
  color: var(--cobalt);
}
.btn-outline-blue:hover { background: var(--cobalt); color: #fff; }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--ink-navy); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ink-navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--sky-cobalt); }

.nav-links .nav-cta {
  background: var(--cobalt);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
}
.nav-links .nav-cta:hover { background: var(--sky-cobalt); }

.nav-platform-tag {
  font-size: 9px;
  background: rgba(255,255,255,0.08);
  color: var(--text-dim);
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 6px;
  letter-spacing: 0.05em;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; stroke: #fff; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 66px; left: 0; right: 0; background: var(--deep-space);
    flex-direction: column; align-items: flex-start; padding: 24px 32px; gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08); transform: translateY(-150%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--cream);
  padding-top: 64px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 32px 40px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-grid .hero-content { order: 1; }
.hero-grid .hero-visual { order: 2; }

.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-visual img { width: 100%; max-width: 480px; height: auto; }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  margin-bottom: 8px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}
.hero-eyebrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 3px;
  background: var(--cobalt);
  border-radius: 2px;
}

.hero h1 {
  color: var(--ink-navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  margin-bottom: 22px;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--flame); }

.hero-sub-bold {
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--headline-sub);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.35;
  max-width: 540px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 540px;
}

.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Feature strip */
.hero-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}
.hero-features-4 { grid-template-columns: repeat(4, 1fr); }
.hero-feature { display: flex; gap: 12px; align-items: flex-start; }
.hero-feature .hf-icon { width: 26px; height: 26px; color: var(--cobalt); flex-shrink: 0; margin-top: 2px; }
.hf-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-navy);
  margin-bottom: 4px;
}
.hf-desc { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* Testimonial bar */
.hero-testimonial { background: var(--ink-navy); padding: 22px 0; }
.ht-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ht-quote {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ht-mark {
  color: var(--flame);
  font-size: 32px;
  font-family: Georgia, serif;
  line-height: 0;
  position: relative;
  top: 6px;
}
.ht-props { display: flex; gap: 28px; flex-wrap: wrap; }
.ht-prop {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ht-prop svg { width: 18px; height: 18px; color: #fff; }

/* Hero responsive */
@media (max-width: 900px) {
  .hero-grid { display: block; }
  .hero-visual {
    float: right;
    width: 34%;
    max-width: 240px;
    margin: 0 0 12px 22px;
    shape-outside: circle(60%);
  }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .ht-inner { justify-content: flex-start; gap: 20px; }
  .ht-quote { font-size: 15px; }
}
@media (max-width: 560px) {
  .hero-inner { padding: 30px 22px 32px; }
  .hero-visual { width: 38%; max-width: 150px; margin: 0 0 8px 14px; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-cta-row { clear: both; }
  .hero-cta-row .btn { flex: 1; justify-content: center; text-align: center; }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: -9999px !important;
}

/* ===== MODEL COMPARISON ===== */
.model-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,26,58,0.08);
}

.model-col { padding: 48px 40px; }

.model-col.rise {
  background: var(--ink-navy);
  color: #fff;
}
.model-col.rise h4 { color: #fff; }

.model-col.rep {
  background: var(--paper-dim);
}

.model-col h4 {
  font-size: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.model-list { list-style: none; }
.model-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14.5px;
  padding-left: 24px;
  position: relative;
}
.model-col.rise .model-list li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.model-col.rep .model-list li { color: var(--text-muted); }

.model-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--flame);
  font-weight: 700;
}
.model-col.rep .model-list li::before { content: '−'; color: var(--text-dim); }

.model-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--flame);
  color: #fff;
  margin-bottom: 18px;
}

@media (max-width: 800px) {
  .model-grid { grid-template-columns: 1fr; }
}



/* ===== TRACK RECORD ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.result-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 24px;
}

.result-card .num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--sky-cobalt);
  display: block;
  margin-bottom: 10px;
}

.result-card .desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== EXPERTISE ===== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.expertise-col .eb-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line-light);
}

.expertise-col ul { list-style: none; }
.expertise-col ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 5px 0;
}

@media (max-width: 900px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== BRAND LOGO STRIP ===== */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.logo-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  color: var(--ink-navy);
}

/* ===== ABOUT / FOUNDERS ===== */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.founder-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--line-light);
}

.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cobalt);
  margin-bottom: 20px;
}

.founder-card h3 { margin-bottom: 4px; }
.founder-title {
  font-size: 13px;
  color: var(--cobalt);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.founder-card p { font-size: 14.5px; }

.placeholder-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: #FFF4E5;
  border: 1px dashed var(--flame);
  border-radius: 6px;
  font-size: 12.5px;
  color: #8A5300;
}

@media (max-width: 800px) {
  .founders-grid { grid-template-columns: 1fr; }
}



/* ===== NEW HERO ($100M) ===== */

.nhero { background:#010F2E; position:relative; overflow:hidden; }
.nhero-bg {
  position:absolute; top:0; right:0; bottom:0;
  width:58%;
  background-repeat:no-repeat; background-position:right bottom; background-size:auto 78%;
  pointer-events:none;
}
/* fade the art's left edge into the navy so text side is clean */
.nhero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, #010F2E 0%, rgba(1,15,46,.6) 22%, rgba(1,15,46,0) 55%);
}
.nhero-inner {
  position:relative; z-index:2; max-width:1180px; margin:0 auto;
  padding:72px 32px 80px; display:grid; grid-template-columns:1.04fr 0.96fr; gap:30px; align-items:center;
  min-height:640px;
}
.nhero-eyebrow { font-family:var(--font-display); font-size:13px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:#F25D0D; margin-bottom:18px; }
.nhero h1 { color:#fff; font-family:var(--font-display); font-weight:800; font-size:clamp(38px,5vw,66px); line-height:1.02; letter-spacing:-.02em; margin-bottom:22px; }
.nhero h1 .nh-orange { color:#F25D0D; }
.nhero-rule { width:88px; height:4px; background:#F25D0D; border-radius:2px; margin-bottom:24px; }
.nhero-left p { color:rgba(255,255,255,.74); font-size:15.5px; line-height:1.62; margin-bottom:16px; max-width:500px; }
.nh-orange-b { color:#F25D0D; font-weight:700; }
.nhero-cta { display:flex; gap:16px; flex-wrap:wrap; margin-top:26px; }
.nbtn { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:700; font-size:14px; letter-spacing:.03em; padding:16px 28px; border-radius:6px; text-transform:uppercase; transition:all .2s ease; }
.nbtn-orange { background:#F25D0D; color:#fff; }
.nbtn-orange:hover { background:#d94f06; transform:translateY(-2px); }
.nbtn-ghost { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.45); }
.nbtn-ghost:hover { background:#fff; color:#010F2E; }
.nhero-right { position:relative; align-self:stretch; }
.nhero-wordmark {
  position:absolute; top:24px; left:50%; transform:translateX(-50%);
  width:min(340px, 60%); height:auto; z-index:3;
}
@media (max-width:900px) {
  .nhero-wordmark { position:static; transform:none; margin:0 auto 8px; display:block; width:220px; }
}

@media (max-width:900px) {
  .nhero-inner { grid-template-columns:1fr; min-height:0; padding:48px 24px 56px; }
  /* art moves to a banner behind, faded, so text stays readable */
  .nhero-bg { width:100%; opacity:.28; background-position:center top; }
  .nhero-bg::after { background:linear-gradient(180deg, rgba(1,15,46,.4) 0%, rgba(1,15,46,.85) 100%); }
  .nhero-left p { max-width:none; }
}
@media (max-width:560px) {
  .nhero-cta .nbtn { flex:1; justify-content:center; }
}

/* ===== WHY / FLOW SECTION ===== */

.flow { background:#F8F6F5; padding:64px 0 72px; }
.flow-inner { max-width:1120px; margin:0 auto; padding:0 32px; }
.flow-title { text-align:center; font-family:var(--font-display); font-weight:800; font-size:clamp(22px,3vw,32px); color:#04162E; letter-spacing:-.01em; margin-bottom:44px; line-height:1.2; }
.flow-title .fl-blue { color:#1F5AD6; }
.flow-body { display:grid; grid-template-columns:0.32fr 0.68fr; gap:40px; align-items:start; }

.fl-think { color:#F25D0D; font-weight:700; font-size:16px; margin-bottom:14px; }
.fl-quotes { list-style:none; margin-bottom:22px; }
.fl-quotes li { color:#1a2438; font-size:16px; line-height:1.9; }
.fl-divider { width:56px; height:3px; background:#F25D0D; border-radius:2px; margin:6px 0 20px; }
.fl-lead { color:#1F5AD6; font-weight:700; font-size:16px; line-height:1.45; margin-bottom:14px; }
.fl-note { color:#404a5e; font-size:15px; line-height:1.55; }

.flow-diagram { display:flex; flex-direction:column; gap:22px; }
.fl-row { display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; align-items:stretch; }
/* each node wrapped in its own white rounded box */
.fl-node {
  display:flex; flex-direction:column; align-items:center; text-align:center;
  background:#fff; border:1px solid #E6E3DE; border-radius:14px;
  padding:20px 10px 16px; box-shadow:0 6px 20px rgba(6,26,58,.05);
}
.fl-circle { width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.fl-circle svg { width:26px; height:26px; color:#fff; }
.fl-circle.blue { background:#0F43A0; }
.fl-circle.navy { background:#0B1834; }
.fl-label { font-family:var(--font-display); font-weight:700; font-size:12px; letter-spacing:.03em; color:#04162E; margin-bottom:4px; }
.fl-sub { color:#8a94a6; font-size:11px; line-height:1.3; }
.fl-arrow { display:flex; align-items:center; justify-content:center; color:#1F5AD6; padding:0 6px; }
.fl-arrow-between { display:none; }
.fl-arrow svg { width:20px; height:20px; }

.flow-connected {
  margin-top:40px; background:#fff; border:1px solid #E6E3DE; border-radius:14px;
  padding:22px 28px; display:flex; align-items:center; gap:20px; box-shadow:0 8px 30px rgba(6,26,58,.06);
}
.fc-icon { width:52px; height:52px; border-radius:50%; background:#F25D0D; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.fc-icon svg { width:24px; height:24px; }
.fc-text { font-size:14.5px; color:#404a5e; line-height:1.4; flex:1; }
.fc-h { display:block; font-family:var(--font-display); font-weight:700; color:#04162E; font-size:15px; letter-spacing:.02em; }
.fc-h.fc-orange { color:#F25D0D; }
.fc-arrow { flex-shrink:0; }
.fc-arrow svg { width:26px; height:26px; }

@media (max-width:900px) {
  .flow-body { grid-template-columns:1fr; gap:30px; }
  /* stack all nodes in one vertical column with down-arrows between */
  .flow-diagram { gap:0 !important; }
  .fl-row, .fl-row2 { display:flex !important; flex-direction:column !important; gap:0 !important; margin:0 !important; }
  .fl-node {
    width:100% !important; display:grid !important; grid-template-columns:auto 1fr !important; align-items:center !important;
    column-gap:16px; row-gap:2px; text-align:left !important; padding:16px 20px;
  }
  .fl-circle { margin-bottom:0 !important; flex-shrink:0; grid-row:1 / span 2; }
  .fl-label { grid-column:2; align-self:end; text-align:left; }
  .fl-sub { grid-column:2; align-self:start; text-align:left; }
  .fl-arrow { display:flex !important; transform:rotate(90deg); padding:8px 0; }
  .fl-arrow-between { display:flex !important; transform:rotate(90deg); padding:8px 0; }
  .fl-arrow svg { width:20px; height:20px; }
  .flow-connected { flex-wrap:wrap; gap:14px; }
  .fc-arrow { display:none; }
}

/* ===== FOUNDERS SECTION ===== */

.founders { background: var(--cream); position:relative; }
.founders-sky-wrap {
  position:relative;
  /* starry navy at top fading DOWN to cream */
  background: linear-gradient(180deg,
    #041A45 0%, #072A6E 26%, #0B47A6 52%, #6E9AD8 74%, #D9E4F3 88%, var(--cream) 100%);
  padding: 70px 0 150px;
  overflow:hidden;
}
.starfield { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; }
.sky-rocket {
  position:absolute; right:6%; top:10px; height:calc(100% + 40px); width:auto;
  pointer-events:none; z-index:1;
}
.fh-inner { max-width:var(--max-width); margin:0 auto; padding:0 32px; position:relative; z-index:2; }
.fh-eyebrow {
  font-family:var(--font-display); font-size:13px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:#9DC4FF; margin-bottom:16px; padding-bottom:12px; position:relative;
}
.fh-eyebrow::after { content:''; position:absolute; left:0; bottom:0; width:56px; height:3px; background:#4A90FF; border-radius:2px; }
.founders-sky-wrap h2 {
  color:#fff; font-family:var(--font-display); font-weight:800;
  font-size:clamp(28px,3.6vw,46px); line-height:1.12; letter-spacing:-.02em; max-width:600px;
}
.founders-sky-wrap h2 .fh-accent { color:#6BA5FF; }

.founders-cards {
  max-width:var(--max-width); margin:-96px auto 0; padding:0 32px 90px;
  position:relative; z-index:3; display:grid; grid-template-columns:1fr 1fr; gap:30px;
}
.fcard {
  background:#fff; border-radius:16px; overflow:hidden;
  box-shadow:0 18px 50px rgba(6,26,58,.16);
  display:grid; grid-template-columns:0.82fr 1.18fr;
}
.fcard-photo { background-size:cover; background-position:center 22%; background-repeat:no-repeat; min-height:360px; }
.fcard-body { padding:28px 30px 30px; align-self:center; }
.fcard h3 { font-family:var(--font-display); font-weight:800; font-size:24px; color:var(--ink-navy); margin-bottom:5px; }
.fcard-title { color:var(--cobalt); font-weight:600; font-size:14px; line-height:1.35; margin-bottom:14px; }
.fcard-rule { width:44px; height:3px; background:#4A90FF; border-radius:2px; margin-bottom:16px; }
.fcard-body p { font-size:13.5px; color:var(--text-muted); line-height:1.6; margin-bottom:11px; }
.fcard-body p:last-child { margin-bottom:0; }

@media (max-width:900px) {
  .founders-cards { grid-template-columns:1fr; gap:24px; max-width:600px; }
  .sky-rocket { right:2%; opacity:.85; }
  .founders-sky-wrap h2 { max-width:70%; }
}
@media (max-width:560px) {
  .fcard { grid-template-columns:1fr; }
  .fcard-photo { min-height:280px; }
  .fh-inner { padding:0 20px; }
  .founders-sky-wrap { padding:52px 0 130px; }
  .founders-sky-wrap h2 { max-width:100%; }
  .sky-rocket { height:70%; right:-4%; top:auto; bottom:70px; opacity:.7; }
  .founders-cards { padding:0 20px 64px; }
}

/* ===== SERVICES (four pillars) ===== */

.services { background:#01132D; padding:88px 0; position:relative; }
.services-inner { max-width:var(--max-width); margin:0 auto; padding:0 32px; }
.services-head { max-width:720px; margin-bottom:46px; }
.svc-eyebrow {
  font-family:var(--font-display); font-size:13px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:#6097F4; margin-bottom:14px; padding-bottom:12px; position:relative;
}
.svc-eyebrow::after { content:''; position:absolute; left:0; bottom:0; width:56px; height:3px; background:#0064DD; border-radius:2px; }
.services h2 { color:#fff; font-family:var(--font-display); font-weight:800; font-size:clamp(30px,4vw,52px); line-height:1.08; letter-spacing:-.02em; margin-bottom:20px; }
.services h2 .svc-accent { color:#6097F4; }
.svc-lead { color:#fff; font-size:19px; font-weight:500; line-height:1.4; margin-bottom:16px; }
.svc-lead-orange { color:#FA7B42; font-weight:700; }
.svc-sub { color:rgba(255,255,255,.6); font-size:15.5px; line-height:1.6; }

.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.svc-card {
  background:#081A36; border:1px solid rgba(96,151,244,.14); border-radius:16px; padding:26px 22px 26px;
  transition:transform .25s ease, border-color .25s ease;
}
.svc-card:hover { transform:translateY(-4px); border-color:rgba(96,151,244,.45); }
.svc-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.svc-num { font-family:var(--font-display); font-size:34px; font-weight:800; color:rgba(255,255,255,.14); letter-spacing:-1px; }
.svc-ico { width:44px; height:44px; border-radius:11px; background:rgba(96,151,244,.16); display:flex; align-items:center; justify-content:center; color:#6097F4; }
.svc-ico svg { width:22px; height:22px; }
.svc-card h3 { color:#fff; font-family:var(--font-display); font-weight:700; font-size:19px; line-height:1.2; margin-bottom:8px; }
.svc-promise { color:#FA7B42; font-weight:600; font-size:14px; margin-bottom:14px; }
.svc-divider { height:1px; background:rgba(255,255,255,.1); margin-bottom:6px; }
.svc-card ul { list-style:none; }
.svc-card ul li { display:flex; gap:11px; padding:13px 0; border-top:1px solid rgba(255,255,255,.07); }
.svc-card ul li:first-child { border-top:none; }
.svc-i { flex-shrink:0; width:26px; height:26px; color:#6097F4; }
.svc-i svg { width:20px; height:20px; }
.svc-it { display:block; color:#fff; font-weight:600; font-size:13.5px; line-height:1.3; margin-bottom:3px; }
.svc-id { display:block; color:rgba(255,255,255,.55); font-size:12.5px; line-height:1.45; }

@media (max-width:980px) { .services-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) {
  .services { padding:60px 0; }
  .services-inner { padding:0 20px; }
  .services-grid { grid-template-columns:1fr; gap:16px; }
}

/* ===== SHARED FULL-BLEED IMAGE SECTIONS ===== */
.img-section { width: 100%; }
.img-media {
  position: relative;
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.section-img {
  width: 100%;
  height: auto;
  display: block;
}
.founders-section { background: #3761B0; }

/* ===== EXPERTISE (image) ===== */
.expertise-section {
  background: #0A1B4D;
}
.expertise-media {
  position: relative;
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.expertise-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== CTA / FOOTER ===== */
.cta-section {
  background: #003FBB;
}
.cta-media {
  position: relative;
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.cta-img {
  width: 100%;
  height: auto;
  display: block;
}

footer {
  background: var(--deep-space);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 13.5px; }
.footer-col ul li a:hover { color: var(--sky-cobalt); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
