/* Pulse on Growth */
:root {
  --black: #0A0A0A;
  --ink: #111111;
  --grey: #5B5F66;
  --grey-2: #8A8F98;
  --line: #E6E7E9;
  --tint: #F6F7F8;
  --white: #FFFFFF;
  --blue: #1A56FF;
  --blue-dk: #0F43D9;
  --blue-soft: #EAF0FF;
  --font: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --wrap: 1280px;
  --r: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.5; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
h1, h2, h3 { margin: 0; font-weight: 400; color: var(--black); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.25rem); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 500; line-height: 1.3; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, dl, dd, dt, blockquote { margin: 0; padding: 0; }
ul { list-style: none; }
.muted { color: var(--grey); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: inherit; font-weight: 500; font-size: 15px; padding: 11px 18px; border-radius: var(--r); border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: background .15s, border-color .15s, color .15s; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dk); }
.btn-black { background: var(--black); color: #fff; }
.btn-black:hover { background: #2a2a2a; }
.btn-light { background: var(--white); color: var(--black); border-color: var(--line); }
.btn-light:hover { border-color: var(--black); }
.btn-block { width: 100%; }
.inline-link { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--blue-dk); }
.inline-link.big { display: inline-block; margin-top: 24px; font-size: 1.1rem; }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 40px; height: 64px; }
.wordmark { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.02em; color: var(--black); }
.wordmark.light { color: #fff; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 15px; color: var(--ink); }
.nav-links a:hover { color: var(--blue); }
.nav-actions { margin-left: auto; display: flex; gap: 10px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 10px; cursor: pointer; flex-direction: column; gap: 6px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--black); transition: transform .2s; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 32px 20px; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu a { padding: 12px 0; font-size: 16px; }
.mobile-menu .btn { margin-top: 10px; }
.nav.open .mobile-menu { display: flex; }
.nav.open .nav-toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav.open .nav-toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* hero */
.hero { padding: 96px 0 80px; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(var(--line) 1px, transparent 1px); background-size: 22px 22px; opacity: .55; mask-image: linear-gradient(#000 60%, transparent); -webkit-mask-image: linear-gradient(#000 60%, transparent); }
.label { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); margin-bottom: 28px; }
.chip { font-size: 12px; letter-spacing: 0; text-transform: none; background: var(--tint); border: 1px solid var(--line); border-radius: 4px; padding: 2px 8px; color: var(--ink); }
.hero h1 { max-width: none; }
.hero-sub { font-size: 1.2rem; color: var(--grey); max-width: 640px; margin: 24px 0 36px; }
.capture { display: flex; max-width: 520px; padding: 6px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.capture input { flex: 1; min-width: 0; border: 0; outline: 0; font: inherit; font-size: 16px; padding: 10px 14px; background: transparent; color: var(--ink); }
.capture input::placeholder { color: var(--grey-2); }
.capture input.error { box-shadow: inset 0 -2px 0 #D64545; }
.fine { font-size: 13px; color: var(--grey); margin-top: 14px; }
.fine.center { text-align: center; margin-top: 28px; }

/* pipeline panel */
.panel { margin-top: 72px; border: 1px solid var(--line); border-radius: 10px; background: #fff; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.panel-bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--tint); font-size: 13px; }
.panel-title { font-weight: 500; }
.panel-meta { color: var(--grey); }
.pipe { width: 100%; border-collapse: collapse; font-size: 14px; }
.pipe th, .pipe td { text-align: left; padding: 14px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.pipe th { font-weight: 500; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--grey); }
.pipe td:first-child { font-weight: 500; white-space: nowrap; }
.pipe td:nth-child(2) { color: var(--grey); white-space: nowrap; }
.pipe td:nth-child(3) { color: var(--ink); }
.pipe .r { text-align: right; white-space: nowrap; }
.pipe tbody tr:last-child td { border-bottom: 0; }
.status { display: inline-block; font-size: 12px; font-weight: 500; padding: 3px 9px; border-radius: 4px; border: 1px solid; }
.status.hot { color: var(--blue); border-color: rgba(26,86,255,.3); background: var(--blue-soft); }
.status.warm { color: var(--ink); border-color: var(--line); background: var(--tint); }
.status.cool { color: var(--grey); border-color: var(--line); background: #fff; }
.panel-foot { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); background: var(--tint); }
.panel-foot div { padding: 18px 20px; display: flex; flex-direction: column; gap: 2px; border-right: 1px solid var(--line); }
.panel-foot div:last-child { border-right: 0; }
.panel-foot strong { font-size: 1.5rem; font-weight: 500; letter-spacing: -0.02em; }
.panel-foot span { font-size: 13px; color: var(--grey); }

/* statement / steps */
.statement { padding: 96px 0; border-top: 1px solid var(--line); }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.statement-steps { display: grid; gap: 0; }
.s { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line); }
.s:last-child { border-bottom: 1px solid var(--line); }
.s .n { font-size: 14px; color: var(--grey); padding-top: 3px; }
.s h3 { margin-bottom: 6px; }
.s p { color: var(--grey); font-size: 15px; }

/* sections */
.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section-tint { background: var(--tint); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-sub { color: var(--grey); font-size: 1.1rem; margin-top: 16px; max-width: 600px; }

/* cards */
.cards { display: grid; gap: 16px; }
.cards + .cards { margin-top: 16px; }
.cards-2 { grid-template-columns: 1fr 1fr; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 32px; display: flex; flex-direction: column; }
.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card p { color: var(--grey); font-size: 15px; }
.card .list { margin-top: 20px; }
.card .btn { margin-top: auto; }
.card-feature { border-color: var(--blue); }
.pricing .card .list { flex: 1; margin-bottom: 28px; }
.list li { position: relative; padding-left: 22px; font-size: 15px; color: var(--ink); margin-bottom: 8px; }
.list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 10px; height: 5px; border-left: 1.5px solid var(--blue); border-bottom: 1.5px solid var(--blue); transform: rotate(-45deg); }


/* bento tiles (product illustrations) */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.tile { grid-column: span 2; position: relative; background: #FAFAF8; border: 1px solid var(--line); border-radius: 12px; padding: 32px 32px 0; min-height: 440px; overflow: hidden; display: flex; flex-direction: column; }
.tile-wide { grid-column: span 3; min-height: 480px; }
.tile h3 { font-size: 1.45rem; font-weight: 400; color: var(--grey); letter-spacing: -0.02em; line-height: 1.2; max-width: 22ch; margin-bottom: 28px; padding-right: 56px; }
.tile h3 strong { font-weight: 500; color: var(--black); }
.tile-link { position: absolute; top: 24px; right: 24px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 8px; background: #fff; display: grid; place-items: center; font-size: 14px; color: var(--black); transition: border-color .15s, background .15s; }
.tile-link:hover { border-color: var(--black); }
.ill { position: relative; flex: 1; margin-top: auto; display: flex; flex-direction: column; justify-content: flex-end; }
.mock { background: #fff; border: 1px solid var(--line); border-radius: 10px 10px 0 0; border-bottom: 0; box-shadow: 0 -1px 0 rgba(0,0,0,.02), 0 12px 30px -18px rgba(0,0,0,.25); font-size: 13px; overflow: hidden; }
.mock-head { display: flex; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); font-weight: 500; }
.mock-head .muted { font-weight: 400; }

/* targeting table */
.ill-target .mock { margin-right: -32px; }
.ill-line .mock { width: 100%; }
.mock-filters { display: flex; gap: 6px; flex-wrap: wrap; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--tint); }
.mock-filters .chip { background: #fff; }
.mock-filters .chip.on { border-color: rgba(26,86,255,.35); color: var(--blue); background: var(--blue-soft); }
.mrow { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 36px; gap: 14px; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--line); transition: background .3s; }
.mrow .mc { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mrow .ms { color: var(--grey); white-space: nowrap; }
.mrow .mm { height: 6px; background: var(--tint); border-radius: 3px; overflow: hidden; }
.mrow .mm i { display: block; height: 100%; width: 0; background: var(--blue); border-radius: 3px; transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
.mrow .mv { text-align: right; font-weight: 500; font-variant-numeric: tabular-nums; }
.in .mrow .mm i { width: var(--m); }
.in .mrow { animation: rowscan 7s ease-in-out infinite; }
.in .mrow:nth-child(2) { animation-delay: 1.1s; } .in .mrow:nth-child(3) { animation-delay: 2.2s; } .in .mrow:nth-child(4) { animation-delay: 3.3s; } .in .mrow:nth-child(5) { animation-delay: 4.4s; } .in .mrow:nth-child(6) { animation-delay: 5.5s; }
@keyframes rowscan { 0%, 10%, 100% { background: #fff; } 4% { background: var(--blue-soft); } }

/* bar chart */
.bars { padding: 10px 18px 18px; display: grid; gap: 9px; }
.brow { display: grid; grid-template-columns: 150px 1fr 40px; gap: 12px; align-items: center; }
.bl { color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btrack { height: 14px; background: var(--tint); border-radius: 4px; overflow: hidden; }
.bar { height: 100%; width: 0; background: var(--blue); border-radius: 0 4px 4px 0; transition: width 1.2s cubic-bezier(.2,.7,.2,1); }
.brow:nth-child(2) .bar { transition-delay: .08s; } .brow:nth-child(3) .bar { transition-delay: .16s; } .brow:nth-child(4) .bar { transition-delay: .24s; } .brow:nth-child(5) .bar { transition-delay: .32s; } .brow:nth-child(6) .bar { transition-delay: .4s; } .brow:nth-child(7) .bar { transition-delay: .48s; } .brow:nth-child(8) .bar { transition-delay: .56s; }
.in .bar { width: var(--w); }
.bv { text-align: right; font-weight: 500; font-variant-numeric: tabular-nums; color: var(--ink); }
.brow:hover .bar { background: var(--blue-dk); }

/* replies */
.ill-replies { min-height: 340px; }
.bubble { position: absolute; left: 0; right: 0; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; font-size: 13px; box-shadow: 0 12px 30px -18px rgba(0,0,0,.3); opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.bubble p { margin-top: 4px; color: var(--ink); }
.bfrom { font-size: 12px; color: var(--grey); }
.b1 { top: 0; } .b2 { top: 92px; left: 24px; right: -12px; } .b3 { top: 184px; left: 48px; right: -32px; }
.in .b1 { opacity: 1; transform: none; transition-delay: .1s; }
.in .b2 { opacity: 1; transform: none; transition-delay: .5s; }
.in .b3 { opacity: 1; transform: none; transition-delay: .9s; }
.toast { position: absolute; left: 0; bottom: 24px; display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: #fff; font-size: 12px; font-weight: 500; padding: 8px 12px; border-radius: 6px; opacity: 0; transform: translateY(10px); transition: opacity .5s, transform .5s; }
.tdot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgba(26,86,255,.6); }
.in .toast { opacity: 1; transform: none; transition-delay: 1.5s; }
.in .tdot { animation: ping 2s 1.6s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(26,86,255,.6); } 70% { box-shadow: 0 0 0 8px rgba(26,86,255,0); } 100% { box-shadow: 0 0 0 0 rgba(26,86,255,0); } }

/* line chart */
.hero-num { padding: 16px 18px 0; display: flex; flex-direction: column; }
.hero-num strong { font-size: 1.9rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.hero-num span { font-size: 12px; color: var(--grey); margin-top: 4px; }
.linechart { width: 100%; height: 170px; display: block; }
.linechart .grid line { stroke: var(--line); stroke-width: 1; }
.linechart .area { fill: rgba(26,86,255,.08); opacity: 0; transition: opacity 1s .8s; }
.linechart .line { fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; vector-effect: non-scaling-stroke; }
.linechart .pt { fill: #fff; stroke: var(--blue); stroke-width: 2; opacity: 0; transition: opacity .3s 1.3s; }
.linechart .ptl { font-size: 12px; fill: var(--ink); font-weight: 500; opacity: 0; transition: opacity .3s 1.4s; }
.linechart .axis text { font-size: 11px; fill: var(--grey); }
.in .linechart .line { animation: draw 1.6s cubic-bezier(.4,0,.2,1) .2s forwards; }
.in .linechart .area, .in .linechart .pt, .in .linechart .ptl { opacity: 1; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* tools */
.tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-bottom: 32px; }
.tools span { display: grid; place-items: center; height: 56px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-weight: 500; opacity: 0; transform: scale(.9); transition: opacity .4s, transform .4s cubic-bezier(.2,.7,.2,1), border-color .15s; }
.tools span:hover { border-color: var(--blue); color: var(--blue); }
.in .tools span { opacity: 1; transform: none; }
.in .tools span:nth-child(n) { transition-delay: calc(var(--i, 0) * 60ms); }

@media (max-width: 1000px) {
  .bento { grid-template-columns: 1fr; }
  .tile, .tile-wide { grid-column: span 1; min-height: 0; }
  .ill-replies { min-height: 280px; }
}
@media (max-width: 720px) {
  .tile { padding: 24px 20px 0; }
  .tile h3 { font-size: 1.25rem; padding-right: 48px; }
  .brow { grid-template-columns: 110px 1fr 36px; }
  .mrow { grid-template-columns: 1.2fr 1fr 32px; }
  .mrow .mm { display: none; }
  .ill-target .mock { margin-right: -20px; }
}
@media (prefers-reduced-motion: reduce) {
  .in .mrow { animation: none; }
  .in .tdot { animation: none; }
  .bar, .mrow .mm i, .bubble, .toast, .tools span, .linechart .area, .linechart .pt, .linechart .ptl { transition: none; }
  .in .linechart .line { animation: none; stroke-dashoffset: 0; }
}

/* industries */
.ind-table { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.ind { padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ind:nth-child(3n) { border-right: 0; }
.ind:nth-last-child(-n+3) { border-bottom: 0; }
.ind h3 { margin-bottom: 8px; }
.ind p { color: var(--grey); font-size: 15px; }
.ind-tag { display: inline-block; font-size: 12px; font-weight: 500; color: var(--blue); background: var(--blue-soft); border-radius: 4px; padding: 2px 8px; margin-bottom: 14px; }

/* lead record */
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lead-grid .list { margin-top: 28px; }
.record { border: 1px solid var(--line); border-radius: 10px; padding: 32px; background: #fff; font-size: 15px; }
.record-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.record-id { font-size: 13px; color: var(--grey); }
.record h3 { font-size: 1.4rem; }
.record-sig { color: var(--grey); margin: 4px 0 20px; }
.record-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.record-meta dt, .record-next dt { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--grey); margin-bottom: 2px; }
.record blockquote { margin: 20px 0; padding-left: 16px; border-left: 2px solid var(--blue); color: var(--ink); }
.record-next dd { font-weight: 500; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form { display: grid; gap: 14px; border: 1px solid var(--line); border-radius: 10px; padding: 32px; background: #fff; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--grey); }
.form input, .form select, .form textarea { font: inherit; font-size: 15px; color: var(--ink); padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; outline: 0; transition: border-color .15s; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); }
.form .error { border-color: #D64545; }
.form textarea { resize: vertical; }
.form .btn { margin-top: 6px; }
.form-success { text-align: center; padding: 24px 0; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--grey); }

/* band */
.band { background: var(--black); color: #fff; padding: 80px 0; }
.band h2 { color: #fff; }
.band-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }

/* footer */
.footer { background: var(--black); color: #fff; padding: 56px 0 28px; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-grid p { color: #9A9EA5; font-size: 14px; margin-top: 8px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col span { color: #9A9EA5; margin-bottom: 4px; }
.footer-col a:hover { text-decoration: underline; }
.footer-base { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid #222; font-size: 13px; color: #9A9EA5; flex-wrap: wrap; gap: 8px; }

/* responsive */
@media (max-width: 1000px) {
  .statement-grid, .lead-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .ind-table { grid-template-columns: 1fr 1fr; }
  .ind:nth-child(3n) { border-right: 1px solid var(--line); }
  .ind:nth-child(2n) { border-right: 0; }
  .ind:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .ind:nth-last-child(-n+2) { border-bottom: 0; }
  .panel-foot { grid-template-columns: 1fr 1fr; }
  .panel-foot div:nth-child(2) { border-right: 0; }
  .panel-foot div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pipe td:nth-child(2) { white-space: normal; }
  .footer-grid { grid-template-columns: 1fr; }
  .section, .statement { padding: 72px 0; }
  .hero { padding: 64px 0 56px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { padding-left: 20px; padding-right: 20px; }
  .ind-table { grid-template-columns: 1fr; }
  .ind { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .ind:last-child { border-bottom: 0 !important; }
  .row { grid-template-columns: 1fr; }
  .capture { flex-direction: column; gap: 6px; }
  .capture .btn { width: 100%; }
  .pipe th:nth-child(2), .pipe td:nth-child(2) { display: none; }
  .pipe th, .pipe td { padding: 12px 14px; }
  .pipe td:first-child { white-space: normal; }
  .hero h1 { max-width: none; }
}
