* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #f4f5f2;
  color: #121411;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

/* ================= HEADER ================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.nav {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font: 700 20px "Space Grotesk";
  letter-spacing: -0.8px;
  width: 170px;
  flex-shrink: 0;
}

.brand > span:last-child > span {
  font-weight: 500;
  opacity: 0.55;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 25px;
  height: 25px;
}

.brand-mark i {
  display: block;
  width: 6px;
  border-radius: 4px;
  background: #c7f36b;
}

.brand-mark i:nth-child(1) {
  height: 11px;
}

.brand-mark i:nth-child(2) {
  height: 18px;
}

.brand-mark i:nth-child(3) {
  height: 25px;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
  color: #d9ded7;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s;
}

.nav-links a:hover {
  color: #c7f36b;
}


/* ================= BUTTONS ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 14px 21px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s;
  cursor: pointer;
}

.btn span {
  font-size: 18px;
  line-height: 0;
}

.btn-nav {
  color: #121411;
  background: #c7f36b;
}

.btn-nav:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px #c7f36b2b;
}

.btn-primary {
  background: #c7f36b;
  color: #121411;
}

.btn-ghost {
  border-color: #ffffff35;
  color: #fff;
}

.btn-ghost:hover {
  border-color: #c7f36b;
  color: #c7f36b;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-dark:hover {
  background: #292b26;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: #ffffff45;
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #c7f36b;
  color: #c7f36b;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}


/* ================= HERO ================= */

.hero {
  min-height: 700px;
  background: #0d100d;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.35;
}

.orb-a {
  width: 600px;
  height: 600px;
  right: -180px;
  top: 90px;
  background: radial-gradient(
    circle,
    #c7f36b25,
    transparent 65%
  );
}

.orb-b {
  width: 400px;
  height: 400px;
  left: -250px;
  bottom: -100px;
  background: radial-gradient(
    circle,
    #c7f36b1c,
    transparent 65%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-top: 150px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  color: #899187;
}

.hero .eyebrow {
  color: #c7f36b;
}

.eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7f36b;
}

.hero h1,
.section h2,
.verticals h2,
.why h2,
.cta h2 {
  font: 600 clamp(48px, 6vw, 82px)/0.98 "Space Grotesk";
  letter-spacing: -4px;
  margin: 24px 0;
}

.hero h1 em,
.section h2 em,
.verticals h2 em,
.why h2 em,
.cta h2 em {
  font-style: normal;
  color: #c7f36b;
}

.hero-text {
  max-width: 590px;
  color: #aeb6aa;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  gap: 38px;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid #ffffff16;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font: 600 16px "Space Grotesk";
}

.hero-proof span {
  font-size: 11px;
  color: #737b71;
  margin-top: 2px;
}


/* ================= OLD HERO VISUAL ================= */

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard {
  width: 100%;
  max-width: 510px;
  background: #161a15;
  border: 1px solid #ffffff15;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 40px 90px #00000070;
  transform: perspective(900px) rotateY(-7deg) rotateX(3deg);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  color: #858d83;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.dash-top b {
  color: #c7f36b;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.metric-row small {
  display: block;
  color: #70786e;
  font-size: 9px;
  letter-spacing: 1px;
}

.metric-row strong {
  font: 600 34px "Space Grotesk";
  display: block;
  margin: 3px 0;
}

.up {
  color: #c7f36b;
  font-size: 11px;
}

.chart {
  border-top: 1px solid #ffffff10;
  padding-top: 17px;
}

.chart-label {
  display: flex;
  justify-content: space-between;
  color: #6d756b;
  font-size: 9px;
  margin-bottom: 8px;
}

.chart svg {
  width: 100%;
  height: 160px;
  color: #c7f36b;
}

.campaign-list {
  border-top: 1px solid #ffffff10;
  padding-top: 15px;
  display: grid;
  gap: 10px;
}

.campaign-list div {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 9px;
  align-items: center;
  font-size: 10px;
}

.campaign-list span:last-child {
  color: #c7f36b;
}

.dot {
  width: 5px;
  height: 5px;
  background: #c7f36b;
  border-radius: 50%;
}

.float-card {
  position: absolute;
  background: #fff;
  color: #121411;
  padding: 14px 16px;
  border-radius: 5px;
  box-shadow: 0 15px 40px #0006;
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-card span {
  background: #c7f36b;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}

.float-card b,
.float-card strong {
  display: block;
  font-size: 12px;
}

.float-card small {
  display: block;
  color: #777;
  font-size: 9px;
}

.fc-one {
  left: -5px;
  bottom: 72px;
}

.fc-two {
  right: -5px;
  top: 74px;
  display: block;
}

.fc-two strong {
  font: 700 20px "Space Grotesk";
  color: #121411;
}


/* ================= SCROLL CUE ================= */

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 2px;
  color: #697067;
}

.scroll-cue span {
  margin-left: 12px;
  color: #c7f36b;
}


/* ================= TICKER ================= */

.ticker {
  background: #c7f36b;
  overflow: hidden;
  padding: 17px 0;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  font: 700 13px "Space Grotesk";
  letter-spacing: 1.2px;
  animation: marquee 28s linear infinite;
}

.ticker-track b {
  font-size: 15px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* ================= SECTIONS ================= */

.section {
  padding: 130px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section h2 {
  color: #111;
  margin: 20px 0 0;
}

.section h2 em {
  color: #596d37;
}

.section-head > p {
  color: #6d736b;
  font-size: 15px;
  line-height: 1.8;
  max-width: 470px;
}


/* ================= SOLUTIONS ================= */

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.solution-card {
  grid-column: span 2;
  border: 1px solid #dfe2dc;
  background: #fafbf9;
  padding: 29px;
  min-height: 320px;
  position: relative;
  transition: 0.3s;
}

.solution-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: #b9d97a;
  box-shadow: 0 20px 45px #1b20120c;
}

.solution-card.featured {
  background: #111;
  color: #fff;
  border-color: #111;
}

.card-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 10px;
  color: #92988e;
}

.featured .card-num {
  color: #6d7766;
}

.icon {
  font: 400 34px "Space Grotesk";
  color: #7d9850;
  margin-bottom: 60px;
}

.solution-card h3 {
  font: 600 25px/1.02 "Space Grotesk";
  letter-spacing: -1px;
}

.solution-card p {
  font-size: 12px;
  color: #757c73;
  line-height: 1.65;
  margin-top: 16px;
}

.featured p {
  color: #a4aca0;
}

.solution-card a {
  position: absolute;
  bottom: 26px;
  color: inherit;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.solution-card a span {
  margin-left: 10px;
  color: #8aa95b;
}


/* ================= SPLIT SECTION ================= */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  min-height: 760px;
  padding: 100px clamp(30px, 7vw, 105px);
  position: relative;
  overflow: hidden;
}

.split-panel.dark {
  background: #10130f;
  color: #fff;
}

.split-panel.light {
  background: #c7f36b;
  color: #121411;
}

.panel-number {
  position: absolute;
  top: 32px;
  left: clamp(30px, 7vw, 105px);
  font: 600 12px "Space Grotesk";
  opacity: 0.35;
}

.panel-content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.panel-content .eyebrow {
  margin-bottom: 4px;
}

.dark .eyebrow {
  color: #c7f36b;
}

.light .eyebrow {
  color: #4e5d3a;
}

.split-panel h2 {
  font: 600 clamp(48px, 5vw, 72px)/0.95 "Space Grotesk";
  letter-spacing: -3px;
  margin: 24px 0;
}

.dark h2 em {
  color: #c7f36b;
  font-style: normal;
}

.light h2 em {
  color: #596d37;
  font-style: normal;
}

.panel-content > p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 430px;
  color: #9fa79b;
  margin-bottom: 30px;
}

.light .panel-content > p {
  color: #526044;
}

.checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 38px;
}

.checks li {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checks li:before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c7f36b;
  color: #111;
  font-weight: 800;
}

.light .checks li:before {
  background: #111;
  color: #c7f36b;
}

.panel-decoration {
  position: absolute;
  right: -30px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: #ffffff08;
  font: 700 90px/0.8 "Space Grotesk";
  transform: rotate(-8deg);
}

.publisher-visual {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid #12141130;
  display: grid;
  place-items: center;
}

.publisher-visual:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #d7fb91;
  border: 1px solid #12141130;
}

.publisher-visual span {
  position: relative;
  text-align: center;
  font: 700 17px/1.25 "Space Grotesk";
  letter-spacing: 3px;
}

.ring {
  position: absolute;
  border: 1px solid #12141120;
  border-radius: 50%;
}

.r1 {
  width: 440px;
  height: 440px;
}

.r2 {
  width: 350px;
  height: 350px;
}

.r3 {
  width: 260px;
  height: 260px;
}


/* ================= MODELS ================= */

.models {
  background: #e9ece6;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cdd1c9;
  border-bottom: 1px solid #cdd1c9;
}

.model {
  padding: 35px 28px 45px;
  border-right: 1px solid #cdd1c9;
  min-height: 280px;
  position: relative;
}

.model:last-child {
  border-right: 0;
}

.model > span {
  font-size: 10px;
  color: #8a9287;
}

.model h3 {
  font: 700 45px "Space Grotesk";
  margin: 38px 0 0;
}

.model h4 {
  font: 600 13px "Space Grotesk";
  margin-top: 2px;
}

.model p {
  font-size: 12px;
  color: #727970;
  line-height: 1.7;
  margin-top: 16px;
}


/* ================= VERTICALS ================= */

.verticals {
  background: #11140f;
  color: #fff;
  padding: 130px 0;
}

.vertical-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 65px;
}

.verticals h2 {
  margin: 20px 0 0;
}

.verticals h2 em {
  color: #c7f36b;
}

.vertical-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ffffff1a;
}

.vertical-list div {
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid #ffffff1a;
  transition: 0.25s;
}

.vertical-list div:nth-child(odd) {
  border-right: 1px solid #ffffff1a;
}

.vertical-list div:hover {
  background: #c7f36b;
  color: #111;
}

.vertical-list span {
  font-size: 10px;
  color: #697067;
}

.vertical-list strong {
  font: 600 20px "Space Grotesk";
}

.vertical-list i {
  font-style: normal;
  text-align: right;
  color: #c7f36b;
}

.vertical-list div:hover i {
  color: #111;
}


/* ================= WHY ================= */

.why {
  background: #f4f5f2;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.why-title h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.why-items {
  border-top: 1px solid #d6dad2;
}

.why-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 26px 0;
  border-bottom: 1px solid #d6dad2;
}

.why-item > span {
  font-size: 10px;
  color: #9ba198;
}

.why-item h3 {
  font: 600 19px "Space Grotesk";
}

.why-item p {
  font-size: 12px;
  color: #747b72;
  margin-top: 5px;
  max-width: 530px;
}


/* ================= CTA ================= */

.cta {
  background: #0d100d;
  color: #fff;
  padding: 145px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: clamp(55px, 7vw, 90px);
  margin: 22px 0;
}

.cta p {
  max-width: 600px;
  margin: 0 auto;
  color: #9ba39a;
  font-size: 14px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}


/* ================= FOOTER ================= */

footer {
  background: #0d100d;
  color: #fff;
  border-top: 1px solid #ffffff10;
}

.footer-main {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-main p {
  color: #6f786e;
  font-size: 12px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 75px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links b,
.footer-contact span {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #657064;
  margin-bottom: 5px;
}

.footer-links a {
  font-size: 11px;
  color: #a7afa4;
  text-decoration: none;
}

.footer-links a:hover {
  color: #c7f36b;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: block;
  margin-top: 7px;
  color: #c7f36b;
  text-decoration: none;
  font: 600 18px "Space Grotesk";
}

.footer-bottom {
  border-top: 1px solid #ffffff10;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  color: #5f675e;
  font-size: 9px;
}


/* ================= REVEAL ================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* =========================================================
   SAVIX ADS HERO LOGO
   DESKTOP: 520px × 360px
========================================================= */

.hero-logo {
  position: relative;

  min-height: 600px;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-logo .savix-hero-logo {
  display: block;

  width: 520px !important;
  max-width: 100% !important;

  height: 360px !important;
  max-height: 360px !important;

  object-fit: contain !important;

  margin: 0 auto !important;
  padding: 0 !important;

  filter:
    drop-shadow(0 0 18px #c7f36b18);
}


/* ================= TABLET ================= */

@media (max-width: 900px) {

  .nav-links,
  .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
  }

  .nav.open {
    background: #0d100d;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 80px;
    left: 24px;
    right: 24px;
    flex-direction: column;
    padding: 25px;
    background: #171b15;
    border: 1px solid #ffffff12;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 100px;
  }

  .hero-logo {
    min-height: 450px !important;
  }

  .hero-logo .savix-hero-logo {
    width: 420px !important;
    max-width: 90% !important;

    height: 300px !important;
    max-height: 300px !important;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-panel {
    min-height: 700px;
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-card,
  .solution-card:nth-child(4) {
    grid-column: span 1;
  }

  .section-head,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .model-grid {
    grid-template-columns: 1fr 1fr;
  }

  .model:nth-child(2) {
    border-right: 0;
  }

  .model:nth-child(-n + 2) {
    border-bottom: 1px solid #cdd1c9;
  }

  .vertical-top {
    display: block;
  }

  .vertical-list {
    grid-template-columns: 1fr;
  }

  .vertical-list div:nth-child(odd) {
    border-right: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    gap: 18px;
  }

  .dashboard {
    transform: none;
    padding: 18px;
  }

  .float-card {
    display: none;
  }

  .hero-logo {
    min-height: 320px !important;
  }

  .hero-logo .savix-hero-logo {
    width: 340px !important;
    max-width: 95% !important;

    height: 240px !important;
    max-height: 240px !important;
  }

  .section {
    padding: 85px 0;
  }

  .section h2,
  .verticals h2,
  .why h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .solution-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .solution-card:nth-child(4) {
    grid-column: auto;
  }

  .model {
    border-right: 0;
    border-bottom: 1px solid #cdd1c9;
  }

  .model:last-child {
    border-bottom: 0;
  }

  .split-panel {
    padding: 85px 24px;
    min-height: 680px;
  }

  .checks {
    grid-template-columns: 1fr;
  }

  .publisher-visual {
    right: -180px;
  }

  .verticals {
    padding: 90px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 55px;
  }

  .footer-bottom {
    padding-bottom: 28px;
  }

  .fc-one {
    display: none;
  }
}
/* =========================================================
   SUPPORTED MMPs
========================================================= */

.mmp-section {

  position: relative;

  padding:
    150px 0
    160px;

  background: #0d100d;

  overflow: hidden;

}


/* Background glow */

.mmp-section::before {

  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  top: 50%;

  left: 50%;

  transform:
    translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      #c7f36b0d 0%,
      transparent 68%
    );

  pointer-events: none;

}


/* Container */

.mmp-container {

  width:
    min(1200px, 90%);

  margin: auto;

  position: relative;

  z-index: 2;

}


/* =========================================================
   HEADING
========================================================= */

.mmp-heading {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 100px;

}


.mmp-eyebrow {

  grid-column:
    1 / -1;

  display: flex;

  align-items: center;

  gap: 9px;

  color: #c7f36b;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

}


.mmp-eyebrow span {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #c7f36b;

}


.mmp-heading h2 {

  margin: 0;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size:
    clamp(55px, 7vw, 90px);

  line-height: .94;

  letter-spacing: -4px;

  color: #ffffff;

}


.mmp-heading h2 em {

  display: block;

  color: #c7f36b;

  font-style: normal;

}


.mmp-heading p {

  max-width: 500px;

  margin: 0;

  color: #8f988c;

  font-size: 15px;

  line-height: 1.8;

}


/* =========================================================
   NETWORK
========================================================= */

.mmp-network {

  position: relative;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 25px;

  align-items: start;

}


/* =========================================================
   DOTTED LINE
========================================================= */

.mmp-line {

  position: absolute;

  top: 125px;

  left: 3%;

  width: 94%;

  height: 100px;

  border-top:
    2px dashed #ffffff35;

  border-radius: 50%;

  transform:
    rotate(2deg);

  z-index: 0;

}


.mmp-line::after {

  content: "→";

  position: absolute;

  right: -8px;

  top: -25px;

  color: #c7f36b;

  font-size: 28px;

}


/* =========================================================
   MMP ITEM
========================================================= */

.mmp-item {

  position: relative;

  z-index: 2;

  text-align: center;

}


/* =========================================================
   CIRCLE
========================================================= */

.mmp-circle {

  width: 180px;

  height: 180px;

  margin:
    0 auto 30px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #ffffff;

  border:
    2px solid #c7f36b;

  box-shadow:
    0 0 35px #c7f36b15;

  transition:
    transform .3s ease,
    box-shadow .3s ease;

}


.mmp-item:hover .mmp-circle {

  transform:
    translateY(-8px);

  box-shadow:
    0 0 50px #c7f36b35;

}


/* =========================================================
   LOGOS
========================================================= */

.mmp-logo {

  display: flex;

  align-items: center;

  justify-content: center;

  font-family:
    "DM Sans",
    sans-serif;

  font-size: 25px;

  letter-spacing: -1px;

  white-space: nowrap;

}


.mmp-logo strong {

  font-weight: 700;

}


/* AppsFlyer */

.appsflyer-logo {

  color: #79bd27;

}


.appsflyer-logo span {

  color: #00a8e8;

}


/* Adjust */

.adjust-logo {

  gap: 8px;

  color: #26b8c8;

}


.adjust-icon {

  width: 36px;

  height: 36px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    3px solid #26b8c8;

  border-radius: 50%;

  font-size: 18px;

  font-weight: 700;

}


/* Branch */

.branch-logo {

  gap: 8px;

  color: #283642;

  font-size: 28px;

}


.branch-symbol {

  color: #2685b7;

  font-size: 30px;

}


/* Singular */

.singular-logo {

  gap: 8px;

  color: #398fe0;

  font-size: 26px;

}


.singular-symbol {

  font-size: 32px;

  color: #398fe0;

}


/* AppMetrica */

.appmetrica-logo {

  color: #ffffff;

  background: #222;

  padding:
    8px 12px;

  border-radius: 5px;

  font-size: 20px;

}


.appmetrica-logo span {

  color: #c7f36b;

}
/* ================= REAL MMP LOGOS ================= */

.mmp-circle .partner-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* =========================================================
   NUMBER
========================================================= */

.mmp-number {

  margin-bottom: 7px;

  color: #667064;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

}


/* =========================================================
   TITLE
========================================================= */

.mmp-item h3 {

  margin: 0 0 8px;

  color: #ffffff;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 17px;

  font-weight: 600;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.mmp-item p {

  max-width: 180px;

  margin: auto;

  color: #747d72;

  font-size: 11px;

  line-height: 1.6;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

  .mmp-heading {

    grid-template-columns: 1fr;

    gap: 25px;

  }


  .mmp-network {

    grid-template-columns:
      repeat(2, 1fr);

    gap:
      60px 25px;

  }


  .mmp-line {

    display: none;

  }

}


@media (max-width: 600px) {

  .mmp-section {

    padding:
      100px 0;

  }


  .mmp-heading {

    margin-bottom: 60px;

  }


  .mmp-heading h2 {

    font-size: 55px;

    letter-spacing: -3px;

  }


  .mmp-network {

    grid-template-columns: 1fr;

    gap: 55px;

  }


  .mmp-circle {

    width: 170px;

    height: 170px;

  }

}
/* Small Savix logo in header */
.brand-logo {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================================
   FINAL CORRECTIONS
   ========================================================= */

/* Header: use the Savix image as the small brand logo */
.site-header .nav {
    position: relative;
    min-height: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-header .brand {
    width: 150px;
    height: 50px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 0 0 150px;
    overflow: hidden;
}

.site-header .brand-logo {
    display: block;
    width: 145px;
    max-width: 145px;
    height: 45px;
    object-fit: contain;
    object-position: left center;
    margin: 0;
    padding: 0;
}

.site-header .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1 1 auto;
    margin: 0;
}

.site-header .btn-nav {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Prevent the old text logo rules from affecting the image-based header */
.site-header .brand > span {
    display: none;
}


/* Hero: keep the large Savix image inside its column */
.hero-logo {
  position: relative;
    width: 100%;
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    left: 0px;
    top: -110px;

    overflow: hidden;;
}

.hero-logo .savix-hero-logo {
    display: block;
    width: 520px;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    margin: 0 auto;
    padding: 0;
}


/* MMP: keep all real logos centered inside the white circles */
.mmp-network {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 25px;
    align-items: start;
    width: 100%;
}

.mmp-item {
    position: relative;
    z-index: 2;
    min-width: 0;
    text-align: center;
}

.mmp-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #c7f36b;
    box-shadow: 0 0 35px #c7f36b15;
    overflow: hidden;
}

.mmp-circle .partner-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    padding: 0;
}


/* Tablet */
@media (max-width: 1000px) {
    .mmp-network {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 60px 25px;
    }
}


/* Mobile header + MMP */
@media (max-width: 900px) {

    .site-header .brand {
        width: 120px;
        flex-basis: 120px;
        height: 45px;
    }

    .site-header .brand-logo {
        width: 115px;
        max-width: 115px;
        height: 42px;
    }

    .site-header .nav {
        gap: 12px;
    }

    .site-header .brand {
        margin-right: auto;
    }

    .mmp-circle {
        width: 180px;
        height: 180px;
    }
}


/* Small phones */
@media (max-width: 600px) {

    .site-header .brand {
        width: 105px;
        flex-basis: 105px;
        height: 42px;
    }

    .site-header .brand-logo {
        width: 100px;
        max-width: 100px;
        height: 38px;
    }

    .mmp-network {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .mmp-circle {
        width: 170px;
        height: 170px;
    }
}
.footer-brand {
    width: 150px;
    height: 55px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.footer-brand-logo {
    width: 145px;
    height: auto;
    display: block;
    object-fit: contain;
}
/* Make the remaining solution cards black */
.solution-card:nth-child(4),
.solution-card:nth-child(5) {
    background: #111;
    color: #fff;
    border-color: #111;
}

.solution-card:nth-child(4) p,
.solution-card:nth-child(5) p {
    color: #a4aca0;
}

.solution-card:nth-child(4) a,
.solution-card:nth-child(5) a {
    color: #fff;
}

.solution-card:nth-child(4) a span,
.solution-card:nth-child(5) a span {
    color: #c7f36b;
}
/* Make ALL solution cards black */
.solution-card,
.solution-card.featured {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
}

/* Card text */
.solution-card p {
    color: #a4aca0 !important;
}

/* Links */
.solution-card a {
    color: #fff !important;
}

.solution-card a span {
    color: #c7f36b !important;
}
/* ================= SOLUTION CARD POP EFFECT ================= */

.solution-card {
    position: relative;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    will-change: transform;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(199, 243, 107, 0.10);
    border-color: rgba(199, 243, 107, 0.35);
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    background: rgba(199, 243, 107, 0.08);
    filter: blur(30px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.35s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card h3 {
    transition: transform 0.35s ease;
}

.solution-card:hover h3 {
    transform: translateX(4px);
}

/* =========================================================
   CORE SERVICES
   ========================================================= */

.services-section {
    position: relative;
    padding: 140px 0 150px;
    background: #0d100d;
    color: #ffffff;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        #c7f36b0d 0%,
        transparent 68%
    );
    pointer-events: none;
}

.services-container {
    width: min(1200px, 90%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.services-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
}

.services-heading-left {
    display: flex;
    flex-direction: column;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c7f36b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.services-eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c7f36b;
}

.services-heading h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(55px, 7vw, 90px);
    line-height: .94;
    letter-spacing: -4px;
    color: #ffffff;
}

.services-heading h2 em {
    color: #c7f36b;
    font-style: normal;
}

.services-heading > p {
    max-width: 500px;
    margin: 0;
    color: #8f988c;
    font-size: 15px;
    line-height: 1.8;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #ffffff18;
    border-left: 1px solid #ffffff18;
}

/* Cards */
.service-card {
    position: relative;
    min-height: 390px;
    padding: 34px 34px 38px;
    border-right: 1px solid #ffffff18;
    border-bottom: 1px solid #ffffff18;
    background: #0d100d;
    overflow: hidden;
    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: #151914;
    border-color: #c7f36b28;
    box-shadow:
        0 25px 50px #00000045,
        0 0 40px #c7f36b08;
}

/* Number */
.service-number {
    position: absolute;
    top: 32px;
    right: 32px;
    color: #697267;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Tag */
.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    margin-bottom: 22px;
    background: #c7f36b12;
    border: 1px solid #c7f36b20;
    border-radius: 3px;
    color: #c7f36b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

/* Icons */
.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 55px;
    border: 1px solid #c7f36b30;
    border-radius: 10px;
    background: #c7f36b09;
    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #c7f36b;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.08);
    background: #c7f36b16;
    box-shadow: 0 0 25px #c7f36b12;
}

/* Titles */
.service-card h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    line-height: 1.03;
    letter-spacing: -1px;
    transition: transform .35s ease;
}

.service-card:hover h3 {
    transform: translateX(4px);
}

/* Description */
.service-card p {
    max-width: 310px;
    margin: 18px 0 0;
    color: #858e82;
    font-size: 12px;
    line-height: 1.75;
}

/* Links */
.service-link {
    position: absolute;
    left: 34px;
    bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition:
        color .3s ease,
        gap .3s ease;
}

.service-link span {
    color: #c7f36b;
    font-size: 16px;
    line-height: 1;
}

.service-link:hover {
    color: #c7f36b;
    gap: 16px;
}

.featured-service {
    background: #11150f;
}

.featured-service:hover {
    background: #171c14;
}

/* CTA */
.services-cta {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.services-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 24px;
    background: #c7f36b;
    color: #111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #c7f36b;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.services-button span {
    font-size: 17px;
}

.services-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px #c7f36b25;
}

/* Tablet */
@media (max-width: 900px) {
    .services-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-section {
        padding: 100px 0;
    }

    .services-heading h2 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 350px;
    }
}
/* ================= FOOTER LOGO - FIX ================= */

.footer-brand {
    width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    margin-bottom: 18px;
}

.footer-brand-logo {
    width: 150px;
    height: 100px;
    display: block;
    object-fit: contain;
    object-position: center;
} 
.site-header .brand-logo {
    display: block;
    width: 190px;
    max-width: 190px;
    height: 60px;
    object-fit: contain;
    object-position: left center;
    margin: 0;
    padding: 0;
}
.site-header .brand {
    width: 190px;
    height: 65px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 0 0 190px;
    overflow: visible;
}
.site-header .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex: 1 1 auto;
    margin-left: 15px;
}
/* =========================================================
   FINAL OVERRIDES
   ========================================================= */

/* Hero logo: position it upward and slightly right */
.hero-logo {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 30px;
    top: -80px;
    overflow: hidden;
}

.hero-logo .savix-hero-logo {
    display: block;
    width: 520px;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    margin: 0;
    padding: 0;
    filter: drop-shadow(0 0 18px #c7f36b18);
    transition:
        transform .35s ease,
        filter .35s ease;
}

.hero-logo:hover .savix-hero-logo {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 0 28px #c7f36b30);
}

/* Header navigation: keep it slightly left of center */
.site-header .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex: 1 1 auto;
    margin-left: 15px;
}

/* Larger Savix brand logo in header */
.site-header .brand {
    width: 190px;
    height: 65px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 0 0 190px;
    overflow: visible;
}

.site-header .brand-logo {
    display: block;
    width: 190px;
    max-width: 190px;
    height: 60px;
    object-fit: contain;
    object-position: left center;
    margin: 0;
    padding: 0;
}

/* Footer logo: show the complete logo without clipping */
.footer-brand {
    width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    margin-bottom: 18px;
}

.footer-brand-logo {
    width: 150px;
    height: 100px;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* Remove the browser focus rectangle from footer links */
.footer-links a:focus,
.footer-links a:focus-visible {
    outline: none;
    box-shadow: none;
}

/* Tablet */
@media (max-width: 900px) {
    .hero-logo {
        min-height: 450px;
        left: 0;
        top: 0;
        justify-content: center;
    }

    .hero-logo .savix-hero-logo {
        width: 420px;
        max-width: 90%;
    }

    .site-header .brand {
        width: 120px;
        flex-basis: 120px;
        height: 45px;
    }

    .site-header .brand-logo {
        width: 115px;
        max-width: 115px;
        height: 42px;
    }

    .site-header .nav {
        gap: 12px;
    }

    .site-header .brand {
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-logo {
        min-height: 320px;
        left: 0;
        top: 0;
        justify-content: center;
    }

    .hero-logo .savix-hero-logo {
        width: 340px;
        max-width: 95%;
    }

    .site-header .brand {
        width: 105px;
        flex-basis: 105px;
        height: 42px;
    }

    .site-header .brand-logo {
        width: 100px;
        max-width: 100px;
        height: 38px;
    }
}


/* =========================================================
   FOOTER - FINAL CLEAN LAYOUT
   ========================================================= */

.footer-main {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.footer-links {
    display: none;
}

.footer-brand {
    overflow: visible;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SAVIX ADS - ADVERTISER / PUBLISHER LANDING PAGES
   ========================================================= */

.audience-page {
    background: #0d100d;
    color: #fff;
}

.audience-page .site-header {
    position: absolute;
}

.audience-page .nav-links a[data-current] {
    color: #c7f36b;
}

.audience-hero {
    position: relative;
    min-height: 860px;
    background: #0d100d;
    overflow: hidden;
}

.audience-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#ffffff08 1px, transparent 1px),
        linear-gradient(90deg, #ffffff08 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.audience-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    min-height: 860px;
    padding-top: 115px;
    padding-bottom: 70px;
}

.audience-copy {
    max-width: 650px;
}

.audience-copy h1 {
    font: 600 clamp(60px, 7vw, 96px)/.94 "Space Grotesk";
    letter-spacing: -4px;
    margin: 24px 0;
}

.audience-copy h1 em {
    font-style: normal;
    color: #c7f36b;
}

.audience-copy > p {
    color: #aeb6aa;
    font-size: 16px;
    line-height: 1.8;
    max-width: 620px;
}

.audience-proof {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid #ffffff16;
}

.audience-proof div {
    display: flex;
    flex-direction: column;
}

.audience-proof strong {
    font: 600 16px "Space Grotesk";
}

.audience-proof span {
    color: #737b71;
    font-size: 11px;
    margin-top: 2px;
}

.audience-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.visual-panel {
    width: min(520px, 100%);
    min-height: 430px;
    padding: 34px;
    border: 1px solid #ffffff18;
    background:
        radial-gradient(circle at 60% 45%, #c7f36b0d, transparent 35%),
        #121611;
    border-radius: 10px;
    box-shadow: 0 40px 100px #00000050;
    transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
}

.visual-top {
    display: flex;
    justify-content: space-between;
    color: #7f897d;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.visual-top b {
    color: #c7f36b;
}

.visual-metric {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 70px 0 28px;
}

.visual-metric strong {
    font: 600 60px "Space Grotesk";
    color: #fff;
}

.visual-metric span {
    color: #c7f36b;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.visual-bars {
    height: 170px;
    display: flex;
    gap: 15px;
    align-items: end;
    border-bottom: 1px solid #ffffff15;
}

.visual-bars i {
    display: block;
    flex: 1;
    background: linear-gradient(to top, #c7f36b22, #c7f36b);
    border-radius: 4px 4px 0 0;
}

.visual-line {
    width: 100%;
    height: 1px;
    background: #c7f36b;
    margin-top: -95px;
    transform: rotate(-7deg);
    transform-origin: left center;
    box-shadow: 0 0 20px #c7f36b50;
}

.visual-panel p {
    margin-top: 95px;
    color: #687268;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.audience-section {
    position: relative;
    padding: 130px 0 150px;
}

.light-section {
    background: #f4f5f2;
    color: #121411;
}

.dark-section {
    background: #0d100d;
    color: #fff;
}

.audience-section-head {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
}

.audience-section-head h2 {
    margin: 18px 0 0;
    font: 600 clamp(50px, 6vw, 82px)/.96 "Space Grotesk";
    letter-spacing: -3.5px;
}

.audience-section-head h2 em {
    font-style: normal;
    color: #657c3d;
}

.audience-section-head > p {
    max-width: 520px;
    margin: 0;
    color: #6d756d;
    font-size: 15px;
    line-height: 1.8;
}

.dark-section .audience-section-head > p {
    color: #899187;
}

.dark-eyebrow {
    color: #667064 !important;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d7dbd4;
    border-left: 1px solid #d7dbd4;
}

.feature-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    border-right: 1px solid #d7dbd4;
    border-bottom: 1px solid #d7dbd4;
    background: #fafbf9;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 20px 45px #0000000f;
}

.feature-card > span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #9ba198;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid #c7f36b70;
    color: #6d883f;
    font: 600 23px "Space Grotesk";
    margin-bottom: 48px;
}

.feature-card h3 {
    font: 600 23px/1.05 "Space Grotesk";
    margin-bottom: 14px;
    letter-spacing: -.8px;
}

.feature-card p {
    color: #777f76;
    font-size: 12px;
    line-height: 1.75;
    max-width: 340px;
}

.dark-section .feature-grid {
    border-color: #ffffff16;
}

.dark-section .feature-card {
    background: #11140f;
    color: #fff;
    border-color: #ffffff16;
}

.dark-section .feature-card:hover {
    background: #151914;
}

.dark-section .feature-card p {
    color: #9ba39a;
}

.targeting-section {
    overflow: hidden;
}

.targeting-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -220px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, #c7f36b0d, transparent 70%);
    pointer-events: none;
}

.target-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ffffff16;
    border-left: 1px solid #ffffff16;
}

.target-card {
    min-height: 190px;
    padding: 28px;
    border-right: 1px solid #ffffff16;
    border-bottom: 1px solid #ffffff16;
    transition: background .3s ease, transform .3s ease;
}

.target-card:hover {
    background: #151914;
    transform: translateY(-4px);
}

.target-card b {
    color: #697267;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.target-card h3 {
    margin: 34px 0 10px;
    font: 600 21px "Space Grotesk";
}

.target-card p {
    margin: 0;
    color: #8f988c;
    font-size: 12px;
    line-height: 1.6;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.offer-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border: 1px solid #d8ddd5;
    background: #fafbf9;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: #c7f36b;
    box-shadow: 0 20px 45px #0000000c;
}

.offer-card > span {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #92988e;
    font-size: 10px;
}

.offer-card h3 {
    margin-top: 55px;
    font: 600 23px/1.05 "Space Grotesk";
}

.offer-card p {
    margin: 16px 0 20px;
    color: #747c73;
    font-size: 12px;
    line-height: 1.7;
}

.offer-card small {
    color: #607339;
    font-size: 10px;
    letter-spacing: .6px;
}

.audience-cta {
    margin-top: 60px;
    text-align: center;
}

.audience-cta h3 {
    font: 600 34px "Space Grotesk";
    margin-bottom: 12px;
}

.audience-cta p {
    color: #8b9489;
    margin-bottom: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #ffffff16;
    border-left: 1px solid #ffffff16;
}

.pricing-card {
    min-height: 310px;
    padding: 27px;
    border-right: 1px solid #ffffff16;
    border-bottom: 1px solid #ffffff16;
    background: #10130f;
    transition: transform .3s ease, background .3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    background: #151914;
}

.pricing-card > span {
    display: block;
    color: #657064;
    font-size: 10px;
    margin-bottom: 42px;
}

.pricing-card b {
    color: #c7f36b;
    font: 700 30px "Space Grotesk";
}

.pricing-card h3 {
    margin: 6px 0 8px;
    font: 600 18px "Space Grotesk";
}

.pricing-card small {
    color: #737d72;
    font-size: 10px;
}

.pricing-card p {
    color: #959f94;
    font-size: 11px;
    line-height: 1.7;
    margin-top: 20px;
}

.vertical-chip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.vertical-chip {
    padding: 20px 22px;
    border: 1px solid #d8ddd5;
    background: #fafbf9;
    font: 600 14px "Space Grotesk";
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.vertical-chip:hover {
    transform: translateY(-5px);
    border-color: #b9d97a;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ffffff16;
    border-left: 1px solid #ffffff16;
}

.step-card {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid #ffffff16;
    border-bottom: 1px solid #ffffff16;
}

.step-card > span {
    color: #697267;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.step-card h3 {
    margin-top: 48px;
    font: 600 22px "Space Grotesk";
}

.step-card p {
    color: #929c91;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 14px;
}

@media (max-width: 1000px) {
    .audience-hero-inner,
    .audience-section-head {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .audience-hero,
    .audience-hero-inner {
        min-height: auto;
    }

    .audience-hero-inner {
        padding-top: 130px;
        padding-bottom: 90px;
    }

    .audience-visual {
        min-height: 400px;
    }

    .feature-grid,
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .target-grid,
    .vertical-chip-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .audience-hero-inner {
        padding-top: 110px;
    }

    .audience-copy h1 {
        font-size: 52px;
        letter-spacing: -2.5px;
    }

    .audience-copy > p {
        font-size: 14px;
    }

    .audience-proof {
        gap: 20px;
        flex-wrap: wrap;
    }

    .audience-section {
        padding: 90px 0 100px;
    }

    .feature-grid,
    .offer-grid,
    .target-grid,
    .vertical-chip-grid,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .visual-panel {
        min-height: 360px;
        padding: 24px;
        transform: none;
    }

    .visual-metric {
        margin-top: 55px;
    }
}
/* =========================================================
   SAVIX ADS — ABOUT PAGE
   Designed to match the existing Savix Ads website:
   DM Sans + Space Grotesk
   #0d100d / #c7f36b / #f4f5f2
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #f4f5f2;
  color: #121411;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

/* ================= HEADER ================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  width: 170px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 146px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  color: #d9ded7;
  font-size: 13px;
  font-weight: 600;
  transition: .25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #c7f36b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  padding: 14px 21px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  transition: .25s;
  cursor: pointer;
}

.btn span {
  font-size: 18px;
  line-height: 0;
}

.btn-nav,
.btn-primary {
  background: #c7f36b;
  color: #121411;
}

.btn-nav:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px #c7f36b2b;
}

.btn-ghost {
  border-color: #ffffff35;
  color: #fff;
}

.btn-ghost:hover {
  border-color: #c7f36b;
  color: #c7f36b;
}

.btn-outline-light {
  border-color: #ffffff45;
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #c7f36b;
  color: #c7f36b;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

/* ================= SHARED ================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  color: #899187;
}

.eyebrow > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7f36b;
}

.dark-eyebrow {
  color: #899187;
}

.section {
  padding: 130px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-head h2,
.ecosystem-head h2,
.principles-head h2,
.cta h2 {
  font: 600 clamp(48px, 6vw, 82px)/.98 "Space Grotesk";
  letter-spacing: -4px;
}

.section-head h2 em,
.ecosystem-head h2 em,
.principles-head h2 em,
.cta h2 em {
  font-style: normal;
  color: #657b40;
}

.section-head > p,
.ecosystem-head > p {
  color: #6d736b;
  font-size: 15px;
  line-height: 1.8;
  max-width: 470px;
}

/* ================= ABOUT HERO ================= */

.about-hero {
  min-height: 760px;
  background: #0d100d;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-glow-a {
  width: 700px;
  height: 700px;
  right: -230px;
  top: 10px;
  background: radial-gradient(circle, #c7f36b18, transparent 65%);
}

.about-glow-b {
  width: 480px;
  height: 480px;
  left: -300px;
  bottom: -180px;
  background: radial-gradient(circle, #c7f36b11, transparent 66%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 60px;
  align-items: center;
  padding-top: 145px;
}

.about-hero-copy {
  max-width: 680px;
}

.about-hero .eyebrow {
  color: #c7f36b;
}

.about-hero h1 {
  font: 600 clamp(55px, 7vw, 92px)/.94 "Space Grotesk";
  letter-spacing: -5px;
  margin: 24px 0;
}

.about-hero h1 em {
  font-style: normal;
  color: #c7f36b;
}

.hero-text {
  max-width: 590px;
  color: #aeb6aa;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 2px;
  color: #697067;
}

.scroll-cue span {
  margin-left: 12px;
  color: #c7f36b;
}

/* ================= HERO NETWORK ================= */

.about-hero-visual {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
}

.network-ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ffffff1a;
  border-radius: 50%;
}

.ring-one { width: 92%; height: 92%; }
.ring-two { width: 68%; height: 68%; border-color: #c7f36b25; }
.ring-three { width: 43%; height: 43%; }

.network-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 37%;
  height: 1px;
  background: linear-gradient(90deg, #c7f36b55, transparent);
  transform-origin: left center;
}

.line-one { transform: rotate(-28deg); }
.line-two { transform: rotate(152deg); }
.line-three { transform: rotate(28deg); }
.line-four { transform: rotate(-152deg); }

.node {
  position: absolute;
  width: 98px;
  height: 98px;
  border: 1px solid #ffffff25;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #10140fdd;
  box-shadow: 0 16px 50px #00000045;
}

.node span {
  font: 500 9px "Space Grotesk";
  color: #c7f36b;
  letter-spacing: 1px;
}

.node b {
  margin-top: 4px;
  font: 600 12px "Space Grotesk";
}

.node-advertiser { left: 7%; top: 14%; }
.node-publisher { right: 5%; top: 45%; }
.node-data { left: 21%; bottom: 9%; }

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #c7f36b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px #c7f36b1c;
}

.network-core img {
  width: 92px;
  height: auto;
  filter: brightness(0) saturate(100%);
  opacity: .88;
}

.network-core small {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #46562d;
  margin-top: 7px;
}

/* ================= TICKER ================= */

.ticker {
  background: #c7f36b;
  overflow: hidden;
  padding: 17px 0;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  font: 700 13px "Space Grotesk";
  letter-spacing: 1.2px;
  animation: marquee 28s linear infinite;
}

.ticker-track b {
  font-size: 15px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ================= STORY ================= */

.story {
  background: #f4f5f2;
}

.story-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.story-statement {
  padding: 48px 0;
  border-top: 1px solid #d3d7cf;
  border-bottom: 1px solid #d3d7cf;
  position: relative;
}

.statement-number {
  display: block;
  color: #9ca39a;
  font-size: 10px;
  margin-bottom: 50px;
}

.story-statement h3 {
  font: 600 clamp(42px, 5vw, 67px)/.96 "Space Grotesk";
  letter-spacing: -3px;
}

.story-statement h3 em {
  font-style: normal;
  color: #657b40;
}

.story-copy {
  max-width: 590px;
  padding-top: 38px;
}

.story-copy p {
  color: #6d736b;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.story-copy strong {
  color: #22271f;
}

/* ================= ECOSYSTEM ================= */

.ecosystem {
  background: #e9ece6;
  padding-top: 120px;
}

.ecosystem-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.ecosystem-head h2 {
  margin-top: 20px;
}

.ecosystem-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ecosystem-panel {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  padding: 35px clamp(30px, 7vw, 105px) 70px;
}

.ecosystem-panel.dark {
  background: #10130f;
  color: #fff;
}

.ecosystem-panel.green {
  background: #c7f36b;
  color: #121411;
}

.panel-index {
  position: absolute;
  top: 32px;
  left: clamp(30px, 7vw, 105px);
  font: 600 11px "Space Grotesk";
  opacity: .4;
}

.panel-copy {
  max-width: 470px;
  position: relative;
  z-index: 2;
  margin-top: 95px;
}

.panel-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: .6;
}

.panel-copy h3 {
  font: 600 clamp(44px, 5vw, 70px)/.95 "Space Grotesk";
  letter-spacing: -3px;
  margin: 17px 0 25px;
}

.dark .panel-copy h3 em {
  color: #c7f36b;
  font-style: normal;
}

.green .panel-copy h3 em {
  color: #596d37;
  font-style: normal;
}

.panel-copy p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.8;
  color: #9fa79b;
  margin-bottom: 28px;
}

.green .panel-copy p {
  color: #526044;
}

.panel-copy a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.panel-copy a span {
  color: #8daa5d;
}

.shape-target {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid #ffffff16;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff16;
  font: 700 12px "Space Grotesk";
  letter-spacing: 2px;
}

.shape-target i {
  position: absolute;
  border: 1px solid #ffffff16;
  border-radius: 50%;
}

.shape-target i:nth-child(1) { width: 420px; height: 420px; }
.shape-target i:nth-child(2) { width: 320px; height: 320px; }
.shape-target i:nth-child(3) { width: 220px; height: 220px; }

.shape-growth {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 390px;
  height: 390px;
  border: 1px solid #12141120;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 82px;
  font: 700 12px "Space Grotesk";
  letter-spacing: 2px;
  color: #596d37;
}

.shape-growth i {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid #12141120;
  border-radius: 50%;
}

.shape-growth span {
  position: absolute;
  bottom: 42px;
  font-size: 9px;
  letter-spacing: 2px;
}

/* ================= DIFFERENCE ================= */

.difference {
  background: #f4f5f2;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d5d9d1;
  border-bottom: 1px solid #d5d9d1;
}

.difference-card {
  min-height: 330px;
  padding: 28px 26px 36px;
  border-right: 1px solid #d5d9d1;
  position: relative;
}

.difference-card:last-child {
  border-right: 0;
}

.featured-difference {
  background: #10130f;
  color: #fff;
  border-color: #10130f;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 25px;
  font-size: 10px;
  color: #969d93;
}

.difference-icon {
  font: 400 38px "Space Grotesk";
  color: #7d9850;
  margin-bottom: 105px;
}

.difference-card h3 {
  font: 600 24px "Space Grotesk";
  margin-bottom: 12px;
}

.difference-card p {
  font-size: 12px;
  color: #747c72;
  line-height: 1.7;
}

.featured-difference p {
  color: #a4aca0;
}

/* ================= PRINCIPLES ================= */

.principles {
  background: #11140f;
  color: #fff;
  padding: 135px 0;
}

.principles-head {
  max-width: 700px;
  margin-bottom: 65px;
}

.principles-head .eyebrow {
  color: #c7f36b;
}

.principles-head h2 {
  margin-top: 20px;
}

.principles-head h2 em {
  color: #c7f36b;
}

.principles-list {
  border-top: 1px solid #ffffff18;
}

.principle {
  display: grid;
  grid-template-columns: 60px 1fr 1.45fr;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #ffffff18;
}

.principle > span {
  color: #c7f36b;
  font-size: 10px;
  font-weight: 700;
}

.principle h3 {
  font: 600 26px "Space Grotesk";
}

.principle p {
  color: #929a90;
  font-size: 13px;
}

/* ================= CAPABILITIES ================= */

.capabilities {
  background: #e9ece6;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cdd1c9;
  border-left: 1px solid #cdd1c9;
}

.capability {
  min-height: 180px;
  padding: 27px;
  border-right: 1px solid #cdd1c9;
  border-bottom: 1px solid #cdd1c9;
  position: relative;
}

.capability span {
  display: block;
  font-size: 10px;
  color: #8a9287;
  margin-bottom: 52px;
}

.capability b {
  display: block;
  font: 600 27px "Space Grotesk";
}

.capability small {
  display: block;
  color: #727970;
  font-size: 11px;
  margin-top: 6px;
}

/* ================= CTA ================= */

.about-cta {
  background: #0d100d;
  color: #fff;
  padding: 145px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-cta .cta-inner {
  position: relative;
  z-index: 2;
}

.about-cta .eyebrow {
  color: #c7f36b;
}

.about-cta h2 {
  margin: 22px 0;
}

.about-cta h2 em {
  color: #c7f36b;
}

.about-cta p {
  max-width: 600px;
  margin: 0 auto;
  color: #9ba39a;
  font-size: 14px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

/* ================= FOOTER ================= */

footer {
  background: #0d100d;
  color: #fff;
  border-top: 1px solid #ffffff10;
}

.footer-main {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-logo {
  width: 146px;
  height: auto;
}

.footer-main p {
  color: #6f786e;
  font-size: 12px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 75px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links b,
.footer-contact span {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #657064;
  margin-bottom: 5px;
}

.footer-links a {
  font-size: 11px;
  color: #a7afa4;
}

.footer-links a:hover {
  color: #c7f36b;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: block;
  margin-top: 7px;
  color: #c7f36b;
  font: 600 18px "Space Grotesk";
}

.footer-bottom {
  border-top: 1px solid #ffffff10;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  color: #5f675e;
  font-size: 9px;
}

/* ================= REVEAL ================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
  }

  .nav.open {
    background: #0d100d;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 80px;
    left: 24px;
    right: 24px;
    flex-direction: column;
    padding: 25px;
    background: #171b15;
    border: 1px solid #ffffff12;
  }

  .about-hero-inner,
  .section-head,
  .ecosystem-head,
  .story-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-hero {
    min-height: auto;
    padding-bottom: 100px;
  }

  .about-hero-visual {
    min-height: 450px;
  }

  .ecosystem-panels {
    grid-template-columns: 1fr;
  }

  .difference-grid {
    grid-template-columns: 1fr 1fr;
  }

  .difference-card {
    border-bottom: 1px solid #d5d9d1;
  }

  .difference-card:nth-child(2) {
    border-right: 0;
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    text-align: left;
  }

  .principle {
    grid-template-columns: 50px 1fr;
  }

  .principle p {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .about-hero {
    padding-bottom: 80px;
  }

  .about-hero h1 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }

  .about-hero-visual {
    min-height: 330px;
  }

  .network {
    width: 360px;
    max-width: 100%;
  }

  .network-core {
    width: 118px;
    height: 118px;
  }

  .network-core img {
    width: 76px;
  }

  .node {
    width: 75px;
    height: 75px;
  }

  .node b {
    font-size: 10px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 85px 0;
  }

  .section-head h2,
  .ecosystem-head h2,
  .principles-head h2,
  .about-cta h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .story-statement h3 {
    font-size: 46px;
  }

  .ecosystem-panel {
    min-height: 650px;
    padding: 85px 24px;
  }

  .panel-index {
    left: 24px;
  }

  .panel-copy {
    margin-top: 20px;
  }

  .panel-copy h3 {
    font-size: 46px;
  }

  .difference-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .difference-card,
  .difference-card:nth-child(2) {
    border-right: 0;
  }

  .difference-card:last-child {
    border-bottom: 0;
  }

  .principles {
    padding: 90px 0;
  }

  .principle {
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 55px;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    padding-bottom: 28px;
    gap: 15px;
    flex-direction: column;
  }

  .shape-target {
    right: -250px;
  }

  .shape-growth {
    right: -170px;
  }
}
.cta h2 em {
  color: #c7f36b !important;
}


/* ================= ADVERTISER STATS ================= */
.audience-stats {
  position: relative;
  overflow: hidden;
  background: #0d100d;
  color: #ffffff;
  padding: 110px 0 120px;
  border-bottom: 1px solid #ffffff12;
}

.audience-stats-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.audience-stats-head h2 {
  margin-top: 16px;
  color: #ffffff;
}

.audience-stats-head h2 em {
  color: #c7f36b;
}

.audience-stats-head p {
  max-width: 520px;
  justify-self: end;
  color: #a7afa4;
  font-size: 14px;
  line-height: 1.8;
}

.audience-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #ffffff18;
  border-left: 1px solid #ffffff18;
}

.stat-card {
  min-height: 190px;
  padding: 34px 28px 30px;
  border-right: 1px solid #ffffff18;
  border-bottom: 1px solid #ffffff18;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: #111511;
  transition:
    transform .35s ease,
    background-color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: #171c16;
  border-color: #c7f36b;
  box-shadow: 0 12px 35px #00000035;
}

.stat-number {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
  color: #ffffff;
  font-weight: 700;
}

.stat-card span {
  color: #c7f36b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.stat-number.counted {
  animation: stat-pop .55s ease both;
}

@keyframes stat-pop {
  0% {
    opacity: .2;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .audience-stats-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .audience-stats-head p {
    justify-self: start;
  }

  .audience-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .audience-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 165px;
  }
}

/* =========================================================
   PUBLISHER PERFORMANCE SNAPSHOT
   Premium black + lime stats section
   Staggered scale-in + subtle lime border glow
========================================================= */

.publisher-stats {
  position: relative;
  background: #0d100d;
  color: #fff;
  padding: 120px 0 125px;
  overflow: hidden;
  border-top: 1px solid #ffffff0d;
  border-bottom: 1px solid #ffffff0d;
}

.publisher-stats::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: 50%;
  right: -220px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #c7f36b10 0%, transparent 68%);
  pointer-events: none;
}

.publisher-stats .container {
  position: relative;
  z-index: 2;
}

.publisher-stats-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}

.publisher-stats-eyebrow {
  color: #c7f36b;
}

.publisher-stats h2 {
  font: 600 clamp(48px, 6vw, 78px)/0.98 "Space Grotesk";
  letter-spacing: -3.5px;
  margin: 22px 0 0;
  color: #fff;
}

.publisher-stats h2 em {
  font-style: normal;
  color: #c7f36b;
}

.publisher-stats-head > p {
  max-width: 470px;
  color: #919a8f;
  font-size: 14px;
  line-height: 1.85;
}

.publisher-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ffffff18;
  border-bottom: 1px solid #ffffff18;
}

.publisher-stat-card {
  min-height: 220px;
  padding: 34px 28px 38px;
  border-right: 1px solid #ffffff18;
  background: #111511;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(.94);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2,.75,.25,1),
    background-color .35s ease,
    border-color .35s ease,
    box-shadow .45s ease;
}

.publisher-stat-card:last-child {
  border-right: 0;
}

/* Premium reveal state */
.publisher-stat-card.stat-visible {
  opacity: 1;
  transform: scale(1);
  border-color: #c7f36b;
  box-shadow:
    inset 0 0 0 1px #c7f36b22,
    0 0 28px #c7f36b0d;
}

/* Subtle lime light sweep on reveal */
.publisher-stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #c7f36b12,
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

.publisher-stat-card.stat-visible::after {
  animation: publisher-stat-sweep 1.1s ease .1s forwards;
}

@keyframes publisher-stat-sweep {
  from {
    left: -120%;
  }
  to {
    left: 150%;
  }
}

.publisher-stat-card:hover {
  background: #151a14;
  border-color: #c7f36b;
  box-shadow: 0 12px 35px #00000035;
  transform: translateY(-5px) scale(1.01);
}

.publisher-stat-number {
  display: block;
  color: #ffffff;
  font: 600 clamp(42px, 4vw, 62px)/1 "Space Grotesk";
  letter-spacing: -2.5px;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}

.publisher-stat-card > span {
  color: #c7f36b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .publisher-stats-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 45px;
  }

  .publisher-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .publisher-stat-card:nth-child(2) {
    border-right: 0;
  }

  .publisher-stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid #ffffff18;
  }
}

@media (max-width: 600px) {
  .publisher-stats {
    padding: 90px 0 95px;
  }

  .publisher-stats-grid {
    grid-template-columns: 1fr;
  }

  .publisher-stat-card {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid #ffffff18;
  }

  .publisher-stat-card:last-child {
    border-bottom: 0;
  }
}
.vertical-chip {
  padding: 20px 22px;
  border: 1px solid #d8ddd5;
  background: #fafbf9;
  font: 600 14px "Space Grotesk";
  color: #121411;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.vertical-chip:hover {
  transform: none;
  background: #111;
  color: #fff;
  border-color: #c7f36b;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25),
    0 0 22px rgba(199, 243, 107, 0.12);
}

/* =========================================================
   PUBLISHER ODOMETER — FINAL OVERRIDES
   ========================================================= */
.publisher-stat-card {
  opacity: 1 !important;
  transform: none !important;
  transition:
    background-color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease !important;
}

.publisher-stat-card.stat-visible {
  opacity: 1 !important;
  transform: none !important;
}

.publisher-stat-card:hover {
  transform: none !important;
  background: #151a14 !important;
  border-color: #c7f36b !important;
  box-shadow:
    0 0 28px #c7f36b16,
    inset 0 0 0 1px #c7f36b18 !important;
}

.publisher-stat-number {
  display: flex !important;
  align-items: baseline;
  overflow: hidden;
  min-height: 1em;
  color: #ffffff !important;
}

.publisher-odometer-digit {
  display: inline-block;
  width: .62em;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
  flex: 0 0 .62em;
}

.publisher-odometer-track {
  display: block;
  line-height: 1em;
  transform: translateY(0);
  transition: transform 1.35s cubic-bezier(.16,.72,.22,1);
  will-change: transform;
}

.publisher-odometer-track span {
  display: block;
  height: 1em;
  line-height: 1em;
}

.publisher-odometer-separator {
  display: inline-block;
  width: .24em;
  color: #ffffff;
}

.publisher-odometer-plus {
  display: inline-block;
  margin-left: .05em;
  color: #ffffff;
}

/* Soft lime pulse when each card becomes active */
.publisher-stat-card.stat-visible .publisher-stat-number {
  animation: publisher-number-pulse .8s ease;
}

@keyframes publisher-number-pulse {
  0% { text-shadow: 0 0 0 transparent; }
  45% { text-shadow: 0 0 22px #c7f36b35; }
  100% { text-shadow: 0 0 0 transparent; }
}
.publisher-odometer-digit {
  display: inline-block;
  height: 1em;
  min-width: 0.62em;
  overflow: hidden;
  vertical-align: bottom;
}

.publisher-odometer-track {
  display: block;
  line-height: 1em;
  transform: translateY(0);
  transition:
    transform 4.5s cubic-bezier(.12, .72, .18, 1);
  will-change: transform;
}

.publisher-odometer-track span {
  display: block;
  height: 1em;
  line-height: 1em;
}

.publisher-odometer-separator {
  display: inline-block;
  min-width: 0.28em;
  color: #ffffff;
}

.publisher-odometer-plus {
  display: inline-block;
  margin-left: 0.06em;
  color: #ffffff;
}
/* =========================================================
   PUBLISHER NETWORK ORBIT
   ========================================================= */

.publisher-network {
  position: relative;
  min-height: 680px;
  background: #0b0f0c;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* -----------------------------------------
   ORBIT RINGS
   ----------------------------------------- */

.network-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(199, 243, 107, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-outer {
  width: 620px;
  height: 620px;
}

.orbit-middle {
  width: 430px;
  height: 430px;
  border-color: rgba(199, 243, 107, 0.13);
}

.orbit-inner {
  width: 270px;
  height: 270px;
  border-color: rgba(199, 243, 107, 0.18);
}


/* -----------------------------------------
   CENTER CIRCLE
   ----------------------------------------- */

.network-center {
  position: relative;
  z-index: 5;

  width: 190px;
  height: 190px;

  border-radius: 50%;

  background: #c7f36b;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 0 45px rgba(199, 243, 107, 0.16),
    0 0 100px rgba(199, 243, 107, 0.05);
}

.network-logo {
  width: 105px;
  height: auto;
  object-fit: contain;
}

.network-center-label {
  margin-top: 8px;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #111;
}


/* -----------------------------------------
   NETWORK NODES
   ----------------------------------------- */

.network-node {
  position: absolute;
  z-index: 6;

  width: 125px;
  height: 125px;

  border-radius: 50%;

  background: rgba(13, 17, 14, 0.96);

  border: 1px solid rgba(255, 255, 255, 0.18);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  transition:
    border-color .4s ease,
    box-shadow .4s ease,
    transform .4s ease;
}

.network-node:hover {
  border-color: #c7f36b;

  box-shadow:
    0 0 25px rgba(199, 243, 107, 0.15);

  transform: scale(1.05);
}


.network-node strong {
  margin-top: 6px;

  font-size: 15px;
  color: #fff;
}


.node-number {
  font-size: 11px;
  font-weight: 700;
  color: #c7f36b;
  letter-spacing: .1em;
}


/* -----------------------------------------
   NODE POSITIONS
   ----------------------------------------- */

.node-advertiser {
  top: 105px;
  left: calc(50% - 270px);
}

.node-publisher {
  top: 250px;
  left: calc(50% + 160px);
}

.node-data {
  bottom: 90px;
  left: calc(50% - 250px);
}


/* -----------------------------------------
   PUBLISHER COUNTER
   ----------------------------------------- */

.publisher-circle-counter {
  margin-top: 7px;

  font-size: 22px;
  line-height: 1;

  font-weight: 700;

  color: #fff;

  min-width: 80px;
}


/* -----------------------------------------
   CONNECTION LINES
   ----------------------------------------- */

.publisher-network::before,
.publisher-network::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 520px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(199, 243, 107, .16),
      transparent
    );

  transform:
    translate(-50%, -50%)
    rotate(25deg);

  transform-origin: center;

  pointer-events: none;
}

.publisher-network::after {
  transform:
    translate(-50%, -50%)
    rotate(-25deg);
}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 768px) {

  .publisher-network {
    min-height: 620px;
  }

  .orbit-outer {
    width: 430px;
    height: 430px;
  }

  .orbit-middle {
    width: 300px;
    height: 300px;
  }

  .orbit-inner {
    width: 200px;
    height: 200px;
  }

  .network-center {
    width: 150px;
    height: 150px;
  }

  .network-logo {
    width: 80px;
  }

  .network-node {
    width: 105px;
    height: 105px;
  }

  .node-advertiser {
    top: 80px;
    left: 25px;
  }

  .node-publisher {
    top: 240px;
    right: 20px;
    left: auto;
  }

  .node-data {
    bottom: 60px;
    left: 40px;
  }
}
/* =========================================================
   PUBLISHER — SINGLE CIRCLE
   ========================================================= */

.publisher-network-simple {
  position: relative;

  width: 100%;
  min-height: 470px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #0b0f0c;

  overflow: hidden;
}


/* =========================================================
   SUBTLE ORBIT RINGS
   ========================================================= */

.publisher-orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  transform: translate(-50%, -50%);

  pointer-events: none;

  border: 1px solid rgba(199, 243, 107, 0.14);
}


/* Outer ring */

.publisher-orbit-outer {
  width: 360px;
  height: 360px;
}


/* Middle ring */

.publisher-orbit-middle {
  width: 255px;
  height: 255px;

  border-color: rgba(199, 243, 107, 0.20);
}


/* =========================================================
   MAIN PUBLISHER CIRCLE
   ========================================================= */

.publisher-main-circle {

  position: relative;

  z-index: 5;

  width: 170px;
  height: 170px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  background: #0b0f0c;

  border: 2px solid #c7f36b;

  box-shadow:

    0 0 18px rgba(199, 243, 107, 0.18),

    0 0 45px rgba(199, 243, 107, 0.10),

    0 0 90px rgba(199, 243, 107, 0.05);

  transition:
    box-shadow 0.5s ease,
    transform 0.5s ease,
    border-color 0.5s ease;
}


/* Hover */

.publisher-main-circle:hover {

  transform: scale(1.04);

  border-color: #d7ff82;

  box-shadow:

    0 0 25px rgba(199, 243, 107, 0.28),

    0 0 60px rgba(199, 243, 107, 0.15),

    0 0 120px rgba(199, 243, 107, 0.07);
}


/* =========================================================
   02
   ========================================================= */

.publisher-circle-number {

  display: block;

  margin-bottom: 5px;

  font-size: 12px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: 0.12em;

  color: #c7f36b;
}


/* =========================================================
   PUBLISHER TITLE
   ========================================================= */

.publisher-circle-title {

  display: block;

  margin-bottom: 7px;

  font-size: 18px;

  line-height: 1.1;

  font-weight: 600;

  color: #ffffff;
}


/* =========================================================
   PUBLISHER COUNT
   ========================================================= */

.publisher-circle-counter {

  min-width: 90px;

  font-size: 25px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: -0.02em;

  color: #ffffff;

  white-space: nowrap;

  transition:
    text-shadow 0.5s ease;
}


/* Small lime glow when count finishes */

.publisher-circle-counter.counter-finished {

  text-shadow:
    0 0 12px rgba(199, 243, 107, 0.35);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .publisher-network-simple {

    min-height: 390px;
  }


  .publisher-orbit-outer {

    width: 300px;
    height: 300px;
  }


  .publisher-orbit-middle {

    width: 215px;
    height: 215px;
  }


  .publisher-main-circle {

    width: 145px;
    height: 145px;
  }


  .publisher-circle-number {

    font-size: 10px;
  }


  .publisher-circle-title {

    font-size: 16px;
  }


  .publisher-circle-counter {

    font-size: 22px;
  }
}

/* ================= FOOTER CONTACT POSITION ================= */
.footer-contact {
  text-align: right;
  align-self: end;
  transform: translate(40px, 45px);
}

@media (max-width: 600px) {
  .footer-contact {
    transform: none;
    text-align: left;
  }
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.footer-contact {
  grid-column: 2;
  justify-self: end;
  align-self: start;
  text-align: right;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* =========================================================
   FOOTER CONTACT BUTTON
   ========================================================= */

.footer-contact-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-top: 22px;

  padding: 13px 20px;

  background: #c7f36b;
  color: #111 !important;

  border: 1px solid #c7f36b;
  border-radius: 2px;

  text-decoration: none;

  font: 700 12px "Space Grotesk";

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.footer-contact-button span {
  font-size: 16px;
  line-height: 1;
}


/* Hover → black */

.footer-contact-button:hover {
  background: #111;

  color: #c7f36b !important;

  border-color: #c7f36b;

  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, .25);
}