:root {
  --bg: #f6fbff;
  --bg-soft: #e9f3ff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(39, 95, 148, 0.14);
  --text: #17324d;
  --muted: #68819c;
  --accent-cyan: #53e0c4;
  --accent-gold: #ffb84d;
  --accent-coral: #ff7a6b;
  --accent-blue: #6ea8ff;
  --shadow: 0 24px 60px rgba(36, 82, 129, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --header-height: 88px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(83, 224, 196, 0.14), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(110, 168, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f3f9ff 42%, #eef6ff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a.btn {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #17324d;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 251, 255, 0.8);
  border-bottom: 1px solid rgba(39, 95, 148, 0.1);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  flex: 0 0 auto;
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-lockup strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-lockup span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.hero-section,
.services-section,
.impact-section,
.system-section,
.cta-section {
  position: relative;
  overflow: clip;
}

.hero-section {
  padding: 76px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.77rem;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.15;
}

.hero-text,
.section-heading p,
.cta-card p,
.service-card p,
.timeline-card p,
.brand-principles p,
.signal-tile p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #0f2840;
  box-shadow: 0 14px 32px rgba(83, 224, 196, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(39, 95, 148, 0.12);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-row li,
.service-card,
.timeline-card,
.brand-principles article,
.chart-panel,
.stack-panel,
.cta-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.trust-row li {
  padding: 18px;
  border-radius: var(--radius-md);
}

.trust-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  letter-spacing: -0.04em;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.92)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(39, 95, 148, 0.1);
  box-shadow: var(--shadow);
}

.dashboard-card {
  padding: 28px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
}

.dashboard-card::before,
.dashboard-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.5;
}

.dashboard-card::before {
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(83, 224, 196, 0.18);
}

.dashboard-card::after {
  bottom: -38px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: rgba(255, 184, 77, 0.14);
}

.dashboard-topline,
.funnel-header,
.chart-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.status-pill,
.chart-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(83, 224, 196, 0.14);
  color: #178f78;
  font-size: 0.82rem;
  white-space: nowrap;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.signal-tile,
.funnel-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(247, 251, 255, 0.96);
  border: 1px solid rgba(39, 95, 148, 0.1);
}

.signal-tile.wide {
  grid-column: 1 / -1;
}

.signal-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.positive {
  color: var(--accent-cyan);
  font-size: 0.92rem;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  height: 112px;
  margin: 12px 0 14px;
}

.mini-bars span {
  display: block;
  height: var(--bar-size);
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(83, 224, 196, 0.92), rgba(110, 168, 255, 0.28));
  animation: barsRise 1.4s ease forwards;
  transform-origin: bottom;
}

.funnel-card {
  margin-top: 16px;
}

.funnel-stages {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.funnel-stage {
  width: var(--stage-width);
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 184, 77, 0.22), rgba(255, 122, 107, 0.1));
  border: 1px solid rgba(255, 184, 77, 0.16);
  animation: funnelSlide 1s ease both;
}

.funnel-stage span {
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-strip,
.services-section,
.impact-section,
.system-section,
.cta-section {
  padding: 48px 0 88px;
}

.brand-principles,
.services-grid,
.impact-grid,
.timeline,
.footer-layout {
  display: grid;
  gap: 20px;
}

.brand-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-principles article {
  padding: 24px;
  border-radius: var(--radius-md);
}

.principle-card {
  position: relative;
  overflow: hidden;
}

.principle-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-principles strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.principle-topline strong {
  margin-bottom: 0;
}

.principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.principle-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-icon svg {
  stroke: var(--accent-cyan);
}

.creative-icon svg {
  stroke: var(--accent-coral);
}

.operator-icon svg {
  stroke: var(--accent-gold);
}

.principle-graphic {
  position: relative;
  min-height: 118px;
  margin-bottom: 16px;
  border-radius: 18px;
  border: 1px solid rgba(39, 95, 148, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 255, 0.88)),
    rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.signal-graphic {
  display: block;
}

.signal-graphic::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(83, 224, 196, 0.22) 0%, rgba(83, 224, 196, 0) 56%),
    conic-gradient(from 0deg, rgba(83, 224, 196, 0.2), rgba(110, 168, 255, 0.06), rgba(83, 224, 196, 0.2));
  filter: blur(2px);
}

.signal-ring,
.signal-dot,
.signal-sweep {
  position: absolute;
}

.signal-ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(83, 224, 196, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: radarPulse 3.8s ease-out infinite;
}

.ring-one {
  width: 60px;
  height: 60px;
}

.ring-two {
  width: 108px;
  height: 108px;
  animation-delay: 0.4s;
}

.ring-three {
  width: 154px;
  height: 154px;
  animation-delay: 0.8s;
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 8px rgba(83, 224, 196, 0.08);
  animation: signalBlink 2.8s ease-in-out infinite;
}

.signal-center {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
}

.signal-a {
  top: 24px;
  right: 52px;
}

.signal-b {
  bottom: 28px;
  right: 34px;
  animation-delay: 0.4s;
}

.signal-c {
  top: 58px;
  left: 26px;
  animation-delay: 0.8s;
}

.signal-sweep {
  top: 50%;
  left: 50%;
  width: 88px;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(83, 224, 196, 0.95), rgba(83, 224, 196, 0));
  animation: radarSweep 4s linear infinite;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.services-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 248, 255, 0.9)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.services-heading {
  margin-bottom: 0;
}

.services-heading h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.06;
  white-space: nowrap;
}

.services-heading p {
  max-width: 46ch;
}

.services-switcher {
  margin-top: 28px;
}

.services-tablist {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(233, 243, 255, 0.88);
  border: 1px solid rgba(39, 95, 148, 0.1);
}

.service-tab {
  position: relative;
  z-index: 1;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.service-tab[aria-selected="true"] {
  color: #0f2840;
}

.services-slider-thumb {
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(25% - 6px);
  height: calc(100% - 16px);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(83, 224, 196, 0.22), rgba(110, 168, 255, 0.22));
  box-shadow: 0 10px 22px rgba(110, 168, 255, 0.12);
  transition: transform 0.35s ease;
}

.services-panels {
  position: relative;
  min-height: 100%;
}

.service-panel {
  height: 100%;
}

.service-panel[hidden] {
  display: none;
}

.creative-graphic {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
}

.creative-card {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  width: 78%;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(0);
  animation: creativeSlide 4.8s ease-in-out infinite;
}

.creative-card::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.creative-card.active {
  width: 92%;
  background: linear-gradient(90deg, rgba(255, 122, 107, 0.26), rgba(255, 184, 77, 0.14));
  border-color: rgba(255, 122, 107, 0.24);
}

.creative-card.active::after {
  background: var(--accent-coral);
  box-shadow: 0 0 0 6px rgba(255, 122, 107, 0.12);
}

.creative-card:nth-child(2) {
  width: 88%;
  animation-delay: 0.22s;
}

.creative-card:nth-child(3) {
  width: 70%;
  animation-delay: 0.44s;
}

.operator-graphic {
  display: block;
}

.operator-node,
.operator-link {
  position: absolute;
}

.operator-node {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-gold);
  box-shadow: 0 0 0 8px rgba(255, 184, 77, 0.08);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.node-core {
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
}

.node-a {
  top: 24px;
  left: 24px;
}

.node-b {
  top: 24px;
  right: 24px;
  animation-delay: 0.35s;
}

.node-c {
  bottom: 22px;
  left: 34px;
  animation-delay: 0.7s;
}

.operator-link {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 184, 77, 0.85), rgba(255, 122, 107, 0.18));
  animation: linkGlow 2.6s ease-in-out infinite;
}

.link-a {
  top: 43px;
  left: 42px;
  width: 94px;
  transform: rotate(27deg);
}

.link-b {
  top: 46px;
  left: 142px;
  width: 82px;
  transform: rotate(-29deg);
  animation-delay: 0.25s;
}

.link-c {
  bottom: 44px;
  left: 52px;
  width: 108px;
  transform: rotate(-11deg);
  animation-delay: 0.5s;
}

.section-heading {
  max-width: 62ch;
  margin-bottom: 28px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px 24px;
  border-radius: var(--radius-md);
  min-height: 220px;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94)),
    rgba(255, 255, 255, 0.96);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 24px;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-cyan), rgba(110, 168, 255, 0.2));
}

.service-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #178f78;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 12ch;
}

.service-card p {
  margin-bottom: 20px;
}

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

.service-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.service-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
}

.impact-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 0.75fr);
  align-items: start;
}

.chart-panel,
.stack-panel,
.cta-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.line-chart {
  position: relative;
  min-height: 250px;
  margin-top: 18px;
  padding-top: 18px;
}

.chart-grid {
  position: absolute;
  inset: 22px 0 38px;
  background-image:
    linear-gradient(to right, rgba(39, 95, 148, 0.08) 1px, transparent 1px),
    linear-gradient(to top, rgba(39, 95, 148, 0.08) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  border-radius: var(--radius-md);
}

.line-chart svg {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: visible;
}

.chart-path {
  fill: none;
  stroke: url(#payback-stroke);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: drawPath 2.4s ease forwards;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.stack-bars {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.stack-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.stack-row span {
  color: var(--muted);
  font-weight: 700;
}

.stack-track {
  display: flex;
  overflow: hidden;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(39, 95, 148, 0.08);
}

.stack-track i {
  width: var(--segment);
  animation: growSegment 1s ease both;
}

.stack-track i:nth-child(1),
.legend-chip.ads {
  background: var(--accent-cyan);
}

.stack-track i:nth-child(2),
.legend-chip.iap {
  background: var(--accent-blue);
}

.stack-track i:nth-child(3),
.legend-chip.subs {
  background: var(--accent-gold);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-chip {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-md);
}

.timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(39, 95, 148, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 243, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diagnose-icon svg {
  stroke: var(--accent-blue);
}

.plan-icon svg {
  stroke: var(--accent-coral);
}

.instrument-icon svg {
  stroke: var(--accent-cyan);
}

.scale-icon svg {
  stroke: var(--accent-gold);
}

.step-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-gold);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-card h2 {
  max-width: none;
  font-size: clamp(1.8rem, 2.3vw, 2.65rem);
  white-space: nowrap;
}

.site-footer {
  padding: 0 0 44px;
}

.footer-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  opacity: 0.9;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

[data-reduced-motion="true"] * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

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

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

@keyframes barsRise {
  from {
    transform: scaleY(0.2);
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes funnelSlide {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes growSegment {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes creativeSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.88;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes linkGlow {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes radarPulse {
  0% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.96);
  }
  70% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes signalBlink {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes servicesFlow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(175%);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .impact-grid,
  .timeline,
  .services-grid,
  .brand-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .impact-grid .section-heading {
    grid-column: 1 / -1;
  }

  .dashboard-card {
    transform: none;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .nav,
  .cta-card,
  .footer-layout {
    gap: 16px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-grid,
  .impact-grid,
  .timeline,
  .services-grid,
  .brand-principles,
  .trust-row,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  h1 {
    max-width: 12ch;
  }

  h2 {
    max-width: 13ch;
  }
}
