:root {
  --bg: #faf8f2;
  --bg-strong: #fffdf9;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(7, 22, 47, 0.045);
  --line-strong: rgba(7, 22, 47, 0.1);
  --text: #07162f;
  --text-soft: rgba(7, 22, 47, 0.72);
  --text-muted: rgba(7, 22, 47, 0.5);
  --blue: #0643f6;
  --blue-soft: rgba(6, 67, 246, 0.08);
  --shadow: 0 28px 72px rgba(7, 22, 47, 0.06);
  --shadow-soft: 0 18px 44px rgba(7, 22, 47, 0.05);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, var(--bg-strong) 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Instrument Sans", "Avenir Next", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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-shell {
  overflow: clip;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, transparent 0, transparent calc(12.5% - 1px), var(--line) calc(12.5% - 1px), var(--line) 12.5%, transparent 12.5%),
    linear-gradient(to bottom, transparent 0, transparent calc(25% - 1px), rgba(7, 22, 47, 0.035) calc(25% - 1px), rgba(7, 22, 47, 0.035) 25%, transparent 25%);
  opacity: 0.38;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  padding: 16px 0 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 12px 18px;
  border: 1px solid rgba(7, 22, 47, 0.04);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(7, 22, 47, 0.04);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled .nav-row {
  border-color: rgba(7, 22, 47, 0.07);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(7, 22, 47, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: none;
}

.brand-name {
  font-size: 0.93rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(7, 22, 47, 0.84);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.site-nav a,
.nav-dropdown-toggle {
  position: relative;
  color: inherit;
  font: inherit;
  transition: color 180ms ease;
}

.site-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: 18px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 10px;
  height: 10px;
  color: rgba(7, 22, 47, 0.42);
  transition: transform 180ms ease, color 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  color: rgba(7, 22, 47, 0.72);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  gap: 6px;
  min-width: 260px;
  padding: 14px;
  border: 1px solid rgba(7, 22, 47, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 42px rgba(7, 22, 47, 0.07);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text-soft);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(7, 22, 47, 0.04);
  color: var(--text);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(7, 22, 47, 0.08);
  background: rgba(7, 22, 47, 0.96);
  color: #fff;
}

.site-nav .nav-cta {
  color: #fff;
}

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

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #13317a;
  color: #fff;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 2px 0;
  border-radius: 999px;
  background: rgba(7, 22, 47, 0.58);
}

.hero {
  min-height: 100vh;
  padding: 148px 0 42px;
}

.inner-page {
  padding-bottom: 32px;
}

.page-hero {
  min-height: auto;
  padding: 148px 0 48px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.page-hero-copy {
  max-width: 46rem;
}

.page-hero-copy h1 {
  margin: 0;
  font-family: "Instrument Serif", "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  max-width: 13ch;
}

.page-lead,
.page-body,
.page-hero-panel p,
.page-hero-panel li,
.page-card-link {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.page-lead {
  max-width: 36rem;
  margin-top: 18px;
}

.page-body {
  max-width: 39rem;
  margin-top: 14px;
}

.page-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 22px;
}

.page-text-link,
.page-card-link {
  color: var(--blue);
  font-weight: 600;
}

.page-card-link {
  font-size: inherit;
  line-height: inherit;
}

.page-hero-panel {
  padding: 30px;
  border: 1px solid rgba(7, 22, 47, 0.06);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at top right, rgba(6, 67, 246, 0.05), transparent 32%);
  box-shadow: var(--shadow);
}

.page-hero-panel h2 {
  margin: 14px 0 0;
  font-size: 1.52rem;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.page-bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-bullet-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.page-bullet-list span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(6, 67, 246, 0.18);
  box-shadow: inset 0 0 0 1px rgba(6, 67, 246, 0.3);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: 8px;
}

.hero-copy,
.section-head {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.pathway-label,
.example-tag,
.card-index {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(7, 22, 47, 0.15);
}

.hero h1,
.section-head h2,
.final-cta-panel h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Instrument Serif", "Iowan Old Style", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(4.2rem, 8vw, 8.5rem);
  line-height: 0.9;
  position: relative;
  z-index: 3;
}

.headline-emphasis {
  position: relative;
  display: inline-block;
}

.headline-emphasis::after {
  content: "";
  position: absolute;
  left: 1%;
  right: 2%;
  bottom: 0.06em;
  height: 0.11em;
  background: linear-gradient(90deg, rgba(7, 22, 47, 0.08), rgba(7, 22, 47, 0.14));
  z-index: -1;
}

.hero-text,
.section-head p,
.offer-card p,
.pathway-step p,
.process-card p,
.example-card p,
.why-card p,
.faq-item p,
.booking-copy p,
.footer-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-text {
  max-width: 29rem;
  margin-top: 18px;
}

.hero-actions,
.final-cta-panel .button {
  margin-top: 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: rgba(7, 22, 47, 0.98);
  color: #fff;
  box-shadow: 0 14px 28px rgba(7, 22, 47, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #113079;
  box-shadow: 0 18px 34px rgba(7, 22, 47, 0.14);
}

.button-secondary {
  border-color: rgba(7, 22, 47, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(7, 22, 47, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(7, 22, 47, 0.06);
}

.hero-visual-wrap {
  position: relative;
  min-height: 720px;
  margin-left: -120px;
}

.hero-sphere-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1400px;
  animation: floatY 20s ease-in-out infinite;
}

.hero-sphere-aura {
  position: absolute;
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.62) 34%, rgba(6, 67, 246, 0.12) 54%, rgba(6, 67, 246, 0.05) 66%, transparent 76%);
  filter: blur(16px);
}

.hero-sphere-shell {
  position: relative;
  width: min(100%, 760px);
  height: min(100%, 760px);
  transform-style: preserve-3d;
  animation: sphereRotate 48s linear infinite;
}

.sphere-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--w, 8px);
  height: var(--h, 2px);
  margin-left: calc(var(--w, 8px) / -2);
  margin-top: calc(var(--h, 2px) / -2);
  border-radius: 999px;
  opacity: var(--o, 0.25);
  background: rgba(7, 22, 47, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform:
    translate3d(var(--x), var(--y), var(--z))
    rotateZ(var(--r, 0deg))
    scale(var(--s, 1));
}

.sphere-particle.dot {
  width: var(--w, 4px);
  height: var(--w, 4px);
}

.sphere-particle.accent {
  background: rgba(7, 22, 47, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-capability-strip {
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.capability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(7, 22, 47, 0.08);
  color: rgba(7, 22, 47, 0.5);
  font-size: 0.92rem;
}

.capability-strip span {
  position: relative;
}

.capability-strip span::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(7, 22, 47, 0.16);
  transform: translateY(-50%);
}

.capability-strip span:last-child::after {
  display: none;
}

.problem-strip {
  padding-top: 8px;
  padding-bottom: 44px;
}

.problem-layout {
  display: grid;
  gap: 12px;
}

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

.problem-item,
.offer-card,
.process-card,
.example-card,
.why-card,
.booking-card,
.final-cta-panel {
  border: 1px solid rgba(7, 22, 47, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.problem-item {
  padding: 22px;
  color: var(--text-soft);
  line-height: 1.62;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.problem-item h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.problem-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.66;
}

.problem-item:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 22, 47, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 48px rgba(7, 22, 47, 0.07);
}

.section-head {
  max-width: 720px;
}

.section-head h2,
.final-cta-panel h2,
.booking-copy h2 {
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  line-height: 0.98;
  max-width: 10ch;
}

.section-head p {
  max-width: 35rem;
  margin-top: 18px;
}

.offer-grid,
.process-grid,
.example-grid,
.why-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

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

.offer-card,
.process-card,
.example-card,
.why-card {
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.offer-card:hover,
.process-card:hover,
.example-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 22, 47, 0.12);
  box-shadow: 0 34px 60px rgba(7, 22, 47, 0.09);
}

.card-figure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 70px;
  margin-bottom: 8px;
  color: rgba(7, 22, 47, 0.82);
  transition: transform 280ms ease;
}

.card-figure-small {
  width: 88px;
  height: 62px;
}

.line-figure {
  width: 100%;
  height: auto;
  overflow: visible;
}

.figure-stroke,
.figure-soft,
.figure-fill,
.figure-node {
  transition: transform 280ms ease, opacity 280ms ease;
}

.figure-stroke,
.figure-soft {
  fill: none;
  stroke: rgba(7, 22, 47, 0.76);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
}

.figure-soft {
  stroke: rgba(7, 22, 47, 0.38);
}

.figure-fill {
  fill: rgba(7, 22, 47, 0.1);
  opacity: 0;
}

.figure-node {
  fill: rgba(7, 22, 47, 0.16);
  opacity: 0;
}

.figure-node-blue {
  fill: rgba(6, 67, 246, 0.56);
}

.crm-node-group,
.figure-connect-ball,
.figure-connect-line,
.figure-arrow-group,
.figure-refine-wave {
  transform-box: fill-box;
  transform-origin: center;
}

.crm-node-group-top {
  transform-origin: 24px 42px;
}

.crm-node-group-right {
  transform-origin: 24px 42px;
}

.crm-node-group-bottom {
  transform-origin: 24px 42px;
}

[data-reveal].is-visible .figure-stroke,
[data-reveal].is-visible .figure-soft {
  stroke-dashoffset: 0;
}

[data-reveal].is-visible .figure-fill,
[data-reveal].is-visible .figure-node {
  opacity: 1;
}

.offer-card:hover .card-figure,
.process-card:hover .card-figure,
.why-card:hover .card-figure {
  transform: translateY(-2px);
}

.offer-card:hover .figure-stroke,
.process-card:hover .figure-stroke,
.why-card:hover .figure-stroke {
  transform: translateX(2px);
}

.offer-card:hover .figure-soft,
.process-card:hover .figure-soft,
.why-card:hover .figure-soft {
  transform: translateX(-1px) translateY(-1px);
}

.offer-card:hover .figure-node,
.process-card:hover .figure-node,
.why-card:hover .figure-node {
  transform: scale(1.12) translateY(-1px);
}

.offer-card h3,
.pathway-step h3,
.process-card h3,
.example-card h3,
.why-card h3,
.faq-item summary {
  margin: 12px 0 10px;
  font-size: 1.44rem;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.pathway-section {
  background: transparent;
}

.pathway-layout {
  display: grid;
  gap: 34px;
}

.pathway-visual {
  position: relative;
  display: grid;
  gap: 16px;
}

.pathway-line {
  position: absolute;
  top: 22px;
  left: 19px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(7, 22, 47, 0.1), rgba(7, 22, 47, 0.04));
}

.pathway-step {
  position: relative;
  margin-left: 56px;
  padding: 24px 24px;
  border: 1px solid rgba(7, 22, 47, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  transition: border-color 280ms ease, transform 280ms ease, background-color 280ms ease;
}

.pathway-node {
  position: absolute;
  left: -45px;
  top: 28px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(7, 22, 47, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.78);
  transition: border-color 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}

.pathway-step.is-active {
  transform: translateX(8px);
  border-color: rgba(6, 67, 246, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.pathway-step.is-active .pathway-node {
  border-color: rgba(6, 67, 246, 0.6);
  background: rgba(6, 67, 246, 0.92);
  box-shadow: 0 0 0 10px rgba(6, 67, 246, 0.06);
}

.example-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 600;
}

.example-card-note {
  background: linear-gradient(180deg, rgba(7, 22, 47, 0.96), rgba(14, 31, 60, 0.94));
  color: #fff;
}

.example-card-note p,
.example-card-note .example-tag {
  color: rgba(255, 255, 255, 0.76);
}

.faq-layout {
  display: grid;
  gap: 30px;
}

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

.faq-item {
  border: 1px solid rgba(7, 22, 47, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  padding: 24px 72px 24px 24px;
  margin: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.faq-item summary:hover {
  background: rgba(7, 22, 47, 0.02);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 24px 24px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 30px;
  align-items: start;
}

.booking-copy {
  max-width: 32rem;
}

.booking-note {
  margin-top: 14px;
}

.booking-card {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at top left, rgba(6, 67, 246, 0.06), transparent 34%);
}

.booking-embed {
  min-height: 780px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(248, 246, 239, 0.96);
  border: 1px solid rgba(7, 22, 47, 0.05);
}

.booking-embed iframe {
  min-height: 780px;
  display: block;
  vertical-align: bottom;
}

.final-cta {
  padding-top: 12px;
  padding-bottom: 108px;
}

.final-cta-panel {
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(6, 67, 246, 0.045), transparent 30%);
}

.final-cta-panel p {
  max-width: 34rem;
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.site-footer {
  padding: 0 0 54px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(7, 22, 47, 0.08);
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 34rem;
  font-size: 0.96rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--text-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.faq-item summary:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(6, 67, 246, 0.32);
  outline-offset: 4px;
}

@keyframes sphereRotate {
  from {
    transform: rotateX(-16deg) rotateY(0deg) rotateZ(6deg);
  }
  to {
    transform: rotateX(-16deg) rotateY(360deg) rotateZ(6deg);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes refineWaveA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px) translateX(1px);
  }
}

@keyframes refineWaveB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px) translateX(-1px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .offer-card-crm:hover .crm-node-group-top {
    transform: rotate(-4deg);
  }

  .offer-card-crm:hover .crm-node-group-right {
    transform: rotate(4deg);
  }

  .offer-card-crm:hover .crm-node-group-bottom {
    transform: rotate(2deg);
  }

  .process-card-connect:hover .figure-connect-ball {
    fill: rgba(6, 67, 246, 0.56);
    transform: translateX(24px);
  }

  .process-card-connect:hover .figure-connect-line {
    transform: translateX(2px);
  }

  .process-card-refine:hover .figure-refine-wave-a {
    animation: refineWaveA 1.4s ease-in-out infinite;
  }

  .process-card-refine:hover .figure-refine-wave-b {
    animation: refineWaveB 1.4s ease-in-out infinite;
  }

  .why-card-arrow:hover .figure-arrow-group {
    transform: translate(2px, -2px);
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .page-hero-layout,
  .booking-layout,
  .offer-grid,
  .process-grid,
  .example-grid,
  .why-grid,
  .problem-list {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 18px;
  }

  .hero-visual-wrap {
    min-height: 560px;
    margin-left: -54px;
  }

  .booking-copy {
    max-width: none;
  }
}

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

  .nav-row {
    padding: 10px 14px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(7, 22, 47, 0.06);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 22px 42px rgba(7, 22, 47, 0.07);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a::after,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    gap: 12px;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 2px 0 0 14px;
    border: 0;
    border-left: 1px solid rgba(7, 22, 47, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 4px 0;
    border-radius: 0;
    background: transparent;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .page-hero {
    padding-top: 118px;
  }

  .hero-layout {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-hero-layout {
    gap: 22px;
  }

  .hero-visual-wrap {
    position: absolute;
    top: 10px;
    right: -24%;
    width: 102vw;
    height: 102vw;
    min-height: 0;
    opacity: 0.94;
    pointer-events: none;
    margin-left: 0;
  }

  .hero-copy {
    padding-top: 136px;
  }

  .hero h1 {
    max-width: 8.4ch;
  }

  .page-hero-copy h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 92px 0;
  }

  .final-cta-panel {
    padding: 34px 24px;
  }

  .page-hero-panel {
    padding: 26px;
  }

  .footer-layout {
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .shell-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero {
    padding-top: 96px;
  }

  .hero-copy {
    padding-top: 150px;
  }

  .hero h1 {
    max-width: 8.3ch;
    font-size: clamp(3.45rem, 15vw, 5.6rem);
    line-height: 0.94;
  }

  .hero-text,
  .section-head p,
  .offer-card p,
  .pathway-step p,
  .process-card p,
  .example-card p,
  .why-card p,
  .faq-item p,
  .booking-copy p,
  .footer-copy {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .page-lead,
  .page-body,
  .page-hero-panel p,
  .page-hero-panel li,
  .page-card-link {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-visual-wrap {
    top: 10px;
    right: -38%;
    width: 118vw;
    height: 118vw;
  }

  .capability-strip {
    gap: 10px 16px;
    font-size: 0.84rem;
  }

  .capability-strip span:nth-child(n + 5) {
    display: none;
  }

  .page-link-row {
    gap: 10px 16px;
  }

  .section-head h2,
  .booking-copy h2,
  .final-cta-panel h2 {
    font-size: clamp(2.28rem, 9vw, 3.6rem);
    max-width: 10.5ch;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .pathway-line {
    left: 17px;
  }

  .pathway-step {
    margin-left: 44px;
    padding: 22px 20px;
  }

  .pathway-node {
    left: -39px;
  }

  .booking-card {
    padding: 14px;
  }

  .booking-embed,
  .booking-embed iframe {
    min-height: 720px;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
