﻿/* Hero must fit in viewport */
body { padding-top: 0; }
.hero.hero-floating-testimonial,
.hero.section.hero-floating-testimonial {
  min-height: calc(100vh - 64px);
  max-height: none;
  padding-block: clamp(80px, 11vh, 120px) clamp(32px, 5vh, 56px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.hero.hero-floating-testimonial .hero-grid { width: 100%; }
.hero.hero-floating-testimonial h1 { font-size: clamp(36px, 4.2vw, 64px); }
.hero.hero-floating-testimonial .hero-intro { font-size: clamp(16px, 1.1vw, 18px); }
.hero.hero-floating-testimonial .ads-panel,
.hero.hero-floating-testimonial .product-demo-panel { max-height: 62vh; overflow: hidden; }
@media (max-width: 760px) {
  .hero.hero-floating-testimonial { min-height: auto; padding-block: 88px 24px; }
  .hero.hero-floating-testimonial .ads-panel,
  .hero.hero-floating-testimonial .product-demo-panel { max-height: 50vh; }
}
:root {
  --acc: #ecf86e;
  --dark: #0a0a0a;
  --dark-2: #101010;
  --dark-3: #171717;
  --line: #252525;
  --hairline: rgba(255, 255, 255, 0.1);
  --light: #ffffff;
  --light-2: #f4f3ed;
  --warm: #d8cdb7;
  --ink: #e8e8e8;
  --ink-dim: #a6a6a6;
  --ink-faint: #6f6f6f;
  --f-display: "Bricolage Grotesque", sans-serif;
  --f-sans: "Geist", sans-serif;
  --f-mono: "Geist Mono", monospace;
  --container: 1560px;
  --c-wide: 1560px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--dark);
  color: var(--ink);
  font-family: var(--f-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.container {
  width: 100%;
  max-width: var(--c-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(76px, 9vw, 120px);
  scroll-margin-top: 96px;
}

.section-light {
  background: var(--light);
  color: #111;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 17px var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 18px rgba(236, 248, 110, 0.65);
}

.nav-links {
  display: flex;
  gap: 6px;
  color: var(--ink-dim);
  font-size: 14px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--light);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 700;
}

.nav-cta,
.btn-primary {
  background: var(--acc);
  color: #000;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -50%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.btn-primary:hover::after {
  left: 115%;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 52%),
    radial-gradient(circle at 82% 18%, rgba(236, 248, 110, 0.16), transparent 28%),
    radial-gradient(circle at 18% 85%, rgba(216, 205, 183, 0.1), transparent 30%),
    var(--dark);
}

.hero::before {
  content: "FLOW";
  position: absolute;
  right: -0.12em;
  bottom: -0.21em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--f-display);
  font-size: clamp(190px, 31vw, 470px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.hero-rail {
  position: absolute;
  top: 50%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-rail.left {
  left: 18px;
  transform: translateY(-50%) rotate(180deg);
}

.hero-rail.right {
  right: 18px;
  transform: translateY(-50%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.68fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span,
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--acc);
}

.hero h1 {
  max-width: 980px;
  margin-top: 20px;
  font-size: clamp(54px, 8.8vw, 122px);
  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 680px;
  margin-top: 24px;
  color: var(--ink-dim);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-note span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.035);
}

.automation-panel,
.capture-panel,
.flow-window,
.crm-board,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    #101010;
}

.automation-panel {
  position: relative;
  padding: 18px;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.45);
}

.automation-panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(236, 248, 110, 0.12);
  border-radius: 12px;
  pointer-events: none;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 12px;
  padding: 4px 2px 16px;
}

.panel-top strong {
  color: var(--acc);
  font-weight: 500;
}

.lead-card {
  position: relative;
  margin-bottom: 14px;
  border-radius: 12px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(236, 248, 110, 0.2), transparent 58%),
    #1b1b1b;
}

.lead-card span,
.score-box small,
.orbit-main small {
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lead-card strong {
  display: block;
  margin-top: 28px;
  color: #fff;
  font-family: var(--f-display);
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.lead-card p {
  margin-top: 12px;
  color: var(--ink-dim);
  font-size: 14px;
}

.flow-stack {
  display: grid;
  gap: 8px;
}

.flow-stack article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.flow-stack article > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--acc);
  color: #000;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
}

.flow-stack strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.flow-stack p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1px;
  border-block: 1px solid #dedbd0;
  background: #dedbd0;
}

.proof-strip span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--light-2);
  color: #464646;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.88fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 110px;
}

.process-intro h2,
.system-copy h2,
.faq-grid h2,
.cta h2 {
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 70px);
}

.process-intro > p:last-child,
.product-copy > p:not(.section-label),
.crm-copy > p:not(.section-label),
.result-example-head p {
  margin-top: 20px;
  color: #555;
  font-size: 17px;
}

.process-steps {
  position: relative;
  display: grid;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: #d9d7cf;
}

.process-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 0 0 42px;
}

.process-steps article:last-child {
  padding-bottom: 0;
}

.process-steps span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #d9d7cf;
  border-radius: 50%;
  background: var(--light);
  color: #111;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
}

.process-steps h3 {
  padding-top: 4px;
  font-size: 31px;
}

.process-steps p {
  max-width: 410px;
  margin-top: 10px;
  color: #5f5f5f;
}

.capture-panel {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-color: #e4e2da;
  background:
    radial-gradient(circle at 80% 0%, rgba(236, 248, 110, 0.58), transparent 28%),
    #111;
  color: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

.browser-dots,
.window-bar {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.browser-dots span,
.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.browser-dots span:nth-child(2),
.window-bar span:nth-child(2) {
  background: #febc2e;
}

.browser-dots span:nth-child(3),
.window-bar span:nth-child(3) {
  background: #28c840;
}

.score-box {
  padding: 28px;
}

.score-box strong {
  display: block;
  margin-top: 20px;
  font-family: var(--f-display);
  font-size: clamp(96px, 11vw, 150px);
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.score-box p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 28px 28px;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signal-list span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acc);
}

.product-section {
  background:
    linear-gradient(180deg, #fff, var(--light-2));
  color: #111;
  border-top: 1px solid #e6e3d8;
}

.product-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.flow-visual {
  min-height: 560px;
  display: grid;
  align-items: center;
  border-radius: 22px;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 30% 20%, rgba(236, 248, 110, 0.65), transparent 26%),
    linear-gradient(135deg, #121212, #242417);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.12);
}

.flow-window {
  overflow: hidden;
  background: rgba(9, 9, 9, 0.82);
  color: #fff;
}

.timeline {
  display: grid;
  padding: clamp(26px, 5vw, 44px);
}

.timeline article {
  position: relative;
  border-left: 1px solid rgba(236, 248, 110, 0.32);
  padding: 0 0 28px 26px;
}

.timeline article:last-child {
  padding-bottom: 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acc);
}

.timeline span {
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-top: 10px;
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.timeline p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.product-copy h2,
.crm-copy h2,
.result-example-head h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5.6vw, 78px);
}

.product-list {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-top: 1px solid #dedbd0;
  padding: 20px 0;
}

.product-list span {
  color: #777;
  font-family: var(--f-mono);
  font-size: 11px;
}

.product-list strong {
  display: block;
  grid-column: 2;
  font-size: 18px;
}

.product-list p {
  grid-column: 2;
  margin-top: 4px;
  color: #666;
}

.dark-showcase {
  background:
    radial-gradient(circle at 82% 16%, rgba(236, 248, 110, 0.18), transparent 28%),
    #101010;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-showcase .section-label,
.dark-showcase .crm-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.crm-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.crm-copy > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.66);
}

.crm-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  padding: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.crm-board article {
  min-height: 230px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #151515;
}

.crm-board span {
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: 11px;
}

.crm-board strong {
  display: block;
  margin-top: 68px;
  color: #fff;
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.crm-board p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.results-section {
  background: #fff;
  color: #111;
  border-top: 1px solid #e7e4d8;
}

.result-example {
  display: grid;
  gap: clamp(38px, 6vw, 72px);
}

.result-example-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.result-example-head .eyebrow {
  color: #777;
}

.result-example-head h2 {
  max-width: 940px;
}

.result-example-head p {
  max-width: 690px;
}

.result-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 24px;
}

.result-steps::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 52px;
  height: 1px;
  background: #d8d5cb;
}

.result-steps article {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 0 22px;
  text-align: center;
}

.result-steps span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #d8d5cb;
  border-radius: 50%;
  background: var(--acc);
  color: #111;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
}

.result-steps h3 {
  margin-top: 20px;
  font-size: 28px;
}

.result-steps p {
  max-width: 230px;
  margin-top: 10px;
  color: #666;
}

.outcome-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #dedbd0;
  border-radius: 16px;
  background: var(--light-2);
}

.outcome-band div {
  padding: 28px;
  border-right: 1px solid #dedbd0;
  text-align: center;
}

.outcome-band div:last-child {
  border-right: 0;
}

.outcome-band strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 74px);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.outcome-band span {
  display: block;
  margin-top: 8px;
  color: #666;
}

.operating-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) 1fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.operating-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(236, 248, 110, 0.42), transparent 22%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(135deg, #101010, #252519);
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.18);
}

.operating-visual::before,
.operating-visual::after {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(236, 248, 110, 0.2);
  border-radius: 50%;
}

.operating-visual::after {
  inset: 130px;
  border-color: rgba(255, 255, 255, 0.12);
}

.orbit-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.78);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.orbit-main {
  left: 50%;
  top: 50%;
  width: min(360px, calc(100% - 64px));
  padding: 30px;
  transform: translate(-50%, -50%);
}

.orbit-main strong {
  display: block;
  margin-top: 50px;
  font-family: var(--f-display);
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.orbit-main p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
}

.orbit-one,
.orbit-two,
.orbit-three {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-one span,
.orbit-two span,
.orbit-three span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--acc);
  color: #000;
  font-size: 10px;
}

.orbit-one {
  left: 34px;
  top: 84px;
}

.orbit-two {
  right: 34px;
  top: 210px;
}

.orbit-three {
  left: 58px;
  bottom: 90px;
}

.system-copy {
  max-width: 620px;
}

.operating-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid #dedbd0;
}

.operating-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  border-bottom: 1px solid #dedbd0;
  padding: 20px 0;
}

.operating-list article > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: var(--acc);
  font-size: 13px;
  font-weight: 800;
}

.operating-list strong {
  display: block;
  color: #111;
  font-size: 19px;
}

.operating-list p {
  margin-top: 5px;
  color: #636363;
}

.faq-section {
  border-top: 1px solid #e7e4d8;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(30px, 6vw, 80px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid #e5e5df;
  border-radius: 10px;
  padding: 22px 24px;
  background: #f8f8f4;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
}

.faq-list p {
  margin-top: 14px;
  color: #565656;
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 248, 110, 0.14), transparent 34%),
    var(--dark);
}

.cta::before {
  content: "BLURR";
  position: absolute;
  left: 50%;
  bottom: -0.28em;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--f-display);
  font-size: clamp(120px, 24vw, 360px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.cta-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.cta h2 {
  max-width: 800px;
}

.cta-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.cta-panel p,
.cta-panel ul {
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.cta-panel li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--acc);
}

.footer {
  border-top: 1px solid var(--line);
  padding-block: 34px;
  color: var(--ink-faint);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 860px) {
  .site-nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .process-layout,
  .product-grid,
  .crm-grid,
  .result-steps,
  .operating-grid,
  .faq-grid,
  .cta-split {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .crm-board,
  .outcome-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-rail {
    display: none;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .process-intro,
  .capture-panel {
    position: static;
  }

  .flow-visual {
    min-height: auto;
  }

  .result-steps {
    gap: 28px;
  }

  .result-steps::before {
    display: none;
  }

  .outcome-band div {
    border-right: 0;
    border-bottom: 1px solid #dedbd0;
  }

  .outcome-band div:last-child {
    border-bottom: 0;
  }

  .operating-visual {
    min-height: 520px;
  }

  .orbit-two {
    right: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-nav {
    gap: 14px;
  }

  .nav-cta {
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    text-align: center;
  }

  .automation-panel,
  .cta-panel {
    border-radius: 14px;
  }

  .lead-card strong,
  .process-steps h3,
  .crm-board strong {
    font-size: 27px;
  }

  .operating-visual {
    min-height: 470px;
  }

  .orbit-one,
  .orbit-two,
  .orbit-three {
    max-width: calc(100% - 44px);
    white-space: normal;
  }

  .orbit-one {
    left: 22px;
  }

  .orbit-three {
    left: 22px;
  }
}

/* Component-library pass: HeroFloatingTestimonial + IconList variants */
.automation-page .hero-floating-testimonial {
  min-height: auto;
  padding-block: clamp(84px, 10vw, 136px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 52%),
    radial-gradient(circle at 78% 22%, rgba(236, 248, 110, 0.2), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(216, 205, 183, 0.14), transparent 28%),
    var(--dark);
}

.automation-page .hero-floating-testimonial .hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
}

.automation-page .hero-floating-testimonial h1 {
  max-width: 860px;
  font-size: clamp(50px, 7.8vw, 104px);
}

.automation-page .floating-media-panel {
  position: relative;
  min-height: 620px;
  display: grid;
  align-content: start;
  overflow: visible;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(236, 248, 110, 0.09), transparent 34%),
    radial-gradient(circle at 83% 10%, rgba(236, 248, 110, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    #101010;
}

.automation-page .floating-media-panel::after {
  content: "";
  position: absolute;
  inset: 74px 18px 102px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 38px 100%;
  pointer-events: none;
}

.automation-page .floating-media-panel > * {
  position: relative;
  z-index: 2;
}

.automation-page .lifecycle-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 12px;
  margin-bottom: 12px;
}

.automation-page .floating-media-panel .lead-card {
  min-height: 166px;
  margin-bottom: 0;
  display: grid;
  align-content: end;
  border: 1px solid rgba(236, 248, 110, 0.16);
  background:
    linear-gradient(140deg, rgba(236, 248, 110, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #181818;
}

.automation-page .floating-media-panel .lead-card strong {
  margin-top: 34px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.automation-page .score-pill {
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(236, 248, 110, 0.34);
  border-radius: 12px;
  padding: 16px 12px;
  background: rgba(236, 248, 110, 0.92);
  color: #0a0a0a;
  box-shadow: 0 18px 44px rgba(236, 248, 110, 0.16);
}

.automation-page .score-pill small,
.automation-page .score-pill span,
.automation-page .stage-rail span,
.automation-page .trigger-node span,
.automation-page .path-card span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.automation-page .score-pill strong {
  display: block;
  margin-top: 4px;
  font-family: var(--f-display);
  font-size: 62px;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.automation-page .score-pill span {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.68);
}

.automation-page .stage-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.automation-page .stage-rail span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 8px;
  background: rgba(12, 12, 12, 0.76);
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.automation-page .stage-rail .is-active {
  background: var(--acc);
  color: #111;
}

.automation-page .lifecycle-map {
  display: grid;
  grid-template-columns: minmax(116px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  margin: 16px 0 84px;
}

.automation-page .trigger-column,
.automation-page .path-column {
  display: grid;
  gap: 12px;
}

.automation-page .path-column {
  position: relative;
}

.automation-page .flow-line {
  position: absolute;
  left: 22px;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(180deg, var(--acc), rgba(236, 248, 110, 0.12));
}

.automation-page .trigger-node,
.automation-page .path-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.automation-page .trigger-node {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  padding: 16px;
}

.automation-page .trigger-node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 17px;
  height: 1px;
  background: rgba(236, 248, 110, 0.62);
}

.automation-page .trigger-node span,
.automation-page .path-card span {
  color: var(--acc);
}

.automation-page .trigger-node strong {
  color: #fff;
  font-size: 14px;
}

.automation-page .path-card {
  min-height: 124px;
  padding: 18px 18px 18px 58px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(16, 16, 16, 0.88);
}

.automation-page .path-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 13px;
  height: 13px;
  border: 4px solid #111;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 1px rgba(236, 248, 110, 0.4);
}

.automation-page .path-card strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(24px, 2.7vw, 34px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.automation-page .path-card p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.automation-page .handoff-card {
  transform: translateX(28px);
  border-color: rgba(236, 248, 110, 0.22);
}

.automation-page .floating-proof {
  position: absolute;
  left: 22px;
  right: -30px;
  bottom: -28px;
  margin: 0;
  border: 1px solid rgba(236, 248, 110, 0.32);
  border-radius: 18px;
  padding: 22px;
  background: #f4f3ed;
  color: #111;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.automation-page .floating-proof blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.automation-page .floating-proof figcaption {
  margin-top: 12px;
  color: #686868;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.automation-page .proof-strip {
  border-color: rgba(255, 255, 255, 0.08);
  background: #111;
}

.automation-page .proof-strip span {
  background: #111;
  color: rgba(255, 255, 255, 0.66);
}

.automation-page .process-layout {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
}

.automation-page .capture-panel {
  display: none;
}

.automation-page .process-steps {
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dedbd0;
  border-radius: 18px;
  background: #dedbd0;
}

.automation-page .process-steps::before {
  display: none;
}

.automation-page .process-steps article {
  display: block;
  min-height: 240px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
}

.automation-page .process-steps span {
  width: auto;
  height: auto;
  display: inline-flex;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #777;
}

.automation-page .process-steps h3 {
  margin-top: clamp(42px, 7vw, 74px);
  padding-top: 0;
}

.automation-page .operating-list {
  border-top: 0;
}

.automation-page .operating-list article {
  grid-template-columns: 48px 1fr;
  align-items: start;
  border-bottom: 1px solid #dedbd0;
}

.automation-page .operating-list article > span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 10px;
}

@media (max-width: 860px) {
  .automation-page .hero-floating-testimonial .hero-grid,
  .automation-page .process-layout,
  .automation-page .process-steps {
    grid-template-columns: 1fr;
  }

  .automation-page .floating-media-panel {
    min-height: auto;
    order: -1;
    margin-bottom: 28px;
  }

  .automation-page .hero-floating-testimonial h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .automation-page .floating-media-panel::after {
    inset: 74px 14px 128px;
  }

  .automation-page .lifecycle-header,
  .automation-page .lifecycle-map {
    grid-template-columns: 1fr;
  }

  .automation-page .score-pill {
    min-height: 132px;
  }

  .automation-page .stage-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-page .trigger-node::after {
    display: none;
  }

  .automation-page .lifecycle-map {
    margin-bottom: 0;
  }

  .automation-page .handoff-card {
    transform: none;
  }

  .automation-page .floating-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }
}
