:root {
  --ink: #111126;
  --ink-soft: #3d3d52;
  --navy: #181641;
  --navy-deep: #0b0b1d;
  --violet: #29215f;
  --teal: #05babb;
  --teal-dark: #049a9b;
  --mint: #e8fbf8;
  --paper: #f6f6f1;
  --white: #ffffff;
  --line: rgba(20, 19, 47, 0.12);
  --shadow: 0 28px 70px rgba(17, 17, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
summary {
  cursor: default;
}

a,
button,
summary {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

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

.topline {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 0.035em;
}

.topline-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.topline-inner a {
  margin-left: 12px;
  color: var(--white);
  font-weight: 700;
}

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(5, 186, 187, 0.14);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(20, 19, 47, 0.08);
  background: rgba(246, 246, 241, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 214px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transition: width 180ms ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.nav-dropdown > button span {
  color: var(--teal-dark);
  font-size: 15px;
  transition: transform 180ms ease;
}

.nav-dropdown:hover > button span,
.nav-dropdown:focus-within > button span {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  width: min(940px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 32px;
  padding: 30px;
  border: 1px solid rgba(20, 19, 47, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(17, 17, 38, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-menu::before {
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
  content: "";
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu-head {
  padding: 8px 27px 8px 4px;
  border-right: 1px solid var(--line);
}

.mega-menu-head span,
.mega-menu-group > span {
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-menu-head strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.mega-menu-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mega-menu-group {
  display: grid;
  align-content: start;
  gap: 7px;
}

.mega-menu-group > span {
  margin-bottom: 8px;
}

.desktop-nav .mega-menu-group a {
  display: grid;
  gap: 3px;
  padding: 10px 11px;
  border-left: 2px solid transparent;
}

.desktop-nav .mega-menu-group a::after {
  display: none;
}

.desktop-nav .mega-menu-group a:hover {
  border-color: var(--teal);
  background: var(--mint);
}

.mega-menu-group a strong {
  font-size: 12px;
}

.mega-menu-group a small {
  color: #777785;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.4;
}

.mobile-menu {
  position: relative;
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  color: var(--teal-dark);
  font-size: 18px;
  transition: transform 180ms ease;
}

.mobile-menu[open] summary span {
  transform: rotate(45deg);
}

.mobile-menu-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 19px);
  right: 0;
  width: min(560px, calc(100vw - 40px));
  max-height: calc(100vh - 118px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  padding: 28px;
  border: 1px solid rgba(20, 19, 47, 0.1);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 28px 70px rgba(17, 17, 38, 0.18);
}

.mobile-menu-group {
  display: grid;
  align-content: start;
  gap: 5px;
}

.mobile-menu-group > span {
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu-group a {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border-left: 2px solid transparent;
}

.mobile-menu-group a:hover,
.mobile-menu-group a:focus-visible {
  border-color: var(--teal);
  background: var(--mint);
}

.mobile-menu-group a strong {
  font-size: 12px;
}

.mobile-menu-group a small {
  color: #777785;
  font-size: 9px;
  line-height: 1.4;
}

.mobile-menu-primary {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mobile-menu-primary a {
  padding: 9px 12px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 20px;
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-primary {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 16px 30px rgba(5, 186, 187, 0.22);
}

.button-primary:hover {
  background: #09ceca;
  box-shadow: 0 20px 38px rgba(5, 186, 187, 0.3);
}

.hero {
  min-height: 730px;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 102px;
  background:
    linear-gradient(108deg, rgba(246, 246, 241, 0.96), rgba(246, 246, 241, 0.78)),
    radial-gradient(circle at 82% 18%, rgba(5, 186, 187, 0.16), transparent 34%);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(41, 33, 95, 0.18), transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  right: -130px;
  top: 70px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(5, 186, 187, 0.19);
}

.hero-orb-two {
  right: 75px;
  top: 260px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(41, 33, 95, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 80px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: rgba(17, 17, 38, 0.28);
}

.hero h1 {
  max-width: 730px;
  margin: 24px 0 26px;
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 650;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--violet);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 38, 0.3);
  font-size: 14px;
  font-weight: 800;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 31px;
  color: #5f5f70;
  font-size: 12px;
}

.micro-proof span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.micro-proof b {
  color: var(--teal-dark);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 446px;
  margin-left: auto;
  padding: 10px 0 20px 16px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  min-height: 536px;
  border-radius: 3px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 8, 24, 0.74) 100%);
}

.portrait-frame > img {
  width: 100%;
  height: 536px;
  object-fit: cover;
  object-position: center 22%;
}

.portrait-status {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 28, 0.62);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.portrait-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.portrait-caption {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}

.portrait-caption div {
  display: grid;
  gap: 5px;
}

.portrait-caption strong {
  font-size: 22px;
}

.portrait-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.portrait-caption .signature-mark {
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 5;
  padding: 15px 18px;
  border: 1px solid rgba(20, 19, 47, 0.08);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(17, 17, 38, 0.14);
}

.floating-card span {
  display: block;
  color: #757586;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.floating-card-top {
  top: 60px;
  right: -36px;
}

.floating-card-bottom {
  bottom: -9px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card-bottom strong {
  margin: 0;
  color: var(--violet);
  font-size: 34px;
  letter-spacing: -0.05em;
}

.floating-card-bottom span {
  line-height: 1.4;
}

.proof-strip {
  overflow: hidden;
  padding: 46px 0 42px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip p {
  margin: 0 0 30px;
  color: #80808d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.logo-marquee-track {
  width: max-content;
  display: flex;
  animation: logo-scroll 38s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.reference-logo-card {
  width: 225px;
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.reference-logo-card img {
  width: 100%;
  max-width: 175px;
  max-height: 64px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.72;
  filter: grayscale(1) contrast(1.1);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.reference-logo-card:hover img {
  transform: scale(1.04);
  opacity: 1;
  filter: grayscale(0) contrast(1);
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marketplace-band {
  padding: 54px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.marketplace-band-inner {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  align-items: center;
  gap: 55px;
}

.marketplace-band-title {
  display: grid;
  gap: 10px;
}

.marketplace-band-title span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketplace-band-title strong {
  max-width: 210px;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.marketplace-grid > div {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.marketplace-grid img {
  width: 100%;
  max-width: 125px;
  max-height: 46px;
  object-fit: contain;
  opacity: 0.92;
}

.marketplace-grid .marketplace-more {
  display: grid;
  align-content: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.marketplace-more strong {
  color: var(--teal);
  font-size: 18px;
}

.marketplace-more span {
  max-width: 110px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.agency-section {
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.agency-section::before {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(5, 186, 187, 0.14);
  border-radius: 50%;
  content: "";
}

.agency-intro {
  position: relative;
  z-index: 2;
}

.agency-intro h2 {
  color: var(--white);
}

.agency-intro > div:last-child > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.agency-model-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 2px solid var(--teal);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.capability-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-grid article {
  min-height: 280px;
  padding: 28px 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.capability-code {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(5, 186, 187, 0.42);
  background: rgba(5, 186, 187, 0.08);
  color: var(--teal);
  font-family: var(--font-geist-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.capability-grid h3 {
  margin: 48px 0 13px;
  color: var(--white);
  font-size: 17px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.capability-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.68;
}

.agency-operating-model {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.11);
}

.agency-operating-model > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  column-gap: 11px;
  min-height: 124px;
  padding: 25px 26px;
  background: #11112a;
}

.agency-operating-model span {
  grid-row: 1 / 3;
  color: var(--teal);
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.agency-operating-model strong {
  font-size: 14px;
}

.agency-operating-model p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.55;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-intro h2,
.founder-copy h2,
.faq-copy h2,
.contact-copy h2,
.numbers-heading h2 {
  margin: 17px 0 21px;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-intro > p,
.split-intro > p,
.faq-copy > p,
.contact-copy > p {
  color: #5d5d6d;
  font-size: 17px;
  line-height: 1.7;
}

.split-intro {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.split-intro h2 {
  margin-bottom: 0;
}

.split-intro > p {
  margin: 0 0 3px;
}

.problem-section {
  background: var(--paper);
}

.growth-visual-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
}

.growth-system {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(20, 19, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 19, 47, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.52);
  background-size: 32px 32px;
}

.growth-system-ring {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 105px auto 0;
  border: 1px solid rgba(5, 186, 187, 0.34);
  border-radius: 50%;
}

.growth-system-ring::before,
.growth-system-ring::after {
  position: absolute;
  border: 1px solid rgba(41, 33, 95, 0.12);
  border-radius: 50%;
  content: "";
}

.growth-system-ring::before {
  inset: 39px;
}

.growth-system-ring::after {
  inset: 87px;
  background: rgba(5, 186, 187, 0.045);
}

.growth-core {
  position: absolute;
  z-index: 3;
  top: 207px;
  left: 50%;
  width: 150px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateX(-50%);
  border: 1px solid rgba(5, 186, 187, 0.32);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 22px 45px rgba(24, 22, 65, 0.2);
}

.growth-core span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.growth-core strong {
  margin-top: 5px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.growth-node {
  position: absolute;
  z-index: 4;
  min-width: 130px;
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 35px rgba(17, 17, 38, 0.08);
}

.growth-node span {
  color: var(--teal-dark);
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.growth-node strong {
  font-size: 13px;
}

.growth-node-strategy {
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
}

.growth-node-content {
  top: 221px;
  right: 22px;
}

.growth-node-media {
  bottom: 39px;
  left: 50%;
  transform: translateX(-50%);
}

.growth-node-ops {
  top: 221px;
  left: 22px;
}

.growth-dashboard {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  padding: 39px 40px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 26px 65px rgba(24, 22, 65, 0.16);
}

.growth-dashboard::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(5, 186, 187, 0.22);
  border-radius: 50%;
  content: "";
}

.card-label {
  color: #858594;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.growth-dashboard .card-label {
  color: var(--teal);
}

.dashboard-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.dashboard-head h3 {
  max-width: 360px;
  margin: 12px 0 0;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.dashboard-status {
  align-self: start;
  padding: 7px 9px;
  border: 1px solid rgba(5, 186, 187, 0.28);
  color: var(--teal);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-kpis {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-kpis > div {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-kpis strong {
  color: var(--white);
  font-size: 24px;
  letter-spacing: -0.045em;
}

.dashboard-kpis span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.4;
}

.dashboard-bars {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.dashboard-bars > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 15px;
}

.dashboard-bars span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
}

.dashboard-bars i {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-bars b {
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--teal), #7ee7df);
}

.dashboard-result {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 2px solid var(--teal);
  background: rgba(255, 255, 255, 0.07);
}

.dashboard-result span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dashboard-result strong {
  font-size: 13px;
}

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

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

.service-card {
  position: relative;
  min-height: 345px;
  padding: 36px 32px 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: #fbfbf8;
  box-shadow: 0 20px 45px rgba(17, 17, 38, 0.08);
}

.service-number {
  color: var(--teal-dark);
  font-family: var(--font-geist-mono);
  font-size: 11px;
  font-weight: 700;
}

.service-link {
  position: absolute;
  top: 34px;
  right: 31px;
  color: #777785;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card:hover .service-link {
  color: var(--teal-dark);
}

.service-card h3 {
  margin: 55px 0 17px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0;
  color: #60606f;
  font-size: 14px;
  line-height: 1.72;
}

.tag-row {
  position: absolute;
  right: 31px;
  bottom: 29px;
  left: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 7px 9px;
  background: #f0f0eb;
  color: #666675;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.numbers-section {
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.numbers-section::before {
  position: absolute;
  top: -230px;
  right: -140px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(5, 186, 187, 0.14);
  border-radius: 50%;
  content: "";
}

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

.numbers-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 68px;
}

.numbers-heading h2 {
  max-width: 660px;
  margin-bottom: 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.number-item {
  min-height: 244px;
  padding: 35px 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.number-item strong {
  display: block;
  margin-bottom: 41px;
  color: var(--white);
  font-size: 48px;
  letter-spacing: -0.06em;
}

.number-item strong span {
  margin-left: 3px;
  color: var(--teal);
  font-size: 18px;
}

.number-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.cases-section {
  background: var(--paper);
}

.case-stack {
  display: grid;
  gap: 12px;
}

.case-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.4fr) minmax(230px, 0.6fr);
  align-items: center;
  gap: 30px;
  min-height: 230px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  transition: transform 200ms ease, background 200ms ease;
}

.case-card:hover {
  transform: translateX(5px);
  background: var(--white);
}

.case-index {
  align-self: start;
  color: var(--teal-dark);
  font-family: var(--font-geist-mono);
  font-size: 11px;
}

.case-main > span,
.case-focus > span {
  color: #7f7f8d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-main h3 {
  margin: 9px 0 14px;
  font-size: 31px;
  letter-spacing: -0.045em;
}

.case-main p {
  max-width: 650px;
  margin: 0;
  color: #5c5c6c;
  font-size: 14px;
  line-height: 1.7;
}

.case-focus {
  display: grid;
  gap: 12px;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.case-focus strong {
  font-size: 13px;
  line-height: 1.5;
}

.case-conversion-section {
  padding: 0 0 116px;
  background: var(--paper);
}

.case-conversion-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  align-items: center;
  gap: 70px;
  padding: 58px 62px;
  background:
    radial-gradient(circle at 92% 8%, rgba(5, 186, 187, 0.18), transparent 34%),
    var(--navy-deep);
  color: var(--white);
  box-shadow: 0 32px 75px rgba(17, 17, 38, 0.16);
}

.case-conversion-card h2 {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(31px, 3.6vw, 48px);
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.case-conversion-action {
  display: grid;
  justify-items: start;
  gap: 25px;
}

.case-conversion-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

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

.centered-intro {
  margin-inline: auto;
  text-align: center;
}

.centered-intro p {
  margin-inline: auto;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 25px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--teal), rgba(41, 33, 95, 0.18));
}

.process-grid li {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.process-grid li > span {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(5, 186, 187, 0.35);
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-dark);
  font-family: var(--font-geist-mono);
  font-size: 10px;
  font-weight: 700;
}

.process-grid strong {
  display: block;
  margin-top: 25px;
  font-size: 17px;
}

.process-grid p {
  margin: 11px 0 0;
  color: #666674;
  font-size: 13px;
  line-height: 1.62;
}

.founder-section {
  background: #ecece5;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 90px;
}

.founder-portrait {
  position: relative;
  min-height: 585px;
}

.founder-portrait::before {
  position: absolute;
  top: -16px;
  right: 18px;
  width: 42%;
  height: 78%;
  content: "";
  background: var(--teal);
}

.founder-portrait img {
  position: relative;
  width: calc(100% - 24px);
  height: 585px;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.84);
}

.founder-badge {
  position: absolute;
  right: -5px;
  bottom: 38px;
  display: grid;
  gap: 4px;
  min-width: 185px;
  padding: 21px 24px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(17, 17, 38, 0.2);
}

.founder-badge strong {
  font-size: 21px;
}

.founder-badge span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy h2 {
  max-width: 690px;
}

.founder-copy > p {
  max-width: 670px;
  color: #565665;
  font-size: 15px;
  line-height: 1.8;
}

.founder-copy .founder-lead {
  color: var(--ink);
  font-size: 19px;
  font-weight: 650;
}

.founder-copy blockquote {
  max-width: 680px;
  margin: 30px 0;
  padding: 19px 0 19px 24px;
  border-left: 2px solid var(--teal);
  color: var(--violet);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.founder-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-facts span {
  padding: 9px 11px;
  border: 1px solid rgba(20, 19, 47, 0.14);
  background: rgba(255, 255, 255, 0.36);
  color: #626270;
  font-size: 10px;
  font-weight: 800;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-copy a {
  display: inline-block;
  margin-top: 17px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--teal-dark);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

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

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

.faq-list summary {
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--teal-dark);
  font-family: var(--font-geist-mono);
  font-size: 10px;
}

.faq-list summary b {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  transition: transform 180ms ease;
}

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

.faq-list details > p {
  margin: -3px 0 28px 50px;
  padding-right: 40px;
  color: #616170;
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding-top: 0;
  background: var(--white);
}

.contact-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 35px 80px rgba(24, 22, 65, 0.18);
}

.contact-copy {
  position: relative;
  overflow: hidden;
  padding: 73px 72px;
}

.contact-copy::after {
  position: absolute;
  right: -180px;
  bottom: -290px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(5, 186, 187, 0.18);
  border-radius: 50%;
  content: "";
}

.contact-copy h2 {
  max-width: 650px;
  margin-bottom: 18px;
}

.contact-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.63);
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button-light {
  background: var(--teal);
  color: var(--navy-deep);
}

.contact-phone {
  display: grid;
  gap: 4px;
}

.contact-phone span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.contact-aside {
  align-content: center;
  display: grid;
  gap: 26px;
  padding: 55px 50px;
  background: #0f0f2b;
}

.contact-avatar {
  width: 78px;
  height: 78px;
  overflow: hidden;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.contact-aside strong {
  font-size: 16px;
}

.contact-aside p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 12px;
  line-height: 1.6;
}

.contact-aside ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.contact-aside li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.contact-aside li::first-letter {
  color: var(--teal);
}

footer {
  padding: 75px 0 28px;
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 80px;
  padding-bottom: 55px;
}

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

.legal-footer-brand {
  padding-bottom: 28px;
}

.legal-footer-brand img {
  width: 205px;
}

.footer-brand p {
  max-width: 320px;
  margin: 24px 0 0;
  color: #666674;
  font-size: 13px;
  line-height: 1.7;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col > span {
  margin-bottom: 6px;
  color: #8b8b96;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: #4f4f60;
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #888894;
  font-size: 10px;
}

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

.mobile-cta {
  display: none;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 104px;
  background:
    linear-gradient(112deg, rgba(246, 246, 241, 0.98), rgba(246, 246, 241, 0.86)),
    radial-gradient(circle at 88% 28%, rgba(5, 186, 187, 0.19), transparent 34%);
}

.service-hero::after {
  position: absolute;
  right: -150px;
  bottom: -270px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(41, 33, 95, 0.12);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 68px;
  color: #838390;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--teal-dark);
}

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 90px;
}

.service-hero h1 {
  max-width: 820px;
  margin: 24px 0 27px;
  font-size: clamp(52px, 5.6vw, 78px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1;
}

.service-hero-grid > div > p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.service-hero-aside {
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(20, 19, 47, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 55px rgba(17, 17, 38, 0.08);
  backdrop-filter: blur(14px);
}

.service-hero-aside > span {
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-orbit {
  position: relative;
  min-height: 270px;
  margin-top: 22px;
  border: 1px solid rgba(41, 33, 95, 0.12);
  border-radius: 50%;
}

.service-orbit::before,
.service-orbit::after {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(5, 186, 187, 0.25);
  border-radius: 50%;
  content: "";
}

.service-orbit::after {
  inset: 33%;
  background: rgba(5, 186, 187, 0.05);
}

.service-orbit-core {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.service-orbit-core small {
  color: #777785;
  font-size: 8px;
  text-transform: uppercase;
}

.service-orbit-core strong {
  color: var(--violet);
  font-size: 22px;
}

.service-orbit-node {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(5, 186, 187, 0.35);
  background: var(--white);
  color: var(--teal-dark);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-orbit-node-one { top: 4%; left: 50%; transform: translateX(-50%); }
.service-orbit-node-two { top: 48%; right: -5%; }
.service-orbit-node-three { bottom: 3%; left: 50%; transform: translateX(-50%); }
.service-orbit-node-four { top: 48%; left: -4%; }

.service-proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.service-proof-strip .container > div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 11px;
  padding: 23px 25px;
  border-right: 1px solid var(--line);
}

.service-proof-strip span {
  color: var(--teal-dark);
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.service-proof-strip strong {
  font-size: 13px;
  line-height: 1.4;
}

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

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 105px;
}

.service-intro-grid h2 {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.service-longcopy {
  align-self: end;
}

.service-longcopy p {
  margin: 0 0 22px;
  color: #565665;
  font-size: 16px;
  line-height: 1.84;
}

.service-longcopy p:last-child {
  margin-bottom: 0;
}

.ads-performance-section {
  background: var(--navy-deep);
  color: var(--white);
}

.ads-performance-section .section-intro h2 {
  color: var(--white);
}

.ads-performance-section .section-intro > p {
  color: rgba(255, 255, 255, 0.62);
}

.ads-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ads-state {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.ads-state-after {
  border-color: rgba(5, 186, 187, 0.38);
  background: linear-gradient(145deg, rgba(5, 186, 187, 0.13), rgba(255, 255, 255, 0.035));
}

.ads-state-head {
  display: grid;
  gap: 8px;
}

.ads-state-head span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ads-state-after .ads-state-head span {
  color: var(--teal);
}

.ads-state-head strong {
  font-size: 23px;
  letter-spacing: -0.035em;
}

.ads-state svg {
  width: 100%;
  margin: 25px 0 14px;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.chart-area {
  stroke: none;
}

.chart-area-before { fill: rgba(255, 115, 115, 0.08); }
.chart-area-after { fill: rgba(5, 186, 187, 0.13); }

.chart-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line-before { stroke: #ff8585; }
.chart-line-after { stroke: var(--teal); }

.ads-state ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.ads-state li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.5;
}

.ads-state li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "→";
}

.ads-state-before li::before {
  color: #ff8585;
  content: "×";
}

.chart-disclaimer {
  margin: 12px 0 42px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  text-align: right;
}

.ads-funnel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.ads-funnel > div {
  min-height: 155px;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.ads-funnel span {
  margin-bottom: auto;
  color: var(--teal);
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.ads-funnel strong {
  font-size: 15px;
}

.ads-funnel small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.service-deliverables {
  background: var(--paper);
}

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

.deliverables-grid article {
  position: relative;
  min-height: 225px;
  padding: 34px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.deliverables-grid article > span {
  color: var(--teal-dark);
  font-family: var(--font-geist-mono);
  font-size: 10px;
  font-weight: 750;
}

.deliverables-grid h3 {
  margin: 36px 0 12px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.deliverables-grid p {
  margin: 0;
  color: #626270;
  font-size: 13px;
  line-height: 1.72;
}

.service-process {
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.service-process::after {
  position: absolute;
  right: -140px;
  bottom: -230px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(5, 186, 187, 0.14);
  border-radius: 50%;
  content: "";
}

.service-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.service-process-grid li {
  min-height: 230px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-process-grid li > span {
  color: var(--teal);
  font-family: var(--font-geist-mono);
  font-size: 10px;
}

.service-process-grid h3 {
  margin: 57px 0 12px;
  font-size: 19px;
}

.service-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.service-faq {
  background: var(--white);
}

.related-section {
  padding: 0 0 116px;
  background: var(--white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.related-grid a {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 27px;
  border: 1px solid var(--line);
  background: #fbfbf7;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 17, 38, 0.07);
}

.related-grid a > span {
  color: #838390;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-grid a > strong {
  font-size: 17px;
}

.related-grid a > b {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--teal-dark);
}

.service-contact {
  padding-bottom: 116px;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-hero {
  padding: 64px 0 86px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 30%, rgba(5, 186, 187, 0.14), transparent 25%),
    var(--paper);
}

.legal-hero-inner {
  display: grid;
  justify-items: start;
}

.legal-back {
  margin-bottom: 58px;
  color: #777785;
  font-size: 11px;
  font-weight: 750;
}

.legal-back:hover {
  color: var(--teal-dark);
}

.legal-hero h1 {
  max-width: 850px;
  margin: 19px 0 22px;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: #5d5d6d;
  font-size: 17px;
  line-height: 1.72;
}

.legal-content {
  padding: 90px 0 116px;
  background: var(--white);
}

.legal-content-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  align-items: start;
  gap: 110px;
}

.legal-content aside {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 13px;
  padding-top: 7px;
}

.legal-content aside > span {
  margin-bottom: 8px;
  color: #8a8a96;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-content aside a {
  color: #555565;
  font-size: 12px;
  font-weight: 700;
}

.legal-content aside a:hover {
  color: var(--teal-dark);
}

.legal-content article {
  max-width: 760px;
}

.legal-content article section {
  padding: 0 0 36px;
  margin: 0 0 38px;
  border-bottom: 1px solid var(--line);
}

.legal-content article section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #565665;
  font-size: 15px;
  font-style: normal;
  line-height: 1.8;
}

.legal-content p {
  margin: 0;
}

.legal-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 21px;
}

.legal-content article a {
  color: var(--teal-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-status-card {
  display: grid;
  gap: 9px;
  margin-bottom: 48px;
  padding: 28px 30px;
  border-left: 3px solid var(--teal);
  background: var(--navy);
  color: var(--white);
}

.legal-status-card > span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-status-card strong {
  font-size: 20px;
}

.legal-status-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

@media (max-width: 1020px) {
  .container {
    width: min(100% - 40px, 900px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 68px);
  }

  .reference-logo-card {
    width: 205px;
    min-height: 110px;
    padding: 20px;
  }

  .marketplace-band-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .marketplace-band-title strong {
    max-width: none;
  }

  .legal-content-grid {
    gap: 65px;
  }

  .growth-visual-grid {
    grid-template-columns: 1fr;
  }

  .growth-system,
  .growth-dashboard {
    min-height: 520px;
  }

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

  .agency-operating-model {
    grid-template-columns: 1fr;
  }

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

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

  .case-card {
    grid-template-columns: 55px minmax(0, 1fr);
  }

  .case-focus {
    grid-column: 2;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-conversion-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 45px;
  }

  .founder-grid {
    gap: 55px;
  }

  .faq-grid {
    gap: 60px;
  }

  .contact-copy {
    padding: 60px 45px;
  }

  .contact-aside {
    padding: 45px 34px;
  }

  .service-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.55fr);
    gap: 45px;
  }

  .service-intro-grid {
    gap: 60px;
  }

  .service-proof-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ads-funnel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 70px;
  }

  .container {
    width: calc(100% - 34px);
  }

  .section {
    padding: 80px 0;
  }

  .topline {
    display: none;
  }

  .nav-wrap {
    height: 70px;
  }

  .brand {
    width: 166px;
  }

  .nav-wrap .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 78px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .breadcrumbs {
    margin-bottom: 44px;
  }

  .service-hero {
    padding: 38px 0 78px;
  }

  .service-hero-grid,
  .service-intro-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-grid {
    gap: 48px;
  }

  .service-hero h1 {
    font-size: clamp(43px, 12.2vw, 58px);
  }

  .service-hero-grid > div > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-hero-aside {
    padding: 28px 25px;
  }

  .service-proof-strip .container,
  .ads-comparison,
  .ads-funnel {
    grid-template-columns: 1fr;
  }

  .service-proof-strip .container > div {
    min-height: 90px;
  }

  .ads-state {
    padding: 25px 20px;
  }

  .ads-state-head strong {
    font-size: 20px;
  }

  .ads-funnel > div {
    min-height: 130px;
  }

  .service-intro-grid {
    gap: 28px;
  }

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

  .deliverables-grid article {
    min-height: 215px;
    padding: 31px 27px;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-process-grid li {
    min-height: 190px;
  }

  .service-process-grid h3 {
    margin-top: 40px;
  }

  .related-section {
    padding-bottom: 80px;
  }

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

  .service-contact {
    padding-bottom: 80px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(45px, 13.5vw, 62px);
    line-height: 1;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .text-link {
    align-self: center;
  }

  .micro-proof {
    gap: 12px 18px;
  }

  .hero-visual {
    max-width: 440px;
    margin-inline: auto;
    padding: 0;
  }

  .portrait-frame,
  .portrait-frame > img {
    height: 500px;
    min-height: 500px;
  }

  .proof-strip {
    padding: 39px 0;
  }

  .reference-logo-card {
    width: 180px;
    min-height: 96px;
    padding: 19px;
  }

  .reference-logo-card img {
    max-width: 130px;
    max-height: 44px;
  }

  .marketplace-band {
    padding: 45px 0;
  }

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

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

  .capability-grid article {
    min-height: 225px;
    padding: 27px;
  }

  .capability-grid h3 {
    margin-top: 37px;
  }

  .agency-operating-model > div {
    min-height: 112px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .section-intro h2,
  .founder-copy h2,
  .faq-copy h2,
  .contact-copy h2,
  .numbers-heading h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .split-intro,
  .growth-visual-grid,
  .founder-grid,
  .faq-grid,
  .contact-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .split-intro {
    gap: 24px;
  }

  .growth-system {
    min-height: 460px;
  }

  .growth-system-ring {
    width: 260px;
    height: 260px;
    margin-top: 99px;
  }

  .growth-core {
    top: 187px;
    width: 132px;
    height: 104px;
  }

  .growth-node {
    min-width: 108px;
    padding: 13px 14px;
  }

  .growth-node-strategy {
    top: 31px;
  }

  .growth-node-content {
    top: 190px;
    right: 9px;
  }

  .growth-node-media {
    bottom: 24px;
  }

  .growth-node-ops {
    top: 190px;
    left: 9px;
  }

  .growth-dashboard {
    min-height: auto;
    padding: 32px 24px;
  }

  .dashboard-head {
    display: grid;
  }

  .dashboard-status {
    justify-self: start;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-kpis > div {
    min-height: 88px;
  }

  .dashboard-bars > div {
    grid-template-columns: 116px 1fr;
    gap: 10px;
  }

  .legal-hero {
    padding: 43px 0 67px;
  }

  .legal-back {
    margin-bottom: 42px;
  }

  .legal-hero h1 {
    font-size: clamp(45px, 13vw, 61px);
  }

  .legal-content {
    padding: 70px 0 80px;
  }

  .legal-content-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .legal-content aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--paper);
  }

  .legal-content aside > span {
    grid-column: 1 / -1;
  }

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

  .service-card {
    min-height: 330px;
    padding-inline: 27px;
  }

  .numbers-heading {
    display: block;
  }

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

  .number-item {
    min-height: 195px;
  }

  .number-item strong {
    margin-bottom: 28px;
  }

  .case-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 31px 25px;
  }

  .case-index {
    grid-column: 1;
  }

  .case-focus {
    grid-column: 1;
  }

  .case-conversion-section {
    padding-bottom: 80px;
  }

  .case-conversion-card {
    gap: 28px;
    padding: 38px 27px 41px;
  }

  .case-conversion-action .button {
    width: 100%;
    padding-inline: 18px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-grid::before {
    top: 25px;
    bottom: 25px;
    left: 24px;
    width: 1px;
    height: auto;
  }

  .process-grid li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 22px;
    padding: 0 0 38px;
    text-align: left;
  }

  .process-grid strong {
    margin-top: 2px;
  }

  .founder-grid {
    gap: 58px;
  }

  .founder-portrait,
  .founder-portrait img {
    min-height: 495px;
    height: 495px;
  }

  .founder-portrait img {
    width: calc(100% - 14px);
  }

  .founder-badge {
    right: 0;
  }

  .faq-copy {
    position: static;
  }

  .faq-list summary {
    min-height: 92px;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    font-size: 14px;
  }

  .faq-list details > p {
    margin-left: 42px;
    padding-right: 0;
  }

  .contact-copy {
    padding: 50px 27px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-aside {
    padding: 42px 27px;
  }

  .footer-main {
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: var(--teal);
    color: var(--navy-deep);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 -12px 35px rgba(17, 17, 38, 0.14);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .logo-marquee-track {
    animation: none;
  }
}


/* WordPress integration */
body.admin-bar .site-header { top: 32px; }
.wp-site-blocks { padding: 0; }
.wp-generated-content { min-height: 55vh; padding: 100px 0; }
.wp-generated-content h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: -0.055em; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
