/* webflow.css — shared Webflow-style system (light, black nav optional) */
:root {
  --bg: #ffffff;
  --bg-2: #f6f6f7;
  --bg-3: #eef0f3;
  --line: rgba(10,13,16,0.12);
  --line-2: rgba(10,13,16,0.18);
  --ink: #080808;
  --ink-2: rgba(10,13,16,0.62);
  --ink-3: rgba(10,13,16,0.42);
  --blue: #1b64f3;
  --blue-hi: #1b64f3;
  --sans: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'Inter', ui-monospace, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(27,100,243,0.18); }
.wrap { max-width: 1340px; margin: 0 auto; padding: 0 40px; }

/* type */
.display { font-weight: 700; letter-spacing: -0.035em; line-height: 0.95; font-size: clamp(46px, 6.6vw, 92px); text-wrap: balance; }
.display em, .h-sec em, .h-mid em { font-style: normal; color: var(--blue); }
.h-sec { font-weight: 700; letter-spacing: -0.035em; line-height: 0.97; font-size: clamp(34px, 4.6vw, 60px); text-wrap: balance; }
.h-mid { font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; font-size: clamp(26px, 3vw, 40px); text-wrap: balance; }
.lede { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: var(--ink-2); text-wrap: pretty; }
.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; display: inline-block; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 10px 20px; border-radius: 4px; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; border: 1px solid transparent; white-space: nowrap; transition: background .15s ease, border-color .15s ease, transform .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1a59d8; }
.btn-soft { background: var(--bg-3); color: var(--ink); border-color: var(--line); }
.btn-soft:hover { background: #e4e7ec; }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--ink); }
.btn-lg { padding: 12px 24px; font-size: 16px; }

/* nav — moved to shared nav.css (single source) */

/* screenshot frame */
.shot-frame { border: 1px solid var(--line-2); border-radius: 4px; overflow: hidden; background: #fff; box-shadow: 0 30px 80px -42px rgba(0,0,0,0.28); }
.shot-frame.accent-top { border-top: 1px solid var(--line-2); }
.shot-frame img { width: 100%; height: auto; display: block; }

/* sections */
.sec { padding: clamp(80px, 10vw, 150px) 0; }
.sec + .sec { padding-top: 0; }
.split { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(48px, 6vw, 88px); align-items: center; }
.split.media-left { grid-template-columns: 1.08fr 1fr; }
.split-copy { display: grid; justify-items: start; }
.split-copy .h-sec { margin: 4px 0 24px; }
.split-copy .lede { max-width: 42ch; }
.mlist { list-style: none; display: grid; gap: 12px; margin-top: 28px; }
.mlist li { display: flex; gap: 14px; align-items: baseline; font-size: 15.5px; color: var(--ink-2); }
.mlist li::before { content: ''; flex: none; width: 6px; height: 6px; border-radius: 1px; background: var(--blue); transform: translateY(-2px); }

/* feature tour spacing */
.tour { display: grid; gap: clamp(80px, 10vw, 140px); }

/* pull band — dark content break (single closing CTA) */
.pull-band { border: 0; padding: clamp(48px, 6vw, 90px) 0; background: transparent; }
.pull-band .wrap { background: #080808; border-radius: 4px; padding: clamp(40px, 5vw, 64px) clamp(34px, 4vw, 56px); }
.pull-grid { display: grid; grid-template-columns: 1.2fr auto; gap: clamp(40px, 5vw, 80px); align-items: center; }
.pull-grid .h-sec { color: #fff; }
.pull-grid p { font-size: 16.5px; line-height: 1.55; color: rgba(255,255,255,0.62); max-width: 52ch; margin-top: 16px; text-wrap: pretty; }
.pull-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; width: min(450px, 100%); }
.pull-actions .btn { justify-content: center; }
.pull-band .btn-line { color: #fff; border-color: rgba(255,255,255,0.28); }
.pull-band .btn-line:hover { border-color: #fff; }

/* dark closing CTA — "service catalog" component (CTA-D rollout) */
.cs { border-radius:4px; overflow:hidden; background:#080808; color:#fff; }
.csC { display:grid; grid-template-columns:0.85fr 1.15fr; align-items:center; gap:32px; padding:clamp(40px,5vw,68px); padding-right:0; }
.csC .copy { display:grid; justify-items:start; gap:18px; padding-right:20px; }
.csC .kicker { margin-bottom:0; }
.csC .cs-h { font-size:clamp(26px,2.8vw,40px); font-weight:700; letter-spacing:-0.03em; line-height:1.05; }
.csC .cs-h em { font-style:normal; color:var(--blue); }
.csC .cs-p { color:rgba(255,255,255,0.62); line-height:1.55; max-width:44ch; font-size:17px; }
.csC .row { display:flex; gap:12px; flex-wrap:wrap; margin-top:6px; }
.csC .shot { border:1px solid rgba(255,255,255,0.12); border-radius:4px 0 0 4px; border-right:0; overflow:hidden; height:clamp(320px,34vw,460px); }
.csC .shot img { width:100%; height:100%; object-fit:cover; object-position:top left; display:block; }
.btn-d { background:var(--blue); color:#fff; }
.btn-d:hover { background:#1a59d8; }
.btn-od { background:transparent; color:#fff; border-color:rgba(255,255,255,0.28); }
.btn-od:hover { border-color:#fff; }
@media(max-width:860px){ .csC { grid-template-columns:1fr; padding-right:clamp(40px,5vw,68px); } .csC .shot { border-radius:4px; border-right:1px solid rgba(255,255,255,0.12); } }

/* related */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.related-card { border: 1px solid var(--line); border-radius: 4px; background: #fff; padding: 36px 34px; display: grid; gap: 12px; align-content: start; transition: border-color .15s ease; }
.related-card:hover { border-color: var(--ink); }
.related-card .go { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.related-card h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.related-card h3 em { font-style: normal; color: var(--blue); }
.related-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
/* related — side-image variant */
.related-grid:has(.rc-side) { gap: 24px; }
.related-card.rc-side { grid-template-columns: 1fr 1.04fr; gap: 0; padding: 0; overflow: hidden; align-content: stretch; min-height: 300px; }
.rc-side .rc-body { padding: 44px 40px; display: grid; gap: 14px; align-content: center; }
.rc-side .rc-body .go { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }
.rc-side .rc-body h3 { font-size: clamp(26px, 2.3vw, 34px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; }
.rc-side .rc-body h3 em { font-style: normal; color: var(--blue); }
.rc-side .rc-body p { font-size: 15.5px; color: var(--ink-2); line-height: 1.5; max-width: 30ch; }
.rc-side .rc-img { position: relative; overflow: hidden; background: var(--bg-2); border-left: 1px solid var(--line); }
.rc-side .rc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
@media (max-width: 1024px) {
  .related-card.rc-side { grid-template-columns: 1fr; min-height: 0; }
  .rc-side .rc-img { min-height: 220px; border-left: 0; border-top: 1px solid var(--line); }
}

/* faq */
.sec-head { display: grid; justify-items: start; max-width: 760px; margin-bottom: 52px; gap: 16px; }
.sec-head .kicker { margin-bottom: 0; }
.sec-head .h-sec { margin-top: 0; }
/* FAQ — two-column "Frequently asked questions" (matches homepage) */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq { display: block; }
.faq details { background: none; border-radius: 0; border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; cursor: pointer; }
.faq details:first-child summary { padding-top: 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-size: clamp(18px, 1.7vw, 22px); font-weight: 700; letter-spacing: -0.015em; }
.faq .pm { flex: none; position: relative; width: 18px; height: 18px; border: 0; transform: none; margin: 0; }
.faq .pm::before, .faq .pm::after { content: ''; position: absolute; background: var(--blue); border-radius: 2px; }
.faq .pm::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq .pm::after { top: 0; bottom: 0; left: 8px; width: 2px; transition: opacity .2s ease; }
.faq details[open] .pm::after { opacity: 0; }
.faq .answer { padding: 0 60px 30px 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); max-width: 70ch; text-wrap: pretty; }
@media (max-width: 1024px) { .faq-grid { grid-template-columns: 1fr; gap: 28px; } }

/* big cta */
.bigcta { border-top: 0; padding: clamp(64px, 8vw, 110px) 0; }
.bigcta .wrap { background: #080808; color: #fff; border-radius: 4px; padding: 40px 44px; }
.bigcta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px 48px; flex-wrap: wrap; }
.bigcta-inner .ct-head { display: grid; gap: 16px; }
.bigcta-inner .display { font-size: clamp(28px, 3.2vw, 46px); color: #fff; line-height: 1.04; margin: 0; }
.bigcta-inner .ct-head p { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.6); margin: 0; max-width: 40ch; }
.bigcta .row { display: flex; gap: 12px; flex-wrap: wrap; flex: none; }
.bigcta .btn-line { color: #fff; border-color: rgba(255,255,255,0.28); }
.bigcta .btn-line:hover { border-color: #fff; }

/* benefit grid */
.bgrid-sec { padding: clamp(56px,7vw,96px) 0 clamp(100px,11vw,150px); border: 0; background: linear-gradient(180deg, var(--bg) 0%, #f9f9fa 50%, var(--bg) 100%); }
.bgrid-head { text-align: center; max-width: 19ch; margin: 0 auto clamp(40px,5vw,60px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.03; font-size: clamp(30px,4.2vw,54px); text-wrap: balance; }
.bgrid-head .muted { color: var(--blue); }
.bgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.bcard { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 26px 28px 28px; display: grid; gap: 8px; align-content: start; }
.bcard .bic { width: 24px; height: 24px; color: var(--ink); margin-bottom: 22px; }
.bcard .bic svg { width: 100%; height: 100%; display: block; }
.bcard h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -0.02em; }
.bcard p { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); text-wrap: pretty; max-width: 34ch; }
@media (max-width: 900px) { .bgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bgrid { grid-template-columns: 1fr; } }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 72px 0 44px; background: #080808; color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 240px; line-height: 1.6; }
.app-soon { margin-top: 28px; }
.app-soon .app-soon-label { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 12px; }
.app-soon-row { display: flex; flex-wrap: wrap; gap: 10px; }
.app-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px; border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; background: rgba(255,255,255,0.03); }
.app-pill svg { width: 18px; height: 18px; flex: none; fill: rgba(255,255,255,0.82); }
.app-pill .app-pill-txt { display: grid; line-height: 1.15; }
.app-pill .app-pill-txt small { font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.app-pill .app-pill-txt b { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: -0.01em; }
.sema-badge { display: block; margin-top: 28px; }
.sema-badge img { width: 120px; height: auto; display: block; transition: opacity .15s ease; }
.sema-badge:hover img { opacity: 0.8; }
.footer h6 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,0.72); }
.footer ul a:hover { color: #fff; }
.ft-feat { display: flex; flex-direction: column; gap: 10px; }
.ft-feat a { display: block; font-size: 14.5px; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.6; }
.ft-feat a:hover { color: #fff; }
.ft-feat a.ft-pg { margin-top: 0; font-size: 14.5px; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.6; }
.ft-feat a.ft-pg:first-child { margin-top: 0; }
.footer-grid { border-bottom-color: rgba(255,255,255,0.12); }
.footer-base { color: rgba(255,255,255,0.45); border-top-color: rgba(255,255,255,0.12); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4,1fr); gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand img { height: 36px; margin-top: 8px; margin-bottom: 18px; display: block; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer-base { padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.55); transition: color .15s ease; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 1024px) {
  .split, .split.media-left, .pull-grid, .bigcta-inner, .related-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.media-left .split-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wrap, .nav-in { padding: 0 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ---- Bonsai-style feature blocks ---- */
.feat-head { max-width: 900px; margin: 0 auto clamp(44px,5vw,72px); text-align: center; }
.feat-head .kicker { display: block; }
.feat-head .h-sec { font-size: clamp(32px,4.2vw,56px); }
.feat-head .h-sec .muted { color: var(--ink-3); }
.feat-stack { display: grid; gap: 16px; }

.feat-row { display: grid; grid-template-columns: 1fr 1.12fr; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: #fff; min-height: 540px; }
.feat-row.media-left { grid-template-columns: 1.12fr 1fr; }
.feat-row .fr-body { padding: clamp(34px,3.6vw,58px); display: grid; gap: 16px; align-content: center; justify-items: start; }
.feat-row .fr-body .h-mid { margin-bottom: 2px; }
.feat-row .fr-body .lede { max-width: 40ch; font-size: 16.5px; }
.feat-row .fr-media { background: linear-gradient(180deg, #3c424b 0%, #222630 55%, #181a1f 100%); border-left: 1px solid var(--line); overflow: hidden; padding: 56px 0 0 64px; display: flex; flex-direction: column; justify-content: flex-end; }
.feat-row .fr-media.light { background: linear-gradient(180deg, #3c424b 0%, #222630 55%, #181a1f 100%); }
.feat-row.media-left .fr-media { border-left: 0; border-right: 1px solid var(--line); padding: 56px 64px 0 0; }
.feat-row .fr-media img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; object-position: top left; border-radius: 8px 0 0 0; border: 1px solid rgba(255,255,255,0.14); border-right: 0; border-bottom: 0; box-shadow: -22px 22px 70px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03); display: block; }
.feat-row.media-left .fr-media img { border-radius: 0 8px 0 0; border: 1px solid rgba(255,255,255,0.14); border-left: 0; border-bottom: 0; object-position: top right; }
.feat-row .fr-media.align-bl img { object-position: bottom left; border-radius: 8px 8px 0 0; }

.feat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feat-card { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.feat-card .tray { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 32px 32px 0; overflow: hidden; }
.feat-card .tray img { width: 100%; border-radius: 4px 4px 0 0; border: 1px solid var(--line-2); border-bottom: 0; display: block; }
.feat-card .fc-body { padding: 28px 32px 32px; display: grid; gap: 12px; }
.feat-card .fc-body h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.feat-card .fc-body h3 em { font-style: normal; color: var(--blue); }
.feat-card .fc-body p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

@media (max-width: 900px) {
  .feat-row, .feat-row.media-left { grid-template-columns: 1fr; min-height: 0; height: auto; }
  .feat-row .fr-media, .feat-row.media-left .fr-media { border-left: 0; border-right: 0; border-top: 1px solid var(--line); padding: 30px 0 0 30px; }
  .feat-row .fr-media img, .feat-row.media-left .fr-media img { height: auto; min-height: 0; object-fit: contain; object-position: bottom right; border-radius: 8px 0 0 0; }
  .feat-row .fr-media.align-bl img { height: 100%; max-height: 420px; object-fit: cover; object-position: bottom left; }
  .feat-row.media-left .fr-media { order: 2; }
  .feat-cards { grid-template-columns: 1fr; }
}

/* ---- feature page hero + placeholder trays ---- */
.f-hero { padding: clamp(56px,7vw,100px) 0 clamp(60px,7vw,104px); }
.f-hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(48px,6vw,76px); justify-items: center; }
.f-hero-copy { display: grid; justify-items: center; text-align: center; max-width: 860px; }
.f-hero-copy .display { margin: 18px 0 22px; font-size: clamp(40px,5.2vw,74px); line-height: 1.04; }
.f-hero-copy .lede { max-width: 56ch; margin-bottom: 30px; }
.f-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.f-hero-grid > div:last-child { width: 100%; max-width: 1100px; }
.phx-tray { width: 100%; height: 100%; min-height: 300px; display: grid; place-items: center; background: repeating-linear-gradient(135deg, rgba(10,13,16,0.03) 0 14px, transparent 14px 28px), var(--bg-2); }
.phx-tray span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--line-2); border-radius: 4px; background: #fff; padding: 8px 14px; }
@media (max-width: 1024px){ .f-hero-grid { grid-template-columns: 1fr; gap: 44px; } }