/* Crenshaw Analytics — polished SaaS-grade: depth, color blocking, pill CTAs */

:root{
  --navy: #141A3D;
  --navy-deep: #0E1330;
  --navy-soft: #1C2452;
  --blue: #2F5FD0;
  --blue-deep: #2450B4;
  --blue-soft: #82B1FF;
  --blue-tint: #EAF0FC;
  --bg: #FFFFFF;
  --bg-light: #F5F7FC;
  --ink: #131732;
  --body: #4D5468;
  --faint: #8B92A8;
  --line: rgba(19,23,50,0.10);
  --green: #1E9E6A;
  --red: #D6455D;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --disp: "Plus Jakarta Sans", var(--sans);
  --wrap: 1180px;
  --r-card: 20px;
  --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(19,23,50,0.05), 0 4px 14px rgba(19,23,50,0.06);
  --sh-md: 0 2px 6px rgba(19,23,50,0.05), 0 18px 40px rgba(19,23,50,0.10);
  --sh-lg: 0 8px 20px rgba(19,23,50,0.10), 0 36px 80px rgba(19,23,50,0.16);
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; scroll-padding-top: 96px; }
body{
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
b{ font-weight: 600; color: var(--ink); }

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

/* ================= TYPE ================= */
h1{
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.028em;
}
h2{
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.024em;
}
h3{ font-family: var(--disp); letter-spacing: -0.01em; }
h1, h2, h3{ text-wrap: balance; }
.eyebrow{
  display: inline-block;
  font-family: var(--disp);
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow.light{ color: var(--blue-soft); }
.lede{
  font-size: clamp(17px, 1.5vw, 19.5px);
  color: var(--body);
  max-width: 54ch;
  margin-top: 24px;
}
.sec-lede{
  font-size: 17.5px; color: var(--body);
  max-width: 62ch; margin: 18px auto 0;
}

/* ================= BUTTONS ================= */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--disp); font-weight: 700; font-size: 16px;
  padding: 17px 34px; border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 24px rgba(47,95,208,0.35);
}
.btn-primary:hover{ background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(47,95,208,0.42); }
.btn-soft{
  background: var(--blue-tint); color: var(--blue-deep);
}
.btn-soft:hover{ background: #DFE9FB; transform: translateY(-2px); }
.btn-outline{
  border: 1.5px solid var(--line); color: var(--ink); background: #fff;
}
.btn-outline:hover{ border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }
.btn-light-solid{
  background: #fff; color: var(--navy);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-light-solid:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.24); }
.btn-lg{ font-size: 17px; padding: 19px 40px; }
.text-link{
  font-family: var(--disp); font-weight: 700; font-size: 15px; color: var(--blue);
}
.text-link:hover{ color: var(--blue-deep); }

/* ================= NAV ================= */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.stuck{
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(19,23,50,0.05);
  padding: 12px 0;
}
/* blur lives on a pseudo-element: backdrop-filter on .nav itself would trap
   the fixed-position mobile menu overlay inside the nav bar */
.nav.stuck::before{
  content: ""; position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(14px);
}
.nav-inner{ display: flex; align-items: center; justify-content: space-between; }
.logo-img{ height: 40px; width: auto; }
.logo-inv{ filter: brightness(0) invert(1); }
.nav-links{ display: flex; align-items: center; gap: 34px; }
.nav-links .item{
  font-size: 15px; font-weight: 500; color: var(--body);
  transition: color .15s ease;
}
.nav-links .item:hover{ color: var(--ink); }
.nav-cta{
  font-family: var(--disp); font-weight: 700; font-size: 15px;
  background: var(--navy); color: #fff;
  padding: 12px 24px; border-radius: var(--r-pill);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 6px 18px rgba(20,26,61,0.22);
}
.nav-cta:hover{ background: var(--blue); transform: translateY(-1px); }
.nav-burger{ display: none; }

/* ================= HERO ================= */
.hero{
  position: relative;
  padding: 164px 0 0;
  background:
    radial-gradient(1100px 600px at 90% -10%, rgba(47,95,208,0.10), transparent 60%),
    radial-gradient(800px 500px at -10% 40%, rgba(130,177,255,0.12), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero-glow{ position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-glow-a{ width: 480px; height: 480px; right: -120px; top: -80px; background: rgba(130,177,255,0.22); }
.hero-glow-b{ width: 380px; height: 380px; left: -140px; bottom: 40px; background: rgba(47,95,208,0.10); }

.hero-grid{
  position: relative;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center;
}
.badge{
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  background: #fff; border: 1px solid var(--line);
  padding: 9px 18px; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  margin-bottom: 26px;
}
.badge-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(30,158,106,0.18);
}
.hero-cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust{
  display: flex; align-items: center; gap: 12px;
  margin-top: 26px;
}
.trust-avatar{
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; box-shadow: var(--sh-sm);
}
.hero-trust p{ font-size: 14px; color: var(--faint); max-width: 40ch; line-height: 1.5; }

/* ---- dashboard mockup ---- */
.hero-visual{ position: relative; }
.mock-backdrop{
  position: absolute; inset: -8% -6% -8% 4%;
  background: linear-gradient(150deg, var(--blue) 0%, var(--navy) 78%);
  border-radius: 28px;
  transform: rotate(2.5deg);
  box-shadow: var(--sh-lg);
}
.mock{
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--sh-lg);
  padding: 22px 22px 20px;
  border: 1px solid rgba(19,23,50,0.06);
}
.mock-head{
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
.mock-title{ font-family: var(--disp); font-weight: 700; font-size: 15.5px; }
.mock-sub{ font-size: 11.5px; color: var(--faint); margin-top: 1px; }
.mock-pills{ display: flex; gap: 4px; background: var(--bg-light); border-radius: var(--r-pill); padding: 3px; }
.mock-pill{
  font-size: 10.5px; font-weight: 600; color: var(--faint);
  padding: 4px 10px; border-radius: var(--r-pill);
}
.mock-pill.active{ background: #fff; color: var(--navy); box-shadow: var(--sh-sm); }
.mock-kpis{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 16px;
}
.kpi{
  background: var(--bg-light); border-radius: 12px; padding: 10px 12px;
  display: flex; flex-direction: column; gap: 1px;
}
.kpi-label{ font-size: 10px; font-weight: 600; color: var(--faint); text-transform: uppercase; letter-spacing: 0.04em; }
.kpi-val{ font-family: var(--disp); font-weight: 800; font-size: 17px; color: var(--ink); }
.kpi-delta{ font-size: 10.5px; font-weight: 600; color: var(--faint); }
.kpi-delta.up{ color: var(--green); }
.kpi-delta.down{ color: var(--red); }
.mock-body{ display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
.mock-chart-head{
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 600; color: var(--body);
  margin-bottom: 10px;
}
.mock-legend{ display: inline-flex; align-items: center; gap: 5px; font-weight: 500; color: var(--faint); font-size: 10px; }
.mock-legend i{ width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
.lg-a{ background: var(--blue); } .lg-b{ background: #C9D6F2; }
.bars{
  position: relative;
  display: flex; align-items: flex-end; gap: 5px;
  height: 110px; padding-bottom: 2px;
}
.bar{
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, #6F96E8, var(--blue));
  border-radius: 4px 4px 2px 2px;
  opacity: 0.85;
}
.bar.hot{ background: linear-gradient(180deg, var(--blue-soft), var(--blue)); opacity: 1; }
.target-line{
  position: absolute; left: 0; right: 0; top: 26%;
  border-top: 2px dashed #C9D6F2;
}
.mock-side{ background: var(--bg-light); border-radius: 12px; padding: 12px 14px; }
.hrow{
  display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 500; color: var(--body);
  margin-bottom: 10px;
}
.htrack{ height: 8px; background: rgba(19,23,50,0.07); border-radius: var(--r-pill); overflow: hidden; }
.hfill{ height: 100%; width: var(--w); background: linear-gradient(90deg, var(--blue), #6F96E8); border-radius: var(--r-pill); }

.float-card{
  position: absolute;
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border-radius: 14px;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(19,23,50,0.06);
  padding: 14px 16px;
  max-width: 270px;
}
.fc-icon{
  flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.fc-icon svg{ width: 18px; height: 18px; }
.fc-title{ font-family: var(--disp); font-weight: 700; font-size: 13px; }
.fc-text{ font-size: 12px; color: var(--body); line-height: 1.45; margin-top: 2px; }
.float-insight{ top: -26px; right: -14px; animation: floaty 7s ease-in-out infinite; }
.float-spark{
  flex-direction: column; gap: 8px;
  left: -26px; bottom: -24px;
  animation: floaty 8s ease-in-out 1.2s infinite;
}
.spark{ width: 168px; height: 46px; }
@keyframes floaty{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-7px); }
}

/* ---- hero tools strip ---- */
.hero-tools{
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-top: 84px;
  padding: 26px 32px;
  border-top: 1px solid var(--line);
}
.tools-label{ font-size: 13.5px; font-weight: 500; color: var(--faint); }
.tools-row{ display: flex; gap: 10px; flex-wrap: wrap; }
.tool-chip{
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--disp); font-size: 13.5px; font-weight: 700; color: var(--navy);
  background: #fff; border: 1px solid var(--line);
  padding: 9px 18px; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.tool-chip img{ height: 18px; width: auto; }

/* ================= SECTIONS ================= */
.sec{ padding: 112px 0; }
.sec--light{ background: var(--bg-light); }
.sec-head{ margin-bottom: 56px; }
.sec-head.center{ text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }

.card{
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid rgba(19,23,50,0.06);
  box-shadow: var(--sh-sm);
}

.card-icon{
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg{ width: 24px; height: 24px; }

/* ================= PAIN ================= */
.pain-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain-card{
  padding: 36px 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pain-card:hover{ transform: translateY(-4px); box-shadow: var(--sh-md); }
.pain-card h3{ font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.pain-card p{ font-size: 15.5px; color: var(--body); }
.pain-pivot{
  margin-top: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--blue-tint), #fff 65%);
  border: 1px solid rgba(47,95,208,0.18);
}
.pain-pivot p{ font-size: 17px; color: var(--body); max-width: none; }

/* ================= SERVICES ================= */
.svc-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.svc-card{
  display: flex; flex-direction: column;
  padding: 38px 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover{ transform: translateY(-5px); box-shadow: var(--sh-md); }
.svc-featured{
  background: linear-gradient(165deg, var(--navy-soft), var(--navy-deep) 80%);
  color: #fff;
  border: none;
  box-shadow: var(--sh-lg);
}
.svc-flag{
  align-self: flex-start;
  font-family: var(--disp); font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: rgba(130,177,255,0.16); color: var(--blue-soft);
  padding: 7px 14px; border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.svc-flag.alt{ background: var(--blue-tint); color: var(--blue-deep); }
.svc-card h3{ font-size: 24px; font-weight: 800; }
.svc-tagline{ font-size: 15px; margin-top: 8px; color: var(--body); }
.svc-featured .svc-tagline{ color: rgba(255,255,255,0.72); }
.svc-price{ margin: 24px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-featured .svc-price{ border-color: rgba(255,255,255,0.14); }
.price{ display: block; font-family: var(--disp); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.price-per{ font-size: 16px; font-weight: 700; color: inherit; opacity: 0.7; }
.price-note{ display: block; font-size: 13.5px; color: var(--faint); margin-top: 3px; }
.svc-featured .price-note{ color: rgba(255,255,255,0.55); }
.svc-list{
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin: 24px 0 30px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.svc-featured .svc-list{ border-color: rgba(255,255,255,0.14); }
.svc-list li{
  position: relative; padding-left: 30px;
  font-size: 15px; color: var(--body); line-height: 1.5;
}
.svc-featured .svc-list li{ color: rgba(255,255,255,0.82); }
.svc-list li::before{
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F5FD0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}
.svc-featured .svc-list li::before{
  background-color: rgba(130,177,255,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2382B1FF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.svc-card .btn{ margin-top: auto; width: 100%; }

/* ================= BAND (dark sections) ================= */
.band{
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: #fff;
  padding: 116px 0;
  overflow: hidden;
}
.band h2{ color: #fff; }
.band-glow{
  position: absolute; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,95,208,0.34), transparent 65%);
  top: -240px; right: -180px;
  pointer-events: none;
}
.band-grid{
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.band-list{ list-style: none; margin: 32px 0 38px; display: flex; flex-direction: column; gap: 20px; }
.band-list li{ display: flex; gap: 16px; align-items: flex-start; font-size: 16px; color: rgba(255,255,255,0.78); }
.band-list b{ color: #fff; display: inline; }
.bl-icon{
  flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(130,177,255,0.14); color: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
}
.bl-icon svg{ width: 20px; height: 20px; }

/* dark mock */
.band-visual{ position: relative; }
.mock-dark{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}
.mock-dark .mock-title{ color: #fff; }
.mock-dark .mock-sub{ color: rgba(255,255,255,0.45); }
.mock-pills.dark{ background: rgba(255,255,255,0.08); }
.mock-pills.dark .mock-pill{ color: rgba(255,255,255,0.55); }
.mock-pills.dark .mock-pill.active{ background: rgba(255,255,255,0.16); color: #fff; box-shadow: none; }
.mock-kpis.dark .kpi{ background: rgba(255,255,255,0.06); }
.mock-kpis.dark{ grid-template-columns: repeat(3, 1fr); }
.mock-kpis.dark .kpi-val{ color: #fff; }
.mock-kpis.dark .kpi-label{ color: rgba(255,255,255,0.45); }
.mock-line svg{ width: 100%; height: 150px; display: block; }
.mock-line-foot{
  display: flex; justify-content: space-between;
  font-size: 10px; color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.float-note{ bottom: -42px; right: -18px; max-width: 250px; animation: floaty 7.5s ease-in-out 0.6s infinite; }

/* ================= PROCESS ================= */
.proc-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proc-card{
  position: relative;
  padding: 56px 28px 34px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.proc-card:hover{ transform: translateY(-4px); box-shadow: var(--sh-md); }
.proc-num{
  position: absolute; top: -22px; left: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  color: #fff; font-family: var(--disp); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(47,95,208,0.35);
}
.proc-month{
  font-family: var(--disp); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue);
}
.proc-card h3{ font-size: 19px; font-weight: 700; margin: 8px 0 10px; }
.proc-card p{ font-size: 14.5px; color: var(--body); }

/* ================= WHY ================= */
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card{
  padding: 34px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover{ transform: translateY(-4px); box-shadow: var(--sh-md); }
.why-card h3{ font-size: 18.5px; font-weight: 700; margin-bottom: 10px; }
.why-card p{ font-size: 14.5px; color: var(--body); }

/* ================= FOUNDER ================= */
.founder-card{
  display: grid; grid-template-columns: 380px 1fr; gap: 0;
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.founder-media{
  position: relative;
  background: linear-gradient(165deg, var(--navy-soft), var(--navy-deep));
  padding: 40px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 22px;
}
.founder-photo{
  width: 100%; height: auto; aspect-ratio: 1; object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
}
.founder-id{ display: flex; flex-direction: column; }
.founder-name{ font-family: var(--disp); font-weight: 800; font-size: 20px; color: #fff; }
.founder-role{ font-size: 14px; color: rgba(255,255,255,0.6); }
.founder-letter{ padding: 52px 56px; }
.fl-lead{
  font-family: var(--disp); font-weight: 600; font-size: 21px; line-height: 1.45;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.founder-letter p{ font-size: 16.5px; color: var(--body); max-width: 60ch; }
.founder-letter p + p{ margin-top: 18px; }
.founder-sig{
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
}
.sig-name{ font-family: var(--disp); font-weight: 800; font-size: 17px; }

/* ================= FIT ================= */
.fit-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-card{ padding: 40px 38px; }
.fit-card.muted{ background: var(--bg-light); }
.fit-card h3{
  display: flex; align-items: center; gap: 12px;
  font-size: 19px; font-weight: 800; margin-bottom: 24px;
}
.fit-badge{
  width: 32px; height: 32px; border-radius: 50%; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; font-family: var(--sans);
}
.fit-badge.yes{ background: var(--green); box-shadow: 0 6px 16px rgba(30,158,106,0.3); }
.fit-badge.no{ background: #A6ACBE; }
.fit-card ul{ list-style: none; display: flex; flex-direction: column; }
.fit-card li{
  font-size: 15.5px; color: var(--body); line-height: 1.55;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.fit-card li:last-child{ border-bottom: none; padding-bottom: 0; }

/* ================= FAQ ================= */
.faq-wrap{ max-width: 880px; }
.faq-list{ display: flex; flex-direction: column; gap: 14px; }
.faq-list details{ padding: 0 30px; transition: box-shadow .2s ease; }
.faq-list details[open]{ box-shadow: var(--sh-md); }
.faq-list summary{
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--disp); font-weight: 700; font-size: 17.5px;
  padding: 24px 0;
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-mark{
  position: relative; flex: 0 0 auto; width: 30px; height: 30px;
  border-radius: 50%; background: var(--blue-tint);
}
.faq-mark::before, .faq-mark::after{
  content: ""; position: absolute; background: var(--blue);
  transition: transform .2s ease;
  border-radius: 2px;
}
.faq-mark::before{ left: 9px; right: 9px; top: 14px; height: 2px; }
.faq-mark::after{ top: 9px; bottom: 9px; left: 14px; width: 2px; }
details[open] .faq-mark::after{ transform: scaleY(0); }
.faq-list details p{
  font-size: 15.5px; color: var(--body); max-width: 66ch;
  padding: 0 0 26px;
}

/* ================= CLOSING ================= */
.closing-grid{
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center;
}
.closing-lede{
  font-size: 17.5px; color: rgba(255,255,255,0.72);
  max-width: 48ch; margin: 22px 0 34px;
}
.closing-alt{ font-size: 14.5px; color: rgba(255,255,255,0.5); margin-top: 20px; }
.closing-alt a{ color: var(--blue-soft); font-weight: 600; }
.closing-alt a:hover{ text-decoration: underline; }
.closing-steps{
  list-style: none; display: flex; flex-direction: column; gap: 14px;
}
.closing-steps li{
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 15.5px; color: rgba(255,255,255,0.78);
}
.closing-steps b{ color: #fff; }
.step-num{
  flex: 0 0 auto;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: var(--disp); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  box-shadow: 0 6px 16px rgba(47,95,208,0.4);
}

/* ================= FOOTER ================= */
.footer{ background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 64px 0 36px; }
.footer-top{
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.f-tag{ font-size: 14.5px; max-width: 34ch; margin-top: 18px; }
.f-col h4{
  font-family: var(--disp);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 18px;
}
.f-col a{ display: block; font-size: 14.5px; padding: 6px 0; transition: color .15s ease; }
.f-col a:hover{ color: #fff; }
.footer-bottom{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.4);
}

/* ================= REVEAL ================= */
/* hidden state only applies once JS has tagged <html class="js">, so content
   is never invisible without JS; the hero is exempt so first paint is instant */
.js [data-reveal]{
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease var(--reveal-delay, 0s), transform .5s ease var(--reveal-delay, 0s);
}
.js [data-reveal].in,
.js .hero [data-reveal]{
  opacity: 1; transform: none;
}
.js .hero [data-reveal]{ transition: none; }
@media (prefers-reduced-motion: reduce){
  .js [data-reveal]{ opacity: 1; transform: none; transition: none; }
  .float-card{ animation: none; }
  html{ scroll-behavior: auto; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px){
  .hero-grid{ grid-template-columns: 1fr; gap: 80px; }
  .hero-visual{ max-width: 620px; margin: 0 auto; }
  .band-grid, .closing-grid{ grid-template-columns: 1fr; gap: 56px; }
  .pain-grid, .svc-grid{ grid-template-columns: 1fr 1fr; }
  .svc-card.svc-featured{ grid-column: 1 / -1; }
  .proc-grid, .why-grid{ grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .founder-card{ grid-template-columns: 1fr; }
  .founder-media{ flex-direction: row; align-items: center; }
  .founder-photo{ width: 140px; }
}
@media (max-width: 720px){
  .sec{ padding: 84px 0; }
  .hero{ padding-top: 132px; }
  .badge{ font-size: 12px; padding: 8px 14px; }
  .mock{ padding: 16px 14px 14px; }
  .mock-kpis{ grid-template-columns: 1fr 1fr; }
  .mock-body{ grid-template-columns: 1fr; }
  .pain-grid, .svc-grid, .proc-grid, .why-grid, .fit-grid{ grid-template-columns: 1fr; }
  .proc-grid{ row-gap: 44px; }
  .founder-letter{ padding: 36px 28px; }
  .founder-media{ padding: 28px; }
  .float-insight{ top: -74px; right: -4px; max-width: 250px; }
  .float-spark{ left: -8px; bottom: -18px; }
  .float-note{ right: -4px; bottom: -20px; max-width: 230px; }
  .hero-tools{ margin-top: 64px; justify-content: flex-start; }
  .footer-top{ grid-template-columns: 1fr; gap: 32px; }

  .nav-burger{
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 60;
  }
  .nav-burger span{
    width: 24px; height: 2px; background: var(--navy); border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease, background .25s ease;
  }
  .nav-burger.open span{ background: #fff; }
  .nav-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2){ opacity: 0; }
  .nav-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .nav-links{
    position: fixed; inset: 0; z-index: 55;
    background: rgba(14,19,48,0.98);
    flex-direction: column; justify-content: center; align-items: center; gap: 26px;
    opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .nav-links.open{ opacity: 1; pointer-events: auto; }
  .nav-links .item{ font-size: 20px; color: rgba(255,255,255,0.85); }
  .nav-links .item:hover{ color: #fff; }
}
