:root {
  color-scheme: light;
  --white: #fff;
  --soft: #f5f5f7;
  --black: #000;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --blue: #8d4b82;
  --blue-light: #c487b9;
  --line: rgba(0, 0, 0, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --radius: 2rem;
  --max: 78rem;
  --wide: 94rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--black);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--soft);
}

.section-black {
  color: #f5f5f7;
  background: var(--black);
}

.global-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 44px;
  color: #f5f5f7;
  background: rgba(3, 3, 3, 0.76);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.25s ease;
}

.global-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-wrap {
  width: min(calc(100% - 2.5rem), 64rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-inline: auto;
}

.brand {
  width: 8.2rem;
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.6rem);
  margin-left: auto;
}

.global-nav a,
.nav-contact {
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: none;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.global-nav a:hover,
.nav-contact:hover {
  color: var(--white);
}

.nav-contact {
  padding: 0;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 10vw, 9rem) var(--gutter) clamp(3.5rem, 6vw, 5rem);
  overflow: hidden;
  color: #f5f5f7;
  background:
    radial-gradient(circle at 50% 38%, rgba(91, 37, 80, 0.42), transparent 30rem),
    radial-gradient(circle at 50% 78%, rgba(105, 109, 120, 0.12), transparent 26rem),
    #030303;
}

.hero-copy,
.platform-head,
.landing-intro,
.process-intro {
  width: min(100%, var(--max));
  margin-inline: auto;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-brand-art {
  position: absolute;
  z-index: 1;
  width: min(66vw, 62rem);
  top: 48%;
  left: 50%;
  opacity: 0.075;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-brand-art img {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2.5rem 4rem rgba(0, 0, 0, 0.65));
  animation: symbolFloat 8s ease-in-out infinite;
}

.brand-halo {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: rgba(113, 49, 100, 0.48);
  filter: blur(100px);
  transform: translate(-50%, -50%);
}

@keyframes symbolFloat {
  50% { transform: translateY(-0.8rem) rotate(-0.5deg); }
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: inherit;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.003em;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #f5f5f7;
  font-size: clamp(3.5rem, 6.2vw, 6.5rem);
  font-weight: 620;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  margin-top: 0.13em;
  color: #aaa7ab;
  font-size: 0.58em;
  line-height: 1.06;
  white-space: normal;
}

.hero-lead {
  max-width: 46rem;
  margin: 1.7rem auto 0;
  color: #aaa8ad;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 450;
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
  margin-top: 1.9rem;
}

.hero-layout {
  position: relative;
  z-index: 3;
  width: min(100%, 76rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.8rem, 5vw, 4.25rem);
  margin-inline: auto;
}

.hero-qualifier {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
  color: #c5c3c7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-qualifier span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c287b7;
  box-shadow: 0 0 0 5px rgba(194, 135, 183, 0.1);
}

.hero-primary {
  min-height: 56px;
  padding-inline: 1.65rem;
  font-weight: 600;
}

.hero-system {
  position: relative;
  width: min(100%, 63rem);
  padding: 1.1rem 1.35rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(10, 9, 11, 0.76);
  box-shadow:
    0 2rem 6rem rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-system::after {
  position: absolute;
  width: 22%;
  height: 1px;
  top: 0;
  left: -22%;
  content: "";
  background: linear-gradient(90deg, transparent, #e1b5d8, transparent);
  animation: systemLight 5s ease-in-out infinite;
}

@keyframes systemLight {
  50%, 100% { transform: translateX(560%); }
}

.hero-system > p {
  margin: 0 0 0.9rem;
  color: #89878c;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-system-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.1rem);
}

.hero-system-track span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.08rem 0.65rem;
}

.hero-system-track span i {
  width: 1.8rem;
  height: 1.8rem;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: #c99ac0;
  background: rgba(255, 255, 255, 0.035);
  font-size: 8px;
  font-style: normal;
}

.hero-system-track span strong {
  color: #e5e3e6;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.hero-system-track span small {
  color: #6f6d72;
  font-size: 9px;
  line-height: 1;
}

.hero-system-track > b {
  width: clamp(1rem, 3vw, 3rem);
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(196, 135, 185, 0.15), rgba(196, 135, 185, 0.7), rgba(196, 135, 185, 0.15));
}

.hero-system-note {
  display: block;
  margin-top: 0.85rem;
  color: #757378;
  font-size: 9px;
  text-align: center;
}

.pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 17px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.25s var(--ease);
}

.pill:hover {
  transform: scale(1.015);
}

.pill-blue {
  color: var(--white);
  background: var(--blue);
}

.pill-blue:hover {
  background: #9f5b93;
}

.pill-light {
  color: var(--black);
  background: var(--white);
}

.link-arrow {
  color: #d0a4c8;
  font-size: 17px;
  text-decoration: none;
}

.link-arrow span {
  font-size: 1.4em;
  vertical-align: -0.05em;
}

.hero-product {
  z-index: 3;
  position: relative;
  width: min(100%, 82rem);
  margin: 1rem auto 0;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(25px);
}

.ambient-one {
  width: 38rem;
  height: 22rem;
  right: 3%;
  top: -10%;
  background: rgba(164, 86, 149, 0.32);
}

.ambient-two {
  width: 32rem;
  height: 22rem;
  left: 2%;
  bottom: -6%;
  background: rgba(120, 129, 149, 0.25);
}

.product-window {
  position: relative;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 1.65rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.2),
    0 42px 110px rgba(0, 0, 0, 0.72);
  transform: perspective(1400px) rotateX(1deg);
  transform-origin: center bottom;
}

.window-bar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid #e6e6e8;
  background: rgba(250, 250, 252, 0.9);
  font-size: 11px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7d7da;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.mini-infinity {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  line-height: 0;
}

.window-live {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  color: #6e6e73;
}

.window-live i,
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.12);
}

.product-body {
  min-height: 590px;
  display: grid;
  grid-template-columns: 64px 1fr;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0.65rem;
  border-right: 1px solid #ececee;
  background: #fafafa;
}

.side-logo {
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  font-size: 1.75rem;
}

.side-item {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
}

.side-item b {
  width: 12px;
  height: 12px;
  display: block;
  border: 1.5px solid #98989d;
  border-radius: 3px;
}

.side-item.is-active {
  background: #1d1d1f;
}

.side-item.is-active b {
  border-color: #fff;
}

.side-avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7357d3, #4b8dff);
  font-size: 9px;
  font-weight: 700;
}

.product-main {
  padding: clamp(1.5rem, 3.5vw, 3.25rem);
  background: #f8f8fa;
}

.product-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.product-heading small {
  color: var(--muted);
  font-size: 11px;
}

.product-heading h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.period-control {
  padding: 0.55rem 0.75rem;
  border: 1px solid #dddde0;
  border-radius: 0.55rem;
  color: #6e6e73;
  background: #fff;
  font-size: 10px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.kpi-card,
.revenue-chart,
.journey-card {
  border: 1px solid #e5e5e7;
  border-radius: 1rem;
  background: #fff;
}

.kpi-card {
  padding: 1.2rem;
}

.kpi-card > span {
  display: block;
  color: #86868b;
  font-size: 10px;
}

.kpi-card strong {
  display: block;
  margin: 0.5rem 0 0.2rem;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: -0.045em;
}

.kpi-card small {
  font-size: 9px;
}

.up {
  color: #248a3d;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.revenue-chart,
.journey-card {
  min-height: 245px;
  padding: 1.2rem;
}

.module-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.module-head div {
  display: flex;
  flex-direction: column;
}

.module-head strong {
  font-size: 11px;
}

.module-head small {
  color: #86868b;
  font-size: 9px;
}

.module-head > span {
  color: #248a3d;
  font-size: 10px;
}

.chart-area {
  position: relative;
  height: 145px;
  margin-top: 1rem;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 35px, #eeeeef 36px);
}

.chart-fill,
.chart-stroke {
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  height: 135px;
  border-radius: 65% 35% 0 0;
  transform: rotate(-5deg) skewX(-10deg);
}

.chart-fill {
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.25), rgba(0, 113, 227, 0));
}

.chart-stroke {
  border-top: 3px solid var(--blue);
}

.chart-point {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 1px 4px rgba(0, 113, 227, 0.4);
}

.p1 { left: 8%; bottom: 23%; }
.p2 { left: 36%; bottom: 39%; }
.p3 { left: 63%; bottom: 51%; }
.p4 { right: 4%; top: 7%; }

.chart-months {
  display: flex;
  justify-content: space-between;
  color: #aaaab0;
  font-size: 8px;
}

.status-dot {
  display: block;
}

.journey-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.journey-list div {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #eeeeef;
  font-size: 9px;
}

.journey-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.j-blue { background: #2997ff; }
.j-purple { background: #bf5af2; }
.j-orange { background: #ff9f0a; }
.j-green { background: #30d158; }

.journey-list b {
  font-size: 9px;
}

.hero-note {
  width: min(100%, var(--max));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 3.5rem auto 0;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  color: #f5f5f7;
}

.hero-note span {
  color: #c68fbc;
}

.hero-note p {
  margin: 0;
}

.solutions {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(6rem, 9vw, 8rem);
  overflow: hidden;
}

.wide-wrap {
  width: min(100%, var(--wide));
  margin-inline: auto;
}

.section-intro {
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 5rem;
  margin-inline: auto;
}

.section-intro h2,
.platform-head h2,
.landing-intro h2,
.outcomes-head h2,
.process-intro h2,
.ideal-copy h2,
.faq-title h2,
.cta-content h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-intro > p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
}

.solutions .section-intro {
  width: min(calc(100% - var(--gutter) * 2), 82rem);
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
}

.solutions .section-intro h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 4vw, 3.85rem);
  line-height: 0.98;
}

.solutions .section-intro > p {
  max-width: 28rem;
  padding-bottom: 0;
  font-size: clamp(1.15rem, 1.35vw, 1.25rem);
  line-height: 1.48;
}

.solution-scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(25rem, 1fr));
  gap: 1.2rem;
  margin-top: 4rem;
  padding: 0 var(--gutter) 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.solution-scroll::-webkit-scrollbar {
  display: none;
}

.expertise-grid {
  width: min(calc(100% - var(--gutter) * 2), 82rem);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 3rem auto 0;
}

.expertise-card {
  position: relative;
  min-height: 0;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.5rem, 2.1vw, 1.9rem);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.expertise-card:nth-child(4),
.expertise-card:nth-child(5) {
  grid-column: span 3;
}

.expertise-card::after {
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -6rem;
  bottom: -7rem;
  border-radius: 50%;
  content: "";
  background: var(--expertise-glow, rgba(141, 75, 130, 0.09));
  filter: blur(15px);
  transition: transform 0.55s var(--ease);
}

.expertise-card:hover {
  z-index: 2;
  box-shadow: 0 2rem 5rem rgba(28, 18, 29, 0.1);
  transform: translateY(-0.4rem);
}

.expertise-card:hover::after {
  transform: scale(1.18);
}

.expertise-strategy { --expertise-glow: rgba(141, 75, 130, 0.12); }
.expertise-media { --expertise-glow: rgba(74, 109, 178, 0.12); }
.expertise-brand { --expertise-glow: rgba(180, 113, 151, 0.12); }
.expertise-automation { --expertise-glow: rgba(193, 119, 74, 0.11); }
.expertise-data { --expertise-glow: rgba(70, 130, 113, 0.11); }

.expertise-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.expertise-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: var(--blue);
  background: #f4edf2;
  font-size: 1.45rem;
}

.expertise-top small {
  color: #b2afb3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.expertise-top b {
  color: var(--blue);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expertise-card > div:last-child {
  position: relative;
  z-index: 1;
  margin-top: 1.15rem;
}

.expertise-card h3 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(1.9rem, 2.45vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.expertise-card > div:last-child > p {
  max-width: 32rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

.solution-card {
  position: relative;
  min-height: 39rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: center;
}

.card-blue { background: #dff1ff; }
.card-violet { background: #eee5ff; }
.card-orange { background: #ffe9d9; }
.card-green { background: #def6e6; }

.solution-number {
  display: block;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 600;
}

.solution-copy h3 {
  margin: 1.2rem 0 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.solution-copy p {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 17px;
  font-weight: 500;
}

.learn-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

.learn-more b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.84);
  font-size: 18px;
  font-weight: 400;
}

.ads-demo,
.crm-demo,
.flow-demo,
.page-demo {
  position: relative;
  height: 19rem;
  margin: 2rem -0.5rem 1.5rem;
}

.ads-demo {
  padding: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 35px rgba(25, 87, 130, 0.12);
  transform: rotate(-2deg);
}

.ads-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
}

.ads-top b {
  color: #248a3d;
}

.ads-total {
  margin-top: 1.4rem;
}

.ads-total small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.ads-total strong {
  font-size: 3.7rem;
  letter-spacing: -0.06em;
}

.ads-bars {
  height: 7rem;
  display: flex;
  align-items: end;
  gap: 0.65rem;
  margin-top: 1rem;
}

.ads-bars i {
  width: 100%;
  height: var(--bar);
  border-radius: 4px 4px 0 0;
  background: #2498ed;
  animation: bars 2.8s var(--ease) infinite alternate;
}

.ads-bars i:nth-child(even) {
  animation-delay: -1s;
}

@keyframes bars {
  from { transform: scaleY(0.72); transform-origin: bottom; }
}

.crm-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(1.2deg);
}

.crm-column {
  padding: 0.6rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.72);
}

.crm-column small {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.7rem;
  color: #69636f;
  font-size: 8px;
  font-weight: 600;
}

.crm-column > span {
  display: block;
  margin-bottom: 0.5rem;
  padding: 0.6rem 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 5px 10px rgba(80, 45, 120, 0.06);
  font-size: 8px;
}

.crm-column > span i {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 0.3rem;
  border-radius: 50%;
  background: #b987ed;
  vertical-align: middle;
}

.flow-demo {
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at center, rgba(255, 146, 52, 0.2), transparent 55%),
    rgba(255, 255, 255, 0.52);
}

.flow-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(142, 78, 30, 0.1);
  font-size: 9px;
  font-weight: 600;
}

.flow-node i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: #ff8a34;
  font-style: normal;
}

.node-start { top: 2rem; left: 1.5rem; }
.node-mid { top: 8rem; right: 1.5rem; }
.node-end { bottom: 1.5rem; left: 3rem; }

.flow-line {
  position: absolute;
  height: 2px;
  background: #e5a376;
  transform-origin: left;
}

.l1 { width: 9rem; top: 5.2rem; left: 7rem; transform: rotate(22deg); }
.l2 { width: 9rem; top: 11.2rem; left: 8rem; transform: rotate(147deg); }

.flow-pulse {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 4.7rem;
  left: 7rem;
  border-radius: 50%;
  background: #ff7a1a;
  box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.15);
  animation: flowPulse 4s linear infinite;
}

@keyframes flowPulse {
  45% { transform: translate(8rem, 3rem); }
  50% { transform: translate(8rem, 3rem); }
  100% { transform: translate(0, 9rem); }
}

.page-demo {
  display: grid;
  place-items: center;
}

.page-browser {
  width: 92%;
  height: 100%;
  overflow: hidden;
  border: 5px solid #222;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 20px 35px rgba(38, 112, 63, 0.18);
  transform: rotate(-2deg);
}

.page-bar {
  height: 18px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 6px;
  background: #eee;
}

.page-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b5b5b5;
}

.page-content {
  height: calc(100% - 18px);
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, #f6fff7 40%, #9edfac);
}

.page-content > b {
  width: 30px;
  height: 5px;
  display: block;
  border-radius: 5px;
  background: #21743d;
}

.page-content h4 {
  margin: 1.5rem 0 0.8rem;
  font-size: 1.45rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.page-content p {
  width: 80%;
  height: 4px;
  margin: 0.35rem 0;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.2);
}

.page-content p + p {
  width: 60%;
}

.page-content button {
  margin-top: 1rem;
  padding: 0.4rem 0.6rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #1c7138;
  font-size: 7px;
}

.platform {
  padding: clamp(8rem, 13vw, 12rem) var(--gutter);
  overflow: hidden;
}

.platform-head {
  max-width: 65rem;
}

.platform-head h2 span,
.landing-intro h2 span,
.ideal-copy h2 span {
  color: #86868b;
}

.platform-head > p:last-child,
.landing-intro > p:last-child {
  max-width: 42rem;
  margin: 2rem auto 0;
  color: #a1a1a6;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
}

.system-story {
  width: min(100%, 84rem);
  margin: 6rem auto 0;
}

.system-stage {
  position: relative;
}

.stage-glow {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(47, 128, 255, 0.28), rgba(150, 67, 255, 0.24), rgba(255, 93, 64, 0.2));
  filter: blur(55px);
}

.stage-interface {
  position: relative;
  min-height: 630px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(24, 24, 27, 0.85);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}

.stage-top {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.stage-top span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.stage-top i {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-style: normal;
}

.stage-top small {
  color: #8e8e93;
}

.journey-map {
  position: relative;
  min-height: 430px;
}

.map-track {
  position: absolute;
  top: 50%;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, #3286ff, #b85cff, #ff775c, #45cf78);
}

.map-track i {
  position: absolute;
  width: 12px;
  height: 12px;
  top: -5px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #8f5bff;
  box-shadow: 0 0 20px #8f5bff;
  animation: journey 6s var(--ease) infinite;
}

@keyframes journey {
  0% { left: 0; }
  100% { left: calc(100% - 12px); }
}

.map-node {
  position: absolute;
  width: 13rem;
  min-height: 6rem;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(45, 45, 49, 0.92);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.node-ads { top: 18%; left: 3%; }
.node-page { bottom: 15%; left: 28%; }
.node-crm { top: 15%; right: 27%; }
.node-sale { right: 3%; bottom: 17%; }

.node-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.blue { background: #0a84ff; }
.mint { background: #34c759; }
.purple { background: #af52de; }
.coral { background: #ff453a; }

.map-node div {
  display: flex;
  flex-direction: column;
}

.map-node small {
  color: #8e8e93;
  font-size: 9px;
}

.map-node strong {
  font-size: 12px;
}

.map-node > b {
  color: #6e6e73;
  font-size: 10px;
}

.stage-result {
  min-height: 135px;
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.stage-result div {
  display: flex;
  flex-direction: column;
}

.stage-result small {
  color: #8e8e93;
  font-size: 10px;
}

.stage-result strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.stage-result > span {
  justify-self: end;
  color: #a1a1a6;
  font-size: 13px;
}

.benefit-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 6rem auto 0;
}

.benefit-grid article {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.benefit-grid span {
  color: #86868b;
  font-size: 12px;
}

.benefit-grid h3 {
  margin: 2rem 0 0.7rem;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.benefit-grid p {
  margin: 0;
  color: #a1a1a6;
  font-size: 17px;
  font-weight: 500;
}

.landing-section {
  padding: clamp(8rem, 13vw, 12rem) var(--gutter);
  overflow: hidden;
}

.landing-intro {
  max-width: 68rem;
}

.landing-intro > p:last-child {
  color: var(--muted);
}

.device-showcase {
  position: relative;
  width: min(100%, 87rem);
  height: clamp(30rem, 58vw, 48rem);
  margin: 5rem auto 0;
}

.desktop-device {
  position: absolute;
  z-index: 2;
  width: 73%;
  top: 3%;
  left: 13.5%;
  padding: 0.6rem;
  border: 1px solid #bfc0c4;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #d8d9db, #7e8085);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.18);
}

.desktop-top {
  height: 0.8rem;
  display: grid;
  place-items: center;
}

.desktop-top i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #222;
}

.desktop-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #f5f2ea;
  background: #242018;
}

.desktop-screen nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 1.4rem;
  font-size: clamp(5px, 0.65vw, 10px);
}

.desktop-hero {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 4vw, 4rem);
}

.desktop-hero small {
  font-size: clamp(6px, 0.8vw, 11px);
}

.desktop-hero h3 {
  margin: 0.7rem 0;
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
}

.desktop-hero button,
.phone-screen button {
  padding: 0.55rem 0.8rem;
  border: 0;
  border-radius: 99px;
  font-size: clamp(5px, 0.7vw, 9px);
}

.building-shape {
  position: absolute;
  right: -2%;
  bottom: -12%;
  width: 52%;
  height: 88%;
  display: flex;
  gap: 2%;
  align-items: end;
  transform: skewY(-8deg);
}

.building-shape i {
  width: 33%;
  height: 90%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: repeating-linear-gradient(90deg, #535046 0 8%, #25221d 9% 14%);
}

.building-shape i:nth-child(2) { height: 70%; }
.building-shape i:nth-child(3) { height: 100%; }

.phone {
  position: absolute;
  z-index: 3;
  width: 21%;
  padding: 0.42rem;
  border-radius: clamp(1rem, 2vw, 2rem);
  background: #1a1a1a;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.phone::before {
  position: absolute;
  z-index: 4;
  width: 28%;
  height: 3%;
  top: 1.6%;
  left: 36%;
  border-radius: 99px;
  content: "";
  background: #000;
}

.phone-left {
  bottom: 3%;
  left: 0;
  transform: rotate(-7deg);
}

.phone-right {
  right: 0;
  bottom: 1%;
  transform: rotate(6deg);
}

.phone-screen {
  position: relative;
  aspect-ratio: 9 / 18.5;
  padding: 13% 10%;
  overflow: hidden;
  border-radius: clamp(0.8rem, 1.7vw, 1.65rem);
}

.screen-purple {
  color: #fff;
  background: linear-gradient(160deg, #24114a, #975ce4);
}

.screen-coral {
  color: #32130c;
  background: linear-gradient(160deg, #ffdbc2, #ff6e45);
}

.fake-nav {
  display: block;
  font-size: clamp(5px, 0.75vw, 10px);
  font-weight: 700;
}

.phone-screen h3 {
  position: relative;
  z-index: 2;
  margin: 35% 0 10%;
  font-size: clamp(0.8rem, 2vw, 2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.phone-screen p {
  position: relative;
  z-index: 2;
  font-size: clamp(5px, 0.65vw, 9px);
}

.phone-screen > i {
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  right: -45%;
  bottom: -25%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 48% 52% 40% 60%;
  box-shadow: inset 0 0 2rem rgba(255, 255, 255, 0.25);
  transform: rotate(35deg);
}

.drink-can {
  width: 50%;
  aspect-ratio: 0.48;
  display: grid;
  place-items: center;
  margin: 12% auto;
  border-radius: 16% 16% 12% 12%;
  color: #ff875d;
  background: linear-gradient(90deg, #fafafa, #d6d6d6 48%, #fff 52%, #aaa);
  box-shadow: 0 15px 30px rgba(123, 31, 10, 0.25);
  font-size: clamp(1rem, 3vw, 3rem);
  font-weight: 800;
  transform: rotate(6deg);
}

.landing-features {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 4rem auto 0;
  border-top: 1px solid var(--line);
}

.landing-features span {
  padding: 1.4rem 0.8rem;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.landing-features span:last-child {
  border-right: 0;
}

.outcomes {
  padding: clamp(7rem, 12vw, 10rem) var(--gutter);
}

.outcomes-wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.outcomes-head {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: end;
}

.outcomes-head .eyebrow {
  align-self: start;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 5rem;
}

.outcome-card {
  min-height: 29rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
}

.outcome-card strong {
  color: var(--blue);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.outcome-card strong span {
  font-size: 0.36em;
  letter-spacing: -0.03em;
}

.outcome-card h3 {
  margin: auto 0 0.75rem;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.process {
  padding: clamp(8rem, 13vw, 12rem) var(--gutter);
}

.process-intro {
  text-align: left;
}

.process-list {
  width: min(100%, var(--max));
  margin: 5rem auto 0;
  border-top: 1px solid var(--line);
}

.process-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-row > span {
  color: var(--muted);
  font-size: 13px;
}

.process-row h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.process-row p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.process-row > b {
  color: var(--blue);
  font-size: 13px;
}

.process-intro > p:last-child {
  max-width: 44rem;
  margin: 1.6rem auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 500;
}

.ideal {
  padding: clamp(8rem, 13vw, 12rem) var(--gutter);
}

.ideal-wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.ideal-copy h2 {
  max-width: 18ch;
}

.ideal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 5rem;
}

.ideal-cards article {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #111113;
}

.ideal-cards i {
  color: var(--blue-light);
  font-size: 2.7rem;
  font-style: normal;
}

.ideal-cards h3 {
  margin: auto 0 0.75rem;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.ideal-cards p {
  margin: 0;
  color: #a1a1a6;
  font-size: 15px;
  font-weight: 500;
}

.faq {
  padding: clamp(7rem, 12vw, 10rem) var(--gutter);
}

.faq-wrap {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 6rem;
  margin-inline: auto;
}

.faq-title h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 600;
}

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

.faq-list summary span {
  color: var(--blue);
  font-size: 20px;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 40rem;
  margin: -0.3rem 0 2rem;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 52rem;
  display: grid;
  place-items: center;
  padding: 8rem var(--gutter);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(150deg, #09090b 0%, #111621 50%, #102a4a 100%);
  text-align: center;
}

.cta-symbol {
  position: absolute;
  width: min(76vw, 58rem);
  top: 50%;
  left: 50%;
  opacity: 0.075;
  filter: blur(0.3px);
  transform: translate(-50%, -50%);
}

.cta-symbol img {
  width: 100%;
  height: auto;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.cta-content > p:not(.eyebrow) {
  margin: 1.8rem 0;
  color: #a1a1a6;
  font-size: 21px;
  font-weight: 500;
}

.footer {
  padding: 5rem var(--gutter) 2rem;
  color: #f5f5f7;
  background: #000;
}

.footer-main,
.footer-bottom {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.45fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 4rem;
}

.footer-brand {
  width: 11.5rem;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-main > p {
  margin: 0;
  color: #a1a1a6;
  font-size: 21px;
  font-weight: 600;
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-main nav a,
.footer-main nav button {
  padding: 0;
  border: 0;
  color: #a1a1a6;
  background: none;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #6e6e73;
  font-size: 11px;
}

.contact-dialog {
  width: min(calc(100% - 2rem), 46rem);
  max-height: calc(100svh - 2rem);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  overflow-y: auto;
  border: 0;
  border-radius: 1.8rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.dialog-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #6e6e73;
  background: #e8e8ed;
  cursor: pointer;
  font-size: 20px;
}

.dialog-symbol {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
}

.dialog-head .eyebrow {
  margin-top: 1.8rem;
  font-size: 17px;
}

.dialog-head h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.dialog-head > p:last-child {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.contact-form label:nth-child(3),
.form-submit,
.contact-form > small {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 52px;
  padding: 0 0.9rem;
  border: 1px solid #d2d2d7;
  border-radius: 0.7rem;
  outline: none;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.contact-form > small {
  color: var(--muted);
  text-align: center;
}

.contact-form > small.is-warning {
  color: #c9342f;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

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

  .menu-button {
    position: relative;
    z-index: 3;
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: none;
  }

  .menu-button span {
    width: 16px;
    height: 1px;
    display: block;
    background: #f5f5f7;
    transition: transform 0.25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 44px 0 auto;
    min-height: calc(100svh - 44px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 2rem var(--gutter);
    visibility: hidden;
    opacity: 0;
    background: rgba(3, 3, 3, 0.98);
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .global-nav a {
    color: #f5f5f7;
    width: 100%;
    padding: 0.7rem 0;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.04em;
  }

  .hero-layout {
    max-width: 42rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

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

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-brand-art {
    width: 90vw;
    left: 50%;
    opacity: 0.06;
  }

  .product-body {
    min-height: 500px;
    grid-template-columns: 48px 1fr;
  }

  .product-sidebar {
    padding-inline: 0.35rem;
  }

  .section-intro,
  .outcomes-head,
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solutions .section-intro {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .solutions .section-intro > p {
    padding-bottom: 0;
  }

  .benefit-grid,
  .outcome-grid,
  .ideal-cards {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-card,
  .expertise-card:nth-child(4) {
    min-height: 0;
    grid-column: span 1;
  }

  .expertise-card:nth-child(5) {
    min-height: 0;
    grid-column: 1 / -1;
  }

  .outcome-card {
    min-height: 22rem;
  }

  .ideal-cards article {
    min-height: 20rem;
  }

  .stage-interface {
    min-height: 800px;
  }

  .journey-map {
    min-height: 640px;
  }

  .map-track {
    width: 2px;
    height: auto;
    top: 8%;
    bottom: 8%;
    left: 50%;
    background: linear-gradient(180deg, #3286ff, #b85cff, #ff775c, #45cf78);
  }

  .map-track i {
    top: 0;
    left: -5px;
    animation-name: journeyVertical;
  }

  @keyframes journeyVertical {
    from { top: 0; }
    to { top: calc(100% - 12px); }
  }

  .map-node {
    width: 46%;
  }

  .node-ads { top: 5%; left: 2%; }
  .node-page { top: 29%; right: 2%; bottom: auto; left: auto; }
  .node-crm { top: 53%; left: 2%; right: auto; }
  .node-sale { top: 77%; right: 2%; bottom: auto; }

  .stage-result {
    grid-template-columns: 1fr 1fr;
  }

  .stage-result > span {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .footer-main nav {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --radius: 1.5rem;
  }

  body {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 6.7rem 1.1rem 3rem;
  }

  .hero-copy {
    min-height: auto;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    text-align: center;
  }

  .hero-brand-art {
    width: 125vw;
    top: 37%;
    left: 50%;
    opacity: 0.06;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 13.8vw, 4rem);
  }

  .hero h1 span {
    margin-top: 0.2em;
    font-size: 0.56em;
  }

  .hero-qualifier {
    max-width: 19rem;
    justify-content: center;
    font-size: 11px;
  }

  .hero-lead {
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 0.9rem;
  }

  .hero-primary {
    width: 100%;
    max-width: 23rem;
    padding-inline: 1rem;
    font-size: 14px;
  }

  .hero-layout {
    gap: 2.3rem;
  }

  .hero-system {
    padding: 1rem 0.9rem;
    border-radius: 1rem;
  }

  .hero-system-track {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1rem;
  }

  .hero-system-track > b {
    display: none;
  }

  .hero-system-track span {
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.025);
  }

  .hero-system-note {
    max-width: 18rem;
    margin-inline: auto;
    line-height: 1.35;
  }

  .hero-product {
    width: 155%;
    margin-left: -27.5%;
  }

  .product-window {
    border-radius: 1rem;
  }

  .window-bar {
    height: 36px;
  }

  .window-live,
  .period-control,
  .product-sidebar {
    display: none;
  }

  .product-body {
    min-height: 390px;
    display: block;
  }

  .product-main {
    padding: 1.2rem 18%;
  }

  .product-heading h2 {
    font-size: 1.25rem;
  }

  .kpi-row {
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .kpi-card {
    padding: 0.7rem;
  }

  .kpi-card strong {
    font-size: 1rem;
  }

  .dashboard-row {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 0.4rem;
  }

  .revenue-chart,
  .journey-card {
    min-height: 175px;
    padding: 0.7rem;
  }

  .chart-area {
    height: 85px;
  }

  .journey-list {
    gap: 0.25rem;
    margin-top: 0.6rem;
  }

  .journey-list div {
    padding-bottom: 0.3rem;
  }

  .hero-note {
    align-items: center;
    flex-direction: column;
    font-size: 18px;
  }

  .solution-scroll {
    grid-template-columns: repeat(3, 86vw);
  }

  .solutions .section-intro h2 {
    font-size: clamp(2.65rem, 11vw, 3.35rem);
  }

  .solutions .section-intro > p {
    font-size: 18px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 2.5rem;
  }

  .expertise-card,
  .expertise-card:nth-child(4),
  .expertise-card:nth-child(5) {
    min-height: 0;
    grid-column: 1;
  }

  .expertise-card > div:last-child {
    margin-top: 1rem;
  }

  .expertise-card h3 {
    font-size: 2rem;
  }

  .solution-card {
    min-height: 36rem;
    padding: 1.5rem;
  }

  .platform,
  .landing-section,
  .process,
  .ideal,
  .faq {
    padding-inline: 1.25rem;
  }

  .stage-interface {
    min-height: 750px;
    border-radius: 1.35rem;
  }

  .stage-top {
    padding: 0 1rem;
  }

  .map-node {
    width: 84%;
  }

  .node-ads,
  .node-crm { left: 4%; }

  .node-page,
  .node-sale { right: 4%; }

  .stage-result {
    gap: 1rem;
    padding: 1.2rem;
  }

  .stage-result strong {
    font-size: 1.4rem;
  }

  .benefit-grid {
    gap: 2rem;
  }

  .device-showcase {
    width: 130%;
    height: 29rem;
    margin-left: -15%;
  }

  .desktop-device {
    width: 84%;
    left: 8%;
  }

  .phone {
    width: 27%;
  }

  .landing-features {
    grid-template-columns: 1fr 1fr;
  }

  .landing-features span:nth-child(2) {
    border-right: 0;
  }

  .landing-features span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .outcomes-head .eyebrow {
    margin-bottom: 1rem;
  }

  .process-intro {
    text-align: center;
  }

  .process-row {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }

  .process-row > b {
    grid-column: 2;
  }

  .faq-wrap {
    gap: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-main nav {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .contact-form label:nth-child(3),
  .form-submit,
  .contact-form > small {
    grid-column: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
