:root {
  --ink: #f7fbff;
  --muted: #a9b9d2;
  --muted-2: #7184a2;
  --bg: #030b19;
  --bg-soft: #07152b;
  --surface: #0b1b35;
  --surface-2: #102441;
  --line: rgba(170, 214, 255, .13);
  --cyan: #13c8ff;
  --cyan-2: #6de7ff;
  --blue: #1477ff;
  --green: #32d583;
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(19, 200, 255, .07), transparent 24%),
    linear-gradient(180deg, #030b19 0%, #061329 55%, #030b19 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand-name,
.button {
  letter-spacing: -.025em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 3.8vw, 3.75rem);
  font-weight: 780;
  line-height: 1.03;
}

h2 em,
.section-intro h2 em,
.center-heading h2 em,
.audience-copy h2 em,
.manifesto-copy h2 em {
  color: var(--cyan-2);
  font-style: normal;
  font-weight: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #02111d;
  background: var(--cyan-2);
  border-radius: 12px;
  transform: translateY(-150%);
}

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

.kicker,
.solution-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cyan-2);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(19, 200, 255, .12);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .94rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.button-primary {
  color: #02111d;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 18px 38px rgba(19, 200, 255, .2);
}

.button-primary:hover {
  box-shadow: 0 22px 45px rgba(19, 200, 255, .28);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: .85rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-2);
  font-size: 1rem;
  font-weight: 800;
}

.text-link span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(109, 231, 255, .32);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}

.text-link:hover span {
  background: rgba(19, 200, 255, .12);
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(3, 11, 25, .86);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: grid;
  min-height: 74px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(109, 231, 255, .22);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 28px);
}

.main-menu a {
  position: relative;
  color: #c1cee1;
  font-size: .86rem;
  font-weight: 650;
  transition: color .2s ease;
}

.main-menu a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 99px;
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .2s ease, transform .2s ease;
}

.main-menu a:hover,
.main-menu a.active {
  color: #fff;
}

.main-menu a:hover::after,
.main-menu a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 11px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #020a17;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/images/hero-cafe.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 8, 20, .98) 0%, rgba(2, 8, 20, .88) 25%, rgba(2, 8, 20, .3) 59%, rgba(2, 8, 20, .1) 100%),
    linear-gradient(0deg, #030b19 0%, transparent 24%),
    linear-gradient(180deg, rgba(2, 8, 20, .7) 0%, transparent 22%);
}

.hero-content {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 70px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 54px;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(2.9rem, 4.9vw, 4.9rem);
  font-weight: 830;
  line-height: .94;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 31px;
  color: #c0cee0;
  font-size: clamp(.98rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-proof strong {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  font-weight: 900;
  line-height: .9;
}

.hero-proof strong span:last-child {
  color: var(--cyan);
}

.counter-suffix {
  display: inline-block;
  margin-left: 8px;
  color: #30d982;
  font-size: .42em;
  line-height: 1;
  transform: translateY(-.58em);
}

.hero-proof p {
  margin: 0;
  color: #b7c5d9;
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.portal-preview {
  align-self: end;
  width: min(355px, 100%);
  margin: 0 0 38px auto;
  padding: 18px;
  background: rgba(4, 17, 38, .91);
  border: 1px solid rgba(109, 231, 255, .24);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55), 0 0 0 8px rgba(4, 17, 38, .35);
  backdrop-filter: blur(16px);
  transform: rotate(-2deg);
}

.portal-top {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
}

.portal-top img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}

.portal-top strong,
.portal-top span {
  display: block;
}

.portal-top strong {
  font-size: .8rem;
  letter-spacing: .08em;
}

.portal-top span {
  color: var(--muted);
  font-size: .68rem;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(50, 213, 131, .12);
}

.portal-ad {
  min-height: 178px;
  margin: 18px 0;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(109, 231, 255, .28), transparent 30%),
    linear-gradient(145deg, #12355c, #07162d);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
}

.portal-ad > span {
  color: var(--cyan-2);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.portal-ad strong {
  display: block;
  margin: 19px 0 9px;
  font-size: 1.28rem;
  line-height: 1.12;
}

.portal-ad p {
  margin: 0;
  color: #b5c5db;
  font-size: .77rem;
}

.portal-progress {
  height: 4px;
  margin-bottom: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
  border-radius: 99px;
}

.portal-progress i {
  display: block;
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: inherit;
}

.portal-preview button,
.phone button {
  width: 100%;
  padding: 13px 16px;
  color: #03101d;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  border: 0;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 850;
}

.portal-preview > small {
  display: block;
  margin-top: 10px;
  color: #70839f;
  font-size: .62rem;
  text-align: center;
}

/* Hero carousel */
.impact-hero,
.impact-track,
.impact-slide {
  min-height: 760px;
}

.impact-track {
  position: relative;
}

.impact-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease, visibility .7s ease;
}

.impact-slide.active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.impact-background {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: transform 7s ease;
}

.impact-slide.active .impact-background {
  transform: scale(1);
}

.impact-slide-main .impact-background { background-image: url('assets/images/hero-cafe.webp'); }
.impact-slide-journey .impact-background { background-image: url('assets/images/aura-free.webp'); background-position: center 48%; }
.impact-slide-companies .impact-background { background-image: url('assets/images/aura-empresas.webp'); background-position: center; }
.impact-slide-advertisers .impact-background { background-image: url('assets/images/aura-anunciantes.webp'); background-position: center; }
.impact-slide-providers .impact-background { background-image: url('assets/images/aura-provedores.webp'); background-position: center; }
.impact-slide-partners .impact-background { background-image: url('assets/images/aura-free.webp'); background-position: center; }

.impact-slide .hero-content {
  z-index: 3;
  padding-bottom: 108px;
}

.impact-slide .hero-copy {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease .16s, transform .55s ease .16s;
}

.impact-slide.active .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.impact-slide h2 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(2.75rem, 4.65vw, 4.65rem);
  font-weight: 830;
  line-height: .96;
  text-wrap: balance;
}

.impact-slide h2 em {
  color: var(--cyan-2);
  font-style: normal;
}

.impact-slide h1 em {
  color: var(--cyan-2);
  font-style: normal;
}

.impact-slide-story-first h1 {
  font-size: clamp(3rem, 4.25vw, 4.25rem);
}

.impact-slide-story-first .hero-proof {
  margin-top: 26px;
  padding-top: 18px;
}

.impact-slide:not(.impact-slide-main) .hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 8, 20, .98) 0%, rgba(2, 8, 20, .9) 31%, rgba(2, 8, 20, .42) 62%, rgba(2, 8, 20, .23) 100%),
    linear-gradient(0deg, #030b19 0%, transparent 28%),
    linear-gradient(180deg, rgba(2, 8, 20, .7) 0%, transparent 22%);
}

.impact-slide-companies .hero-shade,
.impact-slide-providers .hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 8, 20, .98) 0%, rgba(2, 8, 20, .91) 34%, rgba(2, 8, 20, .48) 65%, rgba(2, 8, 20, .28) 100%),
    linear-gradient(0deg, #030b19 0%, transparent 30%);
}

.impact-carousel-controls {
  position: absolute;
  z-index: 20;
  right: 0;
  bottom: 16px;
  left: 0;
  display: grid;
  min-height: 62px;
  align-items: center;
  padding: 8px 10px;
  background: rgba(4, 15, 32, .76);
  border: 1px solid rgba(109, 231, 255, .14);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  grid-template-columns: auto 1fr auto;
  gap: 14px;
}

.impact-arrows {
  display: flex;
  gap: 6px;
}

.impact-arrows button,
.impact-pause {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #d5e7f7;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px;
  cursor: pointer;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.impact-arrows button:hover,
.impact-pause:hover {
  color: #04111e;
  background: var(--cyan);
  border-color: var(--cyan);
}

.impact-dots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}

.impact-dots button {
  position: relative;
  min-height: 42px;
  padding: 7px 10px 5px;
  color: #7086a4;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: .61rem;
  font-weight: 750;
  text-align: left;
  transition: color .2s ease, background .2s ease;
}

.impact-dots button:hover,
.impact-dots button.active {
  color: #e8f7ff;
  background: rgba(19, 200, 255, .05);
}

.impact-dots button i {
  position: absolute;
  right: 9px;
  bottom: 4px;
  left: 9px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
  border-radius: 99px;
}

.impact-dots button i::after {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cyan);
  border-radius: inherit;
  content: '';
}

.impact-dots button.active i::after {
  width: 100%;
  animation: impact-progress var(--impact-duration, 6.5s) linear;
}

.hero-story-stage {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .55s ease .28s, transform .55s ease .28s;
}

.impact-slide.active .hero-story-stage {
  opacity: 1;
  transform: translateX(0);
}

.hero-story-stage .story-phone {
  width: 250px;
  height: 520px;
  border-width: 6px;
  border-radius: 36px;
}

.hero-story-stage .story-creative {
  right: 20px;
  left: 20px;
}

.hero-story-stage .story-creative-top { top: 128px; }
.hero-story-stage .story-creative-center,
.hero-story-stage .story-creative-price { top: 190px; }
.hero-story-stage .story-creative strong { font-size: 1.85rem; }
.hero-story-stage .story-creative-price strong { font-size: 3.5rem; }
.hero-story-stage .story-creative-price strong sup { font-size: .9rem; }
.hero-story-stage .story-creative-price strong em { font-size: 1.4rem; }

.hero-story-label {
  position: absolute;
  z-index: 9;
  top: 8px;
  left: 50%;
  padding: 6px 10px;
  color: #8ea5c1;
  background: #07162d;
  border: 1px solid #1a3959;
  border-radius: 999px;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.hero-story-replay {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 50%;
  min-height: 34px;
  padding: 0 12px;
  color: #a4bad2;
  background: #07162d;
  border: 1px solid #1a3959;
  border-radius: 999px;
  cursor: pointer;
  font-size: .58rem;
  font-weight: 750;
  transform: translateX(-50%);
}

.hero-story-replay span {
  margin-right: 5px;
  color: var(--cyan);
}

.impact-hero.paused .impact-dots button.active i::after {
  animation-play-state: paused;
}

@keyframes impact-progress {
  from { width: 0; }
  to { width: 100%; }
}

.impact-journey-card,
.impact-data-card,
.impact-provider-panel,
.impact-partner-panel {
  width: min(420px, 100%);
  margin-left: auto;
  padding: 24px;
  background: rgba(4, 16, 35, .91);
  border: 1px solid rgba(109, 231, 255, .22);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .5);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .55s ease .28s, transform .55s ease .28s;
}

.impact-slide.active .impact-journey-card,
.impact-slide.active .impact-data-card,
.impact-slide.active .impact-provider-panel,
.impact-slide.active .impact-partner-panel,
.impact-slide.active .impact-story-phone {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

.impact-journey-card {
  display: grid;
  gap: 8px;
}

.impact-journey-card article {
  display: grid;
  min-height: 82px;
  align-items: center;
  padding: 12px 13px;
  background: rgba(9, 32, 61, .78);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  grid-template-columns: 42px 1fr;
  gap: 10px;
}

.impact-journey-card article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #03111e;
  background: var(--cyan);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 900;
}

.impact-journey-card strong,
.impact-journey-card p {
  display: block;
}

.impact-journey-card strong {
  font-size: .78rem;
}

.impact-journey-card p {
  margin: 3px 0 0;
  color: #8fa4bf;
  font-size: .65rem;
}

.impact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #7f95b1;
  font-size: .67rem;
}

.impact-card-head > span {
  color: var(--cyan-2);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impact-card-head b {
  padding: 6px 8px;
  background: rgba(255, 255, 255, .04);
  border-radius: 7px;
  font-size: .56rem;
}

.impact-data-card > strong {
  display: block;
  color: #fff;
  font-size: 4.3rem;
  line-height: .9;
}

.impact-data-card > strong small {
  color: #7288a5;
  font-size: 1rem;
}

.impact-stars {
  margin: 11px 0 28px;
  color: #ffd76a;
  font-size: 1rem;
  letter-spacing: .12em;
}

.impact-mini-bars {
  display: grid;
  margin-bottom: 20px;
  gap: 13px;
}

.impact-mini-bars p {
  display: grid;
  align-items: center;
  margin: 0;
  color: #8fa3bd;
  font-size: .64rem;
  grid-template-columns: 112px 1fr 25px;
  gap: 9px;
}

.impact-mini-bars p > i {
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border-radius: 99px;
}

.impact-mini-bars p > i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.impact-mini-bars em {
  color: #dcecff;
  font-style: normal;
  font-weight: 800;
}

.impact-data-card > small,
.impact-partner-panel > small {
  color: #657b98;
  font-size: .57rem;
}

.impact-story-phone {
  position: relative;
  width: 285px;
  height: 565px;
  overflow: hidden;
  margin: 0 45px 0 auto;
  padding: 18px 14px;
  background:
    linear-gradient(180deg, rgba(1, 8, 17, .2), rgba(1, 8, 17, .88)),
    url('assets/images/hero-cafe.webp') 66% center / cover;
  border: 7px solid #101b2d;
  border-radius: 39px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55), 0 0 0 1px #324760;
  opacity: 0;
  transform: translateX(28px) rotate(3deg);
  transition: opacity .55s ease .28s, transform .55s ease .28s;
}

.impact-story-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.impact-story-progress i {
  height: 3px;
  background: rgba(255, 255, 255, .35);
  border-radius: 99px;
}

.impact-story-progress i:first-child { background: #fff; }

.impact-story-brand {
  display: grid;
  align-items: center;
  margin-top: 12px;
  grid-template-columns: 30px 1fr auto;
  gap: 8px;
}

.impact-story-brand img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.impact-story-brand strong,
.impact-story-brand small {
  display: block;
}

.impact-story-brand strong { font-size: .62rem; }
.impact-story-brand small { color: #bdc9d9; font-size: .46rem; }
.impact-story-brand > b { padding: 5px 7px; background: rgba(0,0,0,.45); border-radius: 99px; font-size: .52rem; }

.impact-release {
  position: absolute;
  top: 78px;
  left: 50%;
  padding: 6px 9px;
  background: rgba(2, 9, 19, .62);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 99px;
  font-size: .48rem;
  white-space: nowrap;
  transform: translateX(-50%);
}

.impact-offer {
  position: absolute;
  right: 24px;
  bottom: 105px;
  left: 24px;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .85);
}

.impact-offer small,
.impact-offer strong {
  display: block;
}

.impact-offer small {
  margin-bottom: 10px;
  color: var(--cyan-2);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.impact-offer strong {
  font-size: 1.85rem;
  line-height: 1;
}

.impact-offer p {
  margin: 10px 0 0;
  color: #d3deeb;
  font-size: .62rem;
}

.impact-story-phone > button {
  position: absolute;
  right: 13px;
  bottom: 14px;
  left: 13px;
  min-height: 43px;
  color: #7790aa;
  background: rgba(4, 15, 31, .92);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 99px;
  font-size: .62rem;
  font-weight: 800;
}

.impact-provider-panel > span,
.impact-partner-panel > span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan-2);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.impact-provider-panel article {
  display: grid;
  min-height: 84px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.impact-provider-panel article:last-child { border-bottom: 0; }
.impact-provider-panel article i { color: var(--cyan); font-size: .7rem; font-style: normal; font-weight: 900; }
.impact-provider-panel article strong { font-size: .8rem; }
.impact-provider-panel article p { margin: 3px 0 0; color: #8499b5; font-size: .65rem; }

.impact-partner-panel > strong {
  display: block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 3.4rem;
  line-height: .95;
}

.impact-partner-panel > strong small {
  display: block;
  margin-top: 8px;
  color: #8499b5;
  font-size: .67rem;
  font-weight: 650;
}

.impact-partner-panel > div {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.impact-partner-panel p {
  margin: 0;
  padding: 12px 8px;
  background: rgba(19, 200, 255, .05);
  border: 1px solid rgba(19, 200, 255, .1);
  border-radius: 10px;
  text-align: center;
}

.impact-partner-panel p b,
.impact-partner-panel p span {
  display: block;
}

.impact-partner-panel p b { color: #dff7ff; font-size: .76rem; }
.impact-partner-panel p span { margin-top: 4px; color: #7288a5; font-size: .5rem; }

.trust-strip {
  position: relative;
  z-index: 5;
  background: rgba(8, 25, 50, .92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  min-height: 86px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  position: relative;
  color: #b7c5d8;
  font-size: .77rem;
  font-weight: 780;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px 1px 0;
  background: var(--cyan);
  border-radius: 50%;
  content: "";
}

/* Problem */
.problem {
  background:
    radial-gradient(circle at 12% 45%, rgba(19, 200, 255, .08), transparent 28%),
    #030b19;
}

.problem-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .9fr 1.1fr;
  gap: 85px;
}

.section-intro {
  position: sticky;
  top: 135px;
}

.section-intro h2 {
  max-width: 590px;
}

.section-intro p,
.center-heading p,
.ecosystem-heading p,
.audience-copy > p,
.manifesto-copy > p,
.faq-heading > p,
.users-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.section-intro p {
  max-width: 520px;
}

.problem-cards {
  display: grid;
  gap: 16px;
}

.insight-card {
  position: relative;
  min-height: 185px;
  padding: 33px 36px 30px 115px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 37, 70, .78), rgba(6, 19, 39, .88));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .25s ease, transform .25s ease;
}

.insight-card:hover {
  border-color: rgba(19, 200, 255, .3);
  transform: translateX(5px);
}

.insight-card > span {
  position: absolute;
  top: 30px;
  left: 31px;
  color: var(--cyan);
  font-size: 1.7rem;
  font-weight: 900;
}

.insight-card > span::after {
  position: absolute;
  top: 44px;
  left: 5px;
  width: 32px;
  height: 1px;
  background: rgba(19, 200, 255, .4);
  content: "";
}

.insight-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.insight-card p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}

/* Journey */
.how {
  overflow: hidden;
  background: #07152b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how::before {
  position: absolute;
  top: -260px;
  left: 50%;
  width: 800px;
  height: 500px;
  background: rgba(19, 200, 255, .1);
  border-radius: 50%;
  content: "";
  filter: blur(120px);
  transform: translateX(-50%);
}

.center-heading {
  position: relative;
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.center-heading p {
  max-width: 680px;
  margin-inline: auto;
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.journey::before {
  position: absolute;
  z-index: 0;
  top: 43px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 200, 255, .5), transparent);
  content: "";
}

.journey-step {
  position: relative;
  z-index: 1;
  min-height: 355px;
  padding: 25px;
  background: rgba(5, 17, 36, .72);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.step-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 32px;
  color: #05101e;
  background: var(--cyan);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px #07152b;
}

.journey-art {
  position: relative;
  height: 110px;
  margin-bottom: 22px;
}

.journey-step h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.wifi-art i {
  position: absolute;
  bottom: 12px;
  left: 50%;
  border: 3px solid var(--cyan);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50% 0 0 0;
  transform: translateX(-50%) rotate(45deg);
}

.wifi-art i:nth-child(1) { width: 82px; height: 82px; opacity: .25; }
.wifi-art i:nth-child(2) { width: 56px; height: 56px; opacity: .55; }
.wifi-art i:nth-child(3) { width: 28px; height: 28px; opacity: 1; }

.card-art {
  display: grid;
  place-items: center;
}

.card-art i {
  position: absolute;
  width: 80px;
  height: 92px;
  background: linear-gradient(145deg, #17426d, #0c2548);
  border: 1px solid rgba(109, 231, 255, .24);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .25);
}

.card-art i:nth-child(1) { transform: translateX(-28px) rotate(-10deg); opacity: .5; }
.card-art i:nth-child(2) { transform: translateX(28px) rotate(10deg); opacity: .5; }
.card-art i:nth-child(3) { background: linear-gradient(145deg, var(--blue), var(--cyan)); }

.connect-art {
  display: grid;
  place-items: center;
}

.connect-art i {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--cyan-2);
  background: rgba(19, 200, 255, .09);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  font-size: 2.2rem;
  font-style: normal;
  box-shadow: 0 0 0 12px rgba(19, 200, 255, .05);
}

.chart-art {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 9px;
  padding-bottom: 12px;
}

.chart-art i {
  width: 17px;
  background: linear-gradient(180deg, var(--cyan-2), var(--blue));
  border-radius: 6px 6px 2px 2px;
}

.chart-art i:nth-child(1) { height: 30px; opacity: .45; }
.chart-art i:nth-child(2) { height: 56px; opacity: .65; }
.chart-art i:nth-child(3) { height: 42px; opacity: .8; }
.chart-art i:nth-child(4) { height: 82px; }

/* Product tour */
.product-tour {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(20, 119, 255, .13), transparent 29%),
    radial-gradient(circle at 15% 78%, rgba(19, 200, 255, .08), transparent 26%),
    #020915;
  border-bottom: 1px solid var(--line);
}

.product-tour-heading {
  display: grid;
  align-items: end;
  margin-bottom: 50px;
  grid-template-columns: 1.13fr .87fr;
  gap: 70px;
}

.product-tour-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.product-tour-intro > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.demo-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #91a3bd;
  font-size: .71rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.demo-disclaimer i {
  width: 7px;
  height: 7px;
  background: #ffc857;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 200, 87, .08);
}

.tour-tabs {
  display: grid;
  margin-bottom: 15px;
  padding: 7px;
  background: rgba(8, 24, 48, .82);
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.tour-tabs button {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #93a6c0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: .79rem;
  font-weight: 780;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.tour-tabs button span {
  color: #5f7898;
  font-size: .65rem;
}

.tour-tabs button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .035);
}

.tour-tabs button.active {
  color: #041322;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 12px 28px rgba(19, 200, 255, .15);
}

.tour-tabs button.active span {
  color: #075176;
}

.demo-window {
  overflow: hidden;
  background: #030b1d;
  border: 1px solid rgba(109, 231, 255, .18);
  border-radius: 26px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .5), 0 0 0 7px rgba(255, 255, 255, .018);
}

.demo-browserbar {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 0 20px;
  background: #0a172c;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 1fr 140px;
  gap: 17px;
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots i {
  width: 10px;
  height: 10px;
  background: #ff6b6b;
  border-radius: 50%;
}

.browser-dots i:nth-child(2) { background: #ffc857; }
.browser-dots i:nth-child(3) { background: #32d583; }

.demo-address {
  max-width: 520px;
  padding: 8px 15px;
  color: #8295b0;
  background: #050d1d;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
  font-size: .69rem;
  text-align: center;
  justify-self: center;
  width: 100%;
}

.demo-address span {
  margin-right: 6px;
  color: var(--cyan);
}

.demo-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: #8ba0bb;
  font-size: .65rem;
  font-weight: 750;
  text-transform: uppercase;
}

.demo-status i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(50, 213, 131, .08);
}

.demo-app {
  display: grid;
  min-height: 690px;
  grid-template-columns: 195px minmax(0, 1fr);
}

.demo-sidebar {
  display: flex;
  padding: 21px 14px;
  background: #061126;
  border-right: 1px solid var(--line);
  flex-direction: column;
}

.demo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 7px 25px;
}

.demo-brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 10px;
}

.demo-brand strong,
.demo-brand span {
  display: block;
}

.demo-brand strong {
  font-size: .79rem;
  letter-spacing: .11em;
}

.demo-brand span {
  color: #657b98;
  font-size: .58rem;
}

.demo-sidebar > button {
  display: grid;
  min-height: 43px;
  align-items: center;
  padding: 0 11px;
  color: #879bb7;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  text-align: left;
  grid-template-columns: 24px 1fr;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.demo-sidebar > button i {
  color: #5c7698;
  font-size: .9rem;
  font-style: normal;
}

.demo-sidebar > button:hover,
.demo-sidebar > button.active {
  color: #eaf7ff;
  background: rgba(19, 200, 255, .07);
  border-color: rgba(19, 200, 255, .12);
}

.demo-sidebar > button.active i {
  color: var(--cyan);
}

.sidebar-help {
  margin-top: auto;
  padding: 15px;
  background: linear-gradient(145deg, rgba(19, 200, 255, .09), rgba(20, 119, 255, .05));
  border: 1px solid rgba(19, 200, 255, .12);
  border-radius: 12px;
}

.sidebar-help span,
.sidebar-help strong {
  display: block;
}

.sidebar-help span {
  margin-bottom: 3px;
  color: #7287a4;
  font-size: .57rem;
}

.sidebar-help strong {
  color: var(--cyan-2);
  font-size: .66rem;
}

.demo-content {
  min-width: 0;
  padding: 30px;
  background:
    radial-gradient(circle at 90% 4%, rgba(20, 119, 255, .06), transparent 22%),
    #030b1c;
}

.tour-panel {
  min-height: 630px;
}

.demo-title-row {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.demo-title-row > div:first-child > span {
  color: var(--cyan);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.demo-title-row h3 {
  margin: 3px 0 0;
  font-size: 1.35rem;
}

.demo-filters {
  display: flex;
  gap: 8px;
}

.demo-filters button,
.card-heading button,
.contact-search button,
.contact-row button,
.points-list-card button {
  min-height: 34px;
  padding: 0 12px;
  color: #a9bbd2;
  background: #061126;
  border: 1px solid #1a3151;
  border-radius: 8px;
  cursor: default;
  font-size: .64rem;
  font-weight: 700;
}

.demo-filters button.accent {
  color: #031220;
  background: var(--cyan);
  border-color: var(--cyan);
}

.demo-metrics {
  display: grid;
  margin-bottom: 14px;
  gap: 10px;
}

.demo-metrics.four {
  grid-template-columns: repeat(4, 1fr);
}

.demo-metrics article {
  min-height: 94px;
  padding: 17px;
  background: linear-gradient(145deg, #081932, #061126);
  border: 1px solid #152b49;
  border-radius: 13px;
}

.demo-metrics article > span,
.demo-metrics article > strong,
.demo-metrics article > small {
  display: block;
}

.demo-metrics article > span {
  color: #7d91ae;
  font-size: .62rem;
  font-weight: 700;
}

.demo-metrics article > strong {
  margin: 5px 0 3px;
  color: #e9f7ff;
  font-size: 1.47rem;
  line-height: 1;
}

.demo-metrics article > strong em {
  color: #768ba8;
  font-size: .7rem;
  font-style: normal;
}

.demo-metrics article > small {
  color: #667b98;
  font-size: .55rem;
}

.demo-metrics article > small.up {
  color: #64dfa4;
}

.demo-metrics .stars-mini {
  color: #ffd76a;
  letter-spacing: .08em;
}

.demo-card {
  background: linear-gradient(145deg, #081932, #061126);
  border: 1px solid #152b49;
  border-radius: 13px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr auto;
  gap: 11px;
}

.chart-card {
  min-height: 330px;
  padding: 18px;
  grid-row: 1 / 3;
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  gap: 14px;
}

.card-heading span,
.card-heading strong {
  display: block;
}

.card-heading span {
  color: #6f84a1;
  font-size: .58rem;
}

.card-heading strong {
  margin-top: 2px;
  font-size: .78rem;
}

.card-heading > small {
  padding: 6px 9px;
  color: #7590b1;
  background: rgba(255, 255, 255, .025);
  border: 1px solid #152b49;
  border-radius: 7px;
  font-size: .56rem;
}

.bar-chart {
  display: flex;
  height: 225px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 25px 7px 12px;
  background:
    linear-gradient(rgba(89, 121, 159, .08) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(89, 121, 159, .04) 1px, transparent 1px) 0 0 / 12.5% 100%;
  border-bottom: 1px solid #1a3151;
  gap: 5px;
}

.bar-chart i {
  width: 18px;
  height: var(--h);
  min-height: 8px;
  background: linear-gradient(180deg, var(--cyan), #0879d6);
  border-radius: 4px 4px 1px 1px;
  box-shadow: 0 0 13px rgba(19, 200, 255, .13);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #536987;
  font-size: .52rem;
}

.profile-card,
.activity-card {
  padding: 17px;
}

.profile-split {
  margin-bottom: 12px;
}

.profile-split > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  color: #91a5bf;
  font-size: .59rem;
}

.profile-split > span b {
  color: #d9eaff;
}

.profile-split > i {
  display: block;
  height: 6px;
  overflow: hidden;
  background: #102440;
  border-radius: 99px;
}

.profile-split > i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #10cfa3, var(--cyan));
  border-radius: inherit;
}

.age-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.age-pills span {
  padding: 8px;
  color: #6f84a0;
  background: #07152b;
  border: 1px solid #142b49;
  border-radius: 8px;
  font-size: .52rem;
  text-align: center;
}

.age-pills b {
  display: block;
  margin-top: 3px;
  color: #d8e9fb;
  font-size: .65rem;
}

.activity-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-card li {
  display: grid;
  align-items: center;
  padding: 7px 0;
  color: #8ea2bc;
  border-bottom: 1px solid rgba(255, 255, 255, .045);
  font-size: .55rem;
  grid-template-columns: 13px 1fr auto;
  gap: 7px;
}

.activity-card li:last-child {
  border-bottom: 0;
}

.activity-card li b {
  color: #d9ebff;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot.cyan { background: var(--cyan); }
.dot.green { background: var(--green); }
.dot.violet { background: #9f7aea; }
.dot.amber { background: #ffc857; }

.survey-grid {
  display: grid;
  grid-template-columns: 1.17fr .83fr;
  gap: 11px;
}

.survey-questions,
.comments-card {
  min-height: 393px;
  padding: 18px;
}

.question-row {
  position: relative;
  display: grid;
  align-items: center;
  padding: 14px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.question-row:last-child {
  border-bottom: 0;
}

.question-row span,
.question-row small {
  display: block;
}

.question-row span {
  color: #dbe9f8;
  font-size: .64rem;
  font-weight: 700;
}

.question-row small {
  margin-top: 2px;
  color: #617691;
  font-size: .52rem;
}

.question-row > strong {
  color: var(--cyan-2);
  font-size: .69rem;
}

.question-row > i {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 4px;
  overflow: hidden;
  background: #102440;
  border-radius: 99px;
}

.question-row > i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #06c8d9, var(--cyan));
  border-radius: inherit;
}

.comments-card blockquote {
  margin: 0 0 10px;
  padding: 13px;
  color: #c5d5e7;
  background: #07152b;
  border: 1px solid #142b49;
  border-left: 2px solid var(--cyan);
  border-radius: 8px;
  font-size: .61rem;
  line-height: 1.5;
}

.comments-card blockquote span {
  display: block;
  margin-top: 7px;
  color: #607590;
  font-size: .49rem;
}

.theme-tags {
  display: flex;
  margin-top: 13px;
  gap: 6px;
  flex-wrap: wrap;
}

.theme-tags span {
  padding: 7px 9px;
  color: #8ba3c0;
  background: rgba(19, 200, 255, .045);
  border: 1px solid rgba(19, 200, 255, .11);
  border-radius: 999px;
  font-size: .52rem;
}

.theme-tags b {
  margin-left: 4px;
  color: var(--cyan-2);
}

.contact-search {
  display: grid;
  min-height: 46px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 9px 0 15px;
  background: #061126;
  border: 1px solid #152b49;
  border-radius: 11px;
  grid-template-columns: 22px 1fr auto;
  gap: 6px;
}

.contact-search > span {
  color: var(--cyan);
}

.contact-search p {
  margin: 0;
  color: #627792;
  font-size: .61rem;
}

.contacts-table-wrap {
  overflow-x: auto;
  background: #061126;
  border: 1px solid #152b49;
  border-radius: 12px;
}

.contact-table-head,
.contact-row {
  display: grid;
  min-width: 950px;
  align-items: center;
  padding: 0 14px;
  grid-template-columns: 2.05fr 1fr .85fr .85fr .45fr .9fr .55fr;
  gap: 10px;
}

.contact-table-head {
  min-height: 36px;
  color: #637995;
  background: #09172d;
  font-size: .52rem;
  font-weight: 750;
}

.contact-row {
  min-height: 78px;
  color: #9fb1c8;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: .55rem;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-person > b {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  color: #032033;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  border-radius: 9px;
  font-size: .59rem;
}

.contact-person strong,
.contact-person small {
  display: block;
}

.contact-person strong {
  color: #edf8ff;
  font-size: .6rem;
}

.contact-person small {
  margin-top: 3px;
  color: #5e7390;
  font-size: .48rem;
}

.contact-row > strong {
  color: var(--cyan-2);
}

.contact-row button {
  color: var(--cyan-2);
  border-color: rgba(19, 200, 255, .27);
}

.demo-privacy {
  margin: 10px 0 0;
  color: #586d88;
  font-size: .52rem;
}

.campaign-builder {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 12px;
}

.campaign-settings {
  display: grid;
  gap: 10px;
}

.setting-card {
  display: grid;
  min-height: 78px;
  align-items: center;
  padding: 15px;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
}

.setting-number {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #021321;
  background: var(--cyan);
  border-radius: 9px;
  font-size: .59rem;
  font-weight: 900;
}

.setting-card strong,
.setting-card p {
  margin: 0;
}

.setting-card strong {
  display: block;
  font-size: .68rem;
}

.setting-card p {
  margin-top: 3px;
  color: #7489a5;
  font-size: .56rem;
}

.setting-card > b {
  color: var(--cyan-2);
  font-size: .55rem;
}

.target-card {
  padding: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.field-grid label {
  color: #667c99;
  font-size: .5rem;
}

.field-grid label span {
  display: flex;
  min-height: 34px;
  align-items: center;
  margin-top: 4px;
  padding: 0 10px;
  color: #c4d4e6;
  background: #050e20;
  border: 1px solid #183150;
  border-radius: 8px;
  font-size: .56rem;
}

.selected-points {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.selected-points span {
  padding: 7px 9px;
  color: #a8bbd1;
  background: rgba(19, 200, 255, .045);
  border: 1px solid rgba(19, 200, 255, .13);
  border-radius: 999px;
  font-size: .51rem;
}

.selected-points b {
  margin-left: 6px;
  color: var(--cyan);
}

.campaign-preview-card {
  padding: 18px;
  background: linear-gradient(145deg, #081932, #061126);
  border: 1px solid #152b49;
  border-radius: 13px;
}

.preview-phone-small {
  display: flex;
  min-height: 282px;
  padding: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(109, 231, 255, .25), transparent 29%),
    linear-gradient(145deg, #154b7d, #06162e);
  border: 6px solid #111e34;
  border-radius: 25px;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .33);
}

.preview-phone-small span {
  color: var(--cyan-2);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.preview-phone-small strong {
  display: block;
  margin: 9px 0 17px;
  font-size: 1.18rem;
  line-height: 1.16;
}

.preview-phone-small button {
  min-height: 36px;
  color: #031321;
  background: var(--cyan-2);
  border: 0;
  border-radius: 8px;
  font-size: .58rem;
  font-weight: 850;
}

.campaign-forecast {
  margin-top: 13px;
  padding: 13px;
  background: #07152b;
  border: 1px solid #152b49;
  border-radius: 9px;
}

.campaign-forecast > span,
.campaign-forecast > strong {
  display: block;
}

.campaign-forecast > span {
  color: #667c98;
  font-size: .51rem;
}

.campaign-forecast > strong {
  margin: 4px 0 11px;
  color: #7beab0;
  font-size: 1rem;
}

.campaign-forecast > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.campaign-forecast p {
  margin: 0;
  color: #667b97;
  font-size: .47rem;
}

.campaign-forecast p b {
  display: block;
  margin-top: 2px;
  color: #cbd9e9;
  font-size: .57rem;
}

.campaign-preview-card > small {
  display: block;
  margin-top: 8px;
  color: #536982;
  font-size: .47rem;
  line-height: 1.45;
}

.points-showcase-grid {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 11px;
}

.points-list-card,
.partner-result-card {
  min-height: 390px;
  padding: 17px;
}

.points-list-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.points-list-card li {
  display: grid;
  min-height: 68px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .05);
  grid-template-columns: 15px 1fr auto auto;
  gap: 9px;
}

.point-status {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(50, 213, 131, .07);
}

.points-list-card li strong,
.points-list-card li span {
  display: block;
}

.points-list-card li strong {
  font-size: .61rem;
}

.points-list-card li span {
  margin-top: 2px;
  color: #647a96;
  font-size: .5rem;
}

.points-list-card li > b {
  color: #65dfa4;
  font-size: .52rem;
}

.points-list-card li > button {
  min-height: 28px;
  color: var(--cyan-2);
  border-color: rgba(19, 200, 255, .18);
}

.partner-result-card > span {
  color: var(--cyan);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.partner-result-card h4 {
  margin: 4px 0 16px;
  font-size: 1rem;
}

.partner-earning {
  padding: 20px;
  background: rgba(50, 213, 131, .06);
  border: 1px solid rgba(50, 213, 131, .16);
  border-radius: 11px;
  text-align: center;
}

.partner-earning small,
.partner-earning strong,
.partner-earning span {
  display: block;
}

.partner-earning small {
  color: #78a18f;
  font-size: .51rem;
}

.partner-earning strong {
  margin: 5px 0 2px;
  color: #67e5a6;
  font-size: 1.55rem;
}

.partner-earning span {
  color: #557467;
  font-size: .45rem;
}

.partner-kpis {
  display: grid;
  margin-top: 10px;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.partner-kpis p {
  margin: 0;
  padding: 10px 6px;
  background: #07152b;
  border: 1px solid #152b49;
  border-radius: 8px;
  text-align: center;
}

.partner-kpis span,
.partner-kpis b {
  display: block;
}

.partner-kpis span {
  color: #607691;
  font-size: .43rem;
}

.partner-kpis b {
  margin-top: 4px;
  color: #d8e9f9;
  font-size: .67rem;
}

.partner-copy {
  margin: 15px 0 0;
  color: #758aa6;
  font-size: .57rem;
  line-height: 1.6;
}

/* Story ad experience */
.story-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(19, 200, 255, .13), transparent 24%),
    radial-gradient(circle at 14% 15%, rgba(20, 119, 255, .1), transparent 27%),
    #050d1d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-showcase-grid {
  display: grid;
  min-height: 790px;
  align-items: center;
  grid-template-columns: .93fr 1.07fr;
  gap: 95px;
}

.story-showcase-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.story-showcase-copy > p {
  max-width: 610px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.story-flow {
  display: grid;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
  gap: 4px;
}

.story-flow li {
  display: grid;
  min-height: 83px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 13px;
}

.story-flow li > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 800;
}

.story-flow strong,
.story-flow p {
  display: block;
}

.story-flow strong {
  margin-bottom: 4px;
  font-size: .91rem;
}

.story-flow p {
  margin: 0;
  color: #8497b2;
  font-size: .78rem;
  line-height: 1.55;
}

.story-note {
  display: flex;
  max-width: 580px;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 21px;
  color: #7488a5;
  font-size: .68rem;
  line-height: 1.55;
}

.story-note i {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  background: #ffc857;
  border-radius: 50%;
  flex: 0 0 auto;
}

.story-stage {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
}

.story-stage::before,
.story-stage::after {
  position: absolute;
  content: '';
  border: 1px solid rgba(19, 200, 255, .11);
  border-radius: 50%;
}

.story-stage::before {
  width: 625px;
  height: 625px;
}

.story-stage::after {
  width: 490px;
  height: 490px;
  border-style: dashed;
  animation: story-orbit 40s linear infinite;
}

.story-stage-label {
  position: absolute;
  z-index: 4;
  top: 32px;
  left: 50%;
  padding: 7px 12px;
  color: #82a0c0;
  background: #07162d;
  border: 1px solid #163454;
  border-radius: 999px;
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.story-phone {
  position: relative;
  z-index: 3;
  width: 316px;
  height: 660px;
  overflow: hidden;
  padding: 15px 12px 13px;
  background: #02060f;
  border: 8px solid #101b2d;
  border-radius: 43px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .58), 0 0 0 1px #31445f, 0 0 70px rgba(19, 200, 255, .12);
}

.story-phone-notch {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 50%;
  width: 105px;
  height: 22px;
  background: #101b2d;
  border-radius: 0 0 15px 15px;
  transform: translateX(-50%);
}

.story-progress {
  position: relative;
  z-index: 8;
  display: grid;
  margin-top: 8px;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.story-progress > span {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
  border-radius: 999px;
}

.story-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: inherit;
}

.story-topline {
  position: relative;
  z-index: 8;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 3px;
}

.story-topline > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-topline img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
}

.story-topline strong,
.story-topline small {
  display: block;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .7);
}

.story-topline strong {
  font-size: .65rem;
}

.story-topline small {
  margin-top: 1px;
  color: rgba(255, 255, 255, .68);
  font-size: .48rem;
}

.story-topline > b {
  min-width: 28px;
  padding: 5px 7px;
  color: #fff;
  background: rgba(0, 0, 0, .48);
  border-radius: 999px;
  font-size: .58rem;
  text-align: center;
}

.story-release {
  position: absolute;
  z-index: 8;
  top: 81px;
  left: 50%;
  padding: 6px 10px;
  color: rgba(255, 255, 255, .88);
  background: rgba(3, 10, 20, .64);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: .52rem;
  white-space: nowrap;
  transform: translateX(-50%);
}

.story-slides {
  position: absolute;
  inset: 0;
}

.story-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  background: center / cover no-repeat url('assets/images/hero-cafe.webp');
  transform: scale(1.035);
  transition: opacity .45s ease, transform 2.8s ease;
}

.story-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-two { background-position: 61% center; }
.slide-three { background-position: 77% center; }

.story-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 16, .62) 0%, rgba(2, 7, 16, .05) 32%, rgba(2, 7, 16, .12) 53%, rgba(2, 7, 16, .92) 100%),
    linear-gradient(135deg, rgba(0, 124, 181, .24), transparent 50%);
}

.slide-two .story-shade {
  background: linear-gradient(180deg, rgba(3, 10, 22, .68), rgba(2, 9, 19, .1) 37%, rgba(3, 10, 22, .9));
}

.slide-three .story-shade {
  background: linear-gradient(180deg, rgba(2, 8, 18, .7), rgba(0, 127, 183, .18) 45%, rgba(2, 8, 18, .94));
}

.story-creative {
  position: absolute;
  z-index: 3;
  right: 25px;
  left: 25px;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .75);
}

.story-creative small,
.story-creative strong,
.story-creative span {
  display: block;
}

.story-creative small {
  margin-bottom: 12px;
  color: #bcefff;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-creative strong {
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: .97;
}

.story-creative strong em {
  color: var(--cyan);
  font-style: normal;
}

.story-creative span {
  margin-top: 13px;
  color: rgba(255, 255, 255, .78);
  font-size: .7rem;
}

.story-creative-top { top: 145px; }
.story-creative-center { top: 225px; }
.story-creative-price { top: 225px; }

.story-creative-price strong {
  color: #fff;
  font-size: 4.35rem;
}

.story-creative-price strong sup {
  color: var(--cyan);
  font-size: 1.1rem;
  vertical-align: top;
}

.story-creative-price strong em {
  color: #fff;
  font-size: 1.75rem;
}

.story-connect {
  position: absolute;
  z-index: 8;
  right: 14px;
  bottom: 15px;
  left: 14px;
  min-height: 47px;
  color: #7f93ad;
  background: rgba(5, 16, 33, .92);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .02em;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.story-connect.ready {
  color: #02131d;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 30px rgba(50, 213, 131, .25);
}

.story-replay {
  position: absolute;
  z-index: 4;
  bottom: 12px;
  left: 50%;
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: #a7bad2;
  background: #07162d;
  border: 1px solid #193755;
  border-radius: 999px;
  cursor: pointer;
  font-size: .64rem;
  font-weight: 750;
  transform: translateX(-50%);
}

.story-replay span {
  margin-right: 7px;
  color: var(--cyan);
  font-size: 1rem;
}

.story-callout {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  color: #8fa7c4;
  background: rgba(5, 17, 37, .88);
  border: 1px solid rgba(109, 231, 255, .16);
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .26);
  font-size: .61rem;
  font-weight: 750;
}

.callout-a { top: 175px; left: -8px; }
.callout-b { top: 326px; right: -10px; }
.callout-c { right: 5px; bottom: 152px; }

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

/* Audience sections */
.audience-section {
  overflow: hidden;
}

.audience-section::before {
  position: absolute;
  width: 460px;
  height: 460px;
  background: rgba(19, 200, 255, .07);
  border-radius: 50%;
  content: "";
  filter: blur(110px);
}

.audience-section:nth-of-type(even)::before { right: -150px; bottom: 5%; }
.audience-section:nth-of-type(odd)::before { top: 5%; left: -150px; }

.companies,
.free {
  background: #030b19;
}

.advertisers,
.providers {
  background: #061329;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr .98fr;
  gap: 82px;
}

.audience-grid.reverse .audience-image {
  order: 2;
}

.audience-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.audience-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 9, 20, .5), transparent 45%);
  content: "";
  pointer-events: none;
}

.audience-image > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.companies .audience-image > img { object-position: 46% center; }
.advertisers .audience-image > img { object-position: center; }
.free .audience-image > img { object-position: 40% center; }
.providers .audience-image > img { object-position: center; }

.audience-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 3.7vw, 3.7rem);
}

.audience-copy > p {
  margin-bottom: 30px;
}

.feature-list {
  display: grid;
  margin: 0 0 29px;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.feature-list li {
  display: grid;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 29px 1fr;
  gap: 12px;
}

.feature-list li > i,
.privacy-note > i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #03101e;
  background: var(--cyan);
  border-radius: 50%;
  font-size: .75rem;
  font-style: normal;
  font-weight: 900;
}

.feature-list span {
  color: var(--muted);
  font-size: .9rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1rem;
}

.trial-box {
  margin: 27px 0 25px;
  padding: 19px 21px;
  background: rgba(50, 213, 131, .07);
  border: 1px solid rgba(50, 213, 131, .22);
  border-radius: 15px;
}

.trial-box strong {
  color: #7beab0;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trial-box p {
  margin: 7px 0 0;
  color: #afc7bd;
  font-size: .85rem;
}

.image-badge,
.campaign-card,
.wifi-sign,
.provider-stack {
  position: absolute;
  z-index: 2;
  background: rgba(4, 16, 35, .9);
  border: 1px solid rgba(109, 231, 255, .24);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .38);
  backdrop-filter: blur(16px);
}

.image-badge {
  right: 22px;
  bottom: 22px;
  width: 210px;
  padding: 19px;
  border-radius: 17px;
}

.image-badge span,
.image-badge strong,
.image-badge small {
  display: block;
}

.image-badge span {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.image-badge strong {
  margin: 5px 0 2px;
  font-size: 2rem;
  line-height: 1;
}

.image-badge small {
  display: inline;
  color: var(--muted);
  font-size: .85rem;
}

.stars {
  color: #ffd76a;
  font-size: .88rem;
  letter-spacing: .12em;
}

.mini-features {
  display: grid;
  margin: 31px 0 29px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-features article {
  min-height: 125px;
  padding: 20px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.mini-features strong,
.mini-features span {
  display: block;
}

.mini-features strong {
  margin-bottom: 8px;
  color: var(--cyan-2);
  font-size: .98rem;
}

.mini-features span {
  color: var(--muted);
  font-size: .82rem;
}

.campaign-card {
  bottom: 24px;
  left: 24px;
  width: 235px;
  padding: 20px;
  border-radius: 17px;
}

.campaign-card > span {
  color: var(--cyan-2);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.campaign-card > strong {
  display: block;
  margin: 9px 0 15px;
  font-size: 1.12rem;
  line-height: 1.16;
}

.campaign-card > div {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 31px;
}

.campaign-card i {
  width: 16px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 4px 4px 0 0;
}

.campaign-card i:nth-child(1) { height: 12px; }
.campaign-card i:nth-child(2) { height: 21px; }
.campaign-card i:nth-child(3) { height: 17px; }
.campaign-card i:nth-child(4) { height: 30px; }

.clean-list {
  display: grid;
  margin: 29px 0 30px;
  padding: 0;
  list-style: none;
  gap: 0;
}

.clean-list li {
  display: grid;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 43px 1fr;
  gap: 12px;
}

.clean-list > li > span {
  color: var(--cyan);
  font-size: .83rem;
  font-weight: 850;
}

.clean-list strong {
  display: block;
  margin-bottom: 3px;
}

.clean-list p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.wifi-sign {
  bottom: 22px;
  left: 22px;
  width: 200px;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
}

.wifi-sign strong,
.wifi-sign span {
  display: block;
}

.wifi-sign strong {
  margin-top: 11px;
  font-size: .8rem;
  letter-spacing: .06em;
}

.wifi-sign span {
  color: var(--muted);
  font-size: .7rem;
}

.wifi-symbol {
  position: relative;
  width: 65px;
  height: 45px;
  margin: auto;
}

.wifi-symbol i {
  position: absolute;
  bottom: 0;
  left: 50%;
  border: 3px solid var(--cyan);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50% 0 0 0;
  transform: translateX(-50%) rotate(45deg);
}

.wifi-symbol i:nth-child(1) { width: 54px; height: 54px; opacity: .45; }
.wifi-symbol i:nth-child(2) { width: 38px; height: 38px; opacity: .7; }
.wifi-symbol i:nth-child(3) { width: 22px; height: 22px; }
.wifi-symbol b { position: absolute; bottom: -5px; left: calc(50% - 4px); width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; }

.provider-products {
  display: grid;
  margin: 29px 0 30px;
  gap: 10px;
}

.provider-products article {
  display: grid;
  align-items: center;
  padding: 17px 19px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 15px;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.provider-products article > span {
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 900;
}

.provider-products strong {
  display: block;
  margin-bottom: 2px;
}

.provider-products p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.provider-stack {
  right: 22px;
  bottom: 22px;
  width: 250px;
  padding: 18px;
  border-radius: 17px;
}

.provider-stack > span {
  display: block;
  margin-bottom: 11px;
  color: var(--cyan-2);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.provider-stack > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: .76rem;
}

.provider-stack i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(50, 213, 131, .09);
}

/* Ecosystem */
.ecosystem {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(19, 200, 255, .11), transparent 28%),
    #07152b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ecosystem-heading {
  display: grid;
  align-items: end;
  margin-bottom: 70px;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
}

.ecosystem-heading h2 {
  margin-bottom: 0;
}

.ecosystem-heading p {
  margin-bottom: 8px;
}

.network-visual {
  position: relative;
  min-height: 540px;
}

.network-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(19, 200, 255, .13);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.network-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px dashed rgba(19, 200, 255, .09);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.network-lines {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.network-lines::before,
.network-lines::after {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 200, 255, .36), transparent);
  content: "";
}

.network-lines::after {
  transform: rotate(58deg);
}

.network-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 225px;
  height: 225px;
  place-content: center;
  background: linear-gradient(145deg, rgba(16, 48, 85, .97), rgba(4, 16, 34, .97));
  border: 1px solid rgba(109, 231, 255, .32);
  border-radius: 50%;
  box-shadow: 0 0 0 17px rgba(19, 200, 255, .035), 0 35px 80px rgba(0, 0, 0, .4);
  text-align: center;
  transform: translate(-50%, -50%);
}

.network-core img {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  object-fit: cover;
  border-radius: 17px;
}

.network-core span {
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}

.network-node {
  position: absolute;
  z-index: 4;
  display: block;
  width: 215px;
  padding: 20px;
  background: rgba(7, 23, 47, .91);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, transform .2s ease;
}

.network-node:hover {
  border-color: rgba(19, 200, 255, .4);
  transform: translateY(-4px);
}

.network-node > span {
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 900;
}

.network-node strong,
.network-node small {
  display: block;
}

.network-node strong {
  margin: 7px 0 3px;
  font-size: 1rem;
}

.network-node small {
  color: var(--muted);
  font-size: .72rem;
}

.node-1 { top: 5%; left: 5%; }
.node-2 { top: 1%; right: 5%; }
.node-3 { bottom: 4%; left: 1%; }
.node-4 { right: 1%; bottom: 4%; }
.node-5 { bottom: -1%; left: 50%; transform: translateX(-50%); }
.node-5:hover { transform: translateX(-50%) translateY(-4px); }

/* Users */
.users {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 55%, rgba(19, 200, 255, .12), transparent 30%),
    #030b19;
}

.users-grid {
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.users-copy h2 {
  max-width: 600px;
}

.users-copy > p {
  max-width: 550px;
}

.privacy-note {
  display: grid;
  max-width: 540px;
  margin-top: 30px;
  padding: 19px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 15px;
  grid-template-columns: 27px 1fr;
  gap: 13px;
}

.privacy-note p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.privacy-note strong {
  color: #fff;
}

.phone-scene {
  position: relative;
  display: grid;
  min-height: 630px;
  place-items: center;
}

.phone-scene::before,
.phone-scene::after {
  position: absolute;
  border: 1px solid rgba(19, 200, 255, .11);
  border-radius: 50%;
  content: "";
}

.phone-scene::before { width: 520px; height: 520px; }
.phone-scene::after { width: 390px; height: 390px; }

.phone {
  position: relative;
  z-index: 3;
  width: 300px;
  min-height: 585px;
  padding: 45px 22px 24px;
  background:
    radial-gradient(circle at 50% 15%, rgba(19, 200, 255, .12), transparent 23%),
    #07172f;
  border: 8px solid #12213a;
  border-radius: 45px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .13);
  text-align: center;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 76px;
  height: 19px;
  background: #020712;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-logo img {
  width: 64px;
  height: 64px;
  margin: 13px auto 18px;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.phone > span {
  color: var(--muted);
  font-size: .68rem;
}

.phone h3 {
  margin: 6px 0 22px;
  font-size: 1rem;
  letter-spacing: .08em;
}

.phone-offer {
  min-height: 220px;
  padding: 22px;
  background:
    radial-gradient(circle at 85% 12%, rgba(109, 231, 255, .33), transparent 32%),
    linear-gradient(145deg, #174b7c, #081c38);
  border: 1px solid rgba(109, 231, 255, .18);
  border-radius: 22px;
  text-align: left;
}

.phone-offer small {
  color: var(--cyan-2);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.phone-offer strong {
  display: block;
  margin-top: 75px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.phone button {
  margin-top: 18px;
}

.phone > p {
  margin: 11px 0 0;
  color: #667b98;
  font-size: .55rem;
}

.orbit {
  position: absolute;
  z-index: 4;
  padding: 13px 16px;
  color: #dceeff;
  background: rgba(10, 29, 57, .91);
  border: 1px solid rgba(109, 231, 255, .2);
  border-radius: 13px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
  font-size: .72rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.orbit::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--cyan);
  border-radius: 50%;
  content: "";
}

.orbit-a { top: 18%; left: 1%; }
.orbit-b { top: 48%; right: 0; }
.orbit-c { bottom: 12%; left: 7%; }

/* Use cases */
.use-cases {
  background: #07152b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-carousel {
  --cards-visible: 3;
  overflow: hidden;
}

.case-viewport {
  overflow: hidden;
}

.cases-track {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / var(--cards-visible));
  grid-auto-flow: column;
  gap: 16px;
  transition: transform .55s cubic-bezier(.2, .75, .25, 1);
}

.case-card {
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(16, 39, 72, .9), rgba(6, 20, 42, .9));
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: border-color .2s ease, transform .2s ease;
}

.case-card:hover {
  border-color: rgba(19, 200, 255, .35);
  transform: translateY(-5px);
}

.case-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.case-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 18, 38, .95));
  content: '';
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.04);
}

.case-image > span {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 20px;
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  background: rgba(5, 22, 46, .9);
  border: 1px solid rgba(19, 200, 255, .28);
  border-radius: 14px;
  font-size: 1.35rem;
  backdrop-filter: blur(10px);
}

.case-card-body {
  padding: 23px 25px 27px;
}

.case-card-body > small {
  display: block;
  margin-bottom: 9px;
  color: var(--cyan-2);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-card h3 {
  margin-bottom: 9px;
  font-size: 1.28rem;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.65;
}

.case-carousel-footer {
  display: grid;
  align-items: center;
  margin-top: 25px;
  grid-template-columns: 1fr auto;
  gap: 22px;
}

.case-carousel-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border-radius: 99px;
}

.case-carousel-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: inherit;
  transition: width .4s ease;
}

.case-carousel-arrows {
  display: flex;
  gap: 8px;
}

.case-carousel-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #d4e9fa;
  background: #091b36;
  border: 1px solid #1b3a5f;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.case-carousel-arrows button:hover {
  color: #04111e;
  background: var(--cyan);
  border-color: var(--cyan);
}

/* Manifesto */
.manifesto {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19, 200, 255, .04), transparent 40%),
    #030b19;
}

.manifesto-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .52fr 1.48fr;
  gap: 85px;
}

.manifesto-mark {
  position: relative;
  display: grid;
  place-items: center;
}

.manifesto-mark::before,
.manifesto-mark::after {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(19, 200, 255, .13);
  border-radius: 50%;
  content: "";
}

.manifesto-mark::after {
  width: 300px;
  height: 300px;
}

.manifesto-mark img {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 230px;
  object-fit: cover;
  border: 1px solid rgba(109, 231, 255, .2);
  border-radius: 48px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.manifesto-copy h2 {
  font-size: clamp(2.4rem, 4.55vw, 4.3rem);
}

.manifesto-copy > p {
  max-width: 760px;
}

.values {
  display: flex;
  margin-top: 28px;
  gap: 9px;
  flex-wrap: wrap;
}

.values span {
  padding: 10px 14px;
  color: #b9c8dc;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .73rem;
  font-weight: 700;
}

/* FAQ */
.faq {
  background: #061329;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 3.9rem);
}

.faq-heading .text-link {
  margin-top: 17px;
}

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

.faq-list details {
  background: rgba(5, 17, 36, .75);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .2s ease, background .2s ease;
}

.faq-list details[open] {
  background: rgba(11, 33, 63, .86);
  border-color: rgba(19, 200, 255, .25);
}

.faq-list summary {
  display: grid;
  min-height: 77px;
  align-items: center;
  padding: 18px 21px;
  cursor: pointer;
  font-size: .96rem;
  font-weight: 760;
  list-style: none;
  grid-template-columns: 1fr 30px;
  gap: 18px;
}

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

.faq-list summary i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(19, 200, 255, .2);
  border-radius: 50%;
  font-size: 1.1rem;
  font-style: normal;
  transition: transform .2s ease;
}

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

.faq-list details p {
  margin: -3px 60px 22px 21px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.72;
}

/* CTA */
.final-cta {
  background: #061329;
  padding-top: 20px;
}

.cta-box {
  display: grid;
  padding: 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .23), transparent 22%),
    linear-gradient(135deg, #0fb7ef, #4fdcff);
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(19, 200, 255, .19);
  grid-template-columns: .92fr 1.08fr;
  gap: 65px;
}

.cta-copy {
  color: #031424;
}

.cta-copy .kicker {
  color: #075176;
}

.cta-copy h2 {
  margin-bottom: 17px;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.cta-copy p {
  margin: 0;
  color: #075176;
  font-weight: 630;
}

.cta-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cta-options a {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  color: #fff;
  background: rgba(3, 16, 31, .9);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  font-size: .82rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.cta-options a:hover {
  background: #03101f;
  transform: translateY(-3px);
}

.cta-options b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--cyan-2);
  background: rgba(19, 200, 255, .1);
  border-radius: 50%;
}

/* Footer */
.site-footer {
  padding: 80px 0 25px;
  background: #020812;
}

.footer-grid {
  display: grid;
  padding-bottom: 58px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

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

.footer-brand p,
.footer-brand > span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
}

.footer-brand p {
  margin-bottom: 7px;
}

.footer-brand > span {
  color: var(--muted-2);
  font-size: .72rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 9px;
  color: #fff;
  font-size: .82rem;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: var(--muted);
  font-size: .78rem;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--cyan-2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  color: #647690;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .69rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 4px solid rgba(3, 11, 25, .75);
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .35);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 29px;
  fill: currentColor;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* Responsive */
@media (max-width: 1120px) {
  .nav-wrap {
    gap: 20px;
  }

  .main-menu {
    gap: 16px;
  }

  .main-menu a {
    font-size: .79rem;
  }

  .hero-content {
    gap: 35px;
  }

  .impact-dots button {
    padding-inline: 7px;
    font-size: .55rem;
  }

  .impact-journey-card,
  .impact-data-card,
  .impact-provider-panel,
  .impact-partner-panel {
    width: min(380px, 100%);
  }

  .audience-grid,
  .users-grid {
    gap: 55px;
  }

  .audience-image,
  .audience-image > img {
    min-height: 500px;
  }

  .network-node {
    width: 190px;
  }

  .demo-app {
    grid-template-columns: 175px minmax(0, 1fr);
  }

  .demo-content {
    padding: 24px;
  }

  .story-showcase-grid {
    gap: 55px;
  }

  .story-callout {
    display: none;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 82px 0;
  }

  .site-header {
    background: rgba(3, 11, 25, .88);
    border-color: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
  }

  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-menu {
    position: fixed;
    top: 81px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - 81px);
    align-items: stretch;
    padding: 22px 24px 35px;
    overflow-y: auto;
    background: rgba(3, 11, 25, .98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-menu a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-menu a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-content,
  .impact-track,
  .impact-slide {
    min-height: 740px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 650px;
    align-self: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 8, 20, .97) 0%, rgba(2, 8, 20, .75) 55%, rgba(2, 8, 20, .18) 100%),
      linear-gradient(0deg, #030b19 0%, transparent 30%);
  }

  .portal-preview {
    display: none;
  }

  .impact-slide .hero-content {
    padding-bottom: 108px;
  }

  .impact-slide h2 {
    max-width: 720px;
    font-size: clamp(2.8rem, 7.5vw, 4.5rem);
  }

  .impact-journey-card,
  .impact-data-card,
  .impact-provider-panel,
  .impact-partner-panel,
  .impact-story-phone {
    display: none;
  }

  .impact-slide-story-first .hero-copy {
    max-width: 72%;
  }

  .hero-story-stage {
    position: absolute;
    right: 8px;
    bottom: 82px;
    width: 280px;
    min-height: 570px;
    pointer-events: none;
    transform: scale(.72);
    transform-origin: right bottom;
  }

  .impact-slide.active .hero-story-stage {
    opacity: .72;
    transform: scale(.72);
  }

  .hero-story-label,
  .hero-story-replay {
    display: none;
  }

  .impact-carousel-controls {
    bottom: 18px;
  }

  .case-carousel {
    --cards-visible: 2;
  }

  .problem-grid,
  .ecosystem-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-intro,
  .faq-heading {
    position: static;
  }

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

  .journey::before {
    display: none;
  }

  .product-tour-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tour-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(145px, 1fr));
  }

  .demo-app {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: none;
  }

  .tour-panel {
    min-height: 0;
  }

  .story-showcase-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .story-showcase-copy {
    max-width: 760px;
  }

  .story-stage {
    min-height: 760px;
  }

  .audience-grid,
  .audience-grid.reverse,
  .users-grid,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid.reverse .audience-image {
    order: 0;
  }

  .audience-image,
  .audience-image > img {
    min-height: 500px;
  }

  .audience-copy {
    max-width: 760px;
  }

  .network-visual {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .network-visual::before,
  .network-visual::after,
  .network-lines {
    display: none;
  }

  .network-core,
  .network-node,
  .node-1,
  .node-2,
  .node-3,
  .node-4,
  .node-5 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
  }

  .network-core {
    height: auto;
    min-height: 190px;
    border-radius: 22px;
    grid-row: span 2;
  }

  .network-node:hover,
  .node-5:hover {
    transform: translateY(-3px);
  }

  .users-grid {
    gap: 20px;
  }

  .phone-scene {
    min-height: 650px;
  }

  .manifesto-grid {
    gap: 85px;
  }

  .manifesto-mark img {
    width: 200px;
    height: 200px;
  }

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

  .cta-box {
    padding: 45px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

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

  .section {
    padding: 70px 0;
  }

  h2,
  .audience-copy h2,
  .manifesto-copy h2 {
    font-size: clamp(2.15rem, 10.7vw, 3.2rem);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .main-menu {
    top: 71px;
    max-height: calc(100vh - 71px);
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

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

  .hero,
  .hero-content,
  .impact-track,
  .impact-slide {
    min-height: 720px;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 8, 20, .96) 0%, rgba(2, 8, 20, .82) 62%, rgba(2, 8, 20, .3) 100%),
      linear-gradient(0deg, #030b19 0%, transparent 35%);
  }

  .hero-content {
    padding-top: 95px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12.5vw, 3.8rem);
  }

  .impact-slide h2 {
    font-size: clamp(2.55rem, 11.5vw, 3.55rem);
  }

  .impact-slide .hero-content {
    padding-top: 88px;
    padding-bottom: 98px;
  }

  .impact-slide .hero-copy > p {
    font-size: .9rem;
  }

  .impact-slide-story-first .hero-copy {
    position: relative;
    z-index: 4;
    max-width: 69%;
  }

  .impact-slide-story-first h1 {
    font-size: clamp(2.45rem, 11vw, 3rem);
  }

  .impact-slide-story-first .hero-copy > p {
    font-size: .8rem;
    line-height: 1.5;
  }

  .impact-slide-story-first .eyebrow {
    font-size: .6rem;
  }

  .hero-story-stage {
    right: -48px;
    bottom: 82px;
    width: 250px;
    opacity: .72;
    transform: scale(.62);
  }

  .impact-slide.active .hero-story-stage {
    opacity: .72;
    transform: scale(.62);
  }

  .impact-slide-main .impact-background { background-position: 62% center; }
  .impact-slide-journey .impact-background { background-position: 66% center; }
  .impact-slide-companies .impact-background { background-position: 58% center; }
  .impact-slide-advertisers .impact-background { background-position: 62% center; }
  .impact-slide-providers .impact-background { background-position: 61% center; }
  .impact-slide-partners .impact-background { background-position: 56% center; }

  .impact-carousel-controls {
    bottom: 12px;
    min-height: 54px;
    padding: 6px;
    border-radius: 15px;
    gap: 5px;
  }

  .impact-arrows {
    gap: 4px;
  }

  .impact-arrows button,
  .impact-pause {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .impact-dots {
    align-items: center;
    gap: 1px;
  }

  .impact-dots button {
    display: grid;
    min-height: 38px;
    padding: 0;
    place-items: center;
  }

  .impact-dots button span {
    display: none;
  }

  .impact-dots button i {
    position: static;
    width: 7px;
    height: 7px;
    background: #48617f;
    border-radius: 50%;
  }

  .impact-dots button i::after {
    display: none;
  }

  .impact-dots button.active i {
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(19, 200, 255, .1);
  }

  .hero-copy > p {
    font-size: .99rem;
  }

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

  .hero-proof {
    margin-top: 27px;
  }

  .trust-grid {
    min-height: auto;
    padding: 22px 0;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
  }

  .trust-grid span {
    font-size: .62rem;
    text-align: left;
  }

  .trust-grid span::before {
    margin-right: 6px;
  }

  .insight-card {
    min-height: 0;
    padding: 27px 24px 26px 78px;
  }

  .insight-card > span {
    top: 27px;
    left: 23px;
    font-size: 1.25rem;
  }

  .insight-card > span::after {
    top: 34px;
    width: 23px;
  }

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

  .product-tour-heading {
    margin-bottom: 34px;
  }

  .product-tour-intro > p {
    font-size: .94rem;
  }

  .tour-tabs {
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 15px;
    padding-left: 15px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scrollbar-width: none;
  }

  .tour-tabs::-webkit-scrollbar {
    display: none;
  }

  .tour-tabs button {
    min-width: 132px;
  }

  .demo-window {
    border-radius: 18px;
  }

  .demo-browserbar {
    min-height: 52px;
    padding: 0 13px;
    grid-template-columns: 50px 1fr;
    gap: 8px;
  }

  .browser-dots {
    gap: 5px;
  }

  .browser-dots i {
    width: 8px;
    height: 8px;
  }

  .demo-address {
    overflow: hidden;
    padding: 7px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .demo-status {
    display: none;
  }

  .demo-content {
    padding: 17px 15px 20px;
  }

  .demo-title-row {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .demo-title-row h3 {
    font-size: 1.15rem;
  }

  .demo-filters {
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 2px;
  }

  .demo-filters button {
    white-space: nowrap;
  }

  .demo-metrics.four {
    grid-template-columns: 1fr 1fr;
  }

  .demo-metrics article {
    min-height: 88px;
    padding: 14px;
  }

  .overview-grid,
  .survey-grid,
  .campaign-builder,
  .points-showcase-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    grid-template-rows: auto;
  }

  .chart-card {
    min-height: 300px;
    grid-row: auto;
  }

  .bar-chart {
    height: 200px;
  }

  .contacts-table-wrap {
    overflow-x: auto;
  }

  .contact-table-head,
  .contact-row {
    min-width: 920px;
  }

  .contact-search {
    grid-template-columns: 30px minmax(180px, 1fr) auto;
  }

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

  .campaign-preview-card {
    min-height: 0;
  }

  .points-list-card li {
    align-items: flex-start;
  }

  .journey-step {
    min-height: 330px;
  }

  .story-showcase-copy h2 {
    font-size: clamp(2.35rem, 10.7vw, 3.35rem);
  }

  .story-showcase-copy > p {
    font-size: .94rem;
  }

  .story-stage {
    min-height: 690px;
    margin: -20px -15px 0;
    transform: scale(.92);
  }

  .story-stage::before {
    width: 470px;
    height: 470px;
  }

  .story-stage::after {
    width: 380px;
    height: 380px;
  }

  .story-stage-label {
    top: 4px;
  }

  .story-replay {
    bottom: -2px;
  }

  .audience-grid {
    gap: 47px;
  }

  .audience-image,
  .audience-image > img {
    min-height: 440px;
  }

  .audience-image {
    border-radius: 22px;
  }

  .companies .audience-image > img { object-position: 44% center; }
  .advertisers .audience-image > img { object-position: 58% center; }
  .free .audience-image > img { object-position: 43% center; }
  .providers .audience-image > img { object-position: 64% center; }

  .image-badge,
  .campaign-card,
  .wifi-sign,
  .provider-stack {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

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

  .mini-features article {
    min-height: 0;
  }

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

  .network-core {
    grid-row: auto;
  }

  .phone-scene {
    min-height: 620px;
    transform: scale(.91);
    margin: -20px -15px;
  }

  .phone-scene::before { width: 430px; height: 430px; }
  .phone-scene::after { width: 340px; height: 340px; }

  .orbit-a { top: 16%; left: -2%; }
  .orbit-b { top: 45%; right: -3%; }
  .orbit-c { bottom: 11%; left: 0; }

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

  .case-carousel {
    --cards-visible: 1;
  }

  .case-card {
    min-height: 430px;
  }

  .manifesto-mark::before { width: 310px; height: 310px; }
  .manifesto-mark::after { width: 250px; height: 250px; }

  .cta-box {
    width: calc(100% - 22px);
    padding: 35px 24px;
    border-radius: 24px;
  }

  .cta-options {
    grid-template-columns: 1fr;
  }

  .cta-options a {
    min-height: 68px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 53px;
    height: 53px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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