@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/sora-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Bangers';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bangers-latin.woff2') format('woff2');
}

:root {
  --ink: #0f0f0e;
  --ink-2: #191918;
  --terra: #cd5e45;
  --terra-hot: #e0714f;
  --cream: #faf9f5;
  --gray: #f1f1f1;
  --white: #ffffff;
  --line: #d8dadd;
  --muted: #8d939c;
  --max: 1288px;
  --shadow: 0 22px 48px rgba(15, 15, 14, .12);
  --font: 'Sora', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --comic-font: 'Bangers', Impact, 'Arial Black', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--ink); font-family: var(--font); line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open, body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
a, button, summary { touch-action: manipulation; -webkit-tap-highlight-color: rgba(205, 94, 69, .2); }
::selection { background: var(--terra); color: #fff; }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.button { display: inline-flex; min-height: 60px; align-items: center; justify-content: center; padding: 15px 30px; border: 0; border-radius: 4px; background: var(--terra); color: #fff; font-weight: 700; font-size: 18px; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.button:hover { background: var(--terra-hot); transform: translateY(-1px); }
.button.small { min-height: 48px; padding: 12px 22px; font-size: 15px; }

/* Stone-proportioned navigation and menus */
.site-nav { position: sticky; top: 0; z-index: 80; height: 100px; background: var(--white); box-shadow: 0 2px 4px rgba(15, 15, 14, .12); }
.nav-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; min-width: 194px; gap: 10px; line-height: .88; }
.brand img { width: 54px; height: 76px; object-fit: contain; }
.brand-word { font-size: 24px; font-weight: 800; letter-spacing: -.055em; text-transform: uppercase; }
.brand-word span { display: block; color: var(--terra); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 18px; font-weight: 500; }
.nav-item { position: relative; }
.nav-trigger { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; cursor: pointer; padding: 36px 0; }
.nav-trigger svg { width: 12px; transition: transform .2s ease; }
.nav-item.is-open .nav-trigger svg { transform: rotate(180deg); }
.nav-actions { display: flex; align-items: center; gap: 40px; margin-left: auto; }
.nav-phone { color: var(--terra); font-weight: 600; }
.nav-cta { min-width: 165px; }
.menu-panel { position: fixed; z-index: 90; top: 107px; left: max(5px, calc((100vw - var(--max)) / 2 - 71px)); display: none; width: min(1000px, calc(100vw - 10px)); padding: 16px 22px 38px; border: 1px solid var(--line); border-radius: 9px; background: #fff; box-shadow: 0 24px 50px rgba(15, 15, 14, .2); }
.nav-item:hover .menu-panel, .nav-item.is-open .menu-panel { display: block; }
.menu-panel::before { content: ''; position: absolute; top: -14px; left: 0; width: 100%; height: 15px; }
.menu-title { padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 600; }
.product-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 40px; padding: 28px 16px 4px; }
.product-link { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: center; min-width: 0; }
.product-link img { width: 52px; height: 52px; border-radius: 9px; }
.product-link b { display: block; font-size: 16px; line-height: 1.25; font-weight: 600; }
.product-link span span { display: block; margin-top: 3px; color: var(--muted); font-size: 15px; line-height: 1.45; }
.product-link:hover b { color: var(--terra); }
.about-panel { position: absolute; top: 80px; left: -18px; display: none; width: 250px; padding: 14px; border: 1px solid var(--line); background: #fff; border-radius: 6px; box-shadow: var(--shadow); }
.nav-item:hover .about-panel, .nav-item.is-open .about-panel { display: grid; }
.about-panel a { padding: 11px 12px; border-radius: 4px; }
.about-panel a:hover { background: var(--gray); color: var(--terra); }
.hamburger { display: none; width: 48px; height: 48px; place-items: center; border: 0; background: transparent; cursor: pointer; }
.hamburger span, .hamburger::before, .hamburger::after { content: ''; display: block; width: 28px; height: 2px; background: var(--ink); }
.hamburger span { margin: 6px 0; }
.mobile-menu { display: none; position: fixed; z-index: 75; inset: 82px 0 0; overflow: auto; padding: 26px 20px 60px; background: #fff; }
.mobile-menu.is-open { display: block; }
.mobile-menu > a { display: block; padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 600; }
.mobile-menu h3 { margin: 28px 0 10px; color: var(--terra); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.mobile-products { display: grid; gap: 8px; }
.mobile-products .product-link { padding: 9px 0; }

/* Homepage */
.hero { min-height: 792px; overflow: hidden; background: var(--ink); color: #fff; }
.hero-grid { min-height: 792px; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(330px, .7fr); gap: 74px; align-items: center; }
.hero-copy { padding-left: 40px; border-left: 1px solid rgba(255, 255, 255, .18); }
.hero h1 { max-width: 795px; font-size: clamp(58px, 5.35vw, 77px); font-weight: 800; line-height: 1.2; letter-spacing: -.055em; text-wrap: balance; }
.hero-sub { max-width: 670px; margin-top: 38px; color: rgba(255, 255, 255, .78); font-size: 19px; font-weight: 600; line-height: 1.6; }
.hero-action { display: flex; align-items: center; gap: 34px; margin-top: 36px; }
.avatar-cta { display: grid; gap: 8px; justify-items: start; }
.avatars { width: 150px; height: 38px; object-fit: cover; object-position: center; border-radius: 99px; }
.hero-ratings { display: flex; gap: 34px; margin-top: 54px; }
.rating { display: grid; grid-template-columns: 34px auto; gap: 10px; align-items: center; padding-right: 24px; border-right: 1px solid rgba(255,255,255,.2); }
.rating:last-child { border: 0; }
.rating-logo { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 18px; font-weight: 800; }
.rating-logo.google { background: #4285f4; }
.rating-logo.facebook { background: #1877f2; }
.rating-logo.research { background: var(--terra); }
.rating b { display: block; font-size: 14px; }
.stars { color: var(--terra-hot); letter-spacing: 2px; white-space: nowrap; }
.angled { position: relative; isolation: isolate; }
.angled::after { content: ''; position: absolute; z-index: -1; left: 0; right: 0; bottom: -54px; height: 55px; background: inherit; clip-path: polygon(0 0, 50% 100%, 100% 0); }
.section-title { text-align: center; font-size: clamp(34px, 3.5vw, 50px); line-height: 1.25; letter-spacing: -.055em; text-wrap: balance; }
.proof-section { z-index: 5; padding: 72px 0 110px; background: var(--gray); }
.proof-section .section-title { font-weight: 700; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.proof-card { display: grid; grid-template-columns: 44% 1fr; min-height: 232px; overflow: hidden; border-radius: 6px; background: #fff; box-shadow: 0 1px 3px rgba(15,15,14,.08); }
.proof-image { position: relative; overflow: hidden; background: var(--ink); }
.proof-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.proof-play { position: absolute; left: 16px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; background: rgba(15,15,14,.9); color: #fff; border-radius: 3px; font-size: 11px; font-weight: 700; }
.proof-copy { padding: 24px 24px 18px; }
.proof-copy .stars { font-size: 18px; }
.proof-copy p { margin-top: 13px; font-size: 15px; line-height: 1.55; }
.proof-copy b { display: block; margin-top: 9px; }
.proof-copy a { display: block; margin-top: 12px; color: var(--terra); font-size: 13px; font-weight: 700; text-align: right; }

.systems { padding: 160px 0 70px; background: #fff; }
.systems > .wrap > .section-title { margin-bottom: 28px; font-weight: 800; }
.feature-row { min-height: 797px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-copy { max-width: 612px; }
.feature-copy h3 { font-size: 40px; line-height: 1.2; letter-spacing: -.04em; }
.feature-intro { margin: 14px 0 20px; font-size: 17px; font-style: italic; line-height: 1.55; }
.feature-points { list-style: none; display: grid; gap: 13px; }
.feature-points li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; font-size: 14px; line-height: 1.45; }
.check-dot { width: 17px; height: 17px; display: grid; place-items: center; margin-top: 2px; border-radius: 50%; background: var(--terra); color: #fff; font-size: 10px; font-weight: 800; }
.feature-points b { display: block; color: var(--terra); font-size: 14px; }
.demo-open { margin-top: 28px; }
.product-visual { min-height: 600px; display: grid; place-items: center; position: relative; overflow: hidden; background: #fff; }
.laptop { width: min(560px, 96%); padding: 12px 12px 20px; border: 10px solid #242526; border-bottom-width: 18px; border-radius: 12px; background: #242526; box-shadow: 0 26px 40px rgba(15,15,14,.18); }
.laptop img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.laptop::after { content: ''; position: absolute; left: 5%; right: 5%; bottom: -11px; height: 11px; border-radius: 0 0 50% 50%; background: #b9bbbd; }
.phone { width: 288px; min-height: 548px; position: relative; padding: 35px 17px 22px; border: 10px solid #242526; border-radius: 52px; background: linear-gradient(160deg, #3d424a, #121315 62%); box-shadow: 0 28px 50px rgba(15,15,14,.22); color: #fff; }
.phone::before { content: ''; position: absolute; top: 12px; left: 50%; width: 86px; height: 22px; border-radius: 99px; background: #0b0b0b; transform: translateX(-50%); }
.phone.review { transform: rotate(5deg); }
.phone.missed { transform: rotate(-5deg); }
.phone-time { margin-top: 26px; color: rgba(255,255,255,.7); text-align: center; font-size: 12px; }
.phone-card { margin-top: 120px; padding: 18px 14px; border-radius: 8px; background: #fff; color: #111; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.phone-card b { display: block; }
.phone-card .stars { display: block; margin-top: 5px; }
.phone-bubble { margin-top: 16px; padding: 12px 14px; border-radius: 16px 16px 16px 4px; background: #e6e7e9; color: #111; font-size: 13px; }
.phone-bubble.out { margin-left: 28px; border-radius: 16px 16px 4px 16px; background: var(--terra); color: #fff; }
.incoming { margin-top: 110px; text-align: center; }
.incoming b { display: block; margin-top: 10px; font-size: 22px; }
.call-icons { display: flex; justify-content: center; gap: 44px; margin-top: 90px; }
.call-icons span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #d64a47; font-size: 22px; }
.call-icons span:last-child { background: #4eb36c; }
.roscoe-peek { position: absolute; right: 5%; bottom: 22px; width: 110px; }
.campaign-stage { width: min(540px, 94%); padding: 28px; border: 10px solid #242526; border-radius: 14px; background: var(--gray); box-shadow: 0 28px 50px rgba(15,15,14,.16); }
.campaign-head { display: flex; justify-content: space-between; align-items: center; }
.campaign-pill { padding: 8px 12px; border-radius: 3px; background: var(--terra); color: #fff; font-size: 12px; font-weight: 700; }
.campaign-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.campaign-options div { padding: 18px; border: 1px solid #d7d9dc; border-radius: 5px; background: #fff; }
.campaign-options b { display: block; font-size: 14px; }
.campaign-options span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }
.seo-stage { width: min(540px, 94%); padding: 20px; border: 10px solid #242526; border-radius: 14px; background: #fff; box-shadow: 0 28px 50px rgba(15,15,14,.16); }
.map-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; padding: 20px; background: #edf0e8; }
.map-grid span { aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: rgba(205,94,69,.14); color: var(--terra); font-size: 11px; font-weight: 700; }
.map-grid span:nth-child(2n) { background: rgba(42,135,82,.15); color: #287e4d; }
.seo-footer { display: flex; justify-content: space-between; padding: 18px 4px 2px; color: var(--muted); font-size: 12px; }

/* Homepage product demonstrations: Stone-sized device compositions with live workflow states */
.service-visual { min-height: 717px; isolation: isolate; }
.service-visual::before { content: ''; position: absolute; inset: 9% 7% 13%; z-index: -2; border-radius: 50%; background: radial-gradient(circle at 50% 45%, rgba(205,94,69,.1), rgba(205,94,69,0) 68%); }
.visual-orbit { position: absolute; top: 82px; left: 50%; z-index: -1; width: 470px; height: 470px; border: 1px solid rgba(205,94,69,.16); border-radius: 50%; transform: translateX(-50%); }
.visual-orbit::before, .visual-orbit::after { content: ''; position: absolute; border: 1px solid rgba(15,15,14,.07); border-radius: 50%; }
.visual-orbit::before { inset: 42px; }
.visual-orbit::after { inset: 92px; }
.service-mascot { position: absolute; z-index: 6; bottom: 62px; width: 118px; filter: drop-shadow(0 18px 12px rgba(15,15,14,.14)); animation: mascot-breathe 5s ease-in-out infinite; will-change: transform; }
.service-mascot.mascot-left { left: 0; }
.service-mascot.mascot-right { right: 0; }
.visual-caption { position: absolute; z-index: 7; bottom: 24px; left: 50%; display: grid; grid-template-columns: 10px auto; column-gap: 9px; width: max-content; max-width: 78%; padding: 11px 16px; border: 1px solid #e1e2e4; border-radius: 5px; background: rgba(255,255,255,.94); box-shadow: 0 12px 28px rgba(15,15,14,.1); transform: translateX(-50%); }
.caption-dot { grid-row: 1 / 3; align-self: center; width: 9px; height: 9px; border-radius: 50%; background: #38a169; box-shadow: 0 0 0 4px rgba(56,161,105,.12); }
.visual-caption b { font-size: 12px; line-height: 1.2; }
.visual-caption small { color: var(--muted); font-size: 9px; }

.service-phone { position: absolute; z-index: 2; top: 66px; width: 260px; height: 526px; padding: 9px; border-radius: 48px; background: #202124; box-shadow: 0 28px 50px rgba(15,15,14,.25); }
.service-phone::after { content: ''; position: absolute; top: 105px; right: -3px; width: 3px; height: 72px; border-radius: 0 3px 3px 0; background: #3b3d40; }
.device-notch { position: absolute; z-index: 5; top: 19px; left: 50%; width: 80px; height: 20px; border-radius: 99px; background: #111; transform: translateX(-50%); }
.phone-screen { position: relative; width: 100%; height: 100%; overflow: hidden; padding: 60px 18px 24px; border-radius: 40px; background: linear-gradient(150deg, #f9fafb, #e8ebee); color: var(--ink); }
.phone-front { z-index: 4; }
.phone-back { z-index: 1; top: 96px; opacity: .72; filter: saturate(.65); }
.phone-left { left: 92px; transform: rotate(-7deg); }
.phone-right { right: 92px; transform: rotate(7deg); }
.phone-back.phone-left { left: 48px; transform: rotate(-13deg) scale(.9); }
.phone-back.phone-right { right: 48px; transform: rotate(13deg) scale(.9); }
.screen-kicker { display: block; margin-bottom: 15px; color: var(--terra); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.phone-screen b { display: block; font-size: 17px; line-height: 1.35; }
.phone-screen small { display: block; margin-top: 10px; color: #747a83; font-size: 10px; line-height: 1.5; }
.phone-screen p { color: #656b73; font-size: 12px; line-height: 1.5; }
.visual-state { position: absolute; inset: 60px 18px 24px; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(10px); animation: service-state-cycle 12s ease-in-out infinite; will-change: opacity, transform; }
.visual-state.state-two { animation-delay: 4s; }
.visual-state.state-three { animation-delay: 8s; }
.text-bubble { margin-top: 18px; padding: 13px 14px; border-radius: 16px 16px 16px 4px; background: #fff; box-shadow: 0 9px 24px rgba(15,15,14,.1); color: var(--ink) !important; }
.text-bubble--reply { margin-left: 18px; border-radius: 16px 16px 4px 16px; background: var(--terra); color: #fff !important; }

.service-laptop { position: absolute; z-index: 2; top: 148px; left: 4%; width: 82%; padding: 9px 9px 17px; border: 9px solid #25272a; border-radius: 12px; background: #25272a; box-shadow: 0 28px 54px rgba(15,15,14,.23); transform: rotate(-2deg); }
.service-laptop::after { content: ''; position: absolute; right: -5%; bottom: -18px; left: -5%; height: 13px; border-radius: 0 0 50% 50%; background: #bfc2c6; }
.browser-bar { display: flex; align-items: center; gap: 5px; height: 25px; padding: 0 8px; background: #f2f3f4; color: #767c83; font-size: 8px; }
.browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #d55f4a; }
.browser-bar i:nth-child(2) { background: #e6ad4d; }
.browser-bar i:nth-child(3) { background: #45a86d; }
.browser-bar span { margin-left: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.website-screen { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: #111; }
.website-screen > img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.website-screen .visual-state { inset: auto; }
.site-state { right: 18px; bottom: 18px; display: block; width: 180px; padding: 12px; border-radius: 4px; background: rgba(15,15,14,.92); color: #fff; }
.site-state b, .site-state span { display: block; }
.site-state b { font-size: 11px; }
.site-state span { margin-top: 3px; color: rgba(255,255,255,.7); font-size: 8px; }
.quote-state { top: 50%; left: 50%; width: 220px; padding: 18px; border-radius: 5px; background: #fff; box-shadow: 0 18px 40px rgba(15,15,14,.25); transform: translate(-50%, calc(-50% + 10px)); }
.quote-state b, .quote-state small, .quote-state em { display: block; }
.quote-state b { margin-top: 8px; font-size: 14px; }
.quote-state small { margin-top: 6px; color: #717780; font-size: 9px; }
.quote-state em { margin-top: 12px; padding: 8px; border-radius: 3px; background: var(--terra); color: #fff; font-size: 9px; font-style: normal; font-weight: 700; text-align: center; }
.state-kicker { color: var(--terra); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.success-state { top: 50%; left: 50%; align-items: center; width: 220px; padding: 20px; border-radius: 5px; background: #fff; box-shadow: 0 18px 40px rgba(15,15,14,.25); text-align: center; transform: translate(-50%, calc(-50% + 10px)); }
.success-check { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #38a169; color: #fff; font-weight: 800; }
.success-state b { margin-top: 10px; font-size: 13px; }
.success-state small { margin-top: 4px; color: #747a83; font-size: 8px; }
.service-phone--mini { top: 260px; right: 8px; width: 154px; height: 318px; border-radius: 32px; transform: rotate(7deg); }
.service-phone--mini .device-notch { top: 15px; width: 54px; height: 14px; }
.service-phone--mini .phone-screen { padding: 42px 12px 18px; border-radius: 25px; }
.service-phone--mini .visual-state { inset: 42px 12px 18px; }
.service-phone--mini .phone-screen b { font-size: 11px; }
.service-phone--mini .phone-screen p { font-size: 9px; }
.service-phone--mini .screen-kicker { font-size: 7px; }

.review-contact { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.contact-avatar, .call-avatar { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 50%; background: var(--terra); color: #fff; font-size: 20px; font-weight: 800; }
.action-chip, .missed-pill, .launch-button { display: block; margin-top: 22px; padding: 10px 12px; border-radius: 4px; background: var(--terra); color: #fff; font-size: 10px; font-weight: 800; text-align: center; }
.review-live { text-align: center; }
.demo-stars { display: block; margin: 10px 0 16px; color: var(--terra); font-size: 25px; letter-spacing: 2px; }
.call-screen { display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(165deg, #464c54, #131416); color: #fff; text-align: center; }
.call-screen .screen-kicker, .call-screen small { color: rgba(255,255,255,.65); }
.call-avatar { background: rgba(255,255,255,.15); }
.missed-pill { width: 110px; background: #ce5147; }
.campaign-list b { margin-top: 20px; padding-bottom: 6px; border-bottom: 1px solid #d9dce0; font-size: 13px; }
.campaign-list small { margin-top: 4px; }
.campaign-state { text-align: center; }
.launch-button { margin-top: 25px; }
.progress-ring { width: 86px; height: 86px; display: grid; place-items: center; margin: 0 auto 20px; border: 8px solid #e1e4e7; border-top-color: var(--terra); border-radius: 50%; color: var(--terra); font-size: 20px; font-weight: 800; transform: rotate(-25deg); }
.campaign-state .progress-ring + b { text-align: center; }
.seo-report-card { position: absolute; z-index: 1; top: 132px; right: 38px; width: 285px; padding: 26px; border: 8px solid #25272a; border-radius: 10px; background: #fff; box-shadow: 0 24px 45px rgba(15,15,14,.18); transform: rotate(6deg); }
.seo-report-card > span { color: var(--terra); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.seo-report-card > b { display: block; margin-top: 7px; font-size: 13px; }
.seo-report-card > small { color: var(--muted); font-size: 8px; }
.mini-chart { height: 115px; display: flex; align-items: end; gap: 8px; margin: 22px 0 14px; padding: 14px; background: #f0f2f4; }
.mini-chart i { flex: 1; height: 28%; background: #d8dbdf; }
.mini-chart i:nth-child(2) { height: 38%; }
.mini-chart i:nth-child(3) { height: 56%; }
.mini-chart i:nth-child(4) { height: 72%; }
.mini-chart i:nth-child(5) { height: 91%; background: var(--terra); }
.seo-state { text-align: center; }
.rank-number { display: block; color: #8d939c; font-size: 74px; font-weight: 800; line-height: 1; }
.rank-up { color: #38a169; }
.seo-state ul { list-style: none; display: grid; gap: 9px; text-align: left; }
.seo-state li { padding: 9px 9px 9px 27px; border-radius: 4px; background: #fff; box-shadow: 0 4px 12px rgba(15,15,14,.08); font-size: 10px; }
.seo-state li::before { content: '✓'; margin-left: -17px; margin-right: 7px; color: #38a169; font-weight: 800; }

@keyframes service-state-cycle {
  0%, 31% { opacity: 1; transform: translateY(0); }
  35%, 96% { opacity: 0; transform: translateY(-7px); }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes mascot-breathe {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

.trades-section { z-index: 4; padding: 150px 0 125px; background: var(--ink); color: #fff; }
.trades-section .section-title { font-size: 34px; }
.trade-carousel { position: relative; margin-top: 56px; }
.trade-window { overflow: hidden; }
.trade-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; transition: transform .35s ease; }
.trade-card:nth-child(n+7) { display: none; }
.trade-card { min-width: 0; overflow: hidden; border-radius: 4px; background: #fff; color: #111; }
.trade-card img { width: 100%; aspect-ratio: 1.7 / 1; object-fit: cover; }
.trade-card b { display: block; padding: 14px 10px 18px; text-align: center; font-size: 16px; }
.carousel-button { position: absolute; z-index: 3; top: 50%; width: 44px; height: 70px; border: 0; background: transparent; color: var(--terra-hot); font-size: 54px; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.carousel-button.prev { left: -52px; }
.carousel-button.next { right: -52px; }
.trades-cta { display: flex; justify-content: center; margin-top: 30px; }

.process-section { z-index: 3; padding: 130px 0 150px; background: var(--gray); }
.process-section .section-title { font-size: 34px; }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; margin-top: 65px; }
.steps::before { content: ''; position: absolute; top: 48px; left: 17%; right: 17%; border-top: 5px dashed #d5d6da; }
.step { position: relative; z-index: 1; text-align: center; }
.step-num { width: 96px; height: 96px; display: grid; place-items: center; margin: 0 auto 34px; border-radius: 50%; background: var(--terra); color: #fff; font-size: 34px; }
.step h3 { font-size: 20px; line-height: 1.35; }
.step p { max-width: 32ch; margin: 24px auto 0; font-size: 15px; line-height: 1.65; }

.why-section { z-index: 2; padding: 125px 0 145px; background: #fff; }
.why-section .section-title { max-width: 800px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 58px; }
.why-card { min-height: 160px; padding: 30px 24px; border-radius: 4px; background: var(--ink); color: #fff; box-shadow: 0 5px 10px rgba(15,15,14,.2); }
.why-card h3 { font-size: 18px; }
.why-card p { margin-top: 9px; color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.55; }
.research-section { padding: 95px 0; background: var(--gray); }
.research-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.eyebrow { color: var(--terra); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.research-head h2 { margin-top: 6px; font-size: 34px; letter-spacing: -.04em; }
.research-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.research-card { display: grid; grid-template-columns: 40% 1fr; min-height: 190px; overflow: hidden; border-radius: 5px; background: #fff; box-shadow: 0 3px 10px rgba(15,15,14,.08); }
.research-art { background: var(--ink); }
.research-copy { padding: 22px; }
.research-copy span { display: inline-block; padding: 3px 7px; border-radius: 99px; background: var(--terra); color: #fff; font-size: 9px; font-weight: 700; }
.research-copy h3 { margin-top: 11px; font-size: 16px; line-height: 1.25; }
.research-copy p { margin-top: 9px; color: var(--muted); font-size: 12px; }
.research-copy a { display: block; margin-top: 12px; color: var(--terra); font-size: 11px; font-weight: 700; text-align: right; }
.built-section { z-index: 1; padding: 95px 0 135px; background: var(--ink); color: #fff; text-align: center; }
.built-section h2 { max-width: 700px; margin: 0 auto; font-size: 42px; line-height: 1.25; letter-spacing: -.04em; }
.built-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 44px; margin-top: 42px; color: rgba(255,255,255,.7); font-weight: 700; }
.faq-section { padding: 130px 0 70px; background: var(--gray); }
.faq-section .section-title { font-size: 42px; }
.faq { max-width: 1080px; margin: 56px auto 0; display: grid; gap: 12px; }
.faq details { border: 1px solid #dcdfe2; border-radius: 4px; background: #fff; }
.faq summary { display: flex; justify-content: space-between; gap: 18px; padding: 18px; list-style: none; font-size: 16px; font-weight: 600; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '⌄'; }
.faq details[open] summary { background: var(--terra); color: #fff; }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p { padding: 20px; color: #484b50; font-size: 15px; line-height: 1.7; }
.talk-card { display: grid; grid-template-columns: 1fr .9fr; align-items: center; min-height: 400px; max-width: 1100px; margin: 70px auto 110px; padding: 60px 80px; border-radius: 6px; background: var(--ink); color: #fff; }
.talk-card h2 { font-size: 38px; line-height: 1.25; text-align: center; }
.talk-card p { max-width: 48ch; margin: 18px auto 0; color: var(--muted); text-align: center; }
.talk-card .button { display: flex; width: max-content; margin: 30px auto 0; }
.talk-card img { max-height: 320px; justify-self: center; }
.second-proof { padding: 70px 0 90px; background: var(--gray); }
.second-proof .section-title { margin-bottom: 50px; }

.site-footer { padding: 70px 0 34px; background: var(--ink); color: #fff; }
.footer-top { display: flex; align-items: center; justify-content: flex-end; gap: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr .8fr 2fr; gap: 48px; padding-top: 48px; }
.footer-grid h3 { font-size: 25px; }
.footer-grid h4 { font-size: 14px; }
.footer-grid a { display: block; margin-top: 12px; color: rgba(255,255,255,.72); font-size: 13px; }
.footer-products { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; margin-top: 46px; color: rgba(255,255,255,.55); font-size: 11px; }

/* Modal demos: matches Stone's white overlay + large video frame */
.demo-dialog { width: min(780px, calc(100vw - 32px)); max-height: calc(100vh - 48px); margin: auto; padding: 0; border: 0; border-radius: 5px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.demo-dialog::backdrop { background: rgba(15,15,14,.72); }
.dialog-inner { position: relative; padding: 56px 34px 34px; }
.dialog-close { position: absolute; top: 18px; right: 20px; width: 40px; height: 40px; border: 0; background: transparent; font-size: 36px; line-height: 1; cursor: pointer; }
.dialog-title { margin-bottom: 24px; font-size: 42px; line-height: 1.2; text-align: center; letter-spacing: -.04em; }
.demo-screen { position: relative; min-height: 410px; overflow: hidden; border: 10px solid #222329; border-radius: 9px; background: #eef0f2; }
.demo-scene { position: absolute; inset: 0; display: none; padding: 28px; align-content: center; animation: scene-in .35s ease both; }
.demo-scene.is-active { display: grid; }
.demo-scene img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.demo-scene.site-shot { padding: 0; }
.demo-scene .scene-card { max-width: 520px; margin: auto; padding: 24px; border-radius: 8px; background: #fff; box-shadow: 0 16px 44px rgba(15,15,14,.2); }
.demo-scene .scene-card h3 { font-size: 24px; }
.demo-scene .scene-card p { margin-top: 10px; color: #656a72; }
.demo-form { display: grid; gap: 10px; margin-top: 18px; }
.demo-form span { display: block; padding: 12px; border: 1px solid #d4d7db; border-radius: 4px; color: #767b83; font-size: 13px; }
.demo-form span:last-child { background: var(--terra); color: #fff; text-align: center; font-weight: 700; }
.dialog-controls { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.dialog-controls button { border: 0; background: transparent; font-size: 13px; font-weight: 700; cursor: pointer; }
.dialog-track { flex: 1; height: 5px; overflow: hidden; border-radius: 99px; background: #dfe1e4; }
.dialog-progress { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--terra); transition: width .3s ease; }
.dialog-count { color: var(--muted); font-size: 12px; }
@keyframes scene-in { from { opacity: 0; transform: translateY(8px); } }

/* Dedicated feature pages */
.detail-page, .pricing-page { background: var(--gray); }
.detail-hero { padding: 76px 0 20px; background: var(--gray); }
.detail-hero h1, .pricing-hero h1 { font-size: 50px; line-height: 1.2; text-align: center; letter-spacing: -.04em; }
.detail-top { display: grid; grid-template-columns: 360px 1fr; gap: 16px; margin-top: 42px; align-items: stretch; }
.stat-stack { display: grid; gap: 24px; }
.stat-card { min-height: 150px; padding: 24px 16px; border-radius: 6px; background: #fff; }
.stat-card b { display: block; color: var(--terra); font-size: 46px; line-height: 1; }
.stat-card p { margin-top: 13px; font-size: 18px; line-height: 1.55; }
.detail-demo { padding: 20px; border-radius: 6px; background: #fff; text-align: center; }
.detail-demo h2 { font-size: 36px; }
.detail-demo .demo-screen { min-height: 390px; margin-top: 18px; }
.detail-features { padding: 95px 0 130px; background: var(--ink); color: #fff; }
.detail-features h2 { margin-bottom: 44px; font-size: 44px; text-align: center; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.detail-card { min-height: 345px; padding: 42px 40px; border-radius: 6px; background: #fff; color: var(--ink); }
.detail-card-head { display: grid; grid-template-columns: 70px 1fr; gap: 22px; align-items: center; }
.detail-card-head img { width: 70px; height: 70px; }
.detail-card h3 { color: var(--terra); font-size: 28px; line-height: 1.35; }
.detail-card p { margin-top: 26px; font-size: 18px; line-height: 1.65; }
.detail-cta-wrap { padding: 90px 0 145px; background: var(--gray); }
.detail-cta { display: grid; grid-template-columns: 1fr 310px; align-items: center; min-height: 420px; padding: 55px 72px; border-radius: 6px; background: var(--ink); color: #fff; }
.detail-cta h2 { font-size: 40px; line-height: 1.35; text-align: center; }
.detail-cta p { margin-top: 18px; color: var(--muted); text-align: center; }
.detail-cta .button { width: max-content; margin: 28px auto 0; }
.detail-cta img { max-height: 320px; justify-self: center; }
.detail-process { padding: 105px 0 145px; background: #fff; }
.detail-process .section-title { font-size: 34px; }
.detail-proof { padding: 100px 0; background: var(--gray); }

/* Pricing page */
.pricing-hero { padding: 80px 0 120px; background: var(--gray); }
.price-card { width: min(512px, 100%); margin: 50px auto 0; padding: 52px 54px 44px; border-radius: 12px; background: var(--terra); color: #fff; text-align: center; box-shadow: var(--shadow); }
.price-card .popular { color: var(--ink); font-size: 23px; font-weight: 800; text-transform: uppercase; text-decoration: underline; text-underline-offset: 9px; }
.price-card h2 { margin-top: 26px; font-size: 31px; }
.price { margin-top: 17px; font-size: 44px; font-weight: 700; }
.price-card ul { list-style: none; margin-top: 28px; }
.price-card li { padding: 17px 4px; border-top: 1px solid rgba(255,255,255,.5); font-size: 17px; font-weight: 700; }
.price-card .button { margin-top: 24px; background: #fff; color: var(--ink); }
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 80px; }
.compare-column h2 { padding: 22px; border-radius: 8px; background: var(--ink); color: #fff; font-size: 21px; text-align: center; }
.compare-column details { margin-top: 16px; background: #fff; }
.compare-column summary { display: flex; justify-content: space-between; padding: 16px; list-style: none; cursor: pointer; }
.compare-column p { padding: 0 16px 18px; color: #656a72; }

@media (max-width: 1180px) {
  .nav-links { gap: 18px; font-size: 15px; }
  .nav-actions { gap: 20px; }
  .nav-phone { display: none; }
  .product-menu-grid { gap: 22px; }
  .hero-grid { gap: 30px; }
  .trade-track { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .site-nav { height: 82px; }
  .nav-inner { justify-content: space-between; }
  .brand { min-width: auto; }
  .brand img { width: 38px; height: 56px; }
  .brand-word { font-size: 19px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: grid; }
  .hero, .hero-grid { min-height: 642px; }
  .hero-grid { display: block; padding: 56px 0 48px; }
  .hero-copy { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.18); }
  .hero h1 { max-width: 316px; font-size: 28px; line-height: 1.2; letter-spacing: -.045em; }
  .hero-sub { max-width: 335px; margin-top: 28px; font-size: 12px; line-height: 1.45; }
  .hero-action { gap: 14px; margin-top: 24px; }
  .avatars { width: 118px; height: 30px; }
  .button { min-height: 46px; padding: 11px 20px; font-size: 14px; }
  .hero-ratings { gap: 12px; margin-top: 36px; }
  .rating { grid-template-columns: 25px auto; gap: 7px; padding-right: 10px; }
  .rating-logo { width: 25px; height: 25px; font-size: 12px; }
  .rating b, .rating .stars { font-size: 10px; }
  .angled::after { bottom: -32px; height: 33px; }
  .section-title { font-size: 28px; line-height: 1.3; }
  .proof-section { padding: 36px 0 72px; }
  .proof-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 34px; }
  .proof-card { grid-template-columns: 1fr; }
  .proof-image { min-height: 240px; }
  .systems { padding: 95px 0 15px; }
  .systems > .wrap > .section-title { margin-bottom: 45px; }
  .feature-row { min-height: auto; grid-template-columns: 1fr; gap: 28px; padding: 55px 0 110px; }
  .feature-copy h3 { font-size: 26px; }
  .feature-intro { font-size: 13px; }
  .feature-points li, .feature-points b { font-size: 11px; }
  .product-visual { min-height: 460px; }
  .service-visual { min-height: 540px; }
  .service-visual::before { inset: 6% 0 12%; }
  .visual-orbit { top: 70px; width: 350px; height: 350px; }
  .service-mascot { bottom: 58px; width: 78px; }
  .service-mascot.mascot-left { left: 0; }
  .service-mascot.mascot-right { right: 0; }
  .visual-caption { bottom: 13px; max-width: 90%; padding: 9px 12px; }
  .service-phone { top: 46px; width: 192px; height: 404px; padding: 7px; border-radius: 38px; }
  .device-notch { top: 15px; width: 62px; height: 16px; }
  .phone-screen { padding: 50px 14px 19px; border-radius: 32px; }
  .visual-state { inset: 50px 14px 19px; }
  .phone-left { left: 35px; }
  .phone-right { right: 35px; }
  .phone-back { top: 73px; }
  .phone-back.phone-left { left: 2px; }
  .phone-back.phone-right { right: 2px; }
  .phone-screen b { font-size: 14px; }
  .phone-screen p { font-size: 10px; }
  .screen-kicker { margin-bottom: 10px; font-size: 8px; }
  .service-laptop { top: 115px; left: 3%; width: 94%; padding: 6px 6px 12px; border-width: 6px; }
  .browser-bar { height: 19px; font-size: 6px; }
  .site-state { right: 8px; bottom: 8px; width: 145px; padding: 9px; }
  .quote-state, .success-state { width: 175px; padding: 13px; }
  .service-phone--mini { top: 248px; right: 2px; width: 118px; height: 245px; padding: 5px; border-radius: 25px; }
  .service-phone--mini .device-notch { top: 12px; width: 42px; height: 11px; }
  .service-phone--mini .phone-screen { padding: 34px 9px 13px; border-radius: 20px; }
  .service-phone--mini .visual-state { inset: 34px 9px 13px; }
  .service-visual--website .service-mascot { bottom: 50px; }
  .seo-report-card { top: 96px; right: 7px; width: 205px; padding: 16px; border-width: 6px; }
  .mini-chart { height: 85px; margin: 15px 0 9px; padding: 9px; }
  .rank-number { font-size: 56px; }
  .laptop { width: 92%; border-width: 7px; border-bottom-width: 12px; }
  .phone { width: 230px; min-height: 450px; border-width: 8px; border-radius: 44px; }
  .phone-card { margin-top: 90px; }
  .campaign-stage, .seo-stage { width: 96%; padding: 14px; border-width: 7px; }
  .campaign-options { grid-template-columns: 1fr; }
  .trades-section { padding: 110px 0 90px; }
  .trades-section .section-title { font-size: 28px; }
  .trade-track { grid-template-columns: 1fr; }
  .trade-card:nth-child(n+3) { display: none; }
  .carousel-button.prev { left: -12px; }
  .carousel-button.next { right: -12px; }
  .process-section { padding: 90px 0 110px; }
  .process-section .section-title { font-size: 25px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .step-num { width: 72px; height: 72px; margin-bottom: 18px; font-size: 28px; }
  .step p { font-size: 12px; }
  .why-section { padding: 85px 0 100px; }
  .why-grid { grid-template-columns: 1fr; gap: 8px; }
  .why-card { min-height: 126px; padding: 24px 20px; }
  .research-section { padding: 70px 0; }
  .research-head { display: block; }
  .research-head .button { margin-top: 20px; }
  .research-grid { grid-template-columns: 1fr; }
  .research-card { grid-template-columns: 1fr; }
  .research-art { min-height: 130px; }
  .built-section { padding: 70px 0 105px; }
  .built-section h2 { font-size: 26px; }
  .faq-section { padding: 90px 0 40px; }
  .faq-section .section-title { font-size: 28px; }
  .faq summary { font-size: 12px; }
  .talk-card { grid-template-columns: 1fr; min-height: 330px; margin: 50px auto 80px; padding: 42px 24px; }
  .talk-card h2 { font-size: 27px; }
  .talk-card img { display: none; }
  .second-proof { padding: 55px 0 80px; }
  .footer-top { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-products { grid-column: 1 / -1; }
  .demo-dialog { width: calc(100vw - 20px); }
  .dialog-inner { padding: 54px 12px 22px; }
  .dialog-title { font-size: 28px; }
  .demo-screen { min-height: 300px; border-width: 7px; }
  .demo-scene { padding: 15px; }
  .detail-hero { padding: 34px 0 78px; }
  .detail-hero h1, .pricing-hero h1 { font-size: 27px; }
  .detail-top { grid-template-columns: 1fr; }
  .stat-stack { order: 2; }
  .stat-card:not(:last-child) { display: none; }
  .detail-demo h2 { font-size: 23px; }
  .detail-demo .demo-screen { min-height: 260px; }
  .detail-features { padding: 70px 0 95px; }
  .detail-features h2 { font-size: 28px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { min-height: 0; padding: 34px; }
  .detail-card-head { grid-template-columns: 54px 1fr; }
  .detail-card-head img { width: 54px; height: 54px; }
  .detail-card h3 { font-size: 22px; }
  .detail-card p { font-size: 16px; }
  .detail-cta-wrap { padding: 55px 0 95px; }
  .detail-cta { grid-template-columns: 1fr; min-height: 330px; padding: 45px 24px; }
  .detail-cta h2 { font-size: 27px; }
  .detail-cta img { display: none; }
  .detail-process { padding: 75px 0 105px; }
  .detail-proof { padding: 75px 0; }
  .pricing-hero { padding: 50px 0 90px; }
  .price-card { padding: 42px 24px 34px; }
  .comparison { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .visual-state { animation: none !important; opacity: 0; }
  .visual-state.state-three { opacity: 1; }
  .phone-screen .visual-state.state-three { transform: translateY(0); }
  .website-screen .success-state { transform: translate(-50%, -50%); }
  .service-mascot { animation: none !important; }
}

/* ===== Comic layer (v10) ===== */
.video-loop { position: relative; border: 3px solid #0f0f0e; border-radius: 18px; box-shadow: 8px 8px 0 #0f0f0e; overflow: hidden; background: #0f0f0e; }
.product-visual.video-loop { min-height: 0; aspect-ratio: 16 / 9; display: block; scroll-margin-top: 120px; }
.product-visual.video-loop video { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.product-visual.video-loop video::-webkit-media-controls-fullscreen-button,
.product-visual.video-loop video::-webkit-media-controls-picture-in-picture-button { display: none !important; }
.product-visual.video-loop.is-demo-active { box-shadow: 8px 8px 0 #0f0f0e, 0 0 0 5px var(--terra-hot); }
.product-visual.video-loop video:focus-visible { outline: 4px solid var(--terra-hot); outline-offset: -7px; }
.feature-row:nth-child(odd) .video-loop { transform: rotate(-1deg); }
.feature-row:nth-child(even) .video-loop { transform: rotate(1deg); }
@media (prefers-reduced-motion: reduce) { .feature-row .video-loop { transform: none; } }
.comic-panel-img { border: 3px solid #0f0f0e; border-radius: 16px; box-shadow: 8px 8px 0 rgba(15,15,14,.85); transform: rotate(1.5deg); background: #faf9f5; }
.halftone-band { background-image: radial-gradient(rgba(15,15,14,.07) 1.2px, transparent 1.2px); background-size: 16px 16px; }

/* ===== Comic UI layer v2 — site-wide, elite-restrained (v11) ===== */
/* tactile comic buttons */
.button, .nav-cta { border: 2px solid #0f0f0e !important; box-shadow: 4px 4px 0 #0f0f0e; transition: transform .12s ease, box-shadow .12s ease; }
.button:hover, .nav-cta:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #0f0f0e; }
.site-nav .nav-cta { box-shadow: 3px 3px 0 rgba(15,15,14,.85); }
/* ink panels — light surfaces */
.detail-card, .stat-card, .proof-card, .step, .research-card, .trade-card, .menu-panel, .about-panel, .price-card, .talk-card {
  border: 2px solid #0f0f0e; box-shadow: 6px 6px 0 rgba(15,15,14,.9); border-radius: 16px; }
/* ink panels — dark surfaces */
.why-card { border: 2px solid rgba(250,249,245,.22); box-shadow: 6px 6px 0 rgba(0,0,0,.55); border-radius: 16px; }
.video-demo, .demo-screen { border: 2px solid #0f0f0e; box-shadow: 6px 6px 0 rgba(0,0,0,.5); border-radius: 16px; overflow: hidden; }
.proof-image { border: 2px solid #0f0f0e; box-shadow: 5px 5px 0 rgba(15,15,14,.85); border-radius: 12px; overflow: hidden; }
/* comic underline on section titles */
.section-title { position: relative; }
.section-title::after { content: ''; display: block; width: 86px; height: 7px; margin: 14px auto 0; background: #cd5e45; border: 2px solid #0f0f0e; border-radius: 5px; transform: rotate(-1.2deg); }
/* halftone texture on key money surfaces */
.price-card, .talk-card { position: relative; overflow: hidden; }
.price-card::before, .talk-card::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(15,15,14,.05) 1.2px, transparent 1.2px); background-size: 16px 16px; }
.price-card > *, .talk-card > * { position: relative; z-index: 1; }
/* sticker band */
.included-band .wrap { border: 2px solid #0f0f0e; box-shadow: 4px 4px 0 rgba(15,15,14,.85); border-radius: 12px; }
@media (prefers-reduced-motion: reduce) { .button:hover, .nav-cta:hover { transform: none; } }

/* ===== Comic layer v3 — connector fix and accents ===== */
/* process steps: kill the broken dashed line; comic circles carry the sequence */
.steps::before { display: none; }
.step { background: #fff; padding: 36px 26px 32px; }
.step-num { border: 3px solid #0f0f0e; box-shadow: 5px 5px 0 rgba(15,15,14,.9); }
/* speech-balloon tail on the schedule/talk card (outlined, comic-correct) */
.talk-card { overflow: visible; }
.talk-card::before { border-radius: inherit; }
.talk-card::after { content: ''; position: absolute; left: 64px; bottom: -26px; width: 0; height: 0; z-index: 2;
  border-left: 30px solid transparent; border-right: 6px solid transparent; border-top: 26px solid #0f0f0e; }
.talk-card .tail-fill, .talk-card::marker { display: none; }
/* $0 SETUP sticker on the price card (locked fact, comic sticker) */
.price-card { overflow: visible; }
.price-card::after { content: '$0 SETUP'; position: absolute; top: -16px; right: -12px; z-index: 3;
  background: #cd5e45; color: #fff; font-weight: 800; font-size: 14px; letter-spacing: .06em;
  padding: 9px 15px; border: 2px solid #0f0f0e; border-radius: 11px; transform: rotate(5deg);
  box-shadow: 4px 4px 0 rgba(15,15,14,.9); }
.price-card::before { border-radius: inherit; }

.button-outline { background: transparent !important; color: #faf9f5 !important; }
.button-outline:hover { background: rgba(250,249,245,.1) !important; }

/* ===== v14: clean, contained comic hero ===== */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(115deg, rgba(205, 94, 69, .14), transparent 36%);
  pointer-events: none;
}
.hero::after, .hero-halftone { display: none; }
.hero .hero-grid {
  position: relative;
  z-index: 1;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr);
  gap: 64px;
}
.hero-copy {
  padding-left: 34px;
  border-left: 2px solid var(--terra);
  transform: none;
}
.hero-kicker {
  display: block;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--terra-hot);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: none;
}
.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(52px, 4.85vw, 70px);
  line-height: 1.08;
  animation: none;
}
.hero-sub {
  max-width: 720px;
  margin-top: 24px;
  color: var(--cream);
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
  animation: none;
}
.hero-description {
  max-width: 690px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}
.hero-action {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  animation: none;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-action .button { animation: none; }
.hero-art {
  position: relative;
  justify-self: end;
  width: min(430px, 100%);
  overflow: hidden;
  border: 3px solid var(--cream);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 12px 12px 0 var(--terra);
  transform: rotate(1deg);
}
.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 800px) {
  .hero, .hero .hero-grid { min-height: 0; }
  .hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 58px;
  }
  .hero-copy { padding-left: 0; border-left: 0; }
  .hero-kicker { margin-bottom: 16px; font-size: 11px; letter-spacing: .13em; }
  .hero-copy h1 {
    max-width: 355px;
    font-size: clamp(36px, 10.3vw, 42px);
    line-height: 1.05;
  }
  .hero-sub { max-width: 350px; margin-top: 20px; font-size: 18px; line-height: 1.35; }
  .hero-description { max-width: 350px; margin-top: 14px; font-size: 14px; line-height: 1.55; }
  .hero-action { gap: 12px; margin-top: 24px; }
  .hero-buttons { display: grid; width: min(100%, 350px); }
  .hero-buttons .button { width: 100%; }
  .hero-art {
    display: block;
    justify-self: center;
    width: min(300px, calc(100vw - 64px));
    border-width: 2px;
    box-shadow: 7px 7px 0 var(--terra);
    transform: none;
  }
}

/* ===== v15: RSP-owned names, restrained comic polish, and shared booking page ===== */
.comic-section-tag {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 18px;
  color: var(--terra);
  font-family: var(--comic-font);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.comic-section-tag--light { color: var(--terra-hot); }
.feature-badge {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 6px 10px 5px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--terra);
  box-shadow: 3px 3px 0 var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

/* Small ink cues carried across navigation, sections, and detail pages. */
.menu-title::after {
  content: '';
  display: block;
  width: 68px;
  height: 5px;
  margin-top: 10px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--terra);
  transform: rotate(-1.5deg);
}
.product-link img {
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(15,15,14,.9);
}
.feature-copy h3::before {
  content: '//';
  display: block;
  margin-bottom: 6px;
  color: var(--terra);
  font-family: var(--comic-font);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: .8;
}
.systems, .research-section, .detail-hero, .pricing-hero { position: relative; isolation: isolate; }
.systems::before, .research-section::before, .detail-hero::before, .pricing-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  pointer-events: none;
  background-image: radial-gradient(rgba(15,15,14,.08) 1.35px, transparent 1.35px);
  background-size: 15px 15px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}
.systems::before { top: 90px; left: 0; }
.research-section::before, .detail-hero::before, .pricing-hero::before { top: 0; right: 0; transform: rotate(180deg); }
.why-card { position: relative; }
.why-card::before {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 7px;
  border: 1px solid var(--cream);
  background: var(--terra);
  transform: rotate(-10deg);
}
.why-card:nth-child(3n+1) { transform: rotate(-.35deg); }
.why-card:nth-child(3n+2) { transform: translateY(-3px) rotate(.25deg); }
.why-card:nth-child(3n) { transform: rotate(.35deg); }
.detail-features > .wrap > h2::after {
  content: '';
  display: block;
  width: 86px;
  height: 7px;
  margin: 14px auto 0;
  border: 2px solid var(--cream);
  border-radius: 5px;
  background: var(--terra);
  transform: rotate(-1.2deg);
}
.detail-cta {
  position: relative;
  overflow: visible;
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--terra);
}
.detail-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(rgba(250,249,245,.055) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
}
.detail-cta::after {
  content: '';
  position: absolute;
  left: 58px;
  bottom: -24px;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 25px solid var(--terra);
  border-right: 7px solid transparent;
  border-left: 28px solid transparent;
}
.detail-cta > * { position: relative; z-index: 1; }
.faq details {
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(15,15,14,.85);
  overflow: hidden;
}
.site-footer {
  position: relative;
  background-image:
    radial-gradient(rgba(250,249,245,.045) 1.1px, transparent 1.1px),
    linear-gradient(var(--ink), var(--ink));
  background-size: 17px 17px, auto;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(-55deg, var(--terra) 0 18px, var(--cream) 18px 24px, var(--ink) 24px 34px);
}
.footer-grid h4 {
  color: var(--terra-hot);
  font-family: var(--comic-font);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .06em;
}

/* Built-with band: one intentional display-font moment, styled as tool-case stickers. */
.built-section {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(rgba(250,249,245,.055) 1.25px, transparent 1.25px),
    linear-gradient(var(--ink), var(--ink));
  background-size: 17px 17px, auto;
}
.built-section h2 {
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
}
.built-logos { gap: 20px 24px; }
.built-logos span {
  display: inline-flex;
  align-items: center;
  min-height: 49px;
  padding: 8px 15px 6px;
  border: 2px solid var(--cream);
  border-radius: 5px;
  background: var(--ink-2);
  box-shadow: 4px 4px 0 var(--terra);
  color: var(--cream);
  font-family: var(--comic-font);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .055em;
  line-height: 1;
}
.built-logos span:nth-child(odd) { transform: rotate(-.75deg); }
.built-logos span:nth-child(even) { transform: rotate(.7deg); }

/* /grow/: shared RSP comic shell instead of the retired standalone funnel skin. */
.grow-page { background: var(--cream); }
.grow-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 110px;
  background: var(--cream);
}
.grow-hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(205,94,69,.17), transparent 28%),
    radial-gradient(rgba(15,15,14,.065) 1.2px, transparent 1.2px);
  background-size: auto, 17px 17px;
  mask-image: linear-gradient(90deg, transparent 0, #000 38%, #000 100%);
}
.grow-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -190px;
  width: 560px;
  height: 560px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 28px var(--terra), 0 0 0 31px var(--ink);
  opacity: .12;
}
.grow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 74px;
  align-items: center;
}
.grow-copy .comic-section-tag { margin: 0 0 20px; }
.grow-copy h1 {
  max-width: 790px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.grow-lead {
  max-width: 650px;
  margin-top: 24px;
  color: #4d4b47;
  font-size: 18px;
  line-height: 1.7;
}
.grow-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.grow-actions .button--ink { background: var(--ink); }
.grow-actions .button--ink:hover { background: #2a2a28; }
.grow-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 27px;
  list-style: none;
  color: #5e5c57;
  font-size: 13px;
  font-weight: 700;
}
.grow-trust li::before { content: '✓'; margin-right: 7px; color: var(--terra); }
.grow-call-card {
  position: relative;
  min-height: 610px;
  padding: 42px 44px 38px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 13px 13px 0 var(--terra);
  color: var(--cream);
  text-align: center;
  transform: rotate(.65deg);
}
.grow-call-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(rgba(250,249,245,.055) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
}
.grow-call-card::after {
  content: '';
  position: absolute;
  left: 54px;
  bottom: -32px;
  border-top: 34px solid var(--terra);
  border-right: 8px solid transparent;
  border-left: 35px solid transparent;
}
.grow-call-card > * { position: relative; z-index: 1; }
.grow-burst {
  position: absolute;
  top: -24px;
  right: -20px;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  padding: 14px;
  border: 3px solid var(--ink);
  background: var(--terra);
  clip-path: polygon(50% 0,61% 18%,79% 7%,79% 28%,100% 29%,84% 47%,99% 62%,78% 67%,82% 88%,61% 80%,50% 100%,39% 80%,18% 88%,22% 67%,1% 62%,16% 47%,0 29%,21% 28%,21% 7%,39% 18%);
  color: #fff;
  font-family: var(--comic-font);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .045em;
  line-height: .9;
  transform: rotate(8deg);
}
.grow-mascot {
  width: 190px;
  max-height: 245px;
  margin: 0 auto 12px;
  object-fit: contain;
  filter: drop-shadow(7px 9px 0 rgba(205,94,69,.85));
}
.grow-card-kicker {
  color: var(--terra-hot);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.grow-call-card h2 { margin-top: 9px; font-size: 33px; line-height: 1.15; }
.grow-call-card p:not(.grow-card-kicker) { max-width: 40ch; margin: 14px auto 0; color: rgba(250,249,245,.68); font-size: 14px; }
.grow-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 27px; }
.grow-card-actions .button { min-height: 52px; padding: 12px 16px; font-size: 14px; }
.grow-card-actions .button:last-child { border-color: var(--cream) !important; background: transparent; color: var(--cream); }

.grow-route { padding: 105px 0 120px; background: var(--ink); color: var(--cream); }
.grow-route .section-title { max-width: 820px; margin: 0 auto; }
.grow-route .section-title::after { border-color: var(--cream); }
.grow-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 62px; }
.grow-route-card {
  position: relative;
  min-height: 260px;
  padding: 34px 30px;
  border: 2px solid var(--cream);
  border-radius: 15px;
  background: var(--ink-2);
  box-shadow: 7px 7px 0 var(--terra);
}
.grow-route-card span {
  color: var(--terra-hot);
  font-family: var(--comic-font);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.grow-route-card h3 { margin-top: 21px; font-size: 21px; }
.grow-route-card p { margin-top: 11px; color: rgba(250,249,245,.67); font-size: 14px; line-height: 1.65; }
.grow-proof { padding: 100px 0 120px; background: var(--gray); }
.grow-proof .proof-grid { margin-top: 52px; }
.grow-mobile-contact { display: none; }

@media (max-width: 900px) {
  .grow-grid { grid-template-columns: 1fr; gap: 56px; }
  .grow-copy { text-align: center; }
  .grow-copy .comic-section-tag { margin-inline: auto; }
  .grow-copy h1, .grow-lead { margin-inline: auto; }
  .grow-actions, .grow-trust { justify-content: center; }
  .grow-call-card { width: min(570px, 100%); margin-inline: auto; }
  .grow-route-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .comic-section-tag { font-size: 16px; }
  .feature-copy h3::before { font-size: 18px; }
  .why-card:nth-child(n) { transform: none; }
  .built-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .built-logos span { justify-content: center; min-height: 44px; padding-inline: 9px; font-size: 19px; }
  .grow-hero { padding: 54px 0 78px; }
  .grow-copy h1 { font-size: clamp(38px, 10.6vw, 48px); }
  .grow-lead { font-size: 16px; }
  .grow-actions { display: grid; }
  .grow-actions .button { width: 100%; }
  .grow-call-card { min-height: 0; padding: 38px 23px 31px; border-width: 3px; box-shadow: 8px 8px 0 var(--terra); transform: none; }
  .grow-burst { top: -18px; right: -10px; width: 84px; height: 84px; font-size: 20px; }
  .grow-mascot { width: 148px; max-height: 190px; }
  .grow-call-card h2 { font-size: 27px; }
  .grow-card-actions { grid-template-columns: 1fr; }
  .grow-route, .grow-proof { padding: 78px 0 92px; }
  .grow-route-grid { margin-top: 44px; }
  .grow-route-card { min-height: 0; }
  .grow-mobile-contact {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 2px solid var(--cream);
    background: var(--ink);
  }
  .grow-mobile-contact a { min-height: 46px; display: grid; place-items: center; border: 2px solid var(--cream); color: var(--cream); font-weight: 800; }
  .grow-mobile-contact a:last-child { border-color: var(--terra); background: var(--terra); }
  .grow-page .site-footer { padding-bottom: 110px; }
}

/* ===== v16: RSP Booked Job Path and evidence-first comic components ===== */
.section-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: #5a5853;
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}

.hero-art { overflow: hidden; }
.hero-art img { display: block; width: 100%; height: auto; }
.hero-art figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 15px 11px;
  border: 2px solid var(--cream);
  border-radius: 5px;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--terra);
  color: var(--cream);
  font-family: var(--comic-font);
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-.6deg);
}
.hero-proof-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.hero-proof-rail li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(250,249,245,.94);
  box-shadow: 2px 2px 0 var(--terra);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .025em;
}
.hero-proof-rail b { margin-right: 4px; color: var(--terra); font-size: 14px; }

.leak-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 126px;
  background: var(--gray);
}
.leak-section::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(205,94,69,.08) 68% 70%, transparent 70%),
    radial-gradient(rgba(15,15,14,.08) 1.2px, transparent 1.2px);
  background-size: auto, 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 45%, #000);
}
.leak-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 55px;
}
.leak-card {
  position: relative;
  min-height: 305px;
  padding: 58px 25px 27px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .3s ease-out;
}
.leak-card:nth-child(odd) { transform: rotate(-.35deg); }
.leak-card:nth-child(even) { transform: translateY(8px) rotate(.35deg); }
.leak-card:hover { transform: translate(-2px,-3px) rotate(0); }
.leak-card img { width: 54px; height: 54px; padding: 8px; border: 2px solid var(--ink); border-radius: 8px; background: #fff; }
.leak-card h3 { margin-top: 20px; font-size: 20px; line-height: 1.18; }
.leak-card p { margin-top: 11px; color: #5b5954; font-size: 13px; line-height: 1.65; }
.leak-card__stamp {
  position: absolute;
  top: 17px;
  right: 14px;
  padding: 7px 10px 5px;
  border: 2px solid var(--ink);
  background: var(--terra);
  box-shadow: 3px 3px 0 var(--ink);
  color: #fff;
  font-family: var(--comic-font);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .07em;
  line-height: 1;
  transform: rotate(4deg);
}

.job-path {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: var(--ink);
  color: var(--cream);
}
.job-path::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(205,94,69,.27), transparent 23%),
    radial-gradient(rgba(250,249,245,.055) 1.2px, transparent 1.2px);
  background-size: auto, 17px 17px;
}
.job-path .wrap { position: relative; }
.job-path__head {
  display: grid;
  grid-template-columns: minmax(0,1fr) 240px;
  gap: 46px;
  align-items: center;
}
.job-path__head .comic-section-tag { margin: 0 0 19px; color: var(--terra-hot); text-align: left; }
.job-path__head .section-title { margin: 0; color: var(--cream); text-align: left; }
.job-path__head > div > p:last-child { max-width: 670px; margin-top: 18px; color: rgba(250,249,245,.7); font-size: 16px; }
.job-path__guide { display: grid; grid-template-columns: 94px 1fr; align-items: center; margin: 0; }
.job-path__guide img { width: 94px; height: 140px; object-fit: contain; filter: drop-shadow(5px 6px 0 rgba(205,94,69,.8)); }
.job-path__guide figcaption {
  position: relative;
  padding: 15px 13px;
  border: 2px solid var(--cream);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}
.job-path__guide figcaption::before { content: ''; position: absolute; left: -13px; bottom: 20px; border-top: 10px solid transparent; border-right: 13px solid var(--cream); border-bottom: 5px solid transparent; }
.job-path__strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 58px 0 0;
  padding: 0 0 10px;
  list-style: none;
}
.job-panel {
  position: relative;
  min-width: 0;
  min-height: 350px;
  padding: 54px 17px 22px;
  border: 3px solid var(--cream);
  border-radius: 10px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--terra);
  color: var(--ink);
  transition: transform .3s ease-out;
}
.job-panel:hover { transform: translateY(-4px); }
.job-panel::after {
  content: '›';
  position: absolute;
  z-index: 3;
  top: 48%;
  right: -19px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-family: var(--comic-font);
  font-size: 24px;
  line-height: 1;
}
.job-panel:last-child::after { display: none; }
.job-panel--finish { background: #fff2ec; }
.job-panel__number {
  position: absolute;
  top: 14px;
  left: 15px;
  color: var(--terra);
  font-family: var(--comic-font);
  font-size: 26px;
  line-height: 1;
}
.job-panel > img { display: block; width: 46px; height: 46px; padding: 7px; border: 2px solid var(--ink); border-radius: 7px; background: #fff; }
.job-panel h3 { min-height: 48px; margin-top: 17px; font-size: 17px; line-height: 1.2; }
.job-panel > p { margin-top: 13px; color: #625f59; font-size: 11px; line-height: 1.55; }
.search-micro-ui, .result-micro-ui, .proof-micro-ui, .call-micro-ui, .thread-micro-ui, .booking-micro-ui {
  display: grid;
  gap: 5px;
  min-height: 78px;
  margin-top: 14px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-size: 9px;
  line-height: 1.35;
}
.search-micro-ui { grid-template-columns: 1fr auto; align-items: center; min-height: 40px; border-radius: 999px; }
.search-micro-ui b { color: var(--terra); font-size: 19px; }
.result-micro-ui b, .proof-micro-ui b { font-size: 10px; }
.result-micro-ui span { color: #76726b; }
.proof-micro-ui span { color: var(--terra); letter-spacing: .05em; }
.call-micro-ui { align-content: center; background: var(--ink); color: #fff; text-align: center; }
.call-micro-ui b { color: var(--terra-hot); font-family: var(--comic-font); font-size: 21px; letter-spacing: .08em; }
.thread-micro-ui span { width: 90%; padding: 6px; border-radius: 7px; background: #ecebe7; }
.thread-micro-ui span:last-child { justify-self: end; background: var(--terra); color: #fff; }
.booking-micro-ui { align-content: center; }
.booking-micro-ui b { color: var(--terra); font-size: 12px; }
.booking-micro-ui em { color: #6c6963; font-style: normal; }
.job-path__note { max-width: 900px; margin: 30px auto 0; color: rgba(250,249,245,.55); font-size: 11px; line-height: 1.6; text-align: center; }

.proof-label {
  display: inline-flex;
  width: max-content;
  padding: 6px 9px 5px;
  border: 2px solid var(--ink);
  background: var(--terra);
  box-shadow: 2px 2px 0 var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}
.proof-section__cta { margin-top: 42px; text-align: center; }

.stage-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 38px auto 76px;
  padding: 0;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--terra);
  list-style: none;
}
.stage-rail li { position: relative; display: flex; gap: 10px; align-items: center; min-height: 66px; padding: 14px 18px; border-right: 2px solid var(--ink); }
.stage-rail li:last-child { border-right: 0; }
.stage-rail li:not(:last-child)::after { content: '›'; position: absolute; z-index: 2; right: -10px; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--ink); color: #fff; }
.stage-rail span { color: var(--terra); font-family: var(--comic-font); font-size: 24px; }
.stage-rail b { font-size: 12px; text-transform: uppercase; }
.trades-section .section-lead, .process-section .section-lead { margin-bottom: 8px; }

.offer-scope {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0 132px;
  background: var(--ink);
  color: var(--cream);
}
.offer-scope::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 72%, rgba(205,94,69,.18) 72% 74%, transparent 74%),
    radial-gradient(rgba(250,249,245,.05) 1.2px, transparent 1.2px);
  background-size: auto, 17px 17px;
}
.scope-shell { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(310px,.65fr); gap: 46px; align-items: center; }
.scope-intro .comic-section-tag { margin: 0 0 18px; text-align: left; }
.scope-intro .section-title { max-width: 780px; margin: 0; color: var(--cream); text-align: left; }
.scope-intro > p:not(.comic-section-tag) { max-width: 680px; margin-top: 22px; color: rgba(250,249,245,.7); font-size: 16px; line-height: 1.7; }
.scope-intro .button { margin-top: 28px; }
.scope-price {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 33px;
  border: 4px solid var(--cream);
  border-radius: 17px;
  background: var(--terra);
  box-shadow: 12px 12px 0 var(--cream);
  text-align: center;
  transform: rotate(1deg);
}
.scope-price::before { content: 'FOUNDATION'; position: absolute; top: -21px; right: 20px; padding: 8px 12px 6px; border: 2px solid var(--cream); background: var(--ink); box-shadow: 3px 3px 0 var(--terra-hot); color: var(--cream); font-family: var(--comic-font); font-size: 20px; letter-spacing: .08em; transform: rotate(3deg); }
.scope-price > span { font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.scope-price strong { display: flex; align-items: flex-start; margin-top: 3px; font-size: 92px; line-height: .92; letter-spacing: -.07em; }
.scope-price sup { margin-top: 12px; font-size: 27px; letter-spacing: 0; }
.scope-price small { align-self: flex-end; margin: 0 0 7px 6px; font-size: 17px; letter-spacing: 0; }
.scope-price b { font-size: 13px; letter-spacing: .055em; text-transform: uppercase; }
.scope-lists { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; grid-column: 1 / -1; }
.scope-card { padding: 31px; border: 3px solid var(--cream); border-radius: 14px; background: var(--ink-2); box-shadow: 7px 7px 0 var(--terra); }
.scope-card__label { color: var(--terra-hot); font-family: var(--comic-font); font-size: 23px; letter-spacing: .06em; text-transform: uppercase; }
.scope-card ul { display: grid; gap: 12px; margin: 23px 0 0; padding: 0; list-style: none; }
.scope-card--included ul { grid-template-columns: 1fr 1fr; }
.scope-card li { position: relative; padding-left: 27px; color: rgba(250,249,245,.78); font-size: 13px; line-height: 1.55; }
.scope-card li::before { content: '✓'; position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--terra); color: #fff; font-size: 11px; font-weight: 900; }
.scope-card--excluded li::before { content: '→'; border: 1px solid var(--terra); background: transparent; color: var(--terra-hot); }
.scope-note { margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(250,249,245,.18); color: rgba(250,249,245,.55); font-size: 11px; line-height: 1.6; }

.research-head { align-items: end; }
.research-head > div { max-width: 760px; }
.research-head .comic-section-tag { margin: 0 0 17px; text-align: left; }
.research-head p:last-child { margin-top: 17px; color: #65615c; font-size: 15px; line-height: 1.65; }
.research-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.research-card { border: 3px solid var(--ink); box-shadow: 7px 7px 0 var(--terra); }
.research-art { display: grid; place-content: center; min-height: 170px; border-bottom: 3px solid var(--ink); background: var(--gray); text-align: center; }
.research-art::after { display: none; }
.research-art span { color: var(--terra); font-family: var(--comic-font); font-size: 61px; line-height: .9; letter-spacing: .04em; }
.research-art b { margin-top: 8px; color: var(--ink); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.research-art--method { background: repeating-linear-gradient(-45deg,#f5f3ee 0 13px,#ebe8e1 13px 15px); }
.research-art--data { background-image: radial-gradient(rgba(15,15,14,.12) 1px,transparent 1px); background-size: 13px 13px; }

.system-evidence {
  position: relative;
  overflow: hidden;
  padding: 116px 0 132px;
  background: var(--ink);
  color: var(--cream);
}
.system-evidence::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(rgba(250,249,245,.05) 1.2px, transparent 1.2px); background-size: 17px 17px; }
.system-evidence .wrap { position: relative; }
.system-evidence .section-title { color: var(--cream); }
.system-evidence .section-lead { color: rgba(250,249,245,.67); }
.evidence-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin-top: 58px; }
.evidence-card { min-height: 310px; padding: 22px; border: 3px solid var(--cream); border-radius: 14px; background: var(--cream); box-shadow: 8px 8px 0 var(--terra); color: var(--ink); transition: transform .3s ease-out; }
.evidence-card:nth-child(3n+2) { transform: translateY(8px); }
.evidence-card:hover { transform: translateY(-3px); }
.evidence-card__top { display: flex; gap: 12px; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 2px solid var(--ink); }
.evidence-card__top span { padding: 6px 8px 5px; border: 2px solid var(--ink); background: var(--terra); color: #fff; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.evidence-card__top b { font-size: 11px; letter-spacing: .06em; text-align: right; text-transform: uppercase; }
.evidence-phone, .evidence-message, .evidence-inbox, .evidence-map, .evidence-alert, .receipt-grid { margin-top: 22px; }
.evidence-phone { width: 88%; margin-inline: auto; padding: 22px 15px; border: 4px solid var(--ink); border-radius: 25px; background: #fff; box-shadow: inset 0 0 0 4px #eceae4; }
.evidence-phone small { display: block; color: #77736c; font-size: 8px; text-align: center; }
.evidence-phone p { width: 88%; margin-top: 11px; padding: 8px 9px; border-radius: 8px; background: #e9e7e1; font-size: 9px; line-height: 1.45; }
.evidence-phone p:nth-of-type(2) { margin-left: auto; background: var(--terra); color: #fff; }
.evidence-phone em { display: block; margin-top: 11px; color: #68645e; font-size: 8px; font-style: normal; text-align: center; }
.evidence-inbox { display: grid; gap: 9px; }
.evidence-inbox p { display: grid; gap: 4px; padding: 14px; border: 2px solid var(--ink); border-radius: 8px; background: #fff; }
.evidence-inbox strong { font-size: 11px; }
.evidence-inbox span { color: #77736d; font-size: 9px; }
.evidence-message { padding: 23px 18px; border: 3px solid var(--ink); border-radius: 18px 18px 18px 3px; background: #fff; }
.evidence-message p { font-size: 12px; line-height: 1.65; }
.evidence-message b { display: block; margin-top: 18px; color: var(--terra); font-size: 10px; }
.evidence-map { display: grid; gap: 10px; }
.evidence-map p { display: flex; align-items: center; justify-content: space-between; gap: 9px; padding: 13px 12px; border: 2px solid var(--ink); background: #fff; font-size: 9px; }
.evidence-map b { color: var(--terra); font-size: 8px; text-align: right; }
.evidence-alert { padding: 24px 20px; border: 3px solid var(--ink); background: #fff; box-shadow: 5px 5px 0 var(--terra); }
.evidence-alert > span { color: var(--terra); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.evidence-alert h3 { margin-top: 12px; font-size: 21px; }
.evidence-alert p { margin-top: 9px; color: #6b6761; font-size: 11px; }
.evidence-alert b { display: block; margin-top: 31px; font-size: 10px; }
.evidence-card--receipt { grid-column: span 2; }
.receipt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.receipt-grid p { min-height: 88px; padding: 15px; border: 2px solid var(--ink); background: #fff; color: #5e5a54; font-size: 10px; line-height: 1.5; }
.receipt-grid span { display: block; margin-bottom: 7px; color: var(--terra); font-size: 8px; font-weight: 900; letter-spacing: .11em; }

.faq-section .comic-section-tag { margin-bottom: 18px; }
.talk-card .comic-section-tag { margin: 0 0 15px; text-align: left; }
.talk-card .comic-panel-img { object-fit: contain; filter: drop-shadow(7px 9px 0 rgba(205,94,69,.8)); }

@media (max-width: 1080px) {
  .leak-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .leak-card { min-height: 260px; }
  .job-path__strip { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
  .job-panel::after { display: none; }
  .scope-shell { grid-template-columns: 1fr 330px; }
  .research-grid, .evidence-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .evidence-card--receipt { grid-column: span 1; }
}

@media (max-width: 800px) {
  .section-lead { padding-inline: 6px; font-size: 14px; }
  .hero-art figcaption { right: 10px; bottom: 10px; left: 10px; padding: 10px; font-size: 15px; transform: none; }
  .hero-proof-rail { display: grid; grid-template-columns: 1fr 1fr; width: min(100%,350px); }
  .hero-proof-rail li { justify-content: center; min-height: 38px; padding-inline: 7px; text-align: center; }
  .leak-section, .job-path, .offer-scope, .system-evidence { padding: 78px 0 92px; }
  .leak-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .leak-card, .leak-card:nth-child(n) { min-height: 0; transform: none; }
  .job-path__head { grid-template-columns: 1fr; gap: 25px; }
  .job-path__head .comic-section-tag, .job-path__head .section-title, .job-path__head > div > p:last-child { margin-inline: auto; text-align: center; }
  .job-path__guide { justify-self: center; width: 230px; }
  .job-path__strip {
    display: grid;
    grid-auto-columns: minmax(250px, 84vw);
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 16px;
    max-width: 100%;
    margin-top: 42px;
    padding: 3px 9vw 22px 3px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 3px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--terra) rgba(250,249,245,.16);
  }
  .job-panel { min-height: 335px; scroll-snap-align: start; }
  .stage-rail { grid-template-columns: 1fr 1fr; margin: 32px 0 50px; }
  .stage-rail li { border-right: 0; border-bottom: 2px solid var(--ink); }
  .stage-rail li:nth-child(odd) { border-right: 2px solid var(--ink); }
  .stage-rail li:nth-last-child(-n+2) { border-bottom: 0; }
  .stage-rail li::after { display: none !important; }
  .scope-shell, .scope-lists { grid-template-columns: 1fr; }
  .scope-intro .comic-section-tag, .scope-intro .section-title, .scope-intro > p:not(.comic-section-tag) { margin-inline: auto; text-align: center; }
  .scope-intro { text-align: center; }
  .scope-price { width: min(390px, calc(100% - 10px)); min-height: 260px; margin: 8px auto 4px; padding: 27px; box-shadow: 8px 8px 0 var(--cream); transform: none; }
  .scope-price strong { font-size: 76px; }
  .scope-lists { grid-column: 1; }
  .scope-card--included ul { grid-template-columns: 1fr; }
  .research-head { display: grid; gap: 25px; text-align: center; }
  .research-head .comic-section-tag { margin-inline: auto; text-align: center; }
  .research-grid, .evidence-grid { grid-template-columns: 1fr; }
  .evidence-card, .evidence-card:nth-child(n) { min-height: 0; transform: none; }
  .evidence-card--receipt { grid-column: 1; }
  .receipt-grid { grid-template-columns: 1fr; }
  .talk-card .comic-section-tag { margin-inline: auto; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .leak-card, .job-panel, .evidence-card { transition: none; }
  .leak-card:hover, .job-panel:hover, .evidence-card:hover { transform: none; }
  .job-path__strip { scroll-behavior: auto; }
}

/* ===== Comic layer v4 — detail & accent pass ===== */
/* product rows: content sets the height, not a Stone-era 797px reservation */
.feature-row { min-height: 0; padding: 64px 0; }
@media (max-width: 980px) { .feature-row { padding: 55px 0 110px; } }

/* trade carousel arrows: chunky comic buttons instead of bare glyphs */
.carousel-button {
  width: 54px; height: 54px; top: 42%;
  display: grid; place-items: center; padding: 0;
  background: var(--paper, #faf9f5); color: #0f0f0e;
  border: 3px solid #0f0f0e; border-radius: 50%;
  font-family: var(--comic-font); font-size: 30px; line-height: 1;
  box-shadow: 4px 4px 0 rgba(15,15,14,.9);
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.carousel-button:hover { background: var(--terra-hot); color: #fff; box-shadow: 2px 2px 0 rgba(15,15,14,.9); }
@media (max-width: 980px) { .carousel-button { width: 44px; height: 44px; font-size: 24px; } }

/* process step numbers: comic numerals with a tilt, not flat SaaS circles */
.step-num { font-family: var(--comic-font); font-size: 42px; transform: rotate(-4deg); }
.step:nth-child(2) .step-num { transform: rotate(3deg); }
.step:nth-child(3) .step-num { transform: rotate(-2deg); }

/* nav + villain-card icons: let the new tilted sticker marks breathe */
.leak-card img { width: 60px; height: 60px; }
.job-panel img { width: 52px; height: 52px; }

/* demo scenes: warm paper + halftone + inked cards (was cool-gray SaaS) */
.demo-screen { background: #f4f1e9; }
.demo-scene { background-image: radial-gradient(rgba(15,15,14,.06) 1.2px, transparent 1.2px); background-size: 16px 16px; }
.demo-scene .scene-card { border: 2px solid #0f0f0e; border-radius: 10px; box-shadow: 5px 5px 0 rgba(15,15,14,.85); }
.demo-scene .scene-card p { color: #55544f; }

/* ===== Comic layer v5 — pure black darks (owner call: terra washes read as brown) ===== */
.hero::before { display: none; }
.job-path::before {
  background: radial-gradient(rgba(250,249,245,.055) 1.2px, transparent 1.2px);
  background-size: 17px 17px;
}
.offer-scope::before {
  background: radial-gradient(rgba(250,249,245,.05) 1.2px, transparent 1.2px);
  background-size: 17px 17px;
}
/* research grid balances 2x2 with the visibility index added */
.research-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 700px) { .research-grid { grid-template-columns: 1fr; } }

/* free-tools band (homepage gateway to the Growth Hub) */
.tools-band { padding: 110px 0 120px; background: var(--gray, #f0efe9); }
.tools-band__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; margin-top: 44px; }
.tools-band__card {
  display: flex; flex-direction: column; gap: 12px; padding: 28px 24px;
  background: #fff; color: inherit; border: 3px solid #0f0f0e; border-radius: 10px;
  box-shadow: 6px 6px 0 rgba(15,15,14,.9); transform: rotate(-.5deg);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tools-band__card:nth-child(2) { transform: rotate(.5deg); }
.tools-band__card:hover { transform: rotate(0) translate(-2px,-2px); box-shadow: 8px 8px 0 rgba(15,15,14,.9); }
.tools-band__card h3 { font-size: 19px; }
.tools-band__card p { font-size: 14.5px; color: #55544f; flex: 1; }
.tools-band__card span { font-weight: 700; color: var(--terra); }
.tools-band__cta { margin-top: 40px; text-align: center; }
@media (max-width: 980px) { .tools-band__grid { grid-template-columns: 1fr; } .tools-band { padding: 80px 0 90px; } }
@media (prefers-reduced-motion: reduce) { .tools-band__card, .tools-band__card:hover { transform: none; transition: none; } }
