@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Inter+Tight:wght@500;600;700;800&display=swap");

:root {
  --ink: #171515;
  --ink-soft: #504b49;
  --muted: #837b77;
  --paper: #f7f4ef;
  --paper-deep: #eee8e1;
  --white: #fffdfa;
  --wine: #632c34;
  --wine-dark: #37171c;
  --wine-light: #a95e68;
  --blush: #d8a0a7;
  --line: rgba(43, 33, 31, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 12px 36px rgba(39, 23, 21, 0.07);
  --shadow-lg: 0 32px 90px rgba(39, 23, 21, 0.13);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: var(--wine); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--blush);
  outline-offset: 4px;
}

.wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.mono, .eyebrow, .hero-cta, .hero-ghost, .sec-h-num .n, .sec-h-num .k,
.sol-no, .sol-tag, .compare-tag, .flow-no, .flow-icon, .insight-label,
.insight-link, .footer-col h5, .footer-copy, .exec-bain-role, .founder-role {
  font-family: "Inter", system-ui, sans-serif;
}

h1, h2, h3, .hkpi-val, .proof-val {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  text-wrap: balance;
}

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s cubic-bezier(.2,.78,.25,1), transform 0.85s cubic-bezier(.2,.78,.25,1);
}
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; }
.rv.d2 { transition-delay: .16s; }
.rv.d3 { transition-delay: .24s; }
.rv.d4 { transition-delay: .32s; }

/* Navigation */
.nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.nav::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.14);
  transition: background .3s ease;
}

.nav.scrolled {
  background: rgba(18, 15, 15, .92);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  backdrop-filter: blur(18px);
}

.nav-top {
  width: min(100%, var(--max));
  height: 82px;
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { position: relative; z-index: 2; flex: 0 0 auto; }
.nav-logo .logo-img { width: auto; height: 34px; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 10px 9px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 9px 4px;
  height: 1px;
  background: var(--blush);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta, .mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-cta:hover { background: #fff; color: var(--wine-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}
.nav-toggle::before { top: 16px; }
.nav-toggle span { top: 22px; }
.nav-toggle::after { top: 28px; }
.nav-toggle[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  padding: 118px var(--pad) 36px;
  background:
    radial-gradient(circle at 92% 15%, rgba(169,94,104,.22), transparent 34%),
    linear-gradient(145deg, #1d1718, #30181d 62%, #171313);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: "Inter Tight";
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 600;
  letter-spacing: -.035em;
}
.mobile-menu-cta { width: 100%; margin-top: 28px; background: #fff; color: var(--wine-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: min(940px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #161314;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 42%, #000);
  pointer-events: none;
}

.hero-img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.72) contrast(1.07);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19,13,14,.93) 0%, rgba(24,15,17,.72) 44%, rgba(24,15,17,.20) 82%),
    linear-gradient(0deg, rgba(18,12,13,.9) 0%, transparent 44%),
    linear-gradient(180deg, rgba(0,0,0,.38), transparent 30%);
}

.hero-content {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 170px var(--pad) 170px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--blush); }

.hero-h1 {
  max-width: 880px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(50px, 6.3vw, 92px);
  font-weight: 700;
  line-height: .93;
  letter-spacing: -.067em;
}

.hero-sub {
  max-width: 690px;
  margin-bottom: 38px;
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta, .hero-ghost, .btn-white, .btn-outline-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .105em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.hero-cta { background: #fff; color: var(--wine-dark); }
.hero-ghost { border: 1px solid rgba(255,255,255,.44); color: #fff; }
.hero-cta:hover, .hero-ghost:hover, .btn-white:hover, .btn-outline-w:hover { transform: translateY(-2px); }
.hero-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero-kpi-bar {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(15,13,13,.76);
  backdrop-filter: blur(18px);
}

.hkpi {
  min-height: 106px;
  padding: 22px clamp(20px, 3vw, 42px);
  border-right: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hkpi:last-child { border-right: 0; }
.hkpi-val { color: #fff; font-size: clamp(19px, 1.8vw, 25px); font-weight: 650; letter-spacing: -.035em; }
.hkpi-lbl { margin-top: 5px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

/* Shared section system */
.section { padding: clamp(88px, 10vw, 144px) 0; border-bottom: 1px solid var(--line); }
.section.bg2 { background: var(--paper-deep); }
.section[id] { scroll-margin-top: 88px; }

.sec-h {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.sec-h-num {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid rgba(99,44,52,.5);
}
.sec-h-num .n { color: var(--wine); font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.sec-h-num .k { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.sec-h-body h2 {
  max-width: 930px;
  margin-bottom: 20px;
  font-size: clamp(36px, 4.25vw, 66px);
  font-weight: 650;
  line-height: .99;
  letter-spacing: -.057em;
}
.sec-h-body h2 em { color: var(--wine); font-style: normal; }
.sec-h-body p { max-width: 780px; color: var(--ink-soft); font-size: clamp(15px, 1.35vw, 18px); line-height: 1.7; }

/* Introduction */
.intro-strip { padding: clamp(70px, 8vw, 108px) 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.intro-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(42px, 8vw, 118px); align-items: start; }
.intro-h { font-size: clamp(34px, 4vw, 60px); font-weight: 650; line-height: 1; letter-spacing: -.055em; }
.intro-body { padding-top: 8px; color: var(--ink-soft); font-size: clamp(16px, 1.35vw, 19px); line-height: 1.75; }

/* Business context */
.pain-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.pain-main { padding: clamp(38px, 5vw, 72px); }
.pain-main h3 { max-width: 650px; margin-bottom: 22px; font-size: clamp(34px, 3.9vw, 60px); font-weight: 650; line-height: 1; letter-spacing: -.055em; }
.pain-main p { max-width: 670px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.pain-side { padding: clamp(38px, 5vw, 66px); background: linear-gradient(145deg, var(--wine-dark), var(--wine)); color: #fff; }
.pain-side .tag { margin-bottom: 24px; color: rgba(255,255,255,.52); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.pain-list { list-style: none; }
.pain-list li { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.5; }
.pain-list li:last-child { border-bottom: 0; }
.pain-list strong { display: block; margin-bottom: 3px; color: #fff; font-size: 15px; font-weight: 650; }

/* Authority */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.proof-card { min-height: 210px; padding: clamp(28px, 3vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,250,.72); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.proof-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow-sm); }
.proof-val { color: var(--wine); font-size: clamp(40px, 4vw, 58px); font-weight: 650; line-height: 1; letter-spacing: -.05em; }
.proof-lbl { margin-top: 22px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* Comparison */
.compare-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-col { padding: clamp(38px, 5vw, 68px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.compare-col + .compare-col { background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); }
.compare-tag { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.compare-tag::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.compare-col + .compare-col .compare-tag { color: var(--blush) !important; }
.compare-h { margin-bottom: 20px; font-size: clamp(30px, 3.2vw, 48px); font-weight: 650; line-height: 1.02; letter-spacing: -.05em; }
.compare-h em { color: var(--blush); font-style: normal; }
.compare-body { margin-bottom: 30px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.compare-col + .compare-col .compare-body { color: rgba(255,255,255,.63); }
.compare-list { list-style: none; }
.compare-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.compare-col + .compare-col .compare-item { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.73); }
.compare-item:last-child { border-bottom: 0; }
.compare-mark { flex: 0 0 auto; color: var(--muted); font-weight: 800; }
.compare-mark.ok { color: var(--blush); }

/* Method */
.flow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.flow::before { content: ""; position: absolute; z-index: 0; top: 66px; left: 7%; right: 7%; height: 1px; background: rgba(99,44,52,.28); }
.flow-step { position: relative; z-index: 1; min-height: 250px; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.flow-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.flow-no { display: block; margin-bottom: 16px; color: var(--wine-light); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.flow-icon { width: 42px; height: 42px; margin-bottom: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--wine); color: #fff; font-size: 12px; font-weight: 800; }
.flow-name { margin-bottom: 10px; font-family: "Inter Tight"; font-size: 18px; font-weight: 650; line-height: 1.15; }
.flow-desc { color: var(--ink-soft); font-size: 13px; line-height: 1.58; }
.exit-block { max-width: 880px; margin: 32px auto 0; padding: 24px 28px; border: 1px solid rgba(99,44,52,.18); border-radius: var(--radius-sm); background: rgba(255,255,255,.55); color: var(--ink-soft); font-size: 15px; line-height: 1.65; text-align: center; }
.exit-block strong { color: var(--wine); }

/* Solutions */
.sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sol-card { min-height: 410px; padding: clamp(34px, 4vw, 54px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.sol-card:hover { transform: translateY(-5px); border-color: rgba(99,44,52,.27); box-shadow: var(--shadow-sm); }
.sol-top { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.sol-no { color: var(--wine); font-size: 12px; font-weight: 800; }
.sol-tag { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-align: right; text-transform: uppercase; }
.sol-card h3 { max-width: 520px; margin-bottom: 15px; font-size: clamp(27px, 2.65vw, 40px); font-weight: 650; line-height: 1.03; letter-spacing: -.048em; }
.sol-card p { margin-bottom: 25px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.sol-list { list-style: none; }
.sol-list li { display: flex; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; }
.dot { width: 5px; height: 5px; margin-top: 7px; border-radius: 50%; background: var(--wine); flex: 0 0 auto; }
.leadership-card { grid-column: 1 / -1; min-height: 0; }
.leadership-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 36px; }

/* Markets */
.mkt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mkt-cell { min-height: 170px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,253,250,.72); transition: background .2s ease, transform .2s ease; }
.mkt-cell:hover { background: var(--white); transform: translateY(-3px); }
.mkt-name { margin-bottom: 12px; font-family: "Inter Tight"; font-size: 19px; font-weight: 650; letter-spacing: -.025em; }
.mkt-desc { color: var(--ink-soft); font-size: 13px; line-height: 1.6; }

/* Insights */
.insights-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.insight-feature, .insight-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.insight-feature:hover, .insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.insight-feature { min-height: 460px; display: grid; grid-template-columns: .85fr 1.15fr; }
.insight-visual { position: relative; background: linear-gradient(155deg, var(--wine-dark), var(--wine) 62%, var(--wine-light)); }
.insight-visual::before { content: ""; position: absolute; width: 260px; height: 260px; top: -50px; left: -90px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 58px 58px 0 -1px transparent, 58px 58px 0 0 rgba(255,255,255,.1), 116px 116px 0 -1px transparent, 116px 116px 0 0 rgba(255,255,255,.06); }
.insight-visual::after { content: "ERA / 01"; position: absolute; bottom: 30px; left: 30px; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.insight-copy, .insight-card { padding: clamp(30px, 3.5vw, 48px); }
.insight-copy { display: flex; flex-direction: column; justify-content: flex-end; }
.insight-label { margin-bottom: 16px; color: var(--wine); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.insight-copy h3, .insight-card h3 { margin-bottom: 16px; font-size: clamp(25px, 2.7vw, 40px); font-weight: 650; line-height: 1.03; letter-spacing: -.046em; }
.insight-card h3 { font-size: clamp(22px, 2vw, 29px); }
.insight-copy p, .insight-card p { margin-bottom: 22px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.insight-link { color: var(--wine); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.insights-side { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.insight-card { display: flex; flex-direction: column; justify-content: space-between; }

/* Executives */
.exec-bain-title { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin-bottom: 40px; }
.exec-bain-title span { height: 1px; background: var(--line); }
.exec-bain-title strong { font-family: "Inter Tight"; font-size: 24px; font-weight: 650; letter-spacing: -.04em; }
.exec-bain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.exec-bain-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding-bottom: 25px; transition: transform .25s ease, box-shadow .25s ease; }
.exec-bain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.exec-bain-card img { width: 100%; height: 260px; margin-bottom: 22px; object-fit: cover; object-position: center 20%; background: var(--paper-deep); filter: saturate(.88) contrast(1.02); transition: transform .45s ease, filter .45s ease; }
.exec-bain-card:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.02); }
.exec-bain-card h3, .exec-bain-role, .exec-bain-card p { margin-inline: 24px; }
.exec-bain-card h3 { margin-bottom: 6px; font-size: 24px; font-weight: 650; letter-spacing: -.04em; }
.exec-bain-role { margin-bottom: 10px; color: var(--wine); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.exec-bain-card p { color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

/* Founder */
.founder-grid { display: grid; grid-template-columns: .88fr 1.12fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
.founder-photo { position: relative; min-height: 650px; overflow: hidden; background: #141212; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.85) contrast(1.03); }
.founder-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,15,18,.72), transparent 55%); }
.founder-label { position: absolute; z-index: 1; bottom: 30px; left: 30px; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.founder-copy { padding: clamp(44px, 6vw, 86px); display: flex; flex-direction: column; justify-content: center; }
.founder-copy h3 { margin-bottom: 8px; font-size: clamp(44px, 5vw, 76px); font-weight: 650; line-height: .95; letter-spacing: -.06em; }
.founder-role { margin-bottom: 30px; color: var(--wine); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.founder-copy p { margin-bottom: 18px; color: var(--ink-soft); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.72; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.founder-tags span, .contato-pills span { padding: 8px 13px; border: 1px solid rgba(99,44,52,.2); border-radius: 999px; background: rgba(99,44,52,.05); color: var(--wine); font-size: 11px; font-weight: 650; }

/* Ecosystem */
.ecosystem-section { position: relative; overflow: hidden; background: #151313; color: #fff; }
.ecosystem-section::before { content: ""; position: absolute; width: 700px; height: 700px; right: -230px; top: -300px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: -110px 110px 0 -1px transparent, -110px 110px 0 0 rgba(255,255,255,.06), -220px 220px 0 -1px transparent, -220px 220px 0 0 rgba(255,255,255,.035); }
.ecosystem-split { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.ecosystem-title::before { content: "Ecossistema"; display: block; margin-bottom: 24px; color: var(--blush); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.ecosystem-title h2 { font-size: clamp(48px, 5.5vw, 82px); font-weight: 650; line-height: .93; letter-spacing: -.063em; }
.ecosystem-content { display: grid; gap: 30px; }
.ecosystem-logos-line { min-height: 170px; padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); background: rgba(255,255,255,.045); backdrop-filter: blur(12px); }
.ecosystem-logos-line img { width: 100%; height: 100%; max-height: 110px; object-fit: contain; filter: grayscale(1) invert(1) brightness(1.9); opacity: .86; }
.ecosystem-content p { max-width: 640px; color: rgba(255,255,255,.62); font-size: clamp(17px, 1.7vw, 23px); line-height: 1.58; letter-spacing: -.025em; }

/* Conversion */
.cta { position: relative; overflow: hidden; padding: clamp(96px, 12vw, 170px) 0; background: var(--wine-dark); }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 10%, rgba(255,255,255,.14), transparent 34%), linear-gradient(135deg, #32161b, var(--wine) 58%, #8d4c55); }
.cta-bg::after { content: ""; position: absolute; width: 520px; height: 520px; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 80px 0 0 -1px transparent, 80px 0 0 0 rgba(255,255,255,.07), -80px 0 0 -1px transparent, -80px 0 0 0 rgba(255,255,255,.07); }
.cta-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-h { max-width: 930px; color: #fff; font-size: clamp(44px, 6.2vw, 90px); font-weight: 650; line-height: .93; letter-spacing: -.064em; }
.cta-sub { max-width: 620px; margin: 28px 0 34px; color: rgba(255,255,255,.7); font-size: clamp(15px, 1.45vw, 19px); line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.btn-white { background: #fff; color: var(--wine-dark); }
.btn-outline-w { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn-outline-w:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* Contact */
#contato { background: var(--paper-deep); }
.contato-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 7vw, 100px); align-items: start; }
.contato-info { position: sticky; top: 116px; }
.contato-info::before { content: "Vamos conversar"; display: block; margin-bottom: 22px; color: var(--wine); font-family: "Inter Tight"; font-size: clamp(30px, 3.4vw, 46px); font-weight: 650; letter-spacing: -.05em; }
.contato-info p { max-width: 420px; color: var(--ink-soft); font-size: 15px; line-height: 1.72; }
.contato-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.contact-form { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; padding: 15px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fbfaf8; color: var(--ink); font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--wine-light); background: #fff; box-shadow: 0 0 0 4px rgba(99,44,52,.08); }
.field textarea { min-height: 140px; resize: vertical; }
.submit-btn { width: 100%; min-height: 54px; margin-top: 2px; border: 0; border-radius: 999px; background: var(--wine); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.submit-btn:hover { transform: translateY(-2px); background: var(--wine-dark); }
.form-note { margin-top: 14px; color: var(--muted); font-size: 11px; line-height: 1.55; text-align: center; }
.form-success { display: none; margin-top: 14px; color: var(--wine); font-size: 13px; font-weight: 700; text-align: center; }

/* Footer */
.footer { padding: clamp(60px, 7vw, 90px) 0 36px; background: #121111; color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.25fr .65fr 1fr; gap: clamp(36px, 7vw, 90px); padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { margin-bottom: 18px; }
.footer-logo-img { width: auto; height: 36px; }
.footer-tag { max-width: 340px; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.7; }
.footer-col h5 { margin-bottom: 16px; color: var(--blush); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.9; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-group-logos { margin-top: 24px; }
.footer-group-logos img { width: min(100%, 230px); margin-top: 10px; filter: grayscale(1) invert(1) brightness(2); opacity: .54; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 30px; }
.footer-copy { color: rgba(255,255,255,.3); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow::before { display: none; }
  .proof-grid, .mkt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .hero { min-height: auto; display: block; }
  .hero-content { min-height: 720px; padding-top: 154px; padding-bottom: 72px; display: flex; flex-direction: column; justify-content: flex-end; }
  .hero-kpi-bar { position: relative; grid-template-columns: repeat(2, 1fr); }
  .hkpi:nth-child(2) { border-right: 0; }
  .hkpi:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .intro-inner, .pain-grid, .compare-inner, .insights-grid, .founder-grid, .ecosystem-split, .contato-grid { grid-template-columns: 1fr; }
  .sec-h { grid-template-columns: 1fr; gap: 22px; }
  .sec-h-num { max-width: 180px; }
  .proof-grid { gap: 12px; }
  .sol-grid { grid-template-columns: 1fr; }
  .leadership-card { grid-column: auto; }
  .exec-bain-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-photo { min-height: 570px; }
  .ecosystem-content { max-width: 720px; }
  .contato-info { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --radius: 20px; --radius-lg: 26px; }
  .nav-top { height: 72px; }
  .nav-logo .logo-img { height: 30px; }
  .hero-content { min-height: 680px; padding-top: 125px; padding-bottom: 55px; }
  .hero-h1 { font-size: clamp(43px, 12.3vw, 58px); line-height: .95; letter-spacing: -.058em; }
  .hero-sub { font-size: 16px; line-height: 1.63; }
  .eyebrow { max-width: 310px; align-items: flex-start; font-size: 8.5px; line-height: 1.55; }
  .eyebrow::before { margin-top: 6px; flex: 0 0 28px; }
  .hero-actions { display: grid; }
  .hero-cta, .hero-ghost { width: 100%; }
  .hkpi { min-height: 92px; padding: 18px 20px; }
  .hkpi-val { font-size: 18px; }
  .hkpi-lbl { font-size: 8px; }
  .section { padding: 78px 0; }
  .sec-h { margin-bottom: 38px; }
  .sec-h-body h2 { font-size: clamp(36px, 10.6vw, 49px); }
  .intro-h { font-size: clamp(36px, 10.3vw, 48px); }
  .pain-main h3 { font-size: clamp(34px, 9.8vw, 44px); }
  .pain-main, .pain-side, .compare-col, .sol-card, .founder-copy { padding: 30px 24px; }
  .proof-grid, .mkt-grid, .flow, .exec-bain-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 0; }
  .flow-step { min-height: 0; }
  .leadership-list { grid-template-columns: 1fr; }
  .insight-feature { min-height: 0; grid-template-columns: 1fr; }
  .insight-visual { min-height: 240px; }
  .insights-side { grid-template-rows: auto; }
  .exec-bain-card img { height: 285px; }
  .founder-photo { min-height: 500px; }
  .ecosystem-title h2 { font-size: clamp(48px, 14vw, 66px); }
  .cta-h { font-size: clamp(45px, 13vw, 62px); }
  .cta-h br { display: none; }
  .cta-actions { width: 100%; display: grid; }
  .btn-white, .btn-outline-w { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .field.full { grid-column: auto; }
  .contact-form { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > :first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rv { opacity: 1; transform: none; }
}
