:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eaf2ff;
  --ink: #101828;
  --ink-strong: #07172b;
  --muted: #5f6f84;
  --line: #d9e2ee;
  --blue: #0863f8;
  --blue-dark: #064bc7;
  --blue-soft: #dcebff;
  --teal: #0796d7;
  --green: #69b34c;
  --amber: #f6b73c;
  --coral: #ef6f5c;
  --shadow: 0 18px 55px rgba(11, 31, 58, 0.12);
  --radius: 8px;
  --header-height: 72px;
  --max: 1180px;
  --font-display: "SF Pro Display", "Aptos Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-text: "SF Pro Text", "Aptos", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-ui: "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --weight-display: 760;
  --weight-heading: 720;
  --weight-strong: 680;
  --weight-ui: 690;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  letter-spacing: 0;
  font-optical-sizing: auto;
  font-kerning: normal;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 40px;
  background: rgba(246, 248, 251, 0.84);
  border-bottom: 1px solid rgba(217, 226, 238, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
}

.brand,
.header-cta,
.site-nav,
.nav-toggle {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.06rem;
  font-weight: var(--weight-strong);
  color: var(--ink-strong);
}

.brand:focus-visible,
.site-nav a:focus-visible,
.header-cta:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(8, 99, 248, 0.28);
  outline-offset: 3px;
}

.brand-logo {
  display: block;
  width: 53px;
  height: 34px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(8, 99, 248, 0.18));
}

.brand-word {
  font-family: var(--font-ui);
  font-weight: 760;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(217, 226, 238, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: var(--weight-ui);
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--surface-soft);
  color: var(--blue-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
  font-size: 0.92rem;
  font-weight: 760;
  box-shadow: 0 12px 24px rgba(8, 99, 248, 0.22);
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 78% 26%, rgba(8, 99, 248, 0.16), transparent 28%),
    radial-gradient(circle at 16% 34%, rgba(7, 150, 215, 0.11), transparent 24%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 49.95%, #eef5ff 50%, #f7fbff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(8, 99, 248, 0.2) 18%, rgba(8, 99, 248, 0.12) 72%, transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(246, 248, 251, 0), #ffffff);
  pointer-events: none;
}

.hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.hero-grid span {
  border-right: 1px solid rgba(217, 226, 238, 0.72);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 1500px);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  padding: 44px 0 58px;
}

.hero-copy {
  max-width: 660px;
}

.hero h1 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 3.28rem;
  line-height: 1.04;
  font-weight: var(--weight-display);
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.58;
  font-weight: 430;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-family: var(--font-ui);
  font-weight: 760;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

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

.btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 18px 34px rgba(8, 99, 248, 0.24);
}

.btn.light {
  background: white;
  color: var(--blue-dark);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.hero .microcopy {
  margin-top: 18px;
  color: #42526a;
  font-size: 0.96rem;
  font-weight: var(--weight-strong);
}

.market-map {
  position: relative;
  min-height: 480px;
  border-radius: 0;
}

.market-map::before,
.market-map::after {
  content: "";
  position: absolute;
  inset: 82px 74px;
  border: 1px solid rgba(8, 99, 248, 0.24);
  border-radius: 50%;
}

.market-map::after {
  inset: 142px 132px;
  border-color: rgba(7, 150, 215, 0.24);
  transform: rotate(-12deg);
}

.map-core,
.map-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 226, 238, 0.82);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.map-core {
  left: 50%;
  top: 50%;
  width: 258px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid rgba(8, 99, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 56px rgba(8, 99, 248, 0.14);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.map-core-logo {
  width: 108px;
  height: 69px;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 26px rgba(8, 99, 248, 0.18));
}

.map-core-word {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 1;
  font-weight: var(--weight-display);
}

.map-node {
  min-width: 112px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: var(--ink-strong);
  font-size: 0.92rem;
  font-family: var(--font-ui);
  font-weight: var(--weight-ui);
}

.node-sales {
  left: 12%;
  top: 18%;
  border-color: rgba(8, 99, 248, 0.28);
}

.node-agents {
  right: 10%;
  top: 18%;
  border-color: rgba(7, 150, 215, 0.28);
}

.node-ai {
  right: 2%;
  top: 48%;
  background: #07172b;
  color: white;
}

.node-docs {
  left: 5%;
  top: 56%;
}

.node-crm {
  left: 32%;
  bottom: 6%;
}

.node-auto {
  right: 16%;
  bottom: 15%;
  border-color: rgba(246, 183, 60, 0.38);
}

.section {
  padding: 92px 0;
}

.section-shell {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.section-copy h2,
.section-head h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: var(--weight-display);
}

.section-copy p,
.section-head p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
  font-weight: 430;
}

.section-head p {
  max-width: 430px;
  margin: 0;
}

.intro {
  position: relative;
  z-index: 3;
  padding-top: 22px;
  background: white;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 56px;
  align-items: center;
}

.statement {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 99, 248, 0.12), rgba(7, 150, 215, 0.08)),
    white;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.statement strong {
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.18;
  font-weight: var(--weight-heading);
}

.statement span {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 470;
}

.tools {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tool-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 99, 248, 0.32);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.1);
}

.tool-icon {
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--blue);
}

.tool-icon::before,
.tool-icon::after {
  content: "";
  position: absolute;
}

.sales-icon::before {
  left: 11px;
  right: 11px;
  bottom: 10px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.sales-icon::after {
  right: 10px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--teal);
  border-right: 3px solid var(--teal);
}

.agents-icon::before {
  left: 10px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 15px 0 0 var(--teal);
}

.agents-icon::after {
  left: 8px;
  bottom: 10px;
  width: 28px;
  height: 10px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.marketing-icon::before {
  left: 10px;
  top: 14px;
  width: 22px;
  height: 14px;
  border: 3px solid currentColor;
  transform: skew(-10deg);
}

.marketing-icon::after {
  right: 7px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.comms-icon::before {
  left: 10px;
  top: 11px;
  width: 24px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.comms-icon::after {
  left: 17px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  transform: rotate(45deg);
}

.ai-icon::before {
  inset: 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.ai-icon::after {
  left: 19px;
  top: 7px;
  width: 6px;
  height: 30px;
  background: var(--teal);
  border-radius: 999px;
  transform: rotate(45deg);
}

.docs-icon::before {
  left: 12px;
  top: 8px;
  width: 18px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.docs-icon::after {
  right: 11px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
}

.analytics-icon::before {
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 23px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.analytics-icon::after {
  left: 17px;
  bottom: 15px;
  width: 4px;
  height: 9px;
  background: var(--blue);
  box-shadow: 8px -6px 0 var(--teal), 16px -12px 0 var(--amber);
}

.automation-icon::before {
  left: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 50%;
  border-right-color: transparent;
}

.automation-icon::after {
  right: 8px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-top: 3px solid var(--teal);
  border-right: 3px solid var(--teal);
  transform: rotate(45deg);
}

.tool-card h3,
.agent-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.24;
  font-weight: var(--weight-heading);
}

.tool-card p,
.agent-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.54;
  font-weight: 430;
}

.ai-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(7, 150, 215, 0.24), transparent 26%),
    radial-gradient(circle at 20% 82%, rgba(8, 99, 248, 0.24), transparent 30%),
    #07172b;
  color: white;
}

.ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

.ai-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.ai-section h2,
.ai-section .section-copy p {
  color: white;
}

.ai-section .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.agent-card {
  min-height: 194px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.agent-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: #8adbd4;
  font-size: 0.82rem;
  font-family: var(--font-ui);
  font-weight: 760;
}

.agent-card h3,
.agent-card p {
  color: white;
}

.agent-card p {
  color: rgba(255, 255, 255, 0.68);
}

.crm-section {
  background: #ffffff;
}

.crm-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
}

.crm-panel {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 24%, rgba(8, 99, 248, 0.18), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(7, 150, 215, 0.13), transparent 30%),
    #f8fbff;
  box-shadow: var(--shadow);
}

.crm-track {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(100%, 330px);
}

.crm-track span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 226, 238, 0.95);
  border-radius: var(--radius);
  background: white;
  color: var(--ink-strong);
  font-family: var(--font-ui);
  font-weight: var(--weight-ui);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
}

.crm-track span:nth-child(3) {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.crm-track i {
  justify-self: center;
  width: 2px;
  height: 22px;
  background: var(--line);
}

.crm-lines {
  position: absolute;
}

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

.check-list li {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 14px 10px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-family: var(--font-ui);
  font-weight: var(--weight-ui);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-64%) rotate(-45deg);
}

.examples {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-strong);
  font-size: 0.94rem;
  font-family: var(--font-ui);
  font-weight: var(--weight-ui);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
}

.final-cta {
  padding: 94px 0 104px;
  background:
    radial-gradient(circle at 12% 20%, rgba(105, 179, 76, 0.2), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(8, 99, 248, 0.3), transparent 26%),
    linear-gradient(135deg, #07172b, #0863f8);
  color: white;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 24px;
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-shell {
    width: min(100% - 48px, 1500px);
    gap: 40px;
    padding: 34px 0 44px;
  }

  .hero h1 {
    max-width: 900px;
    font-size: 2.82rem;
  }

  .hero p {
    font-size: 1.04rem;
  }

  .btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.91rem;
  }

  .market-map {
    min-height: 420px;
  }

  .map-core {
    width: 226px;
    height: 84px;
    gap: 13px;
  }

  .map-core-logo {
    width: 94px;
    height: 60px;
  }

  .map-core-word {
    font-size: 2.05rem;
  }

  .map-node {
    min-width: 102px;
    min-height: 50px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

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

  .ai-layout,
  .crm-layout,
  .intro-layout {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    background:
      radial-gradient(circle at 76% 22%, rgba(8, 99, 248, 0.18), transparent 30%),
      radial-gradient(circle at 14% 28%, rgba(7, 150, 215, 0.13), transparent 26%),
      linear-gradient(180deg, #ffffff 0%, #f6f8fb 78%, #ffffff 100%);
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 46px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 4px;
    padding: 10px;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 44px;
    justify-content: center;
  }

  .section-shell,
  .hero-shell {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: 100svh;
  }

  .hero-shell {
    min-height: calc(100svh - var(--header-height));
    padding: 42px 0 44px;
  }

  .hero h1 {
    font-size: 2.24rem;
    line-height: 1.05;
  }

  .hero p {
    font-size: 1.06rem;
  }

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

  .market-map {
    display: none;
  }

  .map-node {
    min-width: 92px;
    min-height: 44px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .node-ai {
    right: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 24px;
  }

  .section-head p {
    margin-top: 14px;
  }

  .section-copy h2,
  .section-head h2,
  .final-cta h2 {
    font-size: 2.05rem;
  }

  .statement {
    min-height: auto;
    padding: 24px;
  }

  .tool-grid,
  .agent-list,
  .check-list {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: auto;
  }

  .crm-panel {
    min-height: 280px;
    padding: 22px;
  }

  .cta-shell {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
