/* ============================================================
   Lead Phoenix AI — homepage
   ============================================================ */

:root{
  /* Color tokens */
  --bg:        #FAFAF7;
  --bg-soft:   #F4F4EE;
  --ink:       #0B0B0F;
  --ink-2:     #1A1A22;
  --muted:     #5C5C66;
  --muted-2:   #6F6F78;
  --line:      #E6E6DE;
  --line-2:    #EFEFE7;

  --blue:      #3B82F6;
  --blue-2:    #2563EB;
  --blue-soft: #E8F1FF;
  --blue-tint: #F2F7FF;
  --mint:      #D7F5E3;
  --mint-2:    #16A34A;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(11,11,15,.04);
  --shadow-md: 0 6px 24px -8px rgba(11,11,15,.10), 0 1px 2px rgba(11,11,15,.04);
  --shadow-lg: 0 24px 48px -20px rgba(11,11,15,.18), 0 2px 6px rgba(11,11,15,.04);

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  background:var(--bg);
  color:var(--ink);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
em{font-family:var(--serif);font-style:italic;font-weight:400}
button{font-family:inherit}

.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
}

/* ============================================================
   Buttons / pills / utility
   ============================================================ */

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  font-weight:500;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn--sm{padding:9px 16px;font-size:13.5px}
.btn--lg{padding:14px 22px;font-size:15px}
.btn--primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 8px 18px -8px rgba(59,130,246,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover{background:var(--blue-2);transform:translateY(-1px)}
.btn--ghost{
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
  box-shadow:var(--shadow-sm);
}
.btn--ghost:hover{border-color:#D6D6CC;background:#fff}
.btn--white{
  background:#fff;
  color:var(--ink);
  box-shadow:0 8px 24px -10px rgba(0,0,0,.4);
}
.btn--white:hover{transform:translateY(-1px)}
.btn__arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  transition:transform .2s ease;
}
.btn:hover .btn__arrow{transform:translateX(3px)}
.btn:disabled{
  opacity:.72;
  cursor:not-allowed;
  transform:none;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  background:var(--blue-tint);
  border:1px solid var(--blue-soft);
  border-radius:999px;
  font-size:13px;
  color:var(--blue-2);
  font-weight:500;
}
.pill__dot{
  width:6px;height:6px;border-radius:999px;background:var(--blue);
  box-shadow:0 0 0 3px rgba(59,130,246,.18);
}

.eyebrow{
  display:inline-block;
  font-family:var(--mono);
  font-size:11.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px;
}
.eyebrow--light{color:rgba(255,255,255,.7)}
.eyebrow--small{font-size:10.5px;margin-bottom:4px}

.h2{
  font-family:var(--sans);
  font-weight:600;
  font-size:clamp(28px, 3.4vw, 46px);
  line-height:1.08;
  letter-spacing:-0.02em;
  margin:0 0 16px;
  text-wrap:balance;
}
.h2 em{letter-spacing:0}
.h2--light{color:#fff}

.lede{
  font-size:17px;
  line-height:1.55;
  color:var(--muted);
  max-width:62ch;
  margin:0;
  text-wrap:pretty;
}
.lede--light{color:rgba(255,255,255,.78)}

.section-head{margin-bottom:48px}
.section-head--center{text-align:center;margin-inline:auto;max-width:760px}
.section-head--center .lede{margin-inline:auto}

.dot{
  display:inline-block;
  width:8px;height:8px;border-radius:999px;
  background:var(--muted);
  margin-right:6px;
  vertical-align:middle;
}
.dot--mint{background:var(--mint-2)}

.status{
  display:inline-flex;align-items:center;gap:6px;
  padding:4px 10px;border-radius:999px;
  font-size:12px;font-weight:500;
}
.status--open{background:var(--mint);color:#0F5132}
.status--open::before{
  content:"";width:6px;height:6px;border-radius:999px;background:var(--mint-2);
}
.status--mint{background:var(--mint);color:#0F5132}

.tag{
  font-size:12px;
  padding:3px 10px;
  border-radius:999px;
  background:var(--bg-soft);
  border:1px solid var(--line);
  color:var(--muted);
}

.link-arrow{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--blue-2);
  font-weight:500;
  font-size:14.5px;
  margin-top:8px;
}
.link-arrow span{transition:transform .2s}
.link-arrow:hover span{transform:translateX(4px)}

/* ============================================================
   Nav
   ============================================================ */
.nav{
  position:sticky;top:0;z-index:50;
  padding:14px 32px;
  backdrop-filter:saturate(140%) blur(12px);
  background:rgba(250,250,247,.78);
  border-bottom:1px solid transparent;
  transition:border-color .2s, background .2s;
}
.nav.is-scrolled{
  border-bottom-color:var(--line);
}
.nav__inner{
  max-width:1280px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.nav__brand{
  display:inline-flex;align-items:center;gap:10px;
  font-weight:600;
  font-size:17px;
  letter-spacing:-.01em;
}
.nav__brand em{font-size:18px;margin-left:2px}
.nav__mark{
  width:30px;height:30px;
  border-radius:9px;
  background:var(--ink);
  color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
}
.nav__mark svg{width:18px;height:18px}
.nav__links{display:flex;align-items:center;gap:30px}
.nav__links a{
  font-size:14px;color:var(--ink-2);
  font-weight:450;
  position:relative;
}
.nav__links a:hover{color:var(--blue-2)}
.nav__dropdown{position:relative}
.nav__dropdown-trigger{
  display:inline-flex;
  align-items:center;
  gap:5px;
}
.nav__dropdown-trigger::after{
  content:"";
  width:6px;
  height:6px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
}
.nav__dropdown-menu{
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  min-width:230px;
  transform:translateX(-50%) translateY(6px);
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  box-shadow:var(--shadow-lg);
  padding:8px;
  opacity:0;
  visibility:hidden;
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.nav__dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:9px;
  white-space:nowrap;
}
.nav__dropdown-menu a:hover{background:var(--blue-tint)}
.nav__cta{display:flex;align-items:center;gap:10px}
.nav__menu{
  display:none;
  background:none;border:1px solid var(--line);
  border-radius:10px;width:38px;height:38px;
  flex-direction:column;align-items:center;justify-content:center;gap:4px;
  cursor:pointer;
}
.nav__menu span{width:14px;height:1.5px;background:var(--ink);display:block}
.mobile-nav{
  display:none;
  max-width:1280px;
  margin:12px auto 0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  box-shadow:var(--shadow-md);
  padding:8px;
}
.mobile-nav a{
  display:block;
  padding:12px 14px;
  border-radius:10px;
  font-size:14px;
  color:var(--ink-2);
}
.mobile-nav a:hover{background:var(--blue-tint);color:var(--blue-2)}
.nav.is-open .mobile-nav{display:block}
.nav.is-open .nav__menu span:first-child{transform:translateY(2.75px) rotate(45deg)}
.nav.is-open .nav__menu span:last-child{transform:translateY(-2.75px) rotate(-45deg)}

@media(max-width:1000px){
  .nav__links{display:none}
  .nav__cta .btn--ghost{display:none}
  .nav__menu{display:flex}
}
@media(max-width:760px){
  .nav__menu{display:flex}
}

/* ============================================================
   Hero
   ============================================================ */
.hero{
  padding:28px 32px 48px;
  position:relative;
}
.hero__grid{
  max-width:1280px;margin:0 auto;
  display:grid;
  grid-template-columns: 1.18fr 1fr;
  gap:56px;
  align-items:center;
}
.hero__left{padding-top:0}
.hero__title{
  font-family:var(--sans);
  font-size:clamp(40px, 5.6vw, 76px);
  line-height:1.02;
  letter-spacing:-0.025em;
  font-weight:600;
  margin:18px 0 20px;
  text-wrap:balance;
}
.hero__title em{
  font-size:1.04em;
  letter-spacing:0;
  color:var(--blue-2);
}
.hero__title .under{
  font-family:var(--serif);
  font-style:italic;
  font-weight:400;
  font-size:1.06em;
  background:linear-gradient(transparent 78%, rgba(59,130,246,.18) 78%, rgba(59,130,246,.18) 96%, transparent 96%);
  padding:0 4px;
}
.hero__sub{
  font-size:18px;
  line-height:1.55;
  color:var(--muted);
  max-width:54ch;
  margin:0 0 28px;
  text-wrap:pretty;
}
.hero__ctas{
  display:flex;gap:12px;flex-wrap:wrap;
  margin-bottom:32px;
}
.hero__meta{
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
  padding-top:22px;
  border-top:1px solid var(--line);
}
.hero__meta-item{display:flex;flex-direction:column;gap:2px}
.hero__meta-item strong{
  font-family:var(--sans);
  font-size:22px;
  font-weight:600;
  letter-spacing:-.01em;
}
.hero__meta-item span{
  font-size:12.5px;
  color:var(--muted);
  letter-spacing:.01em;
}
.hero__meta-divider{
  width:1px;height:30px;background:var(--line);
}

/* Hero operating system graphic */
.ops-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:28px;
  box-shadow:var(--shadow-md);
  position:relative;
  overflow:hidden;
}
.ops-card::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(600px 220px at 50% -20%, rgba(59,130,246,.10), transparent 62%),
    linear-gradient(180deg, rgba(232,241,255,.72) 0%, transparent 38%);
  pointer-events:none;
}
.ops-card > *{position:relative}
.ops-card__head{margin-bottom:24px}
.ops-card__head h2{
  max-width:13ch;
  font-size:clamp(30px, 3vw, 46px);
  line-height:1.04;
  letter-spacing:-.03em;
  margin:0;
}
.ops-map{
  display:grid;
  grid-template-columns:1fr .9fr 1fr;
  gap:18px;
  align-items:center;
  margin:26px 0;
}
.ops-map__side{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.ops-map__side > span{
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted-2);
  margin-bottom:4px;
}
.ops-node{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:10px;
  padding:10px 12px;
  font-size:13px;
  color:var(--ink-2);
}
.ops-node--blue{
  background:var(--blue-tint);
  border-color:var(--blue-soft);
  color:var(--blue-2);
  font-weight:500;
}
.ops-map__center{
  display:flex;
  justify-content:center;
  position:relative;
}
.ops-map__center::before,
.ops-map__center::after{
  content:"";
  position:absolute;
  top:50%;
  width:44px;
  border-top:1px dashed var(--blue);
  opacity:.5;
}
.ops-map__center::before{right:calc(50% + 54px)}
.ops-map__center::after{left:calc(50% + 54px)}
.ops-hub{
  width:128px;
  aspect-ratio:1;
  border-radius:999px;
  background:linear-gradient(180deg, var(--ink), #1A1A22);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:16px;
  box-shadow:var(--shadow-lg);
}
.ops-hub span{
  font-family:var(--mono);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
  margin-bottom:5px;
}
.ops-hub strong{
  font-size:15px;
  line-height:1.15;
  letter-spacing:-.02em;
}
.ops-insight{
  background:var(--blue-tint);
  border:1px solid var(--blue-soft);
  border-radius:var(--r-md);
  padding:16px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}
.ops-insight__label{
  display:block;
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--blue-2);
  margin-bottom:5px;
}
.ops-insight strong{font-size:16px;letter-spacing:-.01em}
.ops-insight p{
  margin:5px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

/* Trust */
.trust{
  max-width:1280px;margin:64px auto 0;
  padding:24px 0;
  border-top:1px solid var(--line);
  display:flex;align-items:center;gap:28px;
  overflow:hidden;
}
.trust__label{
  font-family:var(--mono);
  font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted-2);
  flex:0 0 auto;
}
.logo-marquee{
  flex:1;
  overflow:hidden;
  mask-image:linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.logo-marquee__track{
  display:flex;
  width:max-content;
  gap:18px;
  animation:logoSlide 28s linear infinite;
}
.logo-marquee__track span{
  min-width:max-content;
  padding:9px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--muted);
  font-weight:700;
  font-size:15px;
  letter-spacing:-.02em;
  box-shadow:var(--shadow-sm);
}
@keyframes logoSlide{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@media(max-width:980px){
  .hero__grid{grid-template-columns:1fr;gap:32px}
  .hero{padding-top:26px}
}

/* ============================================================
   Problem
   ============================================================ */
.problem{padding:96px 32px;border-top:1px solid var(--line)}
.problem .section-head{max-width:780px}
.problem__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.prob-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:24px;
  position:relative;
  transition:transform .2s, box-shadow .2s;
}
.prob-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.prob-card__num{
  display:inline-block;
  font-family:var(--mono);
  font-size:11px;letter-spacing:.1em;
  color:var(--muted-2);
  margin-bottom:24px;
}
.prob-card h3{
  font-size:17px;
  letter-spacing:-.01em;
  font-weight:600;
  line-height:1.25;
  margin:0 0 10px;
}
.prob-card p{
  font-size:13.5px;
  color:var(--muted);
  margin:0;line-height:1.5;
}
@media(max-width:980px){.problem__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.problem__grid{grid-template-columns:1fr}}

/* ============================================================
   STE Framework
   ============================================================ */
.ste{padding:96px 32px;background:var(--bg-soft);border-top:1px solid var(--line)}
.ste__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.ste-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:28px;
  display:flex;flex-direction:column;
  position:relative;
  overflow:hidden;
}
.ste-card--accent{
  background:linear-gradient(180deg, var(--blue-tint) 0%, #fff 60%);
  border-color:var(--blue-soft);
}
.ste-card__head{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:36px;
}
.ste-card__tag{
  font-family:var(--mono);
  font-size:11.5px;letter-spacing:.08em;
  color:var(--blue-2);
  background:var(--blue-soft);
  border-radius:999px;
  padding:5px 11px;
  white-space:nowrap;
}
.ste-card__num{
  font-family:var(--serif);font-style:italic;
  font-size:32px;color:var(--muted-2);
}
.ste-card__title{
  font-family:var(--sans);
  font-size:23px;font-weight:600;
  letter-spacing:-.02em;line-height:1.18;
  margin:0 0 12px;
}
.ste-card__title em{color:var(--blue-2)}
.ste-card p{
  color:var(--muted);font-size:14.5px;margin:0 0 20px;
  line-height:1.55;
}
.ste-card__list{
  list-style:none;margin:auto 0 0;padding:0;
  border-top:1px dashed var(--line);
  padding-top:14px;
}
.ste-card__list li{
  font-size:13.5px;color:var(--ink-2);
  padding:6px 0;
  display:flex;align-items:center;gap:8px;
}
.ste-card__list li::before{
  content:"";width:5px;height:5px;border-radius:999px;
  background:var(--blue);
}
@media(max-width:980px){.ste__grid{grid-template-columns:1fr}}

/* ============================================================
   Build / diagram
   ============================================================ */
.build{padding:96px 32px;border-top:1px solid var(--line)}
.build__layout{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:64px;
  align-items:center;
}
.build__left .lede{margin-bottom:28px}
.build__capabilities{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 24px;
  margin:24px 0 28px;
  padding:20px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cap{
  display:flex;align-items:center;gap:10px;
  font-size:14px;color:var(--ink-2);
  padding:6px 0;
}
.cap__dot{
  width:6px;height:6px;border-radius:999px;
  background:var(--blue);
  box-shadow:0 0 0 3px rgba(59,130,246,.12);
  flex-shrink:0;
}

/* Diagram */
.build__diagram{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:32px 24px 24px;
  position:relative;
  box-shadow:var(--shadow-md);
}
.build__diagram::before{
  content:"";
  position:absolute;inset:0;border-radius:var(--r-xl);
  background:
    radial-gradient(400px 160px at 50% -20%, rgba(59,130,246,.06), transparent 70%);
  pointer-events:none;
}
.diag{
  display:grid;
  grid-template-columns:1.1fr 0.8fr 1.2fr 0.8fr 1.1fr;
  gap:0;
  align-items:center;
  position:relative;
}
.diag__col{
  display:flex;flex-direction:column;gap:8px;
}
.diag__col-label{
  font-family:var(--mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--muted-2);
  margin-bottom:4px;
  padding:0 4px;
}
.diag__node{
  font-size:12.5px;
  padding:10px 12px;
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:10px;
  color:var(--ink-2);
}
.diag__node--agent{
  background:var(--blue-tint);
  border-color:var(--blue-soft);
  color:var(--blue-2);
  font-weight:500;
}
.diag__lines{height:240px;position:relative}
.diag__lines svg{
  position:absolute;inset:0;width:100%;height:100%;
}
.diag__lines svg path{
  fill:none;
  stroke:var(--line);
  stroke-width:1.2;
  stroke-dasharray:3 3;
}
.diag__col--mid{
  align-items:center;justify-content:center;
}
.diag__hub{
  width:100%;
  background:linear-gradient(180deg, #fff, var(--blue-tint));
  border:1px solid var(--blue-soft);
  border-radius:var(--r-md);
  padding:18px 14px;
  text-align:center;
  position:relative;
  box-shadow:0 8px 22px -10px rgba(59,130,246,.25);
}
.diag__hub-eyebrow{
  font-family:var(--mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue-2);
  margin-bottom:4px;
}
.diag__hub-title{
  font-size:15px;font-weight:600;letter-spacing:-.01em;color:var(--ink);
}
.diag__hub-meta{
  font-size:11px;color:var(--muted);margin-top:2px;
}
.diag__hub-pulse{
  position:absolute;top:8px;right:8px;
  width:8px;height:8px;border-radius:999px;
  background:var(--blue);
  box-shadow:0 0 0 0 rgba(59,130,246,.6);
  animation:pulse 2.4s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(59,130,246,.55)}
  70%{box-shadow:0 0 0 9px rgba(59,130,246,0)}
  100%{box-shadow:0 0 0 0 rgba(59,130,246,0)}
}
.diag-caption{
  margin-top:20px;
  padding-top:14px;
  border-top:1px dashed var(--line);
  font-size:12px;color:var(--muted);
  display:flex;align-items:center;gap:8px;
  justify-content:center;
  font-family:var(--mono);
  letter-spacing:.02em;
}
.diag-caption__dot{
  width:6px;height:6px;border-radius:999px;background:var(--mint-2);
}
@media(max-width:980px){
  .build__layout{grid-template-columns:1fr;gap:32px}
  .diag{grid-template-columns: 1fr 0.6fr 1fr 0.6fr 1fr; font-size:11px}
}
@media(max-width:640px){
  .ops-map{grid-template-columns:1fr;gap:12px}
  .ops-map__center::before,
  .ops-map__center::after{display:none}
  .ops-hub{width:132px}
  .ops-insight{flex-direction:column}
  .build__diagram{padding:20px 12px}
  .diag__node{font-size:11px;padding:8px 8px}
  .diag__hub{padding:12px 8px}
}

/* ============================================================
   Verticals
   ============================================================ */
.verticals{padding:96px 32px;background:var(--bg-soft);border-top:1px solid var(--line)}
.verticals__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.vert-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:24px;
  display:flex;flex-direction:column;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  position:relative;
}
.vert-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:#DCDCD2;
}
.vert-card__icon{
  width:42px;height:42px;
  border-radius:12px;
  background:var(--blue-soft);
  color:var(--blue-2);
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:18px;
}
.vert-card__icon svg{width:20px;height:20px}
.vert-card__title{
  font-size:21px;
  font-weight:600;
  letter-spacing:-.015em;
  margin:0 0 8px;
}
.vert-card__title span{font-family:var(--serif);font-style:italic;color:var(--muted);font-weight:400;margin:0 4px}
.vert-card p{
  font-size:14px;color:var(--muted);
  margin:0 0 16px;line-height:1.5;
}
.vert-card__sys{
  list-style:none;margin:0 0 18px;padding:0;
  display:flex;flex-wrap:wrap;gap:6px;
}
.vert-card__sys li{
  font-size:11.5px;
  font-family:var(--mono);
  padding:3px 8px;
  border:1px solid var(--line);
  background:var(--bg);
  border-radius:6px;
  color:var(--muted);
  white-space:nowrap;
}
.vert-card__proof{
  background:var(--blue);
  color:#fff;
  border-radius:12px;
  padding:11px 12px;
  margin-bottom:16px;
  font-size:12.5px;
  line-height:1.35;
}
.vert-card__proof strong{
  font-size:16px;
  display:inline-block;
  margin-right:4px;
  letter-spacing:-.01em;
}
.vert-card__more{
  margin-top:auto;
  font-size:13.5px;
  color:var(--blue-2);
  font-weight:500;
  display:inline-flex;align-items:center;gap:4px;
}
.vert-card__more:hover{color:var(--ink)}
@media(max-width:1100px){.verticals__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.verticals__grid{grid-template-columns:1fr}}

/* ============================================================
   Proof
   ============================================================ */
.proof{padding:96px 32px;border-top:1px solid var(--line)}
.proof__grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
}
.proof-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:28px;
  display:flex;flex-direction:column;
  position:relative;
  overflow:hidden;
}
.proof-card__big{
  font-family:var(--sans);
  font-size:60px;
  font-weight:600;
  letter-spacing:-.04em;
  line-height:1;
  color:var(--ink);
  margin-bottom:6px;
}
.proof-card__unit{
  font-family:var(--serif);
  font-style:italic;
  font-weight:400;
  font-size:24px;
  color:var(--blue-2);
  margin-left:6px;
  letter-spacing:0;
}
.proof-card__cap{
  font-family:var(--mono);
  font-size:11.5px;letter-spacing:.08em;text-transform:uppercase;
  color:var(--muted-2);
  margin-bottom:18px;
}
.proof-card__title{
  font-size:18px;font-weight:600;letter-spacing:-.01em;line-height:1.25;
  margin:0 0 8px;
}
.proof-card p{
  font-size:14px;color:var(--muted);line-height:1.5;margin:0 0 16px;
}
.proof-card__meta{
  display:flex;flex-wrap:wrap;gap:6px;margin-bottom:18px;
}
.proof-card__chart{
  margin-top:auto;height:60px;
}
.proof-card__chart svg{width:100%;height:100%;display:block}
.proof-card__bars{
  margin-top:auto;display:flex;align-items:flex-end;gap:8px;height:60px;
}
.proof-card__bars span{
  flex:1;
  height:var(--h);
  background:linear-gradient(180deg, var(--blue), var(--blue-2));
  border-radius:4px 4px 0 0;
}
.proof-card__cpl{
  margin-top:auto;
  display:flex;flex-direction:column;gap:8px;
}
.cpl-row{
  display:grid;grid-template-columns:90px 1fr 36px;
  gap:10px;align-items:center;
  font-size:12px;color:var(--muted);
}
.cpl-bar{
  height:6px;background:var(--bg-soft);border-radius:999px;
  position:relative;overflow:hidden;
}
.cpl-bar i{
  position:absolute;inset:0;
  width:var(--w);
  background:var(--muted);
  border-radius:999px;
}
.cpl-row--ours{color:var(--blue-2);font-weight:500}
.cpl-row--ours .cpl-bar i{background:var(--blue)}

@media(max-width:980px){.proof__grid{grid-template-columns:1fr}}

/* ============================================================
   Audit (dark hero block)
   ============================================================ */
.audit{padding:96px 32px}
.audit__shell{
  background:linear-gradient(135deg, #0B0B0F 0%, #15151D 100%);
  border-radius:var(--r-xl);
  padding:64px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:48px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.audit__shell::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(600px 300px at 110% -10%, rgba(59,130,246,.22), transparent 60%),
    radial-gradient(400px 200px at -10% 110%, rgba(59,130,246,.12), transparent 60%);
  pointer-events:none;
}
.audit__shell::after{
  content:"";position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:64px 64px;
  pointer-events:none;
  mask-image:radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.audit__left, .audit__right{position:relative}
.audit__cta-row{
  display:flex;align-items:center;gap:20px;margin-top:28px;flex-wrap:wrap;
}
.audit-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r-lg);
  backdrop-filter:blur(8px);
  padding:24px;
}
.audit-card__head{
  display:flex;justify-content:space-between;align-items:center;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  margin-bottom:8px;
}
.audit-card__title{
  color:#fff;font-weight:600;font-size:15px;
}
.audit-card__price{
  color:#fff;
  font-size:24px;
  line-height:1;
  letter-spacing:-.03em;
  font-weight:600;
}
.audit-card__list{list-style:none;margin:0;padding:0}
.audit-card__list li{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:12px;align-items:center;
  padding:11px 0;
  border-bottom:1px dashed rgba(255,255,255,.10);
  color:rgba(255,255,255,.92);
  font-size:14px;
}
.audit-card__list li:last-child{border-bottom:0}
.check{
  width:22px;height:22px;border-radius:7px;
  background:var(--mint);color:#0F5132;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:600;
}
.audit-card__hint{
  color:rgba(255,255,255,.5);
  font-size:11.5px;
  font-family:var(--mono);
  letter-spacing:.04em;
}
@media(max-width:900px){
  .audit__shell{grid-template-columns:1fr;padding:40px 28px}
}

/* ============================================================
   About / Security
   ============================================================ */
.about{padding:96px 32px;border-top:1px solid var(--line)}
.about__grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:48px;
  align-items:start;
}
.founder-card{
  background:linear-gradient(180deg, var(--blue-tint) 0%, #fff 62%);
  border:1px solid var(--blue-soft);
  border-radius:var(--r-lg);
  padding:22px;
  margin-top:32px;
}
.founder-card__eyebrow{
  font-family:var(--mono);
  font-size:10.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--blue-2);
  margin-bottom:8px;
}
.founder-card h3{
  font-size:24px;
  letter-spacing:-.02em;
  line-height:1.15;
  margin:0 0 10px;
}
.founder-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.55;
  margin:0 0 10px;
}
.founder-card p:last-child{margin-bottom:0}
.founder-photo{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:10px;
  position:sticky;top:90px;
  box-shadow:var(--shadow-md);
  overflow:hidden;
}
.founder-photo img{
  width:100%;
  aspect-ratio:4 / 4.8;
  object-fit:cover;
  object-position:center;
  border-radius:calc(var(--r-xl) - 8px);
}
@media(max-width:980px){
  .about__grid{grid-template-columns:1fr}
  .founder-photo{position:static}
}

/* ============================================================
   FAQ
   ============================================================ */
.faq{padding:96px 32px;background:var(--bg-soft);border-top:1px solid var(--line)}
.faq__list{
  max-width:880px;margin:0 auto;
  display:flex;flex-direction:column;gap:10px;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  overflow:hidden;
  transition:border-color .2s;
}
.faq-item[open]{border-color:var(--blue-soft);background:var(--blue-tint)}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 22px;
  font-size:15.5px;font-weight:500;letter-spacing:-.005em;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item__chev{
  width:14px;height:14px;
  position:relative;flex-shrink:0;
  transition:transform .2s;
}
.faq-item__chev::before, .faq-item__chev::after{
  content:"";position:absolute;background:var(--ink);
  border-radius:1px;
}
.faq-item__chev::before{top:6px;left:0;width:14px;height:1.5px}
.faq-item__chev::after{top:0;left:6px;width:1.5px;height:14px;transition:transform .2s}
.faq-item[open] .faq-item__chev::after{transform:scaleY(0)}
.faq-item__body{
  padding:0 22px 22px;
  font-size:14.5px;color:var(--muted);line-height:1.6;
  max-width:64ch;
}

/* ============================================================
   Final CTA
   ============================================================ */
.cta{padding:96px 32px;border-top:1px solid var(--line)}
.cta__shell{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:48px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:48px;
  box-shadow:var(--shadow-md);
}
.cta__copy h2{margin-bottom:0}
.cta__action{
  background:var(--blue-tint);
  border:1px solid var(--blue-soft);
  border-radius:var(--r-lg);
  padding:24px;
}
.cta__action p{
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
  margin:0 0 18px;
}
@media(max-width:900px){
  .cta__shell{grid-template-columns:1fr;padding:32px}
}

/* ============================================================
   Footer
   ============================================================ */
.foot{
  background:#0B0B0F;color:rgba(255,255,255,.78);
  padding:64px 32px 32px;
}
.foot .nav__brand{color:#fff}
.foot__top{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
  padding-bottom:32px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.nav__brand--foot .nav__mark{background:#fff;color:var(--ink)}
.foot__tag{
  font-family:var(--serif);font-style:italic;
  color:rgba(255,255,255,.7);
  font-size:18px;margin:0;
}
.foot__cols{
  display:grid;grid-template-columns:repeat(4,1fr);gap:32px;
  padding:40px 0;
}
.foot__col h4{
  font-family:var(--mono);
  font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,.5);
  margin:0 0 14px;font-weight:500;
}
.foot__col a{
  display:block;
  font-size:14px;color:rgba(255,255,255,.85);
  padding:5px 0;
}
.foot__col a:hover{color:#fff}
.foot__col p{font-size:13px;color:rgba(255,255,255,.6);margin:0 0 12px}
.foot__col--cta .btn{
  display:inline-flex;
  width:auto;
  min-width:150px;
  justify-content:center;
  padding-inline:18px;
}
.foot__bottom{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:12.5px;color:rgba(255,255,255,.55);
}
.foot__bottom-right{display:flex;gap:18px}
.foot__bottom-right a:hover{color:#fff}
@media(max-width:760px){.foot__cols{grid-template-columns:repeat(2,1fr)}}

/* ============================================================
   Legal pages
   ============================================================ */
.legal-page{
  width:min(760px, calc(100% - 48px));
  margin:0 auto;
  padding:72px 0;
}
.legal-page h1{
  font-size:clamp(38px, 5vw, 64px);
  letter-spacing:-.03em;
  line-height:1;
  margin:28px 0 24px;
}
.legal-page h2{
  font-size:20px;
  letter-spacing:-.01em;
  margin:32px 0 8px;
}
.legal-page p{
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

/* ============================================================
   Booking / Thank you pages
   ============================================================ */
.booking-page,
.thanks-page{
  min-height:100vh;
  background:
    radial-gradient(900px 360px at 0% 0%, rgba(59,130,246,.09), transparent 58%),
    var(--bg);
}
.booking-hero{
  width:min(1360px, calc(100% - 64px));
  margin:0 auto;
  padding:32px 0 56px;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:36px;
  align-items:start;
}
.booking-hero__copy{
  position:sticky;
  top:28px;
  padding:22px 0 0;
}
.booking-hero__copy .nav__brand{margin-bottom:74px}
.booking-hero__copy h1,
.thanks-card h1{
  font-size:clamp(42px, 5vw, 72px);
  line-height:1.02;
  letter-spacing:-.04em;
  margin:12px 0 18px;
  max-width:11ch;
}
.booking-hero__copy p,
.thanks-card__lede{
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width:56ch;
}
.booking-points{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:30px;
}
.booking-points div{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  align-items:start;
  padding:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
}
.booking-points strong{
  width:28px;
  height:28px;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}
.booking-points span{
  color:var(--ink-2);
  font-size:14px;
  line-height:1.45;
}
.booking-hero__embed{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-md);
  overflow:hidden;
  min-height:760px;
}
.calendly-inline-widget{
  border-radius:var(--r-xl);
}
.thanks-page{
  display:flex;
  align-items:center;
  padding:48px 24px;
}
.thanks-card{
  width:min(1040px, 100%);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-lg);
  padding:42px;
}
.thanks-card .nav__brand{margin-bottom:42px}
.thanks-card h1{max-width:12ch}
.expect-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:34px 0;
}
.expect-grid article{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--r-md);
  padding:20px;
}
.expect-grid span{
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.1em;
  color:var(--blue-2);
}
.expect-grid h2,
.prep-box h2{
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.01em;
  margin:16px 0 8px;
}
.expect-grid p{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  margin:0;
}
.prep-box{
  border:1px solid var(--blue-soft);
  background:var(--blue-tint);
  border-radius:var(--r-md);
  padding:20px;
}
.prep-box h2{margin-top:0}
.prep-box ul{
  margin:0;
  padding-left:20px;
  color:var(--muted);
}
.prep-box li{padding:4px 0}
.thanks-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
@media(max-width:980px){
  .booking-hero{grid-template-columns:1fr;width:min(100% - 36px, 760px)}
  .booking-hero__copy{position:static}
  .booking-hero__copy .nav__brand{margin-bottom:42px}
  .expect-grid{grid-template-columns:1fr}
}
@media(max-width:620px){
  .booking-hero{width:min(100% - 24px, 760px);padding-top:22px}
  .booking-hero__embed{min-height:700px}
  .calendly-inline-widget{height:700px !important}
  .thanks-card{padding:28px 22px}
}

/* ============================================================
   Blog
   ============================================================ */
.blog-index,
.blog-post{
  width:min(920px, calc(100% - 48px));
  margin:0 auto;
  padding:42px 0 80px;
}
.blog-header{
  padding:0 0 42px;
}
.blog-header .nav__brand,
.blog-post__header .nav__brand{
  margin-bottom:70px;
}
.blog-header h1,
.blog-post__header h1{
  font-size:clamp(44px, 6vw, 82px);
  line-height:1;
  letter-spacing:-.045em;
  margin:12px 0 18px;
}
.blog-header p,
.blog-post__header p{
  color:var(--muted);
  font-size:19px;
  line-height:1.6;
  max-width:720px;
}
.post-list{
  display:grid;
  gap:16px;
}
.post-card{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:28px;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.post-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
  border-color:var(--blue-soft);
}
.post-card__meta,
.blog-post__meta{
  font-family:var(--mono);
  font-size:11.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted-2);
}
.post-card h2{
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.025em;
  margin:12px 0 10px;
}
.post-card p{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:760px;
}
.blog-post__source{
  background:var(--blue-tint);
  border:1px solid var(--blue-soft);
  border-radius:var(--r-md);
  padding:16px 18px;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.55;
  margin:0 0 36px;
}
.blog-post__source a{
  color:var(--blue-2);
  font-weight:600;
}
.blog-post__body{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:clamp(26px, 5vw, 56px);
  box-shadow:var(--shadow-sm);
}
.blog-post__body p,
.blog-post__body li{
  font-size:18px;
  line-height:1.75;
  color:var(--ink-2);
}
.blog-post__body p{
  margin:0 0 20px;
}
.blog-post__body h2{
  font-size:34px;
  line-height:1.12;
  letter-spacing:-.03em;
  margin:42px 0 18px;
}
.blog-post__body ul,
.blog-post__body ol{
  margin:0 0 24px;
  padding-left:24px;
}
.blog-post__body li{
  padding:3px 0;
}
.blog-post__hero{
  width:100%;
  height:auto;
  border-radius:var(--r-xl);
  margin-bottom:24px;
  display:block;
  box-shadow:var(--shadow-sm);
}
.blog-post__inline-image{
  width:100%;
  height:auto;
  border-radius:var(--r-md);
  margin:36px 0;
  display:block;
}
.blog-post__body hr{
  border:none;
  border-top:1px solid var(--line);
  margin:36px 0;
}
.blog-post__cta{
  margin-top:24px;
  background:linear-gradient(135deg, #0B0B0F 0%, #15151D 100%);
  color:#fff;
  border-radius:var(--r-xl);
  padding:34px;
  overflow:hidden;
}
.blog-post__cta h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.025em;
}
.blog-post__cta p{
  color:rgba(255,255,255,.72);
  font-size:16px;
  line-height:1.6;
  max-width:680px;
}
.blog-post__cta-verticals{
  margin-top:18px !important;
  font-size:14px !important;
  color:rgba(255,255,255,.55) !important;
}
.blog-post__cta-verticals a{
  color:rgba(255,255,255,.85);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1px;
  margin:0 4px;
}
.blog-post__cta-verticals a:hover{
  color:#fff;
}
@media(max-width:620px){
  .blog-index,
  .blog-post{width:min(100% - 28px, 920px);padding-top:28px}
  .blog-header .nav__brand,
  .blog-post__header .nav__brand{margin-bottom:46px}
  .post-card{padding:22px}
  .post-card h2{font-size:25px}
}
