@import "tailwindcss";

:root {
  --ink: #11130f;
  --muted: #64685f;
  --paper: #f7f6f1;
  --white: #ffffff;
  --acid: #ffd400;
  --acid-deep: #e5b900;
  --purple: #7c5cff;
  --line: rgba(17, 19, 15, 0.13);
  --pointer-x: 50vw;
  --pointer-y: 30vh;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.cursor-glow {
  position: fixed;
  z-index: 60;
  left: var(--pointer-x);
  top: var(--pointer-y);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.13);
  filter: blur(64px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: left 180ms linear, top 180ms linear;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1500px;
  margin: 0 auto;
  height: 92px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 92px;
  height: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--ink);
  transition: right 220ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 180ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 850px;
  height: min(920px, 100svh);
  max-width: 1600px;
  margin: 0 auto;
  padding: 165px 4vw 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(450px, 0.98fr);
  align-items: center;
  gap: 4vw;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(17, 19, 15, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 77% 44%, black 0, transparent 61%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-bottom: 46px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 12px;
  font-weight: 800;
}

.hero-eyebrow {
  opacity: 0;
  animation: enter-up 700ms 120ms ease forwards;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid-deep);
  box-shadow: 0 0 0 5px rgba(169, 225, 22, 0.16);
}

.hero h1 {
  max-width: 760px;
  margin: 28px 0 26px;
  font-size: clamp(48px, 4.7vw, 76px);
  line-height: 1;
  letter-spacing: -0.067em;
  font-weight: 500;
  text-wrap: balance;
  opacity: 0;
  animation: enter-up 820ms 220ms cubic-bezier(.22,.89,.3,1) forwards;
}

.hero h1 span {
  color: var(--purple);
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-description {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  opacity: 0;
  animation: enter-up 750ms 340ms ease forwards;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0;
  animation: enter-up 750ms 440ms ease forwards;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(17, 19, 15, 0.12);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(17, 19, 15, 0.2);
}

.button-primary span {
  color: var(--acid);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(48vw, 680px);
  height: min(44vw, 650px);
  min-height: 560px;
  opacity: 0;
  animation: visual-enter 1100ms 250ms cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% 2% 4% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.93), transparent 25%),
    radial-gradient(circle at 67% 68%, rgba(124,92,255,0.4), transparent 37%),
    linear-gradient(135deg, var(--acid), #ffe87a 44%, #b7a8ff 100%);
  filter: saturate(0.95);
  animation: blob 10s ease-in-out infinite;
  box-shadow: inset 0 0 70px rgba(255,255,255,0.3), 0 50px 100px rgba(78, 56, 170, 0.14);
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(17, 19, 15, 0.15);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  top: -5px;
  left: 50%;
}

.orbit-one {
  inset: 3% -5% -2% 0;
  animation: rotate 24s linear infinite;
}

.orbit-two {
  inset: 13% 5% 10% 12%;
  animation: rotate-reverse 18s linear infinite;
}

.analytics-card {
  position: absolute;
  z-index: 3;
  width: 75%;
  left: 13%;
  top: 18%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(54, 43, 104, 0.18);
  backdrop-filter: blur(20px);
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  animation: card-float 6s ease-in-out infinite;
}

.analytics-top,
.metric-row,
.channel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analytics-top > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.analytics-top span,
.metric span {
  color: #777a73;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
}

.analytics-top strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: #eef8dc;
  border-radius: 999px;
  color: #4c6a16 !important;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7aa714;
  animation: blink 1.5s infinite;
}

.metric-row {
  gap: 10px;
  margin: 24px 0 12px;
}

.metric {
  position: relative;
  flex: 1;
  padding: 15px;
  background: rgba(247, 246, 241, 0.65);
  border-radius: 14px;
  display: grid;
  gap: 5px;
}

.metric strong {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.metric small {
  position: absolute;
  right: 12px;
  bottom: 13px;
  color: #668c15;
  font-size: 9px;
  font-weight: 800;
}

.chart {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.chart-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 36px, rgba(17,19,15,0.08) 37px);
}

.chart-area {
  position: absolute;
  inset: 27px 0 0;
  background: linear-gradient(180deg, rgba(124,92,255,0.25), transparent);
  clip-path: polygon(0 82%, 11% 68%, 22% 72%, 34% 42%, 45% 55%, 57% 26%, 68% 41%, 80% 12%, 90% 28%, 100% 3%, 100% 100%, 0 100%);
}

.chart-line {
  position: absolute;
  inset: 26px 0 0;
  height: 3px;
  background: var(--purple);
  box-shadow: 0 0 10px rgba(124,92,255,0.45);
  clip-path: polygon(0 80%, 11% 66%, 22% 70%, 34% 40%, 45% 53%, 57% 24%, 68% 39%, 80% 10%, 90% 26%, 100% 0, 100% 3%, 90% 29%, 80% 13%, 68% 42%, 57% 27%, 45% 56%, 34% 43%, 22% 73%, 11% 69%, 0 83%);
}

.chart-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,92,255,0.18);
}

.dot-a { left: 33%; top: 61px; }
.dot-b { left: 56%; top: 39px; }
.dot-c { left: 79%; top: 20px; }

.channel-row {
  margin-top: 8px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.channel-row span {
  color: #767a71;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.channel-row i {
  flex: 1;
  height: 1px;
  margin: 0 7px;
  background: rgba(17,19,15,0.2);
  position: relative;
}

.channel-row i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(17,19,15,0.3);
  border-right: 1px solid rgba(17,19,15,0.3);
  transform: rotate(45deg);
}

.floating-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(17,19,15,0.09);
  border-radius: 13px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 35px rgba(36,33,49,0.12);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
}

.mini-icon,
.lead-avatar {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef0ff;
  color: var(--purple);
  font-size: 11px;
}

.label-ads {
  top: 9%;
  right: 1%;
  animation: float-small 4.5s ease-in-out infinite;
}

.label-ai {
  right: -1%;
  bottom: 19%;
  animation: float-small 4s 0.7s ease-in-out infinite;
}

.label-lead {
  left: 1%;
  bottom: 12%;
  animation: float-small 4.8s 0.25s ease-in-out infinite;
}

.label-lead > span:last-child {
  display: flex;
  flex-direction: column;
}

.label-lead small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  margin-top: 2px;
}

.lead-avatar {
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
}

.hero-foot {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 4vw;
  right: 4vw;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-proof {
  display: flex;
  align-items: center;
}

.hero-proof > span {
  width: 31px;
  height: 31px;
  margin-left: -7px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  font-size: 7px;
}

.hero-proof > span:nth-child(2) { background: var(--purple); }
.hero-proof > span:nth-child(3) { background: var(--acid); color: var(--ink); }

.hero-proof p {
  margin: 0 0 0 10px;
  line-height: 1.35;
}

.section-shell {
  width: min(1440px, 92vw);
  margin: 0 auto;
}

.statement {
  padding: 150px 0 170px;
}

.statement p {
  max-width: 1240px;
  margin: 34px 0 0;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.statement p em {
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.services {
  padding: 0 0 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2,
.system-copy h2,
.dashboard-copy h2 {
  margin: 24px 0 0;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: 27px 25px 25px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.18);
  overflow: hidden;
  transition: background 250ms ease, transform 250ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--acid);
  transform: translate(-50%, -50%);
  transition: width 500ms ease, height 500ms ease;
}

.service-card:hover::before {
  width: 150%;
  height: 150%;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-number {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
}

.service-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 20px;
  transition: transform 250ms ease;
}

.service-card:hover .service-arrow {
  transform: rotate(45deg);
}

.service-card h3 {
  margin: auto 0 18px;
  font-size: 28px;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.service-card p {
  min-height: 95px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-card:hover p {
  color: #32352f;
}

.tag-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.system-section {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.system-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -180px;
  bottom: -340px;
  border-radius: 50%;
  background: rgba(124,92,255,0.25);
  filter: blur(70px);
}

.system-shell {
  min-height: 770px;
  padding: 130px 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  align-items: center;
}

.light-kicker {
  color: var(--acid);
}

.system-copy h2 {
  max-width: 560px;
  margin-bottom: 30px;
}

.system-copy p {
  max-width: 500px;
  margin: 0 0 38px;
  color: rgba(255,255,255,0.62);
  font-size: 17px;
  line-height: 1.65;
}

.button-light {
  background: var(--acid);
  color: var(--ink);
}

.flow-map {
  position: relative;
  min-height: 560px;
}

.flow-map::before,
.flow-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.flow-map::after {
  width: 300px;
  height: 300px;
}

.flow-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,212,0,0.48), transparent);
  transform-origin: center;
}

.line-two { transform: rotate(60deg); }
.line-three { transform: rotate(-60deg); }

.flow-node {
  position: absolute;
  z-index: 3;
  width: 112px;
  height: 112px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: #1b1e19;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 45px rgba(0,0,0,0.28);
}

.flow-node i {
  color: var(--acid);
  font-size: 8px;
  font-style: normal;
  margin-bottom: 8px;
}

.flow-node span {
  font-size: 11px;
  line-height: 1.25;
}

.node-center {
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  background: var(--acid);
  color: var(--ink);
  transform: translate(-50%, -50%);
  border-color: var(--acid);
  box-shadow: 0 0 80px rgba(255,212,0,0.2);
}

.node-logo {
  font-size: 35px !important;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.node-center small {
  margin-top: 5px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.node-one { left: 2%; top: 12%; }
.node-two { right: 5%; top: 5%; }
.node-three { right: -1%; bottom: 15%; }
.node-four { left: 9%; bottom: 4%; }
.node-five { left: 46%; top: -1%; }

.flow-pulse {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 13px var(--acid);
}

.pulse-one { animation: pulse-travel-one 4s linear infinite; }
.pulse-two { animation: pulse-travel-two 4s 1.2s linear infinite; }
.pulse-three { animation: pulse-travel-three 4s 2.2s linear infinite; }

.method {
  padding: 150px 0;
}

.method-heading {
  margin-bottom: 68px;
}

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

.step {
  min-height: 128px;
  display: grid;
  grid-template-columns: 0.2fr 0.6fr 1fr 30px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition: padding 250ms ease, background 250ms ease;
}

.step:hover {
  padding: 0 20px;
  background: rgba(255,255,255,0.55);
}

.step > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.step h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.step p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.step i {
  font-style: normal;
  font-size: 20px;
}

.results-proof {
  padding: 0 0 170px;
}

.results-proof-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9vw;
  align-items: end;
}

.results-proof-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.results-proof-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.results-panel {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 9%, rgba(255,212,0,0.13), transparent 23%),
    linear-gradient(145deg, #181a16, #090a08 72%);
  color: white;
  box-shadow: 0 38px 90px rgba(17,19,15,0.22);
}

.results-panel::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -220px;
  bottom: -260px;
  border: 1px solid rgba(255,212,0,0.24);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255,212,0,0.08);
}

.results-panel-top {
  min-height: 92px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.results-panel-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.results-panel-brand > b {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.08em;
}

.results-panel-brand > span {
  display: grid;
  gap: 5px;
}

.results-panel-brand strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.results-panel-brand small,
.results-period {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.4;
}

.results-period {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  white-space: nowrap;
}

.results-metrics {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.result-metric {
  min-height: 194px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  transition: transform 220ms ease, border-color 220ms ease;
}

.result-metric:hover {
  transform: translateY(-4px);
  border-color: rgba(255,212,0,0.38);
}

.result-metric-primary {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
}

.result-metric > span {
  min-height: 42px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.result-metric strong {
  margin: auto 0 10px;
  font-size: clamp(27px, 2.55vw, 40px);
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.result-metric small {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.45;
}

.result-metric-primary small {
  color: rgba(17,19,15,0.65);
}

.results-panel-bottom {
  position: relative;
  z-index: 2;
  padding: 0 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.result-benchmark {
  min-height: 72px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
}

.result-benchmark > span {
  max-width: 115px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-benchmark div {
  display: grid;
  gap: 4px;
}

.result-benchmark strong {
  font-size: 21px;
  letter-spacing: -0.04em;
}

.result-benchmark small {
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
}

.results-panel-bottom > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.055), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(255, 212, 0, 0.075), transparent 30%),
    linear-gradient(135deg, #11120f 0%, #090a08 58%, #0d0e0b 100%);
  color: white;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: -45%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 67%);
  opacity: 0.42;
  animation: texture-drift 28s linear infinite;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 1px;
  right: -12%;
  top: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.5), transparent);
  box-shadow: 0 0 35px rgba(255, 212, 0, 0.18);
  transform: rotate(-19deg);
  transform-origin: center;
  animation: light-sweep 9s ease-in-out infinite;
}

.about-shell {
  position: relative;
  z-index: 2;
  padding: 140px 0 120px;
}

.about-shell h2 {
  margin: 36px 0 90px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.about-shell h2 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.about-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 10vw;
  align-items: flex-end;
}

.about-bottom p {
  max-width: 580px;
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.65;
}

.about-bottom a {
  min-width: 240px;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 800;
}

.about-orb {
  position: absolute;
  border: 1px solid rgba(255, 212, 0, 0.22);
  border-radius: 50%;
}

.about-orb::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: -5px;
  top: 50%;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(255, 212, 0, 0.8);
}

.orb-a {
  width: 650px;
  height: 650px;
  right: -220px;
  top: -250px;
  border-style: dashed;
  animation: rotate 24s linear infinite;
}

.orb-b {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 100px rgba(255, 255, 255, 0.045);
  animation: orbit-breathe 7s ease-in-out infinite;
}

.founder-section {
  padding: 150px 0;
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1.18fr);
  gap: 8vw;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
}

.founder-photo-accent {
  position: absolute;
  z-index: -1;
  width: 76%;
  aspect-ratio: 1;
  left: -14%;
  bottom: -9%;
  border-radius: 50%;
  background: var(--acid);
  opacity: 0.95;
}

.founder-photo {
  display: block;
  width: 100%;
  max-height: 720px;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: 54% center;
  border-radius: 30px;
  filter: saturate(0.93) contrast(1.03);
  box-shadow: 0 32px 70px rgba(17,19,15,0.18);
}

.founder-signature {
  position: absolute;
  right: -28px;
  bottom: 30px;
  min-width: 255px;
  padding: 18px 20px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(17,19,15,0.14);
}

.founder-signature strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.founder-signature span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.founder-copy h2 {
  max-width: 720px;
  margin: 26px 0 28px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.founder-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.founder-copy .founder-lead {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.55;
}

.founder-timeline {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.founder-timeline article {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.founder-timeline span {
  padding-top: 2px;
  color: var(--acid-deep);
  font-size: 14px;
  font-weight: 900;
}

.founder-timeline p {
  margin: 0;
  color: #3f433b;
  font-size: 15px;
  line-height: 1.55;
}

.final-cta {
  padding: 160px 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 1040px;
  margin: 32px auto 20px;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 1;
  letter-spacing: -0.068em;
  font-weight: 500;
}

.final-cta p {
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: 17px;
}

.button-large {
  min-height: 60px;
  padding: 0 30px;
}

.footer {
  width: min(1440px, 92vw);
  margin: 0 auto;
  padding: 60px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-top {
  width: min(980px, 100%);
  margin: 0 auto;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(68px, 8vw, 128px);
}

.footer-brand {
  flex: 0 0 auto;
  align-self: center;
}

.footer-logo {
  width: 168px;
  height: 112px;
}

.footer-top > div {
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-top > div:first-of-type {
  min-width: 205px;
}

.footer-top > div > span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.footer-top > div a {
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.2,1);
}

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

.service-card:nth-child(2),
.step:nth-child(2) { transition-delay: 80ms; }
.service-card:nth-child(3),
.step:nth-child(3) { transition-delay: 160ms; }
.service-card:nth-child(4),
.step:nth-child(4) { transition-delay: 240ms; }

@keyframes enter-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visual-enter {
  from { opacity: 0; transform: translateY(35px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes blob {
  0%, 100% { border-radius: 48% 52% 53% 47% / 47% 44% 56% 53%; transform: rotate(-3deg) scale(1); }
  50% { border-radius: 56% 44% 46% 54% / 56% 54% 46% 44%; transform: rotate(3deg) scale(1.025); }
}

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotate-reverse { to { transform: rotate(-360deg); } }

@keyframes card-float {
  0%, 100% { transform: perspective(1000px) rotateY(-6deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) translateY(-12px); }
}

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

@keyframes blink {
  50% { opacity: 0.25; }
}

@keyframes pulse-travel-one {
  0% { transform: translate(-50%, -50%) translateX(-210px); opacity: 0; }
  15%, 85% { opacity: 1; }
  100% { transform: translate(-50%, -50%) translateX(210px); opacity: 0; }
}

@keyframes pulse-travel-two {
  0% { transform: translate(-50%, -50%) rotate(60deg) translateX(-210px); opacity: 0; }
  15%, 85% { opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(60deg) translateX(210px); opacity: 0; }
}

@keyframes pulse-travel-three {
  0% { transform: translate(-50%, -50%) rotate(-60deg) translateX(-210px); opacity: 0; }
  15%, 85% { opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(-60deg) translateX(210px); opacity: 0; }
}

@keyframes bars {
  to { transform: scaleY(0.8); opacity: 0.72; }
}

@keyframes texture-drift {
  from { transform: translate3d(-2%, -2%, 0) rotate(0deg); }
  to { transform: translate3d(2%, 2%, 0) rotate(5deg); }
}

@keyframes ambient-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.55; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes light-sweep {
  0%, 100% { transform: rotate(-19deg) translateX(-10%); opacity: 0.25; }
  50% { transform: rotate(-19deg) translateX(12%); opacity: 0.85; }
}

@keyframes orbit-breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .hero {
    min-height: 1000px;
    height: auto;
    padding-top: 150px;
    grid-template-columns: 1fr;
  }
  .hero-copy { padding-bottom: 0; }
  .hero-visual {
    width: min(760px, 88vw);
    height: 590px;
    justify-self: center;
  }
  .hero-foot { position: relative; left: auto; right: auto; bottom: auto; grid-column: 1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .system-shell { grid-template-columns: 1fr; }
  .system-copy { max-width: 650px; }
  .flow-map { width: min(760px, 92vw); justify-self: center; }
  .results-metrics { grid-template-columns: repeat(2, 1fr); }
  .founder-section {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 6vw;
  }
  .founder-signature { right: -12px; }
  .footer-top {
    width: min(820px, 100%);
    gap: clamp(38px, 6vw, 78px);
  }
  .footer-logo {
    width: 150px;
    height: 100px;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 74px;
    padding: 0 20px;
  }
  .header-cta {
    padding: 10px 14px;
    font-size: 12px;
  }
  .header-cta span { display: none; }
  .hero {
    min-height: auto;
    padding: 125px 20px 35px;
    gap: 28px;
  }
  .hero h1 {
    margin-top: 23px;
    font-size: clamp(42px, 12.2vw, 56px);
  }
  .hero-description { font-size: 16px; }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-visual {
    width: 100%;
    height: 430px;
    min-height: 430px;
  }
  .hero-visual::before { inset: 7% -9% 3%; }
  .analytics-card {
    left: 4%;
    top: 20%;
    width: 92%;
    padding: 16px;
    border-radius: 18px;
  }
  .metric strong { font-size: 20px; }
  .metric small { position: static; }
  .chart { height: 100px; }
  .label-ads { top: 6%; right: -2%; }
  .label-ai { right: -2%; bottom: 11%; }
  .label-lead { left: -2%; bottom: 5%; }
  .hero-foot {
    margin-top: 18px;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-proof > span { display: none; }
  .hero-proof p { margin: 0; text-align: right; }
  .section-shell { width: calc(100% - 40px); }
  .statement { padding: 100px 0 115px; }
  .statement p { font-size: 36px; }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  .section-heading h2,
  .system-copy h2 { font-size: 40px; }
  .services { padding-bottom: 100px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 345px; }
  .system-shell { padding: 100px 0 80px; }
  .flow-map {
    width: 100%;
    min-height: 480px;
    transform: scale(0.84);
  }
  .flow-map::before { width: 430px; height: 430px; }
  .node-one { left: -14%; }
  .node-two { right: -12%; }
  .node-three { right: -14%; }
  .node-four { left: -10%; }
  .method { padding: 105px 0; }
  .step {
    padding: 26px 0;
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
  .step p { grid-column: 2; }
  .step i { position: absolute; right: 2px; }
  .results-proof { padding-bottom: 110px; }
  .results-proof-heading {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .results-proof-heading h2 { font-size: 42px; }
  .results-proof-heading p { font-size: 16px; }
  .results-panel { border-radius: 20px; }
  .results-panel-top {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .results-period {
    padding: 8px 11px;
    white-space: normal;
  }
  .results-metrics {
    padding: 18px;
    grid-template-columns: 1fr;
  }
  .result-metric {
    min-height: 165px;
    padding: 22px;
  }
  .result-metric strong { font-size: 34px; }
  .results-panel-bottom {
    padding: 0 18px 22px;
    align-items: stretch;
    flex-direction: column;
  }
  .result-benchmark {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .result-benchmark > span {
    width: 100%;
    max-width: none;
  }
  .results-panel-bottom > p { text-align: left; }
  .about-shell { padding: 100px 0 90px; }
  .about-shell h2 { margin-bottom: 55px; font-size: 46px; }
  .about-bottom { align-items: flex-start; flex-direction: column; }
  .about-bottom a { width: 100%; }
  .founder-section {
    padding: 105px 0;
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .founder-photo-wrap {
    width: min(100%, 490px);
    justify-self: center;
  }
  .founder-photo { border-radius: 22px; }
  .founder-signature {
    right: 12px;
    bottom: -24px;
    min-width: 0;
    width: calc(100% - 24px);
  }
  .founder-copy h2 { font-size: 43px; }
  .founder-copy .founder-lead { font-size: 19px; }
  .founder-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .final-cta { padding: 110px 0; }
  .final-cta h2 { font-size: 48px; }
  .footer {
    width: calc(100% - 40px);
    padding-top: 48px;
  }
  .footer-top {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    align-items: start;
    text-align: center;
  }
  .footer-brand {
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: 4px;
  }
  .footer-logo {
    width: 160px;
    height: 108px;
  }
  .footer-top > div,
  .footer-top > div:first-of-type {
    min-width: 0;
    align-items: center;
  }
  .footer-top > div a {
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    line-height: 1.5;
    text-align: center;
  }
  .cursor-glow { display: none; }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-brand {
    grid-column: 1;
  }
}

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

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cookie-settings {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(17, 17, 15, 0.97);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  color: #fff;
  backdrop-filter: blur(18px);
}

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

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.cookie-banner p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
}

.cookie-button-primary {
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: #11110f;
}

@media (max-width: 700px) {
  .footer-bottom > div {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 19px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .cookie-button {
    width: 100%;
  }
}
