:root {
  --ink: #101329;
  --muted: #5e6475;
  --quiet: #8c93a3;
  --line: #e5e8ef;
  --soft: #f6f8fb;
  --paper: #ffffff;
  --green: #1677ff;
  --reserved-green: #0b9f6b;
  --blue: #2563eb;
  --coral: #f36f45;
  --gold: #c79221;
  --slate: #23283a;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(16, 19, 41, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.82), rgba(255, 255, 255, 0) 460px),
    #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

.page-flow-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.46;
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header,
main {
  width: calc(100% - 56px);
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(18, 56, 213, 0.1);
  backdrop-filter: blur(10px);
}

.site-header::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(18, 56, 213, 0.1);
  content: "";
}

.brand img {
  width: 214px;
  height: auto;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: #31364a;
  font-size: 14px;
  font-weight: 760;
}

.nav-group {
  position: static;
}

.nav-group::after {
  display: none;
}

.main-nav a,
.nav-group > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
}

.nav-trigger {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: default;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-trigger:hover,
.nav-group:focus-within .nav-trigger,
.nav-group.nav-open .nav-trigger {
  background: rgba(255, 255, 255, 0.72);
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.nav-interest {
  min-height: 48px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(22, 119, 255, 0.22);
}

.mobile-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--findsy-blue, #1677ff), var(--findsy-indigo, #1238d5));
  box-shadow: 0 14px 34px rgba(22, 119, 255, 0.2);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.mobile-menu-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.mobile-menu-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.mobile-menu-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 18%, rgba(123, 77, 245, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98)),
    #ffffff;
  box-shadow:
    0 28px 80px rgba(18, 56, 213, 0.17),
    0 2px 12px rgba(16, 19, 41, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-group.nav-open .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.nav-menu-list {
  display: grid;
  gap: 4px;
}

.nav-menu a,
.nav-disabled {
  justify-content: flex-start;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #31364a;
  font-size: 13px;
  background: transparent;
}

.nav-disabled {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  color: #7d879c;
}

.nav-menu a {
  display: grid;
  align-content: center;
}

.nav-menu a span,
.nav-disabled span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 860;
}

.nav-menu a small,
.nav-disabled small {
  display: block;
  margin-top: 4px;
  color: #6a7389;
  font-size: 12px;
  font-weight: 640;
  line-height: 1.28;
}

.nav-disabled em {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 860;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(22, 119, 255, 0.08);
}

.nav-menu-feature {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(22, 119, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(22, 119, 255, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(145deg, rgba(238, 246, 255, 0.92), rgba(255, 255, 255, 0.82));
}

.nav-menu-feature::before {
  position: absolute;
  top: 26px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7b4df5);
  box-shadow:
    0 0 0 14px rgba(22, 119, 255, 0.09),
    0 18px 42px rgba(22, 119, 255, 0.2);
  content: "";
}

.nav-menu-feature strong {
  position: relative;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.08;
}

.nav-menu-feature p {
  position: relative;
  margin: 10px 0 0;
  color: #59647b;
  font-size: 12px;
  line-height: 1.44;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 14px;
  font-weight: 820;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(22, 119, 255, 0.2);
}

.btn-quiet {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.btn-light {
  color: var(--ink);
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 1.08fr);
  gap: 48px;
  align-items: center;
  padding: 78px 0 66px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px -80px 0;
  z-index: -2;
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 34%, rgba(22, 119, 255, 0.16), transparent 28%),
    radial-gradient(circle at 58% 22%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 78% 74%, rgba(243, 111, 69, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(246, 248, 251, 0.58), rgba(255, 255, 255, 0.82));
}

.hero-flow-canvas {
  position: absolute;
  inset: 0 -80px;
  z-index: -1;
  width: calc(100% + 160px);
  height: 100%;
  opacity: 0.72;
  transform: translate3d(0, calc(var(--hero-flow-y, 0) * 1px), 0);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  transform: translate3d(0, calc(var(--hero-copy-y, 0) * 1px), 0);
  transition: transform 120ms linear;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 860;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.96;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 32px;
  color: #3b4054;
  font-size: 19px;
  line-height: 1.62;
  font-weight: 560;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.outcome-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 640px;
  margin-top: 38px;
}

.outcome-row span,
.workflow-grid span,
.system-cloud span,
.industry-grid span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: #24293a;
  font-size: 13px;
  font-weight: 780;
  text-align: center;
}

.hero-visual {
  min-height: 650px;
}

.product-shell {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(16, 19, 41, 0.04) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(16, 19, 41, 0.04) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(140deg, #ffffff, #f7fbf8 48%, #f8f7f3);
  box-shadow: var(--shadow);
  transform: translate3d(0, calc(var(--product-y, 0) * 1px), 0);
  transition: transform 120ms linear;
}

.flow-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.product-topbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(229, 232, 239, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(16, 19, 41, 0.06);
}

.product-topbar span,
.product-topbar em {
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 860;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-topbar strong {
  font-size: 14px;
}

.brain-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 176px 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  padding: 50px 42px 0;
}

.signal-card,
.approval-thread,
.ask-panel,
.ask-list article,
.product-grid article,
.control-grid article,
.day-grid article,
.problem-grid article,
.outcome-grid article,
.agent-grid article,
.grow-grid article,
.guest-feature-grid article,
.phone-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(16, 19, 41, 0.055);
}

.signal-card {
  min-height: 148px;
  padding: 20px;
}

.signal-card span,
.ask-list span,
.ask-panel span,
.day-grid span,
.problem-grid span,
.control-grid span,
.agent-grid span,
.grow-grid span,
.guest-feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 38px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--green);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 18px;
  font-size: 23px;
  line-height: 1.08;
}

.signal-card p,
.approval-thread p,
.section-heading p,
.problem-grid p,
.outcome-grid p,
.agent-grid p,
.ask-panel p,
.ask-list p,
.product-grid p,
.grow-grid p,
.control-grid p,
.day-grid p,
.systems-section p,
.trust-section p,
.final-cta span,
.guest-copy p,
.guest-feature-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.signal-card p {
  margin: 9px 0 0;
  font-size: 13px;
  font-weight: 620;
}

.brain-core {
  grid-row: 1 / span 2;
  grid-column: 2;
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  justify-self: center;
  align-self: center;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.34), transparent 26%),
    linear-gradient(135deg, #111426, #2563eb 66%, #1677ff);
  box-shadow:
    0 26px 80px rgba(37, 99, 235, 0.24),
    0 0 0 22px rgba(22, 119, 255, 0.08);
  text-align: center;
}

.brain-core::before,
.brain-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 126px;
  border-top: 2px dashed rgba(16, 19, 41, 0.2);
}

.brain-core::before {
  right: 100%;
}

.brain-core::after {
  left: 100%;
}

.brain-core img {
  width: 118px;
  max-width: 72%;
  height: auto;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(16, 19, 41, 0.16);
}

.approval-thread {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 30px;
  z-index: 2;
  padding: 14px 18px;
}

.approval-thread div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  border-top: 1px solid var(--line);
}

.approval-thread div:first-child {
  border-top: 0;
}

.approval-thread span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--green);
  font-size: 12px;
  font-weight: 860;
}

.approval-thread p {
  margin: 0;
  font-size: 13px;
  font-weight: 720;
}

.approval-thread strong {
  color: var(--green);
  font-size: 12px;
}

.approval-thread button {
  min-height: 36px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 14px;
  color: #ffffff;
  background: var(--green);
  font-weight: 820;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1.3fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0 54px;
}

.proof-strip p {
  margin: 0;
  color: #34394d;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.45;
}

.proof-strip div,
.system-cloud,
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #43495b;
  font-size: 12px;
  font-weight: 760;
}

.section {
  position: relative;
  padding: 84px 0;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -2;
  opacity: 0.84;
  pointer-events: none;
}

main > .section:nth-of-type(odd)::before {
  background:
    linear-gradient(135deg, rgba(246, 251, 248, 0.88), rgba(248, 252, 255, 0.78)),
    #ffffff;
}

main > .section:nth-of-type(even)::before {
  background:
    linear-gradient(135deg, rgba(248, 250, 255, 0.88), rgba(255, 249, 245, 0.7)),
    #ffffff;
}

.section h2,
.final-cta h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 690px;
  margin: 18px auto 0;
  font-size: 17px;
}

.page-main {
  padding-top: 36px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.48fr);
  gap: 42px;
  align-items: stretch;
  padding: 84px 0 72px;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 20px calc(50% - 50vw) 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, rgba(22, 119, 255, 0.13), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(37, 99, 235, 0.11), transparent 28%),
    rgba(255, 255, 255, 0.36);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 860;
}

.page-hero-text {
  max-width: 760px;
  margin: 28px 0 32px;
  color: #3b4054;
  font-size: 19px;
  line-height: 1.62;
  font-weight: 560;
}

.page-route-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.06) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(22, 119, 255, 0.06) 1px, transparent 1px) 0 0 / 36px 36px,
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(18, 56, 213, 0.1);
}

.page-route-card::before {
  grid-row: 1;
  min-height: 190px;
  margin: -2px -2px 24px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 34%, rgba(22, 119, 255, 0.82) 0 6px, rgba(22, 119, 255, 0.1) 7px 34px, transparent 35px),
    radial-gradient(circle at 74% 24%, rgba(123, 77, 245, 0.72) 0 5px, rgba(123, 77, 245, 0.1) 6px 30px, transparent 31px),
    radial-gradient(circle at 62% 76%, rgba(255, 138, 31, 0.75) 0 5px, rgba(255, 138, 31, 0.1) 6px 32px, transparent 33px),
    linear-gradient(115deg, rgba(22, 119, 255, 0.12), rgba(255, 255, 255, 0.9) 46%, rgba(123, 77, 245, 0.12)),
    #f7fbff;
  content: "";
}

.page-route-card::after {
  position: absolute;
  top: 78px;
  left: 48px;
  width: calc(100% - 96px);
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 119, 255, 0.08), rgba(22, 119, 255, 0.42), rgba(255, 138, 31, 0.34));
  box-shadow:
    84px 44px 0 rgba(123, 77, 245, 0.22),
    168px 90px 0 rgba(22, 119, 255, 0.18);
  content: "";
  transform: rotate(-8deg);
}

.page-route-card span,
.page-body-grid span,
.page-link-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--green);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-route-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.page-route-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.page-body-grid,
.page-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.page-body-grid article,
.page-link-grid a {
  display: block;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(16, 19, 41, 0.055);
}

.page-body-grid strong,
.page-link-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.16;
}

.page-body-grid p,
.page-link-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.split-section,
.systems-section,
.trust-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.problem-grid,
.outcome-grid,
.agent-grid,
.product-grid,
.control-grid,
.day-grid,
.grow-grid,
.guest-feature-grid {
  display: grid;
  gap: 14px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid article,
.outcome-grid article,
.agent-grid article,
.product-grid article,
.control-grid article,
.day-grid article,
.grow-grid article,
.guest-feature-grid article {
  padding: 22px;
}

.problem-grid strong,
.outcome-grid strong,
.agent-grid strong,
.product-grid strong,
.control-grid strong,
.day-grid strong,
.grow-grid strong,
.guest-feature-grid strong {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.16;
}

.problem-grid p,
.outcome-grid p,
.agent-grid p,
.product-grid p,
.control-grid p,
.day-grid p,
.grow-grid p,
.guest-feature-grid p {
  margin: 12px 0 0;
  font-size: 14px;
}

.outcome-section {
  padding: 68px 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(16, 19, 41, 0.055);
}

.outcome-section h2,
.outcome-section .section-heading p,
.outcome-section strong {
  color: var(--ink);
}

.outcome-grid {
  grid-template-columns: repeat(4, 1fr);
}

.outcome-grid article {
  min-height: 230px;
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 16px 42px rgba(16, 19, 41, 0.055);
}

.outcome-grid p {
  color: var(--muted);
}

.icon-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eef6ff;
}

.icon-mark::before {
  font-size: 20px;
  font-weight: 900;
}

.icon-mark.down::before {
  content: "↓";
  color: #69d8aa;
}

.icon-mark.up::before {
  content: "↑";
  color: #8bb3ff;
}

.icon-mark.time::before {
  content: "24";
  color: #ffd178;
  font-size: 15px;
}

.icon-mark.shield::before {
  content: "!";
  color: #ff9b7d;
}

.agent-grid {
  grid-template-columns: repeat(4, 1fr);
}

.agent-grid article {
  min-height: 202px;
}

.agent-grid span,
.grow-grid span {
  border-radius: var(--radius);
}

.agent-grid article:nth-child(3n + 1) span,
.grow-grid article:nth-child(1) span,
.agent-grid article:nth-child(3n + 2) span,
.grow-grid article:nth-child(2) span,
.agent-grid article:nth-child(3n) span,
.grow-grid article:nth-child(3) span {
  background: #eef6ff;
  color: var(--green);
}

.agent-more {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: var(--line) !important;
}

.agent-more p,
.agent-more strong {
  color: inherit;
}

.action-section {
  padding-top: 72px;
}

.ask-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
  gap: 18px;
  align-items: stretch;
}

.ask-panel {
  display: grid;
  align-content: end;
  min-height: 410px;
  padding: 28px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(22, 119, 255, 0.14), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(37, 99, 235, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.92);
  border-color: var(--line);
}

.ask-panel span {
  background: #eef6ff;
  color: var(--green);
}

.ask-panel strong {
  margin-top: 24px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.ask-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.ask-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ask-list article {
  min-height: 198px;
  padding: 22px;
}

.ask-list strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.18;
}

.ask-list p {
  margin: 12px 0 0;
  font-size: 14px;
}

.guest-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.guest-copy {
  display: grid;
  align-content: center;
  min-height: 500px;
  padding: 48px;
  border-radius: 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 20%, rgba(22, 119, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 76%, rgba(37, 99, 235, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(16, 19, 41, 0.055);
}

.guest-copy h2 {
  color: var(--ink);
}

.guest-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.guest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.guest-actions .btn-dark {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(22, 119, 255, 0.2);
}

.guest-actions .btn-quiet {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.phone-preview {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 20px;
  background:
    radial-gradient(circle at 80% 18%, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(22, 119, 255, 0.16), transparent 28%),
    #ffffff;
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(229, 232, 239, 0.9);
  border-radius: 28px;
  pointer-events: none;
}

.phone-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.phone-bar span {
  color: var(--green);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.phone-bar strong {
  font-size: 14px;
}

.chat-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 46px;
}

.chat-user,
.chat-ai {
  max-width: 86%;
  margin: 0;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.45;
}

.chat-user {
  justify-self: end;
  color: var(--ink);
  background: #eef4ff;
  border: 1px solid #dce7ff;
  font-weight: 760;
}

.chat-ai {
  justify-self: start;
  display: grid;
  gap: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(16, 19, 41, 0.06);
}

.chat-ai span,
.chat-ai small {
  color: var(--muted);
}

.chat-ai small {
  font-size: 12px;
}

.chat-ai button {
  width: max-content;
  min-height: 38px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 16px;
  color: #ffffff;
  background: var(--green);
  font-weight: 820;
}

.guest-feature-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.guest-feature-grid article {
  min-height: 190px;
}

.guest-feature-grid article:nth-child(3n + 1) span,
.guest-feature-grid article:nth-child(3n + 2) span,
.guest-feature-grid article:nth-child(3n) span {
  background: #eef6ff;
  color: var(--green);
}

.products-section {
  padding-bottom: 72px;
}

.grow-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 14px;
}

.grow-grid article {
  min-height: 190px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid article {
  min-height: 164px;
}

.product-grid strong {
  margin-top: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.workflow-grid span {
  min-height: 58px;
  padding: 0 14px;
}

.control-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.day-grid {
  grid-template-columns: repeat(3, 1fr);
}

.day-grid article {
  min-height: 292px;
}

.day-grid b {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-size: 13px;
}

.systems-section p {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: 17px;
}

.system-cloud,
.industry-grid {
  align-content: start;
}

.system-cloud span,
.industry-grid span {
  min-height: 48px;
  padding: 0 18px;
}

.industries-section {
  padding-top: 72px;
}

.industry-grid {
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.trust-section {
  padding: 64px 42px;
  border-radius: 18px;
  background: var(--soft);
}

.trust-section p {
  margin: 20px 0 0;
  font-size: 17px;
}

.trust-section ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-section li {
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.trust-section strong,
.trust-section span {
  display: block;
}

.trust-section strong {
  font-size: 16px;
}

.trust-section span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 72px 0 42px;
  padding: 44px;
  border-radius: 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(16, 19, 41, 0.055);
  background:
    radial-gradient(circle at 10% 20%, rgba(22, 119, 255, 0.16), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(37, 99, 235, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.9);
}

.final-cta p {
  margin: 0 0 8px;
  font-weight: 840;
}

.final-cta h2 {
  color: var(--ink);
}

.final-cta span {
  display: block;
  max-width: 800px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.final-cta .btn-light {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(22, 119, 255, 0.2);
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-lift {
  transform: translate3d(0, calc(var(--scroll-lift, 0) * 1px), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

@media (max-width: 1180px) {
  .site-header,
  main,
  .site-footer {
    width: calc(100% - 36px);
    max-width: 1040px;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .nav-cta {
    margin-left: auto;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual,
  .product-shell {
    min-height: 690px;
  }

  .proof-strip,
  .split-section,
  .systems-section,
  .trust-section,
  .final-cta,
  .ask-layout,
  .guest-section,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .outcome-grid,
  .agent-grid,
  .product-grid,
  .grow-grid,
  .workflow-grid,
  .guest-feature-grid,
  .page-body-grid,
  .page-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-actions {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: calc(100% - 28px);
    max-width: 680px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-header {
    gap: 16px;
    padding: 18px 0;
    justify-content: space-between;
  }

  .brand img {
    width: 150px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-cta,
  .nav-interest {
    flex: 0 0 auto;
    margin-left: 0;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .page-main {
    padding-top: 10px;
  }

  .page-hero {
    padding: 48px 0 54px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero-text {
    font-size: 17px;
  }

  .page-route-card {
    min-height: 280px;
    padding: 22px;
    border-radius: 12px;
  }

  .hero {
    display: block;
    gap: 30px;
    padding-top: 16px;
  }

  .hero::before {
    inset: 0 -28px;
  }

  .hero-flow-canvas {
    inset: 0 -28px;
    width: calc(100% + 56px);
  }

  .hero-copy,
  .hero-visual,
  .product-shell {
    width: 100%;
    min-width: 0;
  }

  .hero-text {
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .outcome-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .interest-modal,
  .legal-modal {
    padding: 12px;
  }

  .interest-dialog,
  .legal-dialog {
    max-height: calc(100vh - 24px);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .legal-dialog {
    padding: 22px;
  }

  .legal-dialog header {
    padding-right: 0;
  }

  .legal-dialog h2 {
    font-size: 38px;
  }

  .interest-form {
    grid-template-columns: 1fr;
  }

  .interest-form-actions {
    display: grid;
  }

  .hero-visual,
  .product-shell {
    min-height: 0;
  }

  .hero-visual {
    margin-top: 30px;
  }

  .product-topbar {
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 16px;
  }

  .brain-map {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px 0;
  }

  .brain-core {
    grid-column: auto;
    grid-row: auto;
    width: 150px;
    height: 150px;
    order: -1;
  }

  .brain-core::before,
  .brain-core::after {
    display: none;
  }

  .signal-card {
    min-height: 0;
  }

  .approval-thread {
    position: static;
    margin: 16px;
  }

  .approval-thread div {
    grid-template-columns: 34px 1fr;
    padding: 10px 0;
  }

  .approval-thread strong,
  .approval-thread button {
    grid-column: 2;
    justify-self: start;
  }

  .section {
    padding: 58px 0;
  }

  .outcome-section,
  .trust-section,
  .final-cta {
    padding: 32px 20px;
    border-radius: 12px;
  }

  .problem-grid,
  .outcome-grid,
  .agent-grid,
  .product-grid,
  .control-grid,
  .day-grid,
  .grow-grid,
  .workflow-grid,
  .ask-list,
  .guest-feature-grid,
  .trust-section ul {
    grid-template-columns: 1fr;
  }

  .page-body-grid,
  .page-link-grid {
    grid-template-columns: 1fr;
  }

  .ask-panel {
    min-height: 330px;
  }

  .guest-copy {
    min-height: 0;
    padding: 32px 20px;
    border-radius: 12px;
  }

  .guest-actions .btn {
    width: 100%;
  }

  .phone-preview {
    min-height: 560px;
    padding: 16px;
  }

  .chat-user,
  .chat-ai {
    max-width: 100%;
  }

  .system-cloud span,
  .industry-grid span,
  .workflow-grid span {
    width: 100%;
  }

  .final-cta .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 138px;
  }

  .nav-cta {
    padding: 0 12px;
    font-size: 12px;
  }

  .nav-interest {
    padding: 0 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (min-width: 1280px) {
  .ai-hero-copy,
  .story-stage,
  .command-demo-section {
    max-width: 1640px;
  }

  .story-stage {
    grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1fr);
  }
}

@media (max-width: 1240px) {
  .site-header {
    gap: 18px;
  }

  .brand img {
    width: 188px;
  }

  .main-nav {
    gap: 4px;
    font-size: 13px;
  }

  .main-nav a,
  .nav-group > a,
  .nav-trigger {
    padding: 0 9px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-interest,
  .nav-cta {
    padding: 0 16px;
    font-size: 13px;
  }

  .ai-hero h1 {
    font-size: clamp(76px, 9.4vw, 132px);
  }

  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-interest {
    display: none;
  }

  .ai-hero-copy {
    min-height: 620px;
  }

  .trusted-scene {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .ai-hero-copy {
    min-height: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-active-question {
    min-height: 128px;
    padding: 18px;
  }

  .workflow-active-question strong {
    font-size: clamp(32px, 12vw, 54px);
  }

  .story-visual {
    overflow: visible;
  }

  .story-state-visuals article {
    grid-template-rows: auto auto auto auto;
  }

  .legal-dialog,
  .interest-dialog {
    border-radius: 0;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 130px;
  }

  .cookie-dialog {
    max-height: calc(100vh - 24px);
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 10px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 10px;
  }

  .ai-hero h1 {
    font-size: 46px;
  }

  .ai-hero .hero-text {
    font-size: 18px;
  }

  .trusted-stat strong {
    font-size: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .flow-canvas,
  .hero-flow-canvas {
    opacity: 0.38;
  }

  .scroll-reveal,
  .scroll-lift,
  .hero-copy,
  .product-shell,
  .hero-flow-canvas {
    transform: none !important;
    transition: none !important;
  }
}

/* Home experience */
.home-experience,
.page-experience {
  --findsy-blue: #1677ff;
  --findsy-deep-blue: #1238d5;
  --findsy-indigo: #2531c8;
  --findsy-violet: #7b4df5;
  --findsy-orange: #ff8a1f;
  --findsy-ice: #eef6ff;
  --findsy-ink: #07112f;
  color: var(--findsy-ink);
  background:
    linear-gradient(180deg, rgba(241, 247, 255, 0.96), rgba(255, 255, 255, 0) 760px),
    radial-gradient(circle at 18% 12%, rgba(22, 119, 255, 0.14), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(123, 77, 245, 0.11), transparent 28%),
    #ffffff;
}

.home-experience .page-flow-canvas,
.page-experience .page-flow-canvas {
  opacity: 0.28;
}

.home-experience .main-nav a:hover,
.home-experience .main-nav a[aria-current="page"],
.page-experience .main-nav a:hover,
.page-experience .main-nav a[aria-current="page"] {
  background: rgba(22, 119, 255, 0.1);
  color: var(--findsy-deep-blue);
}

.home-experience .nav-menu a:hover,
.home-experience .nav-menu a:focus-visible,
.page-experience .nav-menu a:hover,
.page-experience .nav-menu a:focus-visible {
  background: rgba(22, 119, 255, 0.1);
}

.home-experience .btn-dark,
.home-experience .final-cta .btn-light,
.page-experience .btn-dark,
.page-experience .final-cta .btn-light {
  color: #ffffff;
  background: linear-gradient(135deg, var(--findsy-blue), var(--findsy-indigo));
  box-shadow: 0 18px 40px rgba(22, 119, 255, 0.22);
}

.home-experience .btn-quiet {
  color: var(--findsy-ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(22, 119, 255, 0.18);
}

.home-experience .btn-outline {
  color: var(--findsy-blue);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(22, 119, 255, 0.28);
  box-shadow: 0 18px 40px rgba(22, 119, 255, 0.1);
}

.home-experience .eyebrow {
  color: var(--findsy-blue);
}

.home-experience main {
  width: 100%;
  max-width: none;
}

.home-experience main > :not(.ai-hero):not(.story-scroll) {
  width: calc(100% - 56px);
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  width: calc(100% - 56px);
  max-width: 1360px;
  margin: 0 auto;
  padding: 56px 0 34px;
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid rgba(18, 56, 213, 0.1);
  position: relative;
  z-index: 1;
}

.footer-intro {
  display: grid;
  gap: 18px;
}

.footer-brand img {
  width: 160px;
}

.footer-intro p {
  max-width: 330px;
  margin: 0;
  color: #5f6a82;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.footer-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.footer-map div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-map strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-map a,
.footer-bottom a {
  color: #4c5874;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.24;
}

.site-footer a:hover {
  color: var(--blue);
}

.interest-modal[hidden],
.legal-modal[hidden] {
  display: none;
}

.interest-modal,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.interest-modal-backdrop,
.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 21, 54, 0.48);
  backdrop-filter: blur(14px);
}

.interest-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 860px);
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  overflow: auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(22, 119, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(22, 119, 255, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 88% 12%, rgba(123, 77, 245, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.96));
  box-shadow: 0 34px 100px rgba(9, 21, 54, 0.28);
}

.interest-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  color: var(--findsy-ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 12px;
  font-weight: 840;
  cursor: pointer;
}

.interest-dialog-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-right: 10px;
}

.interest-dialog-copy h2 {
  margin: 0;
  color: var(--findsy-ink);
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 0.94;
}

.interest-dialog-copy p:not(.eyebrow) {
  margin: 0;
  color: #4c566f;
  font-size: 18px;
  line-height: 1.48;
  font-weight: 620;
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.interest-form label {
  display: grid;
  gap: 8px;
}

.interest-form label > span {
  color: #2d3650;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.interest-form em {
  color: #7b8499;
  font-style: normal;
  font-weight: 760;
  text-transform: none;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 0;
  padding: 0 13px;
  color: var(--findsy-ink);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 15px;
  font-weight: 640;
  outline: none;
}

.interest-form textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: rgba(22, 119, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.1);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.interest-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.interest-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
}

.interest-consent span {
  color: #4d576e !important;
  font-size: 13px !important;
  line-height: 1.35;
  font-weight: 680 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.interest-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.interest-form-actions p {
  margin: 0;
  color: #4d576e;
  font-size: 13px;
  line-height: 1.34;
  font-weight: 720;
}

.interest-form.is-submitting {
  opacity: 0.78;
  pointer-events: none;
}

html.interest-open body,
html.legal-open body,
html.cookie-open body {
  overflow: hidden;
}

.legal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(22, 119, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.04) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(rgba(22, 119, 255, 0.04) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 82% 8%, rgba(123, 77, 245, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.97));
  box-shadow: 0 34px 100px rgba(9, 21, 54, 0.28);
}

.legal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  color: var(--findsy-ink);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 12px;
  font-weight: 840;
  cursor: pointer;
}

.legal-dialog header {
  max-width: 760px;
  padding-right: 72px;
}

.legal-dialog h2 {
  margin: 0;
  color: var(--findsy-ink);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.95;
}

.legal-dialog header p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #48536b;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 620;
}

.legal-dialog small {
  display: inline-flex;
  margin-top: 18px;
  color: #748097;
  font-size: 12px;
  font-weight: 760;
}

.legal-content {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.legal-content article {
  padding: 18px;
  border: 1px solid rgba(22, 119, 255, 0.13);
  background: rgba(255, 255, 255, 0.72);
}

.legal-content h3 {
  margin: 0;
  color: var(--findsy-ink);
  font-size: 20px;
  line-height: 1.15;
}

.legal-content p {
  margin: 10px 0 0;
  color: #4f5a71;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 620;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #4f5a71;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 620;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 950;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.045) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(9, 21, 54, 0.18);
  backdrop-filter: blur(14px);
}

.cookie-banner span {
  color: var(--findsy-blue);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 8px 0 0;
  color: #48536b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 640;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0 16px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 21, 54, 0.5);
  backdrop-filter: blur(12px);
}

.cookie-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(22, 119, 255, 0.2);
  background:
    radial-gradient(circle at 84% 12%, rgba(123, 77, 245, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.96));
  box-shadow: 0 34px 100px rgba(9, 21, 54, 0.28);
}

.cookie-close {
  float: right;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  color: var(--findsy-ink);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 12px;
  font-weight: 840;
  cursor: pointer;
}

.cookie-dialog h2 {
  margin: 0 0 22px;
  color: var(--findsy-ink);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.96;
}

.cookie-options {
  display: grid;
  gap: 12px;
}

.cookie-options label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(22, 119, 255, 0.13);
  background: rgba(255, 255, 255, 0.72);
}

.cookie-options input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.cookie-options span {
  color: #4d576e;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 640;
}

.cookie-options strong {
  display: block;
  margin-bottom: 4px;
  color: var(--findsy-ink);
  font-size: 15px;
}

.cookie-dialog .cookie-actions {
  margin-top: 20px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(18, 56, 213, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #6d7892;
  font-size: 13px;
  font-weight: 620;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ai-hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: end;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 88px 0 74px;
  isolation: isolate;
  overflow: hidden;
}

.ai-hero::before {
  position: absolute;
  inset: -96px -32vw -24px;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 14% 34%, rgba(22, 119, 255, 0.18), transparent 34%),
    radial-gradient(circle at 76% 28%, rgba(123, 77, 245, 0.13), transparent 30%),
    radial-gradient(circle at 62% 82%, rgba(255, 138, 31, 0.08), transparent 28%);
}

.hero-network-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.76;
  pointer-events: none;
}

.hero-signal-layer {
  position: absolute;
  inset: 0 max(0px, calc((100vw - 1360px) / 2));
  z-index: -1;
  pointer-events: none;
}

.signal-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--findsy-blue);
  box-shadow: 0 0 0 18px rgba(22, 119, 255, 0.08);
  animation: signalFloat 9s ease-in-out infinite;
}

.dot-a {
  left: 10%;
  top: 28%;
}

.dot-b {
  left: 28%;
  top: 16%;
  background: var(--findsy-violet);
  animation-delay: -2s;
}

.dot-c {
  right: 22%;
  top: 24%;
  background: var(--findsy-orange);
  animation-delay: -4s;
}

.dot-d {
  right: 9%;
  bottom: 26%;
  animation-delay: -6s;
}

.dot-e {
  left: 42%;
  bottom: 20%;
  background: var(--findsy-indigo);
  animation-delay: -8s;
}

.ai-hero-copy {
  position: relative;
  z-index: 1;
  width: calc(100% - 56px);
  max-width: 1360px;
  margin: 0 auto;
  padding: 34px 0 10px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68);
}

.ai-hero h1 {
  margin: 0;
  max-width: 920px;
  color: var(--findsy-ink);
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 890;
}

.ai-hero .hero-text {
  max-width: 780px;
  margin: 30px 0 0;
  color: #252d4b;
  font-size: 25px;
  line-height: 1.34;
  font-weight: 720;
}

.hero-subline {
  max-width: 720px;
  margin: 18px 0 34px;
  color: #566079;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 620;
}

.story-scroll {
  position: relative;
  margin-top: 24px;
}

.page-story-scroll {
  margin-top: 0;
}

.story-panel {
  position: relative;
  min-height: 280vh;
  isolation: isolate;
}

.story-panel::before {
  position: absolute;
  inset-block: 0;
  left: 50%;
  z-index: -4;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 14% 18%, rgba(22, 119, 255, 0.055), transparent 34%),
    radial-gradient(circle at 86% 74%, rgba(123, 77, 245, 0.045), transparent 32%),
    #ffffff;
}

.story-panel:nth-child(even)::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.74), transparent 36%),
    radial-gradient(circle at 82% 70%, rgba(123, 77, 245, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(230, 242, 255, 0.98), rgba(241, 246, 255, 0.96) 46%, rgba(222, 235, 255, 0.94));
}

.story-panel:nth-child(odd)::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(22, 119, 255, 0.075), transparent 34%),
    radial-gradient(circle at 80% 62%, rgba(255, 138, 31, 0.045), transparent 32%),
    #ffffff;
}

.story-stage {
  position: sticky;
  top: 96px;
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: center;
  padding: 54px 0 62px;
  overflow: visible;
  isolation: isolate;
  background-image: linear-gradient(rgba(22, 119, 255, 0.08), rgba(123, 77, 245, 0.2), rgba(255, 138, 31, 0.1));
  background-repeat: no-repeat;
  background-size: 1px calc(100% - 118px);
  background-position: clamp(22px, 2.6vw, 38px) 58px;
}

.home-experience .story-stage {
  width: calc(100% - 56px);
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
}

.story-stage::before {
  position: absolute;
  inset: -18vh -34vw;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 18% 26%, rgba(22, 119, 255, 0.08), transparent 30%),
    radial-gradient(circle at 80% 68%, rgba(123, 77, 245, 0.07), transparent 34%),
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.42), transparent 42%);
  pointer-events: none;
}

.story-stage::after {
  position: absolute;
  left: clamp(18px, 2.2vw, 34px);
  top: var(--orbit-y, 10%);
  z-index: 4;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orbit-color, var(--findsy-blue));
  box-shadow:
    0 0 0 12px rgba(22, 119, 255, 0.08),
    0 18px 42px rgba(22, 119, 255, 0.22);
  content: "";
  opacity: 0.86;
  transform: translate3d(0, -50%, 0);
  transition:
    top 220ms ease-out,
    background 220ms ease-out;
  pointer-events: none;
}

.story-panel:nth-child(even) .story-stage::before {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.48), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(22, 119, 255, 0.1), transparent 34%);
}

.story-canvas {
  position: absolute;
  inset: 0 -88px;
  z-index: -2;
  width: calc(100% + 176px);
  height: 100%;
  opacity: 0.86;
  pointer-events: none;
}

.story-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.story-copy h2 {
  margin: 0;
  color: var(--findsy-ink);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 880;
}

.story-states {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.story-states p {
  margin: 0;
  min-height: 54px;
  color: #66718b;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 680;
  opacity: 0.52;
  transform: translate3d(-10px, 0, 0);
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.story-states p.is-active {
  color: #172245;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 14px;
  overflow: visible;
}

.story-visual span,
.story-visual div,
.story-visual strong,
.story-visual button {
  position: relative;
  z-index: 1;
}

.story-state-visuals {
  position: absolute !important;
  inset: 34px;
  z-index: 3 !important;
  pointer-events: none;
}

.story-state-visuals article {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 18px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(22, 119, 255, 0.2);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.055) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(22, 119, 255, 0.055) 1px, transparent 1px) 0 0 / 38px 38px,
    radial-gradient(circle at 82% 18%, rgba(123, 77, 245, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.92));
  box-shadow: 0 26px 90px rgba(18, 56, 213, 0.12);
  opacity: 0;
  transform: translate3d(34px, 0, 0);
  transition:
    opacity 300ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-state-visuals article::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(22, 119, 255, 0.22) 0 8px, transparent 9px),
    radial-gradient(circle, rgba(123, 77, 245, 0.1), transparent 64%);
  content: "";
}

.story-visual-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.story-state-visuals span {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  color: var(--findsy-blue);
  background: rgba(22, 119, 255, 0.07);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-state-visuals small {
  color: rgba(22, 119, 255, 0.24);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 0;
}

.story-state-visuals strong {
  max-width: 520px;
  align-self: end;
  color: var(--findsy-ink);
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

.story-state-visuals p {
  max-width: 520px;
  margin: 0;
  color: #424b61;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.42;
  font-weight: 670;
}

.story-state-visuals dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 10px;
  margin: 0;
}

.story-state-visuals dl div {
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid rgba(22, 119, 255, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.story-state-visuals dt {
  color: #7a8498;
  font-size: 10px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-state-visuals dd {
  margin: 8px 0 0;
  color: var(--findsy-deep-blue);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 860;
  overflow-wrap: anywhere;
}

.story-state-visuals i {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 2px;
  background: linear-gradient(90deg, var(--findsy-blue), var(--findsy-violet), var(--findsy-orange));
  transform-origin: left center;
  transform: scaleX(0.38);
  transition: transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-panel[data-active-state="1"] .story-state-visuals article:nth-child(1),
.story-panel[data-active-state="2"] .story-state-visuals article:nth-child(2),
.story-panel[data-active-state="3"] .story-state-visuals article:nth-child(3),
.story-panel[data-active-state="4"] .story-state-visuals article:nth-child(4) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story-panel[data-active-state="1"] .story-state-visuals article:nth-child(1) i {
  transform: scaleX(0.32);
}

.story-panel[data-active-state="2"] .story-state-visuals article:nth-child(2) i {
  transform: scaleX(0.55);
}

.story-panel[data-active-state="3"] .story-state-visuals article:nth-child(3) i {
  transform: scaleX(0.78);
}

.story-panel[data-active-state="4"] .story-state-visuals article:nth-child(4) i {
  transform: scaleX(1);
}

.story-visual > span,
.story-visual > div:not(.story-state-visuals),
.story-visual > strong,
.story-visual > button {
  opacity: 0.34;
  transform: scale(0.94);
}

.visual-systems,
.visual-existing,
.visual-agents {
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  grid-auto-rows: minmax(108px, auto);
}

.visual-systems span,
.visual-existing span,
.visual-agents span,
.visual-control span {
  position: relative;
  min-height: 98px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  padding: 20px 18px 18px 46px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.045), transparent 58%),
    rgba(255, 255, 255, 0.7);
  color: #182342;
  box-shadow: none;
  font-size: 17px;
  font-weight: 820;
  line-height: 1.16;
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
}

.visual-systems span::before,
.visual-existing span::before,
.visual-agents span::before {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--findsy-blue);
  box-shadow: 0 0 0 8px rgba(22, 119, 255, 0.08);
  content: "";
}

.visual-systems span::after,
.visual-existing span::after,
.visual-agents span::after {
  display: block;
  color: #7a8498;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  content: attr(data-meta);
}

.visual-systems span:not([data-meta])::after,
.visual-existing span:not([data-meta])::after,
.visual-agents span:not([data-meta])::after {
  content: "Live signal";
}

.visual-systems span:nth-child(2n)::before,
.visual-existing span:nth-child(2n)::before,
.visual-agents span:nth-child(2n)::before {
  background: var(--findsy-violet);
  box-shadow: 0 0 0 8px rgba(123, 77, 245, 0.08);
}

.visual-systems span:nth-child(3n)::before,
.visual-existing span:nth-child(3n)::before,
.visual-agents span:nth-child(3n)::before {
  background: var(--findsy-orange);
  box-shadow: 0 0 0 8px rgba(255, 138, 31, 0.08);
}

.story-panel[data-active-state="3"] .visual-systems span {
  border-color: rgba(22, 119, 255, 0.34);
  background: rgba(238, 246, 255, 0.88);
  transform: translate3d(0, 8px, 0);
}

.visual-systems strong {
  grid-column: 2;
  min-height: 128px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--findsy-blue), var(--findsy-violet));
  box-shadow: 0 28px 84px rgba(22, 119, 255, 0.28);
  opacity: 0;
  transform: scale(0.86);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.story-panel[data-active-state="4"] .visual-systems strong {
  opacity: 1;
  transform: scale(1);
}

.visual-dashboard {
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  grid-auto-rows: minmax(150px, auto);
}

.visual-dashboard div,
.visual-recommendations div,
.visual-roi div {
  min-height: 144px;
  padding: 22px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.055), transparent 58%),
    rgba(255, 255, 255, 0.78);
  box-shadow: none;
  min-width: 0;
  overflow-wrap: anywhere;
}

.visual-dashboard span,
.visual-recommendations span,
.visual-roi span {
  display: block;
  color: #68738d;
  font-size: 12px;
  font-weight: 830;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-dashboard strong,
.visual-roi strong {
  display: block;
  margin-top: 24px;
  color: var(--findsy-deep-blue);
  font-size: 34px;
  line-height: 1;
}

.visual-dashboard p,
.visual-recommendations p {
  margin: 12px 0 0;
  color: #5b6578;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 640;
}

.visual-agents span:nth-child(2n),
.visual-existing span:nth-child(3n + 2) {
  border-color: rgba(123, 77, 245, 0.2);
}

.visual-agents span:nth-child(3n),
.visual-existing span:nth-child(4n) {
  border-color: rgba(255, 138, 31, 0.28);
}

.visual-recommendations {
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(112px, auto);
}

.visual-recommendations div {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
}

.visual-recommendations span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--findsy-blue);
  background: rgba(22, 119, 255, 0.08);
}

.visual-recommendations strong {
  color: #172245;
  font-size: 24px;
  line-height: 1.06;
}

.visual-automation {
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  grid-auto-rows: minmax(172px, auto);
}

.visual-automation div {
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 54px rgba(18, 56, 213, 0.075);
  min-width: 0;
  overflow-wrap: anywhere;
}

.visual-automation div span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--findsy-blue);
  background: rgba(22, 119, 255, 0.09);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.visual-automation div strong {
  display: block;
  margin-top: 20px;
  color: var(--findsy-ink);
  font-size: 24px;
  line-height: 1.05;
}

.visual-automation div p {
  margin: 12px 0 0;
  color: #5d6578;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 640;
}

.visual-automation button {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 56px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--findsy-blue), var(--findsy-indigo));
  font-weight: 860;
  box-shadow: 0 18px 44px rgba(22, 119, 255, 0.24);
}

.visual-control {
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  grid-auto-rows: minmax(160px, auto);
}

.visual-control span {
  min-height: 160px;
  font-size: 22px;
}

.story-panel[data-active-state="2"] .visual-control span:nth-child(1),
.story-panel[data-active-state="3"] .visual-control span:nth-child(2),
.story-panel[data-active-state="4"] .visual-control span:nth-child(3) {
  color: #ffffff;
  background: linear-gradient(135deg, var(--findsy-blue), var(--findsy-indigo));
  transform: translateY(-10px);
}

.visual-roi {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  grid-auto-rows: minmax(144px, auto);
}

.visual-roi div:nth-child(4) strong {
  color: var(--findsy-orange);
}

.conversion-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0 70px;
}

.conversion-strip article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  border-top: 1px solid rgba(22, 119, 255, 0.2);
  border-bottom: 1px solid rgba(22, 119, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.7);
  padding: 18px;
}

.conversion-strip strong {
  color: var(--findsy-deep-blue);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.conversion-strip span {
  color: #4a5268;
  font-size: 13px;
  font-weight: 780;
}

.conversion-section {
  position: relative;
  z-index: 1;
  padding: 86px 0;
  border-top: 1px solid rgba(22, 119, 255, 0.12);
  isolation: isolate;
}

.conversion-section::before,
.social-proof-strip::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  pointer-events: none;
}

.product-proof-section::before {
  background:
    radial-gradient(circle at 16% 26%, rgba(123, 77, 245, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(246, 250, 255, 0.92), rgba(255, 255, 255, 0.94));
}

.proof-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.proof-flow-grid article {
  position: relative;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(18, 56, 213, 0.06);
  overflow: hidden;
}

.proof-flow-grid article::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.proof-flow-grid span {
  color: var(--findsy-blue);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-flow-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--findsy-ink);
  font-size: 24px;
  line-height: 1.08;
}

.proof-flow-grid p {
  margin: 18px 0 0;
  color: #5d6578;
  font-size: 15px;
  line-height: 1.5;
}

.command-demo-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(460px, 1.14fr);
  gap: 42px;
  align-items: start;
  min-height: 230vh;
  padding-bottom: 96px;
}

.command-demo-section::before {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 138, 31, 0.11), transparent 22%),
    linear-gradient(135deg, #ffffff, rgba(238, 246, 255, 0.86));
}

.command-copy {
  position: sticky;
  top: 118px;
  max-width: 500px;
}

.command-copy h2 {
  margin: 0;
  color: var(--findsy-ink);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.command-copy p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: #4b5368;
  font-size: 18px;
  line-height: 1.58;
}

.command-console {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.06) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(22, 119, 255, 0.06) 1px, transparent 1px) 0 0 / 42px 42px,
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(18, 56, 213, 0.11);
  overflow: hidden;
}

.command-console::before {
  position: absolute;
  inset: -20% 12% auto;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.18), transparent 66%);
  content: "";
}

.command-bar,
.command-response {
  position: relative;
  z-index: 1;
}

.command-bar {
  margin: 24px;
  padding: 18px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 18px 18px 18px 4px;
  background: rgba(255, 255, 255, 0.88);
}

.command-bar span,
.command-response span {
  display: block;
  color: var(--findsy-blue);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.command-bar strong {
  display: inline-block;
  max-width: 100%;
  margin-top: 10px;
  color: var(--findsy-ink);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.08;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
}

.command-bar strong::before {
  display: inline-block;
  width: 0;
  overflow: hidden;
  border-right: 2px solid var(--findsy-blue);
  content: "Why did labour cost increase this weekend?";
  animation:
    commandType 3.2s steps(43, end) 0.45s forwards,
    commandCaret 760ms step-end infinite;
}

.command-response {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 8px 24px 24px;
}

.command-response article {
  width: min(92%, 560px);
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(22, 119, 255, 0.13);
  border-radius: 18px 18px 18px 4px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 44px rgba(18, 56, 213, 0.07);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: chatBubbleIn 540ms ease forwards;
}

.command-response article:nth-child(even) {
  justify-self: end;
  border-radius: 18px 18px 4px 18px;
  background: rgba(238, 246, 255, 0.88);
}

.command-response .step-one {
  animation-delay: 3.7s;
}

.command-response .step-two {
  animation-delay: 4.55s;
}

.command-response .step-three {
  animation-delay: 5.4s;
}

.command-response .step-four {
  animation-delay: 6.25s;
}

.command-response p {
  margin: 10px 0 0;
  color: #404862;
  font-size: 15px;
  line-height: 1.44;
  font-weight: 640;
}

.command-action {
  justify-self: end;
  min-height: 48px;
  margin-top: 2px;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: chatBubbleIn 520ms ease 7s forwards;
}

.command-action.is-complete {
  background: linear-gradient(135deg, #1238d5, #0f9f7a);
}

.workflow-console {
  position: sticky;
  top: 112px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 660px;
  padding: 18px;
}

.workflow-routing-panel {
  position: relative;
  z-index: 1;
}

.workflow-active-question span,
.workflow-outcome span {
  display: block;
  color: var(--findsy-blue);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-routing-panel {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.workflow-active-question,
.workflow-outcome {
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 54px rgba(18, 56, 213, 0.06);
}

.workflow-active-question {
  min-height: 172px;
  padding: 24px;
  background:
    radial-gradient(circle at 82% 22%, rgba(123, 77, 245, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.workflow-active-question span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.workflow-active-question em,
.workflow-active-question i {
  font-style: normal;
}

.workflow-active-question i {
  color: #7b8499;
}

.workflow-active-question strong {
  display: block;
  max-width: 760px;
  margin-top: 26px;
  color: var(--findsy-ink);
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.98;
  transform: translate3d(var(--workflow-x, 0px), 0, 0);
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 260ms ease;
}

.workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.workflow-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 170px;
  padding: 16px;
  border: 1px solid rgba(22, 119, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.workflow-steps article span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--findsy-blue), var(--findsy-violet));
  font-size: 11px;
  font-weight: 880;
}

.workflow-steps article strong {
  color: var(--findsy-ink);
  font-size: 19px;
  line-height: 1.1;
}

.workflow-steps article p {
  margin: 0;
  color: #535d74;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 640;
}

.workflow-outcome {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.workflow-outcome strong {
  display: block;
  margin-top: 8px;
  color: var(--findsy-ink);
  font-size: 20px;
  line-height: 1.18;
}

.workflow-outcome .command-action {
  margin: 0;
  opacity: 1;
  transform: none;
  animation: none;
}

.question-wall {
  position: relative;
  width: 100vw;
  max-width: none !important;
  margin-top: -18px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 26px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(135deg, #126dff, #244dff 48%, #1738da);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.question-wall::before {
  position: absolute;
  inset: 14px 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
  pointer-events: none;
}

.question-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 0 24px;
  animation: promptMarquee 42s linear infinite;
}

.question-wall:hover .question-track {
  animation-play-state: paused;
}

.prompt-card {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 300px;
  gap: 10px;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.prompt-card:hover,
.prompt-card.is-active {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.prompt-card span {
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prompt-card strong {
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.14;
  font-weight: 540;
}

.prompt-card:nth-child(3n + 2) strong {
  color: #45ff77;
}

.prompt-card:nth-child(4n) strong {
  color: #ffb23f;
}

.prompt-card.is-active strong {
  color: #ffffff;
}

@keyframes promptMarquee {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.social-proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding: 54px 0 88px;
}

.trusted-scene {
  position: relative;
  min-height: clamp(560px, 60vw, 740px);
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(22, 119, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.045) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(22, 119, 255, 0.04) 1px, transparent 1px) 0 0 / 64px 64px,
    radial-gradient(circle at 74% 42%, rgba(22, 119, 255, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.trusted-scene::before,
.trusted-scene::after {
  position: absolute;
  right: 34px;
  left: 34px;
  height: 1px;
  background: rgba(22, 119, 255, 0.18);
  content: "";
}

.trusted-scene::before {
  top: 28px;
}

.trusted-scene::after {
  bottom: 96px;
}

.trusted-logo-heading span {
  margin: 0;
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trusted-globe {
  position: absolute;
  top: 44px;
  right: clamp(22px, 8vw, 160px);
  z-index: 1;
  width: clamp(440px, 54vw, 840px);
  aspect-ratio: 1;
  border-radius: 999px;
  opacity: 0.72;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.78), transparent 29%),
    repeating-radial-gradient(circle at 50% 50%, rgba(18, 56, 213, 0.11) 0 1px, transparent 2px 9px),
    radial-gradient(circle at 50% 50%, rgba(22, 119, 255, 0.18), rgba(22, 119, 255, 0.04) 58%, transparent 66%);
  box-shadow:
    inset 0 0 0 1px rgba(22, 119, 255, 0.14),
    inset 0 0 84px rgba(22, 119, 255, 0.1);
}

.trusted-globe::before,
.trusted-globe::after {
  position: absolute;
  inset: 8%;
  border-radius: 999px;
  content: "";
}

.trusted-globe::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(22, 119, 255, 0.1) 43px 44px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(123, 77, 245, 0.08) 43px 44px);
  mask-image: radial-gradient(circle, #000 62%, transparent 68%);
}

.trusted-globe::after {
  border: 1px solid rgba(22, 119, 255, 0.16);
  transform: rotate(-14deg) scaleX(0.72);
}

.trusted-pin {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: var(--findsy-blue);
  box-shadow: 0 0 0 10px rgba(22, 119, 255, 0.1);
  animation: trustedPinPulse 3.8s ease-in-out infinite;
}

.trusted-pin:nth-child(2n) {
  background: var(--findsy-violet);
  animation-delay: 0.8s;
}

.trusted-pin:nth-child(3n) {
  background: var(--findsy-orange);
  animation-delay: 1.4s;
}

.pin-one {
  left: 18%;
  top: 35%;
}

.pin-two {
  left: 29%;
  top: 25%;
}

.pin-three {
  left: 45%;
  top: 46%;
}

.pin-four {
  left: 58%;
  top: 31%;
}

.pin-five {
  left: 71%;
  top: 40%;
}

.pin-six {
  left: 62%;
  top: 62%;
}

.pin-seven {
  left: 35%;
  top: 69%;
}

.pin-eight {
  left: 76%;
  top: 22%;
}

.trusted-stat {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  max-width: min(860px, 72%);
}

.trusted-stat strong {
  color: var(--findsy-ink);
  font-size: clamp(104px, 16vw, 258px);
  line-height: 0.82;
  font-weight: 500;
  letter-spacing: 0;
}

.trusted-stat p {
  max-width: 560px;
  margin: 0;
  color: #3f465b;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.18;
  font-weight: 560;
}

.trusted-scene-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 78px;
  color: rgba(9, 21, 54, 0.54);
}

.trusted-scene-footer span,
.trusted-scene-footer a {
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trusted-scene-footer a {
  color: var(--findsy-blue);
}

.trusted-logo-heading {
  display: flex;
  justify-content: center;
  color: rgba(9, 21, 54, 0.48);
}

.logo-reel {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(22, 119, 255, 0.12);
  border-bottom: 1px solid rgba(22, 119, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.04) 1px, transparent 1px) 0 0 / 54px 54px,
    rgba(255, 255, 255, 0.52);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: logoReel 34s linear infinite;
}

.logo-track span {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  padding: 0 26px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  color: var(--findsy-deep-blue);
  background: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 880;
  letter-spacing: 0;
}

@keyframes trustedPinPulse {
  50% {
    box-shadow: 0 0 0 18px rgba(22, 119, 255, 0.04);
    transform: translateY(-3px);
  }
}

@keyframes commandType {
  to {
    width: 43ch;
  }
}

@keyframes commandCaret {
  50% {
    border-color: transparent;
  }
}

@keyframes chatBubbleIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes logoReel {
  to {
    transform: translateX(-50%);
  }
}

.success-wall-section {
  padding-top: 48px;
}

.success-wall {
  columns: 3 290px;
  column-gap: 16px;
  margin-top: 36px;
}

.success-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: 22px;
  break-inside: avoid;
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(18, 56, 213, 0.07);
}

.success-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(22, 119, 255, 0.09);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.success-card strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.success-card p,
.success-card dd,
.success-card blockquote {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.success-card dl {
  margin: 20px 0;
}

.success-card dt {
  margin-top: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.success-card dd {
  margin: 6px 0 0;
}

.success-card blockquote {
  margin: 20px 0 0;
  padding-left: 14px;
  border-left: 2px solid rgba(22, 119, 255, 0.36);
  font-weight: 680;
}

.success-person {
  margin: 14px 0 0;
  color: var(--ink) !important;
  font-weight: 820;
}

.blog-directory-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.blog-directory-controls button {
  min-height: 42px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}

.blog-directory-controls button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--findsy-blue), var(--findsy-indigo));
  box-shadow: 0 16px 38px rgba(22, 119, 255, 0.2);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 34px;
}

.blog-category-group {
  display: grid;
  gap: 14px;
}

.blog-category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(22, 119, 255, 0.12);
}

.blog-category-heading span {
  color: var(--findsy-ink);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
  font-weight: 880;
}

.blog-category-heading small {
  color: #7b8499;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 14px;
}

.blog-card,
.roi-calculator {
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(18, 56, 213, 0.07);
}

.blog-card {
  display: block;
  min-height: 260px;
  padding: 24px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

a.blog-card:hover {
  border-color: rgba(22, 119, 255, 0.34);
  box-shadow: 0 24px 70px rgba(18, 56, 213, 0.12);
  transform: translateY(-4px);
}

.blog-card span,
.roi-results span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.08;
}

.blog-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.blog-card small {
  display: none;
  margin-top: 22px;
  color: #68738d;
  font-size: 12px;
  font-weight: 780;
}

.blog-article-section {
  max-width: 920px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 26px;
  padding: 0 14px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 840;
}

.back-link::before {
  margin-right: 8px;
  content: "<";
}

.blog-article {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(18, 56, 213, 0.08);
}

.blog-article header {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(22, 119, 255, 0.12);
}

.blog-article header span {
  display: inline-flex;
  color: var(--blue);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article h2 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-article header p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #41495f;
  font-size: 20px;
  line-height: 1.52;
  font-weight: 620;
}

.blog-article header small {
  display: inline-flex;
  margin-top: 20px;
  color: #70788d;
  font-size: 13px;
  font-weight: 780;
}

.blog-article section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(22, 119, 255, 0.1);
}

.blog-article h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.blog-article p,
.blog-article li {
  color: #4f566b;
  font-size: 17px;
  line-height: 1.72;
}

.blog-article section p {
  margin: 14px 0 0;
}

.blog-article ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.blog-article blockquote {
  margin: 34px 0 0;
  padding: 24px;
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(22, 119, 255, 0.07);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.18;
  font-weight: 820;
}

.roi-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 18px;
  margin-top: 36px;
  padding: 20px;
}

.roi-inputs,
.roi-results {
  display: grid;
  gap: 12px;
}

.roi-inputs label,
.roi-results article {
  display: grid;
  gap: 10px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(22, 119, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(246, 250, 255, 0.74);
}

.roi-inputs span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.roi-inputs input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(22, 119, 255, 0.2);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 760;
}

.roi-results {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roi-results strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.final-home-cta {
  background:
    radial-gradient(circle at 12% 20%, rgba(22, 119, 255, 0.18), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(123, 77, 245, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.92);
}

@keyframes signalFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(16px, -18px, 0) scale(1.18);
  }
}

@media (max-width: 1180px) {
  .site-footer {
    width: calc(100% - 36px);
    max-width: 1040px;
    grid-template-columns: 1fr;
  }

  .footer-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-stage {
    grid-template-columns: 1fr;
    gap: 28px;
    top: 124px;
  }

  .story-copy {
    max-width: 820px;
  }

  .story-visual {
    min-height: 430px;
  }

  .story-state-visuals {
    inset: 24px;
  }

  .story-state-visuals strong {
    font-size: clamp(34px, 6vw, 58px);
  }

  .conversion-strip,
  .proof-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-demo-section,
  .workflow-console,
  .social-proof-strip {
    grid-template-columns: 1fr;
  }

  .trusted-scene {
    min-height: 600px;
  }

  .trusted-stat {
    max-width: 78%;
  }

  .command-demo-section {
    min-height: 0;
  }

  .command-copy,
  .workflow-console {
    position: relative;
    top: auto;
  }

  .command-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .home-experience main > :not(.ai-hero):not(.story-scroll),
  .home-experience .story-stage,
  .ai-hero-copy {
    width: calc(100% - 28px);
  }

  .site-footer {
    width: calc(100% - 28px);
    max-width: 680px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }

  .ai-hero {
    min-height: 0;
    padding: 58px 0 54px;
  }

  .ai-hero h1 {
    font-size: 56px;
  }

  .ai-hero .hero-text {
    font-size: 20px;
  }

  .hero-subline {
    font-size: 16px;
  }

  .story-panel {
    min-height: 0;
    padding: 42px 0;
  }

  .story-stage {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 30px 0;
  }

  .story-copy h2 {
    font-size: 42px;
  }

  .story-states p {
    min-height: 0;
    opacity: 1;
    transform: none;
  }

  .story-visual,
  .visual-systems,
  .visual-existing,
  .visual-agents,
  .visual-dashboard,
  .visual-automation,
  .visual-control,
  .visual-roi,
  .blog-grid,
  .conversion-strip,
  .proof-flow-grid,
  .command-response,
  .roi-calculator,
  .roi-results {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-state-visuals {
    position: relative !important;
    inset: auto;
    min-height: 260px;
    margin-top: 18px;
  }

  .story-state-visuals article {
    min-height: 260px;
    padding: 20px;
  }

  .story-state-visuals article::before {
    width: 62px;
    height: 62px;
  }

  .story-state-visuals strong {
    font-size: 38px;
  }

  .story-state-visuals p {
    font-size: 15px;
  }

  .story-state-visuals dl {
    grid-template-columns: 1fr;
  }

  .story-state-visuals dl div {
    min-height: 58px;
  }

  .story-visual > span,
  .story-visual > div:not(.story-state-visuals),
  .story-visual > strong,
  .story-visual > button {
    opacity: 0.2;
  }

  .conversion-strip {
    padding: 8px 0 42px;
  }

  .conversion-strip article,
  .proof-flow-grid article {
    min-height: 0;
  }

  .conversion-section {
    padding: 58px 0;
  }

  .command-console {
    min-height: 0;
    border-radius: 12px;
  }

  .command-bar,
  .command-response {
    margin: 14px;
    padding: 16px;
  }

  .command-bar strong {
    white-space: normal;
  }

  .command-bar strong::before {
    width: auto;
    white-space: normal;
    animation: none;
    border-right: 0;
  }

  .command-response {
    margin-top: 0;
  }

  .workflow-console {
    min-height: 0;
    padding: 12px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .question-wall {
    padding: 20px 0;
  }

  .question-wall::before {
    inset: 10px 18px;
  }

  .question-track {
    gap: 10px;
    padding: 0 14px;
    animation-duration: 36s;
  }

  .prompt-card {
    flex-basis: 250px;
  }

  .workflow-outcome {
    grid-template-columns: 1fr;
  }

  .workflow-outcome .command-action {
    justify-self: stretch;
  }

  .prompt-card:hover,
  .prompt-card.is-active {
    transform: none;
  }

  .command-response article {
    min-height: 0;
  }

  .social-proof-strip {
    padding: 30px 0 48px;
  }

  .trusted-scene {
    min-height: 520px;
    padding: 24px;
  }

  .trusted-scene::before,
  .trusted-scene::after {
    right: 24px;
    left: 24px;
  }

  .trusted-scene::before {
    top: 24px;
  }

  .trusted-scene::after {
    bottom: 92px;
  }

  .trusted-globe {
    top: 78px;
    right: -190px;
    width: 520px;
    opacity: 0.54;
  }

  .trusted-stat {
    max-width: 100%;
  }

  .trusted-stat strong {
    font-size: clamp(76px, 24vw, 126px);
  }

  .trusted-stat p {
    max-width: 360px;
    font-size: 22px;
  }

  .trusted-scene-footer {
    display: grid;
    gap: 10px;
    margin-top: 54px;
  }

  .logo-track span {
    min-width: 148px;
    min-height: 52px;
    padding: 0 20px;
    font-size: 14px;
  }

  .blog-article {
    border-radius: 12px;
  }

  .blog-article h2 {
    font-size: 38px;
  }

  .visual-control span {
    min-height: 90px;
  }

  .story-canvas {
    opacity: 0.42;
  }
}

@media (max-width: 760px) {
  .btn {
    white-space: normal;
    text-align: center;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 134px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-interest {
    display: none !important;
  }

  .nav-cta {
    min-width: 0;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .ai-hero h1,
  .page-hero h1,
  .story-copy h2,
  .section-heading h2 {
    overflow-wrap: anywhere;
  }

  .ai-hero h1 {
    font-size: clamp(44px, 15vw, 58px);
    line-height: 0.95;
  }

  .ai-hero .hero-text,
  .page-hero p,
  .story-copy p {
    max-width: 100%;
    font-size: 18px;
  }

  .story-stage {
    display: grid;
    gap: 22px;
  }

  .story-copy h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .story-visual {
    display: block;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .story-visual > span,
  .story-visual > div:not(.story-state-visuals),
  .story-visual > strong,
  .story-visual > button {
    display: none;
  }

  .story-state-visuals {
    position: relative !important;
    inset: auto;
    min-height: 0;
    margin-top: 18px;
  }

  .story-state-visuals article {
    position: relative;
    inset: auto;
    display: none;
    min-height: 0;
    padding: 18px;
    overflow: hidden;
    opacity: 1;
    transform: none;
  }

  .story-panel[data-active-state="1"] .story-state-visuals article:nth-child(1),
  .story-panel[data-active-state="2"] .story-state-visuals article:nth-child(2),
  .story-panel[data-active-state="3"] .story-state-visuals article:nth-child(3),
  .story-panel[data-active-state="4"] .story-state-visuals article:nth-child(4) {
    display: grid;
  }

  .story-state-visuals article::before {
    width: 48px;
    height: 48px;
    opacity: 0.12;
  }

  .story-state-visuals small {
    font-size: 30px;
  }

  .story-state-visuals strong {
    font-size: clamp(28px, 9.5vw, 36px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .story-state-visuals p,
  .story-state-visuals dd {
    overflow-wrap: anywhere;
  }

  .story-state-visuals dl {
    grid-template-columns: 1fr;
  }

  .workflow-active-question {
    min-height: 0;
    padding: 18px;
  }

  .workflow-active-question strong {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .workflow-steps article,
  .workflow-outcome,
  .command-response article,
  .conversion-strip article,
  .proof-flow-grid article,
  .page-body-grid article,
  .page-link-grid a,
  .blog-card {
    min-height: 0;
    overflow-wrap: anywhere;
  }

  .question-wall {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .blog-directory-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .blog-directory-controls button {
    min-height: 42px;
    padding: 0 10px;
    white-space: normal;
  }

  .blog-category-heading {
    display: grid;
    gap: 6px;
    align-items: start;
  }

  .blog-category-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 20px;
  }

  .blog-card strong {
    font-size: 21px;
  }

  .trusted-scene {
    min-height: 480px;
    padding: 20px;
  }

  .trusted-globe {
    top: 102px;
    right: -230px;
    width: 500px;
    opacity: 0.38;
  }

  .trusted-stat strong {
    font-size: clamp(66px, 24vw, 104px);
  }

  .trusted-stat p {
    font-size: 19px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: 54vh;
    overflow: auto;
    padding: 14px;
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
  }

  .legal-dialog,
  .interest-dialog,
  .cookie-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 0;
  }
}

@media (max-width: 430px) {
  .site-header {
    width: calc(100% - 20px);
  }

  .brand img {
    width: 122px;
  }

  .nav-cta {
    padding: 0 10px;
  }

  .ai-hero-copy,
  .home-experience main > :not(.ai-hero):not(.story-scroll),
  .home-experience .story-stage,
  .site-footer {
    width: calc(100% - 20px);
  }

  .hero-actions,
  .page-actions {
    gap: 10px;
  }

  .story-state-visuals article,
  .workflow-console,
  .page-route-card,
  .blog-card {
    padding: 16px;
  }

  .blog-directory-controls {
    grid-template-columns: 1fr;
  }

  .footer-map {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    width: calc(100% - 24px);
    min-height: 86px;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
  }

  .site-header::before {
    inset: 0 calc(50% - 50vw);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: clamp(142px, 43vw, 184px);
  }

  .nav-cta {
    min-width: 124px;
    max-width: 156px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 13px;
    line-height: 1.05;
  }

  .home-experience main > :not(.ai-hero):not(.story-scroll),
  .home-experience .story-stage,
  .ai-hero-copy {
    width: calc(100% - 24px);
  }

  .ai-hero {
    padding: 46px 0 42px;
  }

  .ai-hero h1 {
    font-size: clamp(42px, 14vw, 56px);
  }

  .story-panel {
    min-height: 320svh;
    padding: 0;
  }

  .story-stage {
    position: sticky;
    top: 86px;
    min-height: calc(100svh - 86px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(240px, 1fr);
    align-content: start;
    gap: 16px;
    padding: 20px 0;
    overflow: hidden;
    background-size: 1px calc(100% - 42px);
    background-position: 8px 22px;
  }

  .story-stage::before {
    inset: -10vh -12vw;
  }

  .story-stage::after {
    left: 4px;
    width: 8px;
    height: 8px;
    box-shadow:
      0 0 0 8px rgba(22, 119, 255, 0.08),
      0 14px 34px rgba(22, 119, 255, 0.2);
  }

  .story-canvas {
    inset: 0;
    width: 100%;
    opacity: 0.28;
  }

  .story-copy {
    max-width: 100%;
    padding-left: 16px;
  }

  .story-copy h2 {
    max-width: 100%;
    font-size: clamp(32px, 10.8vw, 42px);
    line-height: 1.02;
  }

  .story-states {
    position: relative;
    min-height: 118px;
    margin-top: 18px;
  }

  .story-states p {
    display: none;
    min-height: 0;
    color: #172245;
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.28;
    opacity: 1;
    transform: none;
  }

  .story-states p.is-active {
    display: block;
  }

  .story-visual {
    display: block;
    width: 100%;
    height: min(40svh, 330px);
    min-height: 260px;
    max-height: 330px;
    margin-top: 0;
    overflow: hidden;
  }

  .story-state-visuals {
    height: 100%;
    min-height: 0;
    margin-top: 0;
  }

  .story-state-visuals article {
    height: 100%;
    align-content: start;
    grid-template-rows: auto auto auto auto auto;
    gap: 11px;
    padding: 16px;
    overflow: hidden;
  }

  .story-state-visuals .story-visual-card-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .story-visual-card-top {
    gap: 10px;
    align-items: flex-start;
  }

  .story-state-visuals span {
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 28px;
    overflow-wrap: anywhere;
  }

  .story-state-visuals small {
    flex: 0 0 auto;
    font-size: 26px;
  }

  .story-state-visuals article > strong {
    grid-column: auto;
    display: block;
    max-width: 100%;
    min-height: 0;
    margin: 0;
    place-items: normal;
    border-radius: 0;
    color: var(--findsy-ink);
    background: transparent;
    box-shadow: none;
    font-size: clamp(24px, 7.6vw, 32px);
    line-height: 1.04;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .story-state-visuals strong {
    overflow-wrap: anywhere;
  }

  .story-state-visuals p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.32;
  }

  .story-state-visuals dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .story-state-visuals dl div:nth-child(n + 3) {
    display: none;
  }

  .story-state-visuals dl div {
    min-height: 0;
    padding: 9px 10px;
  }

  .story-state-visuals dt {
    font-size: 9px;
  }

  .story-state-visuals dd {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.12;
  }

  .story-state-visuals i {
    height: 3px;
  }

  .workflow-console,
  .command-console,
  .workflow-active-question,
  .workflow-outcome,
  .workflow-steps article {
    max-width: 100%;
    overflow: hidden;
  }

  .workflow-active-question strong,
  .workflow-outcome strong {
    max-width: 100%;
    transform: none !important;
    overflow-wrap: anywhere;
  }

  .question-wall {
    overflow: hidden;
  }

  .prompt-card {
    flex: 0 0 min(278px, calc(100vw - 44px));
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    width: auto;
    max-height: min(64svh, 520px);
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    overflow: auto;
    padding: 14px;
  }

  .cookie-banner > div,
  .cookie-actions {
    width: 100%;
    min-width: 0;
  }

  .cookie-banner p {
    max-width: none;
    font-size: 13px;
    line-height: 1.38;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 78px;
  }

  .brand img {
    width: clamp(132px, 42vw, 158px);
  }

  .nav-cta {
    min-width: 116px;
    max-width: 136px;
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
  }

  .story-panel {
    min-height: 340svh;
  }

  .story-stage {
    top: 78px;
    min-height: calc(100svh - 78px);
    grid-template-rows: auto minmax(250px, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .story-copy {
    padding-left: 14px;
  }

  .story-copy h2 {
    font-size: clamp(29px, 10.2vw, 39px);
  }

  .story-states {
    min-height: 108px;
    margin-top: 14px;
  }

  .story-states p {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .story-visual {
    height: min(38svh, 300px);
    min-height: 250px;
    max-height: 300px;
  }

  .story-state-visuals article {
    padding: 14px;
  }

  .story-state-visuals article::before {
    display: none;
  }

  .story-state-visuals strong {
    font-size: clamp(23px, 7.2vw, 30px);
  }

  .story-state-visuals dl {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 10px;
    left: 10px;
    max-height: 58svh;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-cta {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 1200;
    display: none;
    width: 100%;
    max-height: calc(100dvh - 112px);
    margin: 0;
    padding: 10px;
    overflow: auto;
    border: 1px solid rgba(22, 119, 255, 0.16);
    border-radius: 18px;
    background:
      radial-gradient(circle at 82% 12%, rgba(123, 77, 245, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
    box-shadow:
      0 28px 80px rgba(18, 56, 213, 0.17),
      0 2px 12px rgba(16, 19, 41, 0.08);
  }

  .site-header.mobile-menu-open .main-nav {
    display: grid;
    gap: 8px;
  }

  .main-nav > a,
  .nav-group > a,
  .nav-trigger {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.7);
  }

  .nav-group {
    display: grid;
    gap: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(22, 119, 255, 0.1);
  }

  .nav-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .nav-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu-feature {
    display: none;
  }

  .nav-menu-list {
    gap: 6px;
  }

  .nav-menu a,
  .nav-disabled {
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid rgba(22, 119, 255, 0.1);
    background: rgba(255, 255, 255, 0.74);
  }
}

@media (max-width: 430px) {
  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .main-nav {
    max-height: calc(100dvh - 98px);
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-dot,
  .logo-track,
  .question-track,
  .command-bar strong::before,
  .command-response article,
  .command-action {
    animation: none;
  }

  .command-bar strong::before {
    width: auto;
    border-right: 0;
  }

  .command-response article,
  .command-action {
    opacity: 1;
    transform: none;
  }
}
