:root {
  --ink: #0d1837;
  --ink-soft: #25365f;
  --muted: #64728f;
  --blue: #2142c7;
  --blue-deep: #1832a9;
  --cyan: #08bbe4;
  --cyan-soft: #dff8ff;
  --sky: #eff8ff;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --line: #dfe8f5;
  --line-strong: #cbd9ed;
  --shadow: 0 28px 80px rgba(34, 67, 147, 0.14);
  --shadow-soft: 0 14px 40px rgba(34, 67, 147, 0.09);
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}
.section-pad { padding: 112px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 78px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(216, 227, 243, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(15, 32, 72, .07);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 205px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.site-nav a {
  color: #405070;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { width: 23px; height: 2px; display: block; background: var(--ink); margin: 5px 0; border-radius: 2px; }

.button {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--blue);
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), #2b5add);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(32, 66, 199, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(32, 66, 199, .28); }
.button:focus-visible { outline: 3px solid rgba(8,187,228,.3); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 11px; font-size: 14px; }
.button-secondary {
  color: var(--ink-soft);
  background: rgba(255,255,255,.82);
  border-color: var(--line-strong);
  box-shadow: none;
}
.button-secondary:hover { background: #fff; box-shadow: var(--shadow-soft); }
.text-link { color: var(--blue); font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(8,187,228,.12); }
.eyebrow-light { color: #8eeaff; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 104px;
  background:
    radial-gradient(circle at 15% 15%, rgba(221, 247, 255, .8), transparent 35%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
}
.hero:after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; right: -180px; top: 40px; background: rgba(15, 191, 230, .13); }
.hero-orb-two { width: 300px; height: 300px; left: 34%; bottom: -210px; background: rgba(40, 69, 202, .10); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 72px; align-items: center; }
.hero-copy h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--ink);
}
.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--blue) 12%, var(--cyan) 90%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lede { max-width: 660px; margin: 26px 0 0; color: #52617f; font-size: 19px; line-height: 1.65; letter-spacing: -.012em; }
.hero-actions { display: flex; gap: 13px; align-items: center; margin-top: 33px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 27px; color: #66738d; font-size: 12px; font-weight: 700; }
.hero-proof div { display: inline-flex; align-items: center; gap: 6px; }
.mini-check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: #e3f8ff; color: #078fb0; border-radius: 50%; font-size: 11px; }

.hero-visual { position: relative; min-width: 0; }
.visual-glow { position: absolute; inset: 12% -5% -8% 15%; background: radial-gradient(circle, rgba(7,185,228,.24), rgba(34,66,199,.05) 54%, transparent 72%); filter: blur(25px); }
.app-window {
  position: relative;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(195, 212, 238, .88);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 38px 90px rgba(34, 64, 139, .19), inset 0 1px 0 #fff;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.app-window:before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.65), transparent 34%); }
.app-topbar { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 2px 15px; border-bottom: 1px solid #edf1f8; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #c9d4e7; }
.window-dots span:nth-child(2) { background: #b4c3dd; }
.window-dots span:nth-child(3) { background: #9eb1d1; }
.app-title { font-size: 11px; font-weight: 800; color: #6d7891; text-align: center; }
.live-pill { justify-self: end; display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 999px; background: #e9faff; color: #087f9d; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.live-pill span { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(8,187,228,.13); }
.profile-row { position: relative; display: grid; grid-template-columns: 43px 1fr auto; gap: 11px; align-items: center; padding: 18px 2px 14px; }
.profile-avatar { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-weight: 900; font-size: 13px; box-shadow: 0 8px 18px rgba(33,66,199,.2); }
.profile-name { font-size: 13px; font-weight: 900; color: var(--ink); }
.profile-meta { font-size: 9.5px; color: #8792a8; margin-top: 2px; }
.qualified-badge { padding: 6px 9px; border-radius: 999px; background: #edf9ff; color: #067f9d; border: 1px solid #c9f1fb; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.score-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric-card { min-height: 123px; padding: 14px; position: relative; overflow: hidden; border: 1px solid #e5ecf7; border-radius: 16px; background: #fbfdff; }
.metric-featured { background: linear-gradient(145deg, #f3f7ff, #fbfdff); border-color: #dce7fb; }
.metric-label { color: #73809a; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.metric-value { margin-top: 8px; color: var(--ink); font-size: 30px; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.metric-word { font-size: 17px; margin-top: 13px; }
.metric-foot { margin-top: 8px; color: #8993a8; font-size: 8.5px; font-weight: 700; }
.metric-foot.positive { color: #0c8ea9; }
.metric-icon { position: absolute; top: 11px; right: 11px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 9px; background: #e9f6ff; color: var(--blue); font-size: 11px; font-weight: 900; }
.eligibility-icon { background: linear-gradient(135deg, #e5f8ff, #e9eeff); color: #0a91b0; }
.score-track { height: 4px; margin-top: 10px; background: #e4ebf7; border-radius: 99px; overflow: hidden; }
.score-track span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.automation-card { margin-top: 10px; padding: 13px 14px 8px; border: 1px solid #e5ecf7; border-radius: 16px; background: #fff; }
.automation-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 8px; color: #66738c; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.automation-count { min-width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: #edf4ff; color: var(--blue); }
.automation-list > div { display: grid; grid-template-columns: 24px 1fr auto; gap: 7px; align-items: center; padding: 7px 0; border-top: 1px solid #f0f3f8; color: #6e7991; font-size: 9px; }
.automation-list strong { color: #35435f; }
.route-icon { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; color: #fff; font-weight: 900; }
.tag-icon { background: #2548cb; }
.person-icon { background: #4886e8; }
.crm-icon { background: #0ab8df; }
.done { color: #0da6c7; font-weight: 900; }
.floating-chip { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px; padding: 10px 12px; background: rgba(255,255,255,.96); border: 1px solid #dfe8f5; border-radius: 12px; color: #50607e; box-shadow: 0 16px 34px rgba(31,63,139,.13); font-size: 10px; font-weight: 800; animation: float 5s ease-in-out infinite; }
.floating-chip span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 7px; background: #e8f8ff; color: #098cab; }
.chip-one { left: -34px; bottom: 80px; }
.chip-two { right: -28px; top: 86px; animation-delay: -2.3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.logo-strip { padding: 25px 0 28px; background: #fff; border-bottom: 1px solid #eef2f8; }
.logo-strip p { margin: 0 0 18px; text-align: center; color: #8892a6; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.industry-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; color: #53617c; font-weight: 800; font-size: 13px; }
.industry-row span { position: relative; }
.industry-row span:not(:last-child):after { content: ""; position: absolute; right: -16px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #c6d2e4; }

.outcome-band { padding: 40px 0; background: var(--ink); color: #fff; }
.outcome-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.outcome-item { display: flex; align-items: center; gap: 15px; padding: 2px 34px; border-right: 1px solid rgba(255,255,255,.12); }
.outcome-item:first-child { padding-left: 0; }
.outcome-item:last-child { padding-right: 0; border-right: 0; }
.outcome-icon { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(28,196,232,.12); color: #62dbf5; font-size: 10px; font-weight: 900; }
.outcome-item strong { display: block; font-size: 14px; }
.outcome-item span { display: block; margin-top: 2px; color: #aeb9ce; font-size: 11px; }

.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .workflow-copy h2, .integration-copy h2, .trust-card h2, .faq-intro h2, .contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(37px, 4vw, 52px);
  line-height: 1.09;
  letter-spacing: -.045em;
}
.section-heading p, .workflow-copy > p, .integration-copy > p, .faq-intro > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.data-card { min-height: 235px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 6px 22px rgba(28, 58, 126, .035); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.data-card:hover { transform: translateY(-5px); border-color: #c8d9f1; box-shadow: var(--shadow-soft); }
.data-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg, #eef4ff, #e5faff); color: var(--blue); }
.data-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.data-card h3 { margin: 24px 0 8px; font-size: 19px; letter-spacing: -.025em; }
.data-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.workflow-section { position: relative; background: linear-gradient(180deg, #f7faff, #f1f7ff); overflow: hidden; }
.workflow-section:before { content: ""; position: absolute; width: 500px; height: 500px; right: -250px; top: 80px; border-radius: 50%; background: rgba(10,186,229,.09); filter: blur(4px); }
.workflow-grid { position: relative; display: grid; grid-template-columns: 1fr .92fr; gap: 90px; align-items: center; }
.step-list { list-style: none; padding: 0; margin: 36px 0 0; }
.step-list li { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding-bottom: 25px; }
.step-list li:not(:last-child):before { content: ""; position: absolute; left: 20px; top: 42px; bottom: 3px; width: 1px; background: #ccdaed; }
.step-list li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #fff; border: 1px solid #cfddf0; color: var(--blue); font-size: 13px; font-weight: 900; box-shadow: 0 7px 17px rgba(34,67,147,.07); }
.step-list strong { font-size: 16px; letter-spacing: -.015em; }
.step-list p { margin: 3px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.code-panel { overflow: hidden; border: 1px solid #2d3c60; border-radius: 24px; background: #101b39; box-shadow: 0 32px 70px rgba(18, 35, 79, .25); }
.code-topbar { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; color: #afbad0; background: #152346; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 11px; font-weight: 800; }
.code-topbar > div { display: flex; gap: 5px; }
.code-topbar i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #405074; }
.code-panel pre { margin: 0; padding: 28px 30px 20px; overflow-x: auto; color: #d8e3fb; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; line-height: 1.85; }
.code-key { color: #86dff2; }
.code-string { color: #a9c5ff; }
.code-number { color: #f1c579; }
.code-bool { color: #ca9eff; }
.code-muted { color: #7180a4; }
.code-note { display: flex; align-items: center; gap: 8px; margin: 0 20px 20px; padding: 12px 14px; border-radius: 12px; background: rgba(18,201,232,.08); color: #b9c6df; font-size: 11px; font-weight: 700; }
.code-note span { color: #46d7ef; }

.action-section { background: #fff; }
.action-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.action-card { position: relative; min-height: 240px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #fff, #fbfdff); }
.action-card:after { content: ""; position: absolute; right: -55px; bottom: -70px; width: 145px; height: 145px; border-radius: 50%; background: radial-gradient(circle, rgba(8,187,228,.11), transparent 69%); }
.action-number { color: #8ba1c9; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.action-card h3 { margin: 50px 0 10px; max-width: 300px; font-size: 20px; line-height: 1.27; letter-spacing: -.025em; }
.action-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.7; }

.integrations-section { overflow: hidden; background: var(--surface-soft); border-top: 1px solid #edf2f8; border-bottom: 1px solid #edf2f8; }
.integrations-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.integration-copy .text-link { margin-top: 25px; }
.integration-cloud { position: relative; min-height: 450px; }
.integration-cloud:before { content: ""; position: absolute; inset: 10% 14%; border: 1px dashed #cbd8ec; border-radius: 50%; }
.integration-cloud:after { content: ""; position: absolute; inset: 22% 27%; border: 1px dashed #d7e2f1; border-radius: 50%; }
.integration-core { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 170px; height: 170px; display: grid; place-items: center; align-content: center; border-radius: 50%; background: #fff; border: 1px solid #dbe6f4; box-shadow: var(--shadow); }
.integration-core img { width: 60px; height: 60px; object-fit: contain; }
.integration-core span { margin-top: 8px; font-size: 13px; font-weight: 900; }
.tool-pill { position: absolute; z-index: 3; padding: 10px 15px; border: 1px solid #dbe5f3; border-radius: 999px; background: #fff; color: #53617d; box-shadow: 0 10px 25px rgba(34,67,147,.08); font-size: 11px; font-weight: 800; }
.tool-one { left: 5%; top: 24%; }
.tool-two { left: 22%; top: 5%; }
.tool-three { right: 22%; top: 7%; }
.tool-four { right: 2%; top: 28%; }
.tool-five { right: 8%; bottom: 18%; }
.tool-six { right: 34%; bottom: 2%; }
.tool-seven { left: 20%; bottom: 5%; }
.tool-eight { left: 2%; bottom: 24%; }

.verticals-section { background: #fff; }
.vertical-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.vertical-card { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: start; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.vertical-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg,#edf4ff,#e7fbff); color: var(--blue); font-size: 19px; font-weight: 900; }
.vertical-card strong { display: block; margin-top: 2px; font-size: 16px; }
.vertical-card p { margin: 6px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.6; }

.trust-section { overflow: hidden; color: #fff; background: linear-gradient(135deg, #0e1a39 0%, #14295c 60%, #123a73 100%); }
.trust-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.trust-kicker { color: #6fdcf2; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 17px; }
.trust-card h2 { color: #fff; }
.trust-card > p { max-width: 680px; margin: 20px 0 0; color: #b7c4dc; font-size: 16px; line-height: 1.75; }
.trust-points { display: grid; gap: 14px; margin-top: 32px; }
.trust-points > div { display: grid; grid-template-columns: 29px 1fr; column-gap: 11px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.05); }
.trust-points > div > span { grid-row: 1 / span 2; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; background: rgba(33,207,236,.13); color: #61e1f5; font-size: 12px; font-weight: 900; }
.trust-points strong { font-size: 13px; }
.trust-points small { margin-top: 2px; color: #9facc5; font-size: 11px; }
.trust-visual { position: relative; min-height: 420px; display: grid; place-items: center; }
.shield-rings { width: 310px; height: 310px; display: grid; place-items: center; border: 1px solid rgba(90,218,243,.18); border-radius: 50%; box-shadow: 0 0 0 55px rgba(69,162,229,.04), 0 0 0 110px rgba(69,162,229,.025); }
.shield-core { width: 150px; height: 150px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, rgba(41,80,190,.85), rgba(6,186,225,.8)); box-shadow: 0 25px 65px rgba(2,14,48,.45), inset 0 1px rgba(255,255,255,.2); }
.shield-core svg { width: 68px; height: 68px; fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-label { position: absolute; padding: 9px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(14,29,66,.75); color: #d9e4f6; backdrop-filter: blur(8px); font-size: 10px; font-weight: 800; }
.label-one { top: 17%; left: 9%; }
.label-two { top: 30%; right: 4%; }
.label-three { bottom: 16%; left: 16%; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro .button { margin-top: 27px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 2px; color: var(--ink); font-weight: 800; font-size: 16px; letter-spacing: -.015em; }
summary::-webkit-details-marker { display: none; }
summary span { width: 29px; height: 29px; flex: 0 0 29px; display: grid; place-items: center; border-radius: 9px; background: #eef4ff; color: var(--blue); transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details > div { padding: 0 48px 24px 2px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.contact-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #1938b7 0%, #1c51d2 53%, #06abd5 125%); color: #fff; }
.contact-glow { position: absolute; width: 600px; height: 600px; left: -240px; bottom: -330px; border-radius: 50%; background: rgba(42,222,244,.16); filter: blur(2px); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { margin: 20px 0 0; color: #cedafa; font-size: 17px; line-height: 1.75; }
.contact-benefits { display: grid; gap: 11px; margin-top: 27px; color: #e7efff; font-size: 13px; font-weight: 700; }
.contact-benefits div { display: flex; align-items: center; gap: 9px; }
.contact-benefits span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; background: rgba(255,255,255,.13); color: #8eebfb; }
.contact-form { padding: 30px; border-radius: 24px; background: #fff; color: var(--ink); box-shadow: 0 32px 80px rgba(5,24,83,.25); }
.ghl-form-wrap { padding: 0; overflow: hidden; min-height: 1051px; }
.ghl-form-wrap iframe { display: block; width: 100%; min-height: 1051px; border: 0; background: #fff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 14px; color: #3c4b67; font-size: 11px; font-weight: 900; letter-spacing: .03em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #dbe4f1;
  border-radius: 11px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  font-size: 13px;
  font-weight: 600;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input, .contact-form select { height: 47px; }
.contact-form textarea { resize: vertical; min-height: 105px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #7ca8ed; background: #fff; box-shadow: 0 0 0 4px rgba(33,66,199,.08); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a0aabe; font-weight: 500; }
.consent-check { display: grid !important; grid-template-columns: 17px 1fr; gap: 9px; align-items: start; color: #77839a !important; font-weight: 600 !important; line-height: 1.5; }
.consent-check input { width: 17px; height: 17px; margin: 1px 0 0; padding: 0; accent-color: var(--blue); }
.consent-check a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-submit { width: 100%; margin-top: 3px; border: 0; }
.form-submit i { font-style: normal; font-size: 18px; }
.form-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-status { min-height: 22px; margin: 10px 0 0; font-size: 12px; font-weight: 700; text-align: center; }
.form-status.success { color: #0a8a61; }
.form-status.error { color: #c44444; }
.form-note { margin: 4px 0 0; color: #9aa4b7; font-size: 9.5px; text-align: center; }

.site-footer { padding: 62px 0 24px; background: #09132d; color: #fff; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-bottom: 45px; }
.footer-brand img { width: 210px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 360px; margin: 17px 0 0; color: #8f9db7; font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-nav div { display: flex; flex-direction: column; gap: 9px; }
.footer-nav strong { margin-bottom: 5px; color: #e8eefb; font-size: 12px; }
.footer-nav a { color: #8f9db7; font-size: 12px; transition: color .2s ease; }
.footer-nav a:hover { color: #68dcf4; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.08); color: #71809c; font-size: 10px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }

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

@media (max-width: 1020px) {
  .section-pad { padding: 88px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { max-width: 660px; width: 100%; margin: 0 auto; }
  .chip-one { left: -10px; }
  .chip-two { right: -10px; }
  .workflow-grid, .integrations-grid, .trust-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 58px; }
  .code-panel { max-width: 680px; width: 100%; margin: 0 auto; }
  .integration-copy { text-align: center; max-width: 700px; margin: 0 auto; }
  .integration-cloud { max-width: 720px; width: 100%; margin: 0 auto; }
  .trust-visual { min-height: 380px; }
  .faq-intro { position: static; max-width: 720px; }
  .contact-copy { text-align: center; max-width: 700px; margin: 0 auto; }
  .contact-benefits { align-items: center; justify-items: center; }
  .contact-form { max-width: 760px; width: 100%; margin: 0 auto; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .brand img { width: 176px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav.open { opacity: 1; transform: translateY(0); visibility: visible; }
  .site-nav a { padding: 13px 12px; border-radius: 10px; }
  .site-nav a:hover { background: var(--surface-soft); }
  .outcome-grid { grid-template-columns: 1fr; gap: 20px; }
  .outcome-item { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .outcome-item:last-child { padding-bottom: 0; border-bottom: 0; }
  .data-grid, .action-grid, .vertical-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 72px 0; }
  .hero { padding-top: 66px; padding-bottom: 80px; }
  .hero-copy h1 { font-size: 43px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 9px; justify-content: start; text-align: left; max-width: 290px; margin-left: auto; margin-right: auto; }
  .app-window { padding: 13px; border-radius: 20px; transform: none; }
  .profile-row { grid-template-columns: 39px 1fr; }
  .profile-avatar { width: 39px; height: 39px; }
  .qualified-badge { grid-column: 2; justify-self: start; margin-top: -4px; }
  .score-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 112px; }
  .metric-featured .score-track { max-width: 210px; }
  .floating-chip { display: none; }
  .industry-row { gap: 14px 22px; }
  .industry-row span:after { display: none; }
  .section-heading h2, .workflow-copy h2, .integration-copy h2, .trust-card h2, .faq-intro h2, .contact-copy h2 { font-size: 36px; }
  .data-grid, .action-grid, .vertical-grid { grid-template-columns: 1fr; }
  .data-card { min-height: 0; }
  .action-card { min-height: 215px; }
  .workflow-grid { gap: 44px; }
  .code-panel pre { padding: 22px 18px 16px; font-size: 10.5px; }
  .integration-cloud { min-height: 400px; transform: scale(.92); }
  .tool-pill { font-size: 9px; padding: 8px 11px; }
  .integration-core { width: 145px; height: 145px; }
  .integration-core img { width: 52px; height: 52px; }
  .shield-rings { width: 240px; height: 240px; box-shadow: 0 0 0 38px rgba(69,162,229,.04), 0 0 0 76px rgba(69,162,229,.025); }
  .shield-core { width: 120px; height: 120px; }
  .shield-core svg { width: 54px; height: 54px; }
  .trust-visual { min-height: 330px; }
  .label-one { left: 0; }
  .label-two { right: 0; }
  .label-three { left: 7%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 21px; }
  .footer-nav { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .footer-bottom { flex-direction: column; }
}
