/* ─────────── TOKENS ─────────── */
:root {
  --bg: #FFFFFF;
  --bg-2: #F7F8FB;
  --bg-3: #EEF1F6;
  --line: #E1E5EE;
  --line-2: #C8CFDD;
  --text: #0A1530;
  --text-2: #4A5576;
  --text-3: #8590AB;
  --blue: #0057B7;
  --blue-deep: #003F86;
  --blue-soft: #E8F0FB;
  --amber: #B45309;
  --amber-deep: #92400E;
  --amber-soft: #FEF3E2;
  --violet: #6D28D9;
  --violet-deep: #5B21B6;
  --violet-soft: #F1ECFB;
  --green: #047857;
  --red: #B91C1C;
  --grid: 1400px;
  --font-d: 'Satoshi', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --font-m: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--blue);
  color: #fff;
}

/* Background ambient: subtle institutional wash + grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1100px 700px at 70% -10%, rgba(0, 87, 183, .06), transparent 60%),
    radial-gradient(900px 600px at 10% 35%, rgba(109, 40, 217, .04), transparent 65%),
    radial-gradient(800px 600px at 90% 80%, rgba(180, 83, 9, .04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 21, 48, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 21, 48, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  max-width: var(--grid);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ─────────── NAV ─────────── */
.nav {
  position: sticky;
  top: 20px;
  z-index: 50;
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  box-shadow:
    0 16px 40px rgba(10, 21, 48, 0.06),
    0 4px 12px rgba(10, 21, 48, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  max-width: calc(var(--grid) - 56px);
  margin: 0 auto;
  transition: all 0.3s var(--ease);
}

.nav:hover {
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    0 20px 48px rgba(0, 87, 183, 0.08),
    0 6px 16px rgba(10, 21, 48, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 36px;
  padding: 0 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(0, 87, 183, .15), 0 8px 24px rgba(0, 87, 183, .25);
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .5), transparent 50%);
}

.logo-mark svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  position: relative;
  padding: 6px 14px;
  border-radius: 99px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
  background-color: rgba(10, 21, 48, 0.05);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s var(--ease);
  text-decoration: none;
}

.btn:active {
  transform: scale(.98);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}

.btn-ghost:hover {
  border-color: var(--text);
  background: var(--bg-2);
}

.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-primary:hover {
  background: #000;
  box-shadow: 0 12px 32px rgba(10, 21, 48, .25);
}

.btn-primary svg {
  transition: transform .18s var(--ease);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

/* ─────────── HERO ─────────── */
.hero {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(10, 21, 48, .04);
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

h1.hero-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 104px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 28px auto 0;
  max-width: 1100px;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--violet) 35%, var(--blue) 70%, var(--blue-deep) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

.hero-rotator {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}

.slide-word {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--violet) 35%, var(--blue) 70%, var(--blue-deep) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}

.hero-sub {
  margin: 32px auto 0;
  max-width: 680px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
}

.hero-sub b {
  color: var(--text);
  font-weight: 500;
}

.hero-actions {
  margin-top: 36px;
  display: inline-flex;
  gap: 10px;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 14px;
  border-radius: 10px;
}

.hero-trust {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-trust-label {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-logos {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
  color: var(--text-3);
}

.hero-logos>div {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-2);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-logos svg {
  width: 18px;
  height: 18px;
}

/* ─────────── PRODUCT VISUAL ─────────── */
.product-frame {
  margin: 80px auto 0;
  max-width: 1280px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 87, 183, .10), transparent 60%);
  padding: 1px;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(10, 21, 48, .18), 0 8px 24px -8px rgba(10, 21, 48, .10);
}

.product-frame::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(60% 50% at 50% 0%, rgba(0, 87, 183, .10), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.product-window {
  background: var(--bg-2);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.product-chrome {
  height: 38px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}

.product-chrome .dots {
  display: flex;
  gap: 6px;
}

.product-chrome .dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line-2);
}

.product-chrome .dots span:nth-child(1) {
  background: #FF5F57;
}

.product-chrome .dots span:nth-child(2) {
  background: #FEBC2E;
}

.product-chrome .dots span:nth-child(3) {
  background: #28C840;
}

.product-chrome .url {
  flex: 1;
  text-align: center;
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--text-3);
}

.product-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 520px;
}

.pb-sidebar {
  background: var(--bg);
  border-right: 1px solid var(--line);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pb-sec {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
  padding: 12px 8px 4px;
}

.pb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-2);
  border-left: 2px solid transparent;
}

.pb-item svg {
  width: 13px;
  height: 13px;
  opacity: 0.75;
}

.pb-item.on {
  background: var(--blue-soft);
  color: var(--blue);
  border-left-color: var(--blue);
}

.pb-item.on svg {
  opacity: 1;
}

.pb-content {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pb-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pb-h h3 {
  margin: 0;
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pb-h .meta {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--text-3);
}

.pb-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pb-kpi {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}

.pb-kpi .lbl {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pb-kpi .val {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 26px;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}

.pb-kpi .delta {
  font-family: var(--font-m);
  font-size: 10px;
  margin-top: 2px;
  color: var(--green);
}

.pb-kpi.danger .val {
  color: var(--red);
}

.pb-kpi.danger .delta {
  color: var(--red);
}

.pb-kpi.warn .val {
  color: var(--amber);
}

.pb-kpi.warn .delta {
  color: var(--amber);
}

.pb-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  flex: 1;
}

.pb-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.pb-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pb-card-h h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.pb-card-h .more {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--text-3);
}

/* live chart */
.chart {
  height: 140px;
  position: relative;
  margin-top: 8px;
}

.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-grid line {
  stroke: var(--line);
  stroke-dasharray: 2, 3;
}

.chart-area {
  fill: url(#blueGrad);
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.chart-dot {
  fill: var(--blue);
  filter: drop-shadow(0 0 6px var(--blue));
}

.pb-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.pb-task:last-child {
  border-bottom: 0;
}

.pb-task .bar {
  width: 3px;
  height: 28px;
  border-radius: 3px;
}

.pb-task .bar.urg {
  background: var(--red);
}

.pb-task .bar.alta {
  background: var(--amber);
}

.pb-task .bar.norm {
  background: var(--text-3);
}

.pb-task .ttl {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-task .id {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--text-3);
}

.pb-task .chip {
  font-family: var(--font-m);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.chip-doing {
  background: var(--amber-soft);
  color: var(--amber);
}

.chip-done {
  background: #DCFCE7;
  color: var(--green);
}

.chip-open {
  background: var(--blue-soft);
  color: var(--blue);
}

/* ─────────── SECTION ─────────── */
section {
  padding: 100px 0;
  position: relative;
}

.section-eyebrow {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--line-2);
}

.section-h2 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 20px;
  max-width: 880px;
}

.section-lede {
  font-size: 18px;
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.55;
}

/* ─────────── MODULES ─────────── */
.modules-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(10, 21, 48, .03), 0 8px 24px -12px rgba(10, 21, 48, .08);
  border-radius: 20px;
  /* Mais arredondado para estilo bento */
  padding: 32px;
  /* Mais área respirável */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all .5s cubic-bezier(0.1, 0.9, 0.2, 1);
  /* Transição mais suave e parallax feeling */
  cursor: pointer;
  transform-style: preserve-3d;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--accent-soft, rgba(0, 87, 183, .10)), transparent 40%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.module-card:hover {
  border-color: var(--accent, var(--blue));
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px -12px rgba(10, 21, 48, .12);
}

.module-card:hover::before {
  opacity: 1;
}

.module-card.cityos {
  --accent: var(--blue);
  --accent-soft: var(--blue-soft);
}

.module-card.flowos {
  --accent: var(--amber);
  --accent-soft: var(--amber-soft);
}

.module-card.coreos {
  --accent: var(--violet);
  --accent-soft: var(--violet-soft);
}

.module-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.module-icon svg {
  width: 22px;
  height: 22px;
}

.module-name {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 0 0 4px;
}

.module-tag {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.module-desc {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.module-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.module-feats li svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ─────────── FLOW STRIP ─────────── */
.flow-strip {
  margin: 64px 0;
  background: linear-gradient(90deg, transparent, rgba(0, 87, 183, .06), rgba(180, 83, 9, .06), rgba(109, 40, 217, .06), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
}

.flow-track {
  display: flex;
  gap: 60px;
  animation: scroll-x 30s linear infinite;
  width: max-content;
}

@keyframes scroll-x {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.flow-track .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-m);
  font-size: 13px;
  color: var(--text-2);
  white-space: nowrap;
}

.flow-track .item .arr {
  color: var(--text-3);
}

/* ─────────── STATS ─────────── */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat .num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.stat .lbl {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 220px;
}

/* ─────────── COMPARISON ─────────── */
.compare {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
}

.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare th,
.compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare th {
  background: var(--bg-3);
  font-weight: 600;
  color: var(--text-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare th.us {
  color: var(--blue);
  background: var(--blue-soft);
  border-bottom-color: var(--blue);
}

.compare tr:last-child td {
  border-bottom: 0;
}

.compare td.us {
  background: rgba(0, 87, 183, .04);
  color: var(--text);
  font-weight: 500;
}

.compare td.them {
  color: var(--text-3);
}

.compare td .yes {
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.compare td .no {
  color: var(--text-3);
}

.compare td:first-child {
  font-weight: 600;
  color: var(--text-2);
}

/* ─────────── TESTIMONIAL ─────────── */
.quote-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(10, 21, 48, .03), 0 8px 24px -16px rgba(10, 21, 48, .10);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-mark {
  font-family: var(--font-d);
  font-size: 48px;
  line-height: 0.6;
  color: var(--blue);
  margin-bottom: -8px;
}

.quote-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.quote-by {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.quote-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

.quote-by .name {
  font-size: 13px;
  font-weight: 600;
}

.quote-by .role {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-m);
}

/* ─────────── CTA ─────────── */
.cta {
  margin: 100px 0;
  padding: 80px 56px;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(77, 154, 255, .20), transparent 60%),
    linear-gradient(180deg, #0A1530, #060B1E);
  color: #F6F8FC;
  border: 1px solid #0A1530;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(10, 21, 48, .30);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(77, 154, 255, .12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(77, 154, 255, .12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta .section-eyebrow {
  color: #8FA0CC;
}

.cta .section-eyebrow::before {
  background: rgba(255, 255, 255, .18);
}

.cta h2 {
  color: #F6F8FC;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 68px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 auto 24px;
  max-width: 880px;
}

.cta p {
  color: #BAC4DE;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta .btn-primary {
  background: #fff;
  color: #0A1530;
  border-color: #fff;
}

.cta .btn-primary:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(255, 255, 255, .20);
}

.cta .btn-ghost {
  color: #F6F8FC;
  border-color: rgba(255, 255, 255, .20);
}

.cta .btn-ghost:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .05);
}

.cta-actions {
  display: inline-flex;
  gap: 10px;
}

.cta-meta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-m);
  font-size: 11px;
  color: #8FA0CC;
  letter-spacing: 0.04em;
}

/* ─────────── FOOTER ─────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
  color: var(--text-3);
  font-size: 13px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.foot-grid h5 {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  font-weight: 500;
}

.foot-grid a {
  display: block;
  color: var(--text-3);
  text-decoration: none;
  padding: 4px 0;
  transition: color .15s var(--ease);
}

.foot-grid a:hover {
  color: var(--text);
}

.foot-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────────── SCROLL REVEAL ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal-stagger.in>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-stagger.in>*:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-stagger.in>*:nth-child(4) {
  transition-delay: 240ms;
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1100px) {
  .hero-title {
    font-size: clamp(40px, 6vw, 64px);
  }
}

@media (max-width: 900px) {
  .nav-inner {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .modules-grid,
  .stats-grid,
  .quote-grid,
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .product-body {
    grid-template-columns: 1fr;
  }

  .pb-sidebar {
    display: none;
  }

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

  .compare {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .compare table {
    min-width: 700px;
  }

  .compare th,
  .compare td {
    padding: 12px;
    font-size: 13px;
  }

  .cta {
    padding: 50px 24px;
    margin: 60px 0;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 20px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-logos {
    gap: 20px;
    font-size: 13px;
  }

  .hero-logos div {
    gap: 6px;
  }

  .hero-logos svg {
    width: 20px;
    height: 20px;
  }

  .section-h2 {
    font-size: 28px;
  }

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

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

  .module-card {
    padding: 24px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-meta {
    flex-direction: column;
    gap: 8px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {

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

  /* Reveal & rotator must be visible regardless of motion prefs */
  .reveal,
  .reveal-stagger>*,
  .reveal-stagger>*:nth-child(n) {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-rotator span {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-title .gradient {
    animation: none !important;
    background-position: 0 center !important;
  }

  .flow-track {
    animation: scroll-x 30s linear infinite !important;
    animation-duration: 30s !important;
  }
}