:root {
  --ink: #07110f;
  --ink-2: #0c1b18;
  --ink-3: #132824;
  --paper: #f3f5ef;
  --white: #ffffff;
  --muted: #65736e;
  --line: #d8ded8;
  --line-dark: rgba(255,255,255,.14);
  --lime: #c8ff62;
  --lime-2: #a9eb36;
  --cyan: #51ded3;
  --blue: #4c78ff;
  --danger: #ff725e;
  --shadow: 0 24px 80px rgba(5,18,15,.14);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1200px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }

.topbar { background: #020807; color: #bfcac6; font-size: 12px; letter-spacing: .02em; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 24px; }
.topbar a { color: var(--white); font-weight: 700; }
.topbar a:hover { color: var(--lime); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,17,15,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line-dark); box-shadow: 0 12px 32px rgba(0,0,0,.18); background: rgba(7,17,15,.96); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 224px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 24px; color: #dce6e2; font-size: 13px; font-weight: 750; letter-spacing: .01em; }
.primary-nav > a:not(.button) { position: relative; padding: 30px 0; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--lime); transition: right .25s ease; }
.primary-nav > a:not(.button):hover::after,
.primary-nav > a[aria-current="page"]::after { right: 0; }
.primary-nav > a:hover { color: var(--white); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.01em;
  box-shadow: 0 12px 30px rgba(200,255,98,.16);
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button svg, .text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); background: var(--white); border-color: var(--white); box-shadow: 0 16px 36px rgba(0,0,0,.18); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 0 17px; font-size: 12px; }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.35); color: var(--white); box-shadow: none; }
.button-ghost:hover { color: var(--ink); }
.button-light { background: var(--white); border-color: var(--white); }
.button-light:hover { background: var(--lime); border-color: var(--lime); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #51625c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--lime-2); }
.eyebrow-bright { color: var(--lime); }
.eyebrow-bright::before { background: var(--lime); }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.045em; }
h1 { font-size: clamp(48px, 6vw, 86px); font-weight: 850; }
h2 { font-size: clamp(36px, 4.4vw, 62px); font-weight: 830; }
h3 { font-size: 24px; font-weight: 820; }
p { margin: 0; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: 96px 0 0;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .22; z-index: -2; }
.hero-orb-one { width: 520px; height: 520px; background: var(--cyan); top: -220px; right: 8%; }
.hero-orb-two { width: 450px; height: 450px; background: var(--lime); bottom: -250px; left: -140px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; min-height: 620px; }
.hero-copy { padding-bottom: 78px; }
.hero-copy h1 { max-width: 780px; }
.hero-copy h1 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 700px; margin-top: 28px; color: #c9d4d0; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: #c9d4d0; font-size: 13px; font-weight: 750; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 18px; height: 18px; fill: none; stroke: var(--lime); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero-console { position: relative; padding: 26px; border: 1px solid rgba(255,255,255,.15); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); box-shadow: 0 40px 110px rgba(0,0,0,.4); backdrop-filter: blur(18px); }
.hero-console::after { content: ""; position: absolute; inset: 8px -8px -8px 8px; z-index: -1; border: 1px solid rgba(200,255,98,.16); border-radius: 30px; }
.console-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12); color: #bdc9c5; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.status { display: inline-flex; align-items: center; gap: 7px; color: var(--lime); }
.status i { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 6px rgba(200,255,98,.11); }
.console-total { display: flex; flex-direction: column; padding: 28px 0 24px; }
.console-total > span { color: #8ca099; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.console-total strong { margin-top: 8px; font-size: clamp(30px, 3vw, 43px); letter-spacing: -.04em; }
.console-total small { margin-top: 8px; color: #aebbb7; font-size: 14px; }
.console-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.console-grid > div { position: relative; min-height: 126px; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(2,8,7,.4); display: flex; flex-direction: column; justify-content: flex-end; }
.console-grid small { color: #879a94; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.console-grid strong { margin-top: 3px; font-size: 18px; }
.mini-icon { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 37px; height: 37px; color: var(--lime); border: 1px solid rgba(200,255,98,.28); border-radius: 11px; background: rgba(200,255,98,.07); }
.mini-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.support-strip { display: flex; align-items: center; gap: 14px; margin-top: 12px; padding: 16px; border-radius: 16px; background: var(--lime); color: var(--ink); }
.support-strip > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(7,17,15,.1); }
.support-strip svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.support-strip div { display: flex; flex-direction: column; }
.support-strip small { font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.support-strip strong { font-size: 14px; }
.proof-strip { display: grid; grid-template-columns: repeat(6,1fr); border-top: 1px solid rgba(255,255,255,.12); }
.proof-strip span { padding: 22px 12px; color: #bac7c2; border-right: 1px solid rgba(255,255,255,.1); font-size: 12px; font-weight: 750; text-align: center; }
.proof-strip span:first-child { border-left: 1px solid rgba(255,255,255,.1); }

.section { padding: 110px 0; }
.section-light { background: var(--paper); }
.section-heading { margin-bottom: 54px; }
.section-heading p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.split-heading p { padding-bottom: 6px; }
.centered { max-width: 850px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p { max-width: 700px; margin: 20px auto 0; }

.problem-section { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: start; }
.problem-list { border-top: 1px solid var(--line); }
.problem-list p { padding: 24px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 18px; }
.problem-list b { display: inline-block; min-width: 165px; color: var(--ink); }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { position: relative; min-height: 340px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -100px; bottom: -100px; background: var(--lime); border-radius: 50%; opacity: .14; transition: transform .3s var(--ease), opacity .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #bcc6bc; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.6); opacity: .24; }
.service-card .icon { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 16px; color: var(--ink); background: var(--paper); }
.service-card .icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card-kicker { position: absolute; right: 27px; top: 28px; color: #9ca8a2; font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.service-card h3 { margin-top: 38px; }
.service-card p { margin-top: 15px; color: var(--muted); line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-size: 13px; font-weight: 850; }
.text-link svg { transition: transform .2s ease; }
.service-card:hover .text-link svg { transform: translateX(4px); }
.accent-card { background: var(--lime); border-color: var(--lime); }
.accent-card .icon { border-color: rgba(7,17,15,.16); background: rgba(255,255,255,.35); }
.accent-card p { color: #263029; }

.price-lock-section { overflow: hidden; background: var(--ink-2); color: var(--white); }
.price-lock-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.price-lock-grid p, .dark-split p, .manifesto p { margin-top: 24px; color: #b9c7c2; font-size: 18px; line-height: 1.75; }
.lock-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.big-lock { position: relative; z-index: 3; display: grid; place-items: center; width: 170px; height: 170px; color: var(--lime); border: 1px solid rgba(200,255,98,.28); border-radius: 50%; background: rgba(200,255,98,.08); box-shadow: 0 0 80px rgba(200,255,98,.12); }
.big-lock svg { width: 74px; height: 74px; fill: none; stroke: currentColor; stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; }
.lock-ring { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.ring-one { width: 330px; height: 330px; }
.ring-two { width: 460px; height: 460px; border-style: dashed; animation: spin 32s linear infinite; }
.lock-label { position: absolute; z-index: 4; right: 0; bottom: 58px; padding: 18px 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(7,17,15,.85); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.lock-label strong { display: block; color: var(--lime); letter-spacing: .12em; }
.lock-label span { color: #aab8b3; font-size: 12px; }
@keyframes spin { to { transform: rotate(360deg); } }
.check-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 700; }
.check-list svg { flex: 0 0 auto; width: 22px; height: 22px; fill: none; stroke: var(--lime-2); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.check-list.bright li { color: #dce5e1; }
.check-list.bright svg { stroke: var(--lime); }


.switch-section { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.step { min-height: 275px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.step > span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--lime); font-size: 11px; font-weight: 900; }
.step h3 { margin-top: 42px; font-size: 22px; }
.step p { margin-top: 14px; color: var(--muted); }

.cta-band { background: var(--lime); padding: 82px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-band h2 { max-width: 750px; }
.cta-band p { max-width: 700px; margin-top: 16px; color: #31412f; font-size: 17px; }
.cta-band .eyebrow-bright { color: var(--ink); }
.cta-band .eyebrow-bright::before { background: var(--ink); }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq-list summary { position: relative; list-style: none; padding: 24px 62px 24px 24px; font-size: 18px; font-weight: 820; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 24px; top: 18px; font-size: 28px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 24px 24px; color: var(--muted); }

.subhero { position: relative; overflow: hidden; background: var(--ink); color: var(--white); padding: 95px 0; isolation: isolate; }
.subhero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 58px 58px; mask-image: radial-gradient(circle at 75% 45%, black, transparent 70%); }
.subhero::after { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; right: -100px; top: -220px; border-radius: 50%; background: var(--cyan); filter: blur(120px); opacity: .14; }
.subhero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; min-height: 450px; }
.subhero h1 { max-width: 780px; }
.subhero p { max-width: 700px; margin-top: 25px; color: #bdc9c5; font-size: 20px; }

.metric-stack { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.metric-stack > div { min-height: 140px; padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.05); display: flex; flex-direction: column; justify-content: flex-end; }
.metric-stack small { color: #91a39d; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 850; }
.metric-stack strong { margin-top: 6px; font-size: 24px; }
.metric-stack > p { grid-column: 1 / -1; margin: 0; color: #7f918b; font-size: 11px; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature-card { min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); transition: transform .2s var(--ease), box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(5,25,18,.08); }
.feature-card > span { color: #8a9993; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.feature-card h3 { margin-top: 36px; font-size: 21px; }
.feature-card p { margin-top: 14px; color: var(--muted); }
.dark-split, .manifesto { background: var(--ink-2); color: var(--white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.legal-note { margin-top: 24px; color: #7c8b85; font-size: 13px; }

.visual-clock { position: relative; min-height: 410px; display: grid; place-items: center; }
.clock-face { position: relative; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.04); box-shadow: 0 0 0 32px rgba(255,255,255,.02), 0 0 0 64px rgba(255,255,255,.015); }
.clock-face::before { content: ""; position: absolute; inset: 22px; border: 1px dashed rgba(200,255,98,.28); border-radius: 50%; }
.clock-face span { position: absolute; left: 50%; top: 50%; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; transform: translate(-50%,-50%); z-index: 3; }
.clock-face i, .clock-face b { position: absolute; left: 50%; top: 50%; transform-origin: 0 50%; height: 3px; border-radius: 3px; background: var(--lime); }
.clock-face i { width: 70px; transform: rotate(-90deg); }
.clock-face b { width: 50px; transform: rotate(25deg); background: var(--white); }
.clock-card { position: absolute; right: 0; bottom: 18px; min-width: 240px; padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(7,17,15,.92); box-shadow: 0 24px 60px rgba(0,0,0,.32); }
.clock-card small { display: block; color: #879b94; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.clock-card strong { display: block; margin-top: 4px; color: var(--lime); }
.clock-card span { display: block; margin-top: 8px; color: #aebdb8; font-size: 12px; }

.document-stack { position: relative; min-height: 390px; }
.doc { position: absolute; width: 310px; height: 365px; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; }
.doc-back { transform: translate(-38%,-50%) rotate(9deg); background: rgba(81,222,211,.1); }
.doc-mid { transform: translate(-58%,-50%) rotate(-5deg); background: rgba(200,255,98,.08); }
.doc-front { transform: translate(-50%,-50%); padding: 30px; background: #f7f9f3; color: var(--ink); box-shadow: 0 35px 90px rgba(0,0,0,.35); display: flex; flex-direction: column; justify-content: flex-end; }
.doc-front::before { content: ""; position: absolute; inset: 25px 25px auto; height: 95px; background: repeating-linear-gradient(to bottom, #dbe1dc 0 7px, transparent 7px 20px); opacity: .75; }
.doc-front > span { color: #73817c; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.doc-front strong { margin-top: 6px; font-size: 22px; }
.doc-front i { position: absolute; right: 28px; bottom: 28px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--lime); }
.doc-front svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.shield-visual { min-height: 390px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: center; position: relative; }
.shield-visual > span { grid-column: 1 / -1; justify-self: center; display: grid; place-items: center; width: 150px; height: 150px; color: var(--lime); border: 1px solid rgba(200,255,98,.25); border-radius: 50%; background: rgba(200,255,98,.07); }
.shield-visual > span svg { width: 74px; height: 74px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.shield-visual > div { padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.04); }
.shield-visual small { display: block; color: #879992; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.shield-visual strong { display: block; margin-top: 5px; }

.payment-visual { position: relative; min-height: 400px; display: grid; place-items: center; }
.card-device { position: relative; width: 360px; height: 225px; padding: 30px; overflow: hidden; border-radius: 26px; background: linear-gradient(135deg, #d8ff8d, var(--lime-2)); color: var(--ink); transform: rotate(-7deg); box-shadow: 0 38px 90px rgba(0,0,0,.36); }
.card-device::after { content: ""; position: absolute; width: 260px; height: 260px; right: -120px; top: -100px; border: 1px solid rgba(7,17,15,.2); border-radius: 50%; box-shadow: 0 0 0 30px rgba(7,17,15,.04), 0 0 0 60px rgba(7,17,15,.03); }
.card-chip { width: 46px; height: 34px; margin-top: 12px; border: 1px solid rgba(7,17,15,.45); border-radius: 7px; background: linear-gradient(90deg, transparent 48%, rgba(7,17,15,.3) 49% 51%, transparent 52%), linear-gradient(transparent 48%, rgba(7,17,15,.3) 49% 51%, transparent 52%); }
.card-device span { position: absolute; left: 30px; bottom: 47px; font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.card-device strong { position: absolute; left: 30px; bottom: 25px; font-size: 18px; }
.payment-pulse { position: absolute; right: 0; bottom: 44px; display: flex; align-items: center; gap: 10px; padding: 16px 19px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(7,17,15,.92); box-shadow: 0 22px 55px rgba(0,0,0,.32); }
.payment-pulse i { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(200,255,98,.1); }
.payment-pulse span { font-size: 12px; font-weight: 800; }

.relationship-visual { position: relative; min-height: 420px; }
.node { position: absolute; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(255,255,255,.05); font-size: 12px; font-weight: 850; }
.node.core { width: 130px; height: 130px; left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--lime); color: var(--ink); font-size: 50px; border: 0; box-shadow: 0 0 0 30px rgba(200,255,98,.06); }
.node.n1,.node.n2,.node.n3,.node.n4 { width: 100px; height: 100px; }
.node.n1 { left: 5%; top: 10%; }
.node.n2 { right: 5%; top: 8%; }
.node.n3 { left: 7%; bottom: 6%; }
.node.n4 { right: 5%; bottom: 7%; }
.line { position: absolute; left: 50%; top: 50%; width: 180px; height: 1px; background: rgba(200,255,98,.3); transform-origin: left center; }
.l1 { transform: rotate(-145deg); }
.l2 { transform: rotate(-35deg); }
.l3 { transform: rotate(145deg); }
.l4 { transform: rotate(35deg); }
.principle-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.principle { min-height: 280px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.principle > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: var(--ink); color: var(--lime); }
.principle svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.principle h3 { margin-top: 38px; }
.principle p { margin-top: 15px; color: var(--muted); }
.manifesto { text-align: center; }
.manifesto .eyebrow { justify-content: center; }

.form-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--white); padding: 80px 0 105px; }
.form-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 5%, rgba(81,222,211,.14), transparent 37%), radial-gradient(circle at 90% 55%, rgba(200,255,98,.08), transparent 34%); }
.form-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.form-copy { position: sticky; top: 130px; padding-top: 25px; }
.form-copy h1 { font-size: clamp(48px, 5.5vw, 76px); }
.form-copy > p { margin-top: 25px; color: #b8c6c1; font-size: 18px; }
.contact-cards { display: grid; gap: 10px; margin-top: 32px; }
.contact-cards a { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.04); transition: background .2s ease, transform .2s ease; }
.contact-cards a:hover { background: rgba(255,255,255,.09); transform: translateX(4px); }
.contact-cards > a > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--lime); color: var(--ink); }
.contact-cards svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-cards div { display: flex; flex-direction: column; }
.contact-cards small { color: #899b95; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.contact-cards strong { font-size: 14px; }

.thank-you { min-height: 70vh; display: grid; place-items: center; padding: 120px 0; background: var(--ink); color: var(--white); text-align: center; }
.success-icon { display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 24px; border-radius: 50%; background: var(--lime); color: var(--ink); }
.success-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.thank-you p { max-width: 620px; margin: 24px auto 0; color: #b7c5c0; font-size: 18px; }
.centered-actions { justify-content: center; }

.legal-hero { padding: 90px 0; background: var(--ink); color: var(--white); }
.legal-hero h1 { font-size: clamp(44px, 6vw, 72px); }
.legal-hero p { margin-top: 18px; color: #a6b5af; }
.legal-content { max-width: 850px; }
.legal-content h2 { margin: 44px 0 14px; font-size: 28px; letter-spacing: -.03em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #53625d; line-height: 1.8; }
.legal-content a { color: #144f46; text-decoration: underline; text-underline-offset: 3px; }

.site-footer { padding: 78px 0 20px; background: #020807; color: #aab7b2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 90px; padding-bottom: 62px; }
.footer-brand img { width: 250px; }
.footer-brand p { max-width: 470px; margin-top: 24px; color: #87958f; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.footer-contact a { color: var(--white); font-weight: 750; }
.footer-grid h2 { margin-bottom: 20px; color: var(--white); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin: 6px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--lime); }
.legal-line { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: 11px; }
.legal-line div { display: flex; gap: 18px; }

.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 2000; max-width: 920px; margin-inline: auto; padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(7,17,15,.96); color: #d3ddd9; box-shadow: 0 25px 70px rgba(0,0,0,.35); backdrop-filter: blur(18px); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 12px; }
.cookie-banner p a { color: var(--lime); text-decoration: underline; }
.cookie-banner > div { flex: 0 0 auto; display: flex; gap: 8px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .primary-nav { gap: 17px; font-size: 12px; }
  .brand { width: 200px; }
  .hero-grid { gap: 38px; }
  .proof-strip { grid-template-columns: repeat(3,1fr); }
  .proof-strip span:nth-child(4) { border-left: 1px solid rgba(255,255,255,.1); }
  .service-grid, .feature-grid { grid-template-columns: repeat(2,1fr); }
  .form-layout { grid-template-columns: .85fr 1.15fr; gap: 42px; }
}

@media (max-width: 900px) {
  .site-header, .site-header.scrolled { background: #07110f; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .topbar-inner > span { display: none; }
  .topbar-inner { justify-content: center; }
  .header-inner { height: 72px; }
  .brand { width: 210px; }
  .nav-toggle { display: block; position: relative; z-index: 1100; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; z-index: 1050; width: 100%; min-height: 100vh; min-height: 100dvh; padding: 115px 30px 40px; overflow-y: auto; overscroll-behavior: contain; background: #07110f !important; color: #ffffff; opacity: 1; isolation: isolate; box-shadow: -18px 0 50px rgba(0,0,0,.42); flex-direction: column; align-items: stretch; gap: 0; transform: translateX(100%); visibility: hidden; transition: transform .3s var(--ease), visibility .3s ease; }
  .primary-nav.open { transform: translateX(0); visibility: visible; }
  .primary-nav > a:not(.button) { display: block; padding: 15px 12px; border-bottom: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: #ffffff !important; font-size: 18px; }
  .primary-nav > a:not(.button):hover, .primary-nav > a:not(.button):focus-visible, .primary-nav > a[aria-current="page"] { background: rgba(200,255,98,.12); color: var(--lime) !important; }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { margin-top: 22px; }
  .hero { padding-top: 70px; }
  .hero-grid, .subhero-grid, .price-lock-grid, .problem-grid, .split-heading, .two-col, .form-layout { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding-bottom: 10px; }
  .hero-console { margin-bottom: 60px; }
  .problem-grid, .price-lock-grid, .subhero-grid, .two-col { gap: 50px; }
  .section { padding: 85px 0; }
  .service-grid, .feature-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band-inner { align-items: flex-start; flex-direction: column; gap: 30px; }
  .form-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-brand { grid-column: 1 / -1; }
  .lock-visual { min-height: 400px; }
  .subhero { padding: 80px 0; }
  .relationship-visual, .document-stack, .visual-clock, .payment-visual, .shield-visual { min-height: 360px; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .topbar-links { gap: 14px; }
  .topbar-links a { font-size: 11px; }
  .brand { width: 190px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .hero { padding-top: 55px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 12px; }
  .hero-console { padding: 18px; border-radius: 22px; }
  .console-grid { grid-template-columns: 1fr 1fr; }
  .console-grid > div { min-height: 110px; padding: 13px; }
  .proof-strip { grid-template-columns: repeat(2,1fr); }
  .proof-strip span:nth-child(3), .proof-strip span:nth-child(5) { border-left: 1px solid rgba(255,255,255,.1); }
  .service-grid, .feature-grid, .steps-grid, .principle-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .split-heading { gap: 24px; }
  .problem-list p { display: grid; gap: 6px; }
  .problem-list b { min-width: 0; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 38px; }
  .lock-visual { min-height: 330px; transform: scale(.82); margin: -30px 0; }
  .ring-two { width: 390px; height: 390px; }
  .ring-one { width: 290px; height: 290px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .legal-line { align-items: flex-start; flex-direction: column; }
  .legal-line div { flex-wrap: wrap; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie-banner > div { display: grid; grid-template-columns: 1fr 1fr; }
  .card-device { width: 300px; height: 190px; }
  .payment-pulse { right: 0; }
  .doc { width: 260px; height: 330px; }
  .node.n1,.node.n2,.node.n3,.node.n4 { width: 82px; height: 82px; font-size: 10px; }
  .line { width: 135px; }
}


/* CRM lead form wrapper */
.crm-panel { overflow:hidden; border-radius:28px; background:var(--white); color:var(--ink); box-shadow:0 42px 110px rgba(0,0,0,.36); }
.crm-panel-head { padding:24px 30px; border-bottom:1px solid var(--line); background:#f6f8f3; }
.crm-panel-head strong { display:block; font-size:18px; }
.crm-panel-head span { display:block; margin-top:5px; color:var(--muted); font-size:13px; }
.crm-widget-wrap { min-height:420px; padding:10px; background:var(--white); }
.crm-assurance { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding:0 30px 28px; background:var(--white); }
.crm-assurance div { padding:14px; border:1px solid var(--line); border-radius:12px; background:#f6f8f3; }
.crm-assurance strong { display:block; font-size:12px; }
.crm-assurance span { display:block; margin-top:4px; color:var(--muted); font-size:11px; line-height:1.45; }
.crm-disclosure { padding:0 30px 30px; color:var(--muted); font-size:11px; line-height:1.55; background:var(--white); }
.crm-disclosure a { color:#144f46; text-decoration:underline; }
.cookie-settings-link { border:0; padding:0; background:none; color:inherit; font:inherit; cursor:pointer; }
.cookie-settings-link:hover { color:var(--white); }
@media (max-width:640px){ .crm-panel-head{padding:20px}.crm-widget-wrap{padding:0}.crm-assurance{grid-template-columns:1fr;padding:0 20px 20px}.crm-disclosure{padding:0 20px 24px} }


/* Partner programs */
.partner-section { background: var(--ink-2); color: var(--white); }
.partner-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.partner-grid p { margin: 24px 0 30px; color: #b9c7c2; font-size: 18px; line-height: 1.75; }
.partner-audiences { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.partner-audiences span { min-height: 92px; display: flex; align-items: flex-end; padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.05); color: var(--white); font-weight: 800; }
.partner-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.partner-checklist li { position: relative; padding: 18px 18px 18px 46px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.05); color: #e5eeea; font-weight: 700; }
.partner-checklist li::before { content: "✓"; position: absolute; left: 18px; color: var(--lime); font-weight: 900; }

.crm-widget-wrap.is-loaded { min-height: 0; }
.crm-widget-wrap iframe { display: block; width: 100% !important; max-width: 100%; border: 0; }

@media (max-width: 900px) {
  .partner-grid { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 640px) {
  .partner-audiences, .partner-checklist { grid-template-columns: 1fr; }
  .crm-widget-wrap { min-height: 360px; }
}
/* Homepage alignment and Keith Engelhardt affiliate landing page */
.hero-grid > *,
.problem-grid > *,
.price-lock-grid > *,
.partner-grid > *,
.split-heading > *,
.cta-band-inner > * { min-width: 0; }

.hero-copy { align-self: center; }
.hero-console { width: 100%; max-width: 560px; justify-self: end; }
.service-grid { align-items: stretch; }
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .text-link { margin-top: auto; padding-top: 30px; }
.partner-audiences { align-self: stretch; grid-auto-rows: 1fr; }
.partner-audiences span { height: 100%; align-items: center; }
.cta-band-inner > div:first-child { flex: 1 1 auto; }
.cta-band-inner > .button { flex: 0 0 auto; }

.affiliate-page { background: var(--paper); }
.affiliate-header { position: relative; z-index: 20; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.12); }
.affiliate-header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.affiliate-header .brand { width: 224px; }
.affiliate-contact { display: flex; align-items: center; gap: 14px; color: #cbd6d2; font-size: 13px; }
.affiliate-contact span { color: #8ea09a; }
.affiliate-contact a { color: var(--white); font-weight: 850; }
.affiliate-contact a:hover { color: var(--lime); }

.affiliate-hero { position: relative; overflow: hidden; padding: 78px 0 90px; background: var(--ink); color: var(--white); isolation: isolate; }
.affiliate-hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.affiliate-hero::after { content: ""; position: absolute; z-index: -2; width: 620px; height: 620px; right: -170px; top: -260px; border-radius: 50%; background: var(--cyan); filter: blur(120px); opacity: .16; }
.affiliate-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.82fr); gap: 72px; align-items: start; }
.affiliate-copy { padding-top: 24px; }
.affiliate-copy h1 { max-width: 760px; font-size: clamp(50px,5.8vw,82px); }
.affiliate-copy h1 em { color: var(--lime); font-family: Georgia,serif; font-weight: 400; }
.affiliate-lead { max-width: 690px; margin-top: 26px; color: #c9d4d0; font-size: 20px; line-height: 1.65; }
.referral-note { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 10px 14px; border: 1px solid rgba(200,255,98,.24); border-radius: 999px; background: rgba(200,255,98,.08); color: #e7f0ec; font-size: 12px; font-weight: 800; }
.referral-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(200,255,98,.1); }

.affiliate-benefits { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px 18px; max-width: 700px; margin: 32px 0 0; padding: 0; list-style: none; }
.affiliate-benefits li { position: relative; padding-left: 31px; color: #e1e9e6; font-weight: 750; }
.affiliate-benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 12px; font-weight: 950; }

.affiliate-form-card { overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; background: var(--white); color: var(--ink); box-shadow: 0 42px 110px rgba(0,0,0,.38); }
.affiliate-form-head { padding: 25px 28px 22px; border-bottom: 1px solid var(--line); background: #f6f8f3; }
.affiliate-form-head span { color: #53635d; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.affiliate-form-head h2 { margin-top: 7px; font-size: 30px; letter-spacing: -.035em; }
.affiliate-form-head p { margin-top: 8px; color: var(--muted); font-size: 13px; }
.affiliate-form-card .crm-widget-wrap { min-height: 440px; padding: 8px; }
.affiliate-form-disclosure { padding: 0 28px 26px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.affiliate-form-disclosure a { color: #144f46; text-decoration: underline; }

.affiliate-proof { margin-top: -32px; position: relative; z-index: 3; }
.affiliate-proof-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 22px 60px rgba(5,18,15,.1); }
.affiliate-proof-grid div { min-height: 128px; padding: 24px; border-right: 1px solid var(--line); }
.affiliate-proof-grid div:last-child { border-right: 0; }
.affiliate-proof-grid strong { display: block; font-size: 15px; }
.affiliate-proof-grid span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.affiliate-section { padding: 100px 0; }
.affiliate-section-white { background: var(--white); }
.affiliate-switch-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.affiliate-switch-grid p { margin-top: 22px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.affiliate-process { display: grid; gap: 12px; counter-reset: affiliate-step; }
.affiliate-process div { position: relative; min-height: 100px; padding: 22px 22px 22px 82px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.affiliate-process div::before { counter-increment: affiliate-step; content: "0" counter(affiliate-step); position: absolute; left: 22px; top: 24px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--lime); font-size: 11px; font-weight: 900; }
.affiliate-process strong { display: block; }
.affiliate-process span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.55; }

.affiliate-cta { padding: 78px 0; background: var(--lime); }
.affiliate-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.affiliate-cta h2 { max-width: 800px; }
.affiliate-cta p { max-width: 720px; margin-top: 14px; color: #31412f; }
.affiliate-cta .button { flex: 0 0 auto; background: var(--ink); color: var(--white); }
.affiliate-cta .button:hover { background: var(--white); color: var(--ink); }

.affiliate-footer { background: #020807; color: #a9b8b2; }
.affiliate-footer-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 12px; }
.affiliate-footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.affiliate-footer a:hover, .affiliate-footer button:hover { color: var(--white); }

@media (max-width: 1000px) {
  .hero-console { max-width: none; justify-self: stretch; }
  .affiliate-layout { grid-template-columns: 1fr; gap: 48px; }
  .affiliate-copy { padding-top: 0; }
  .affiliate-form-card { max-width: 720px; width: 100%; }
  .affiliate-proof-grid { grid-template-columns: repeat(2,1fr); }
  .affiliate-proof-grid div:nth-child(2) { border-right: 0; }
  .affiliate-proof-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .affiliate-switch-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 700px) {
  .hero-copy { align-self: stretch; }
  .affiliate-header-inner { min-height: 72px; }
  .affiliate-header .brand { width: 188px; }
  .affiliate-contact span { display: none; }
  .affiliate-contact a { font-size: 12px; }
  .affiliate-hero { padding: 58px 0 72px; }
  .affiliate-copy h1 { font-size: clamp(44px,13vw,62px); }
  .affiliate-lead { font-size: 18px; }
  .affiliate-benefits { grid-template-columns: 1fr; }
  .affiliate-form-head { padding: 22px 20px 18px; }
  .affiliate-form-head h2 { font-size: 27px; }
  .affiliate-form-card .crm-widget-wrap { min-height: 360px; padding: 0; }
  .affiliate-form-disclosure { padding: 0 20px 23px; }
  .affiliate-proof { margin-top: -22px; }
  .affiliate-proof-grid { grid-template-columns: 1fr; }
  .affiliate-proof-grid div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .affiliate-proof-grid div:last-child { border-bottom: 0; }
  .affiliate-section { padding: 76px 0; }
  .affiliate-cta-inner { align-items: flex-start; flex-direction: column; }
  .affiliate-cta .button { width: 100%; }
  .affiliate-footer-inner { padding: 28px 0; align-items: flex-start; flex-direction: column; }
}

/* Homepage comparison grid */
.comparison-section,
.switch-section,
.partner-section,
.cta-band,
.faq-section {
  position: relative;
  clear: both;
  width: 100%;
}

.comparison-grid {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 70px rgba(10,30,24,.08);
  contain: layout paint;
}

.comparison-grid-row {
  display: grid;
  grid-template-columns: minmax(130px,.62fr) minmax(0,1.2fr) minmax(0,1.2fr);
  width: 100%;
}

.comparison-grid-row > div {
  min-width: 0;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.comparison-grid-row > div + div { border-left: 1px solid var(--line); }
.comparison-grid-row:last-child > div { border-bottom: 0; }

.comparison-grid-head { background: var(--ink); color: var(--white); }
.comparison-grid-head > div {
  border-bottom-color: rgba(255,255,255,.14);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .03em;
}
.comparison-grid-head > div + div { border-left-color: rgba(255,255,255,.14); }
.comparison-grid-head > div:last-child { color: var(--lime); }

.comparison-topic { color: var(--ink); font-weight: 850; }
.comparison-typical { color: var(--muted); }
.comparison-konectd {
  color: var(--ink);
  background: rgba(200,255,98,.14);
  font-weight: 750;
}

@media (max-width: 760px) {
  .comparison-grid {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    contain: none;
  }
  .comparison-grid-head { display: none; }
  .comparison-grid-row:not(.comparison-grid-head) {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(10,30,24,.06);
  }
  .comparison-grid-row > div,
  .comparison-grid-row:last-child > div {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px;
  }
  .comparison-grid-row > div:last-child { border-bottom: 0; }
  .comparison-topic {
    background: var(--ink);
    color: var(--lime);
    font-size: 18px;
  }
  .comparison-typical,
  .comparison-konectd {
    position: relative;
    padding-top: 43px !important;
  }
  .comparison-typical::before,
  .comparison-konectd::before {
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .comparison-typical::before { content: "Typical provider"; color: #7b8984; }
  .comparison-konectd::before { content: "Konectd"; color: #3f5e27; }
}


/* Ignite Health + industry integration */
:root { --ignite: #f4511e; }
.ignite-badge { display:inline-flex; align-items:center; width:max-content; margin-bottom:18px; padding:8px 12px; border:1px solid rgba(244,81,30,.45); border-radius:999px; background:rgba(244,81,30,.1); color:#ff8c68; font-size:10px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.benefits-band { position:relative; overflow:hidden; background:var(--ink-2); color:var(--white); isolation:isolate; }
.benefits-band::after { content:""; position:absolute; z-index:-1; width:520px; height:520px; right:-160px; top:-220px; border-radius:50%; background:var(--ignite); filter:blur(130px); opacity:.09; }
.benefits-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:72px; align-items:center; }
.benefits-grid h2 { max-width:760px; }
.benefits-grid p { margin-top:20px; color:#b8c7c2; font-size:17px; line-height:1.75; }
.benefit-pills { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.benefit-pills > div { min-height:150px; padding:24px; border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.045); }
.benefit-pills strong { display:block; color:var(--lime); font-size:17px; }
.benefit-pills span { display:block; margin-top:9px; color:#afbeb9; font-size:13px; line-height:1.6; }
.benefit-pills a { display:inline-block; margin-top:10px; color:var(--lime); font-size:12px; font-weight:850; }
.bright-note { color:#879b94 !important; }
.industry-callout { display:flex; align-items:center; justify-content:space-between; gap:60px; padding:42px; border:1px solid var(--line); border-radius:24px; background:var(--white); box-shadow:0 18px 55px rgba(5,25,18,.07); }
.industry-callout > div { max-width:820px; }
.industry-callout p { margin-top:14px; color:var(--muted); font-size:17px; line-height:1.7; }
.industry-callout .button { flex:0 0 auto; }
@media (max-width: 1120px) {
  .primary-nav { gap:13px; font-size:11.5px; }
  .primary-nav .button { padding-inline:16px; }
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns:1fr; gap:42px; }
  .industry-callout { align-items:flex-start; flex-direction:column; gap:28px; }
}
@media (max-width: 640px) {
  .benefit-pills { grid-template-columns:1fr; }
  .benefit-pills > div { min-height:auto; }
  .industry-callout { padding:28px 22px; }
  .industry-callout .button { width:100%; }
}
