:root {
  --bg: #07101b;
  --bg-elevated: #0c1726;
  --bg-soft: #111f31;
  --bg-muted: #eef3f7;
  --surface: rgba(13, 25, 40, 0.72);
  --surface-light: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-border: rgba(255, 255, 255, 0.08);
  --line: rgba(9, 29, 54, 0.12);
  --text: #dfe8f5;
  --text-strong: #071321;
  --text-soft: #97a9bf;
  --text-muted: #53657b;
  --accent: #9566ff;
  --accent-soft: rgba(149, 102, 255, 0.18);
  --accent-cyan: #2c31ff;
  --accent-green: #3fd184;
  --shadow: 0 28px 70px rgba(1, 9, 17, 0.28);
  --shadow-soft: 0 22px 50px rgba(6, 24, 43, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-strong);
  background:
    radial-gradient(circle at top left, rgba(44, 49, 255, 0.12), transparent 20%),
    radial-gradient(circle at 85% 15%, rgba(149, 102, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #f5f8fb 0%, #edf2f7 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
  opacity: 0.65;
}

body::before {
  top: 7%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(86, 72, 255, 0.2);
}

body::after {
  right: -60px;
  bottom: 16%;
  width: 240px;
  height: 240px;
  background: rgba(176, 118, 255, 0.16);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.page-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  background: rgba(6, 14, 24, 0.84);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(100%, 1240px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(149, 102, 255, 0.55), rgba(44, 49, 255, 0.55), transparent);
  opacity: 0.8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  position: relative;
  padding-right: 1.1rem;
}

.brand::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 38px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: rgba(223, 232, 245, 0.68);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: rgba(223, 232, 245, 0.78);
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.88rem 1.15rem;
  border-radius: 999px;
  color: #07111d !important;
  background: linear-gradient(135deg, var(--accent-cyan), #b896ff);
  box-shadow: 0 14px 30px rgba(149, 102, 255, 0.28);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 4.8rem 0 4rem;
  background:
    radial-gradient(circle at 10% 12%, rgba(44, 49, 255, 0.24), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(149, 102, 255, 0.24), transparent 24%),
    linear-gradient(180deg, #05101c 0%, #091423 48%, #0e1b2d 100%);
  color: var(--text);
  overflow: hidden;
}

.hero::before,
.hero::after,
.hero-noise {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 92%);
}

.hero::after {
  inset: auto;
  top: 6%;
  right: 3%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 102, 255, 0.24), rgba(44, 49, 255, 0.1) 45%, transparent 72%);
  filter: blur(18px);
}

.hero-noise {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 40%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.02), transparent 38%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 700px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: 6.8rem;
  left: -2.2rem;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 102, 255, 0.18), transparent 72%);
  filter: blur(8px);
  z-index: -1;
}

.hero-brand-band {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding: 0.7rem 0.8rem 0.7rem 0.7rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(149, 102, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 50px rgba(5, 10, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-brand-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-brand-text strong {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
}

.hero-brand-text span {
  color: rgba(223, 232, 245, 0.7);
  font-size: 0.86rem;
  line-height: 1.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.44rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.content-card h2,
.cta-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3.1rem, 6vw, 5.55rem);
  line-height: 0.92;
  background: linear-gradient(180deg, #ffffff 0%, #f4f1ff 44%, #c9c2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 34px rgba(96, 80, 255, 0.18);
}

.hero-text,
.section-heading p,
.quote-highlight,
.glass-card p,
.feature-list,
.form-note,
.footer-inner p {
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 1.35rem 0 0;
  color: rgba(223, 232, 245, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #06101b;
  background: linear-gradient(135deg, var(--accent-cyan), #b896ff);
  box-shadow:
    0 20px 38px rgba(149, 102, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -45%;
  width: 38%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: button-sheen 5.8s ease-in-out infinite;
  opacity: 0.42;
  pointer-events: none;
}

.button-primary {
  isolation: isolate;
}

.button-primary > * {
  position: relative;
  z-index: 1;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #0d6a55, #1a9d6d);
  box-shadow: 0 16px 34px rgba(26, 157, 109, 0.24);
}

.hero-support {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.hero-points,
.check-list,
.feature-list,
.ranking-list,
.indicator-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  max-width: 46rem;
}

.hero-metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-metric-strip article {
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 36px rgba(5, 11, 21, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-metric-strip span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(184, 194, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metric-strip strong {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-points li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(223, 232, 245, 0.8);
}

.hero-points li::before,
.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  box-shadow: 0 0 0 5px rgba(149, 102, 255, 0.08);
}

.hero-visual {
  position: relative;
  padding: 2.4rem 3.1rem 2rem 1.2rem;
  perspective: 1400px;
}

.hero-logo-orbit,
.hero-visual-line {
  position: absolute;
  pointer-events: none;
}

.hero-logo-orbit {
  top: -2.7rem;
  right: 4.6rem;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 102, 255, 0.26), rgba(44, 49, 255, 0.05) 62%, transparent 74%);
  filter: blur(0.2px);
  animation: pulse-orbit 7.5s ease-in-out infinite;
}

.hero-logo-orbit img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 16px 26px rgba(40, 30, 120, 0.34));
}

.hero-visual-line {
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 255, 0.8), transparent);
  opacity: 0.7;
}

.hero-visual-line-one {
  top: 6.5rem;
  right: -0.5rem;
  width: 180px;
  height: 1px;
  transform: rotate(-22deg);
}

.hero-visual-line-two {
  bottom: 6rem;
  left: -1.4rem;
  width: 210px;
  height: 1px;
  transform: rotate(18deg);
}

.dashboard-shell,
.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
}

.dashboard-shell::before,
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 18%, transparent 38%);
  transform: translateX(-140%);
  pointer-events: none;
}

.dashboard-shell:hover::before,
.glass-card:hover::before {
  animation: sweep 1s ease forwards;
}

.dashboard-shell {
  padding: 1.35rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 28, 44, 0.94), rgba(8, 18, 31, 0.92)),
    linear-gradient(135deg, rgba(44, 49, 255, 0.14), rgba(149, 102, 255, 0.08));
  box-shadow:
    0 34px 76px rgba(2, 10, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.dashboard-shell::after {
  content: "";
  position: absolute;
  inset: 18% -18% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 102, 255, 0.16), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.dashboard-topbar,
.dashboard-toolbar,
.dashboard-context,
.panel-heading,
.dashboard-kpis,
.dashboard-grid,
.preview-kpis,
.preview-chart-area,
.integration-columns,
.integration-flow,
.timeline,
.value-cards,
.feature-grid,
.benefit-grid,
.dual-grid,
.pain-grid,
.solution-stack,
.audience-tags,
.form-grid,
.contact-layout,
.split-layout,
.integration-layout,
.dashboard-layout,
.value-layout,
.audience-layout,
.cta-panel {
  position: relative;
  z-index: 1;
}

.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.dashboard-dots span:first-child {
  background: rgba(255, 112, 132, 0.9);
}

.dashboard-dots span:nth-child(2) {
  background: rgba(255, 197, 87, 0.92);
}

.dashboard-dots span:nth-child(3) {
  background: rgba(81, 215, 137, 0.9);
}

.dashboard-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.dashboard-tabs span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(223, 232, 245, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dashboard-tabs .is-active {
  background: linear-gradient(135deg, rgba(44, 49, 255, 0.34), rgba(149, 102, 255, 0.3));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dashboard-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.dashboard-context {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.dashboard-context span {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(223, 232, 245, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
}

.dashboard-label,
.card-kicker,
.panel-heading span,
.dashboard-kpis span,
.timeline-step span,
.contact-channels a,
.preview-kpis span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-label {
  margin: 0 0 0.3rem;
  color: var(--accent-cyan);
}

.dashboard-topbar h2 {
  margin: 0;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.05;
}

.dashboard-status {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(63, 209, 132, 0.12);
  color: #82e7b0;
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.dashboard-kpis article,
.panel,
.preview-kpis article,
.value-cards article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-kpis span,
.dashboard-kpis small,
.kpi-trend,
.panel-heading span,
.panel-footnote,
.ranking-list span,
.feature-list li,
.card-note,
.preview-kpis span,
.indicator-list span,
.floating-card span,
.contact-channels a,
.form-note,
.footer-inner p {
  color: var(--text-soft);
}

.dashboard-kpis strong,
.panel-heading strong,
.ranking-list strong,
.preview-kpis strong {
  display: block;
  margin: 0.35rem 0;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.28rem;
}

.kpi-trend {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  font-size: 0.78rem;
}

.trend-up {
  color: #8be4b4;
}

.trend-down {
  color: #9db5ff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 0.85rem;
}

.panel {
  min-height: 164px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.panel-strip {
  grid-column: 1 / -1;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 0.7rem;
  height: 124px;
  margin-top: 1rem;
}

.bar-chart span {
  flex: 1;
  height: var(--size);
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--accent-cyan), rgba(149, 102, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chart-legend {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.chart-legend span {
  color: rgba(223, 232, 245, 0.48);
  font-size: 0.72rem;
  text-align: center;
}

.ranking-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.ranking-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.ranking-list b {
  position: relative;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.ranking-list b::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-cyan), rgba(149, 102, 255, 0.96));
}

.channel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.channel-strip span {
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #edf4fb;
  font-weight: 600;
}

.channel-strip .is-live {
  border: 1px solid rgba(63, 209, 132, 0.26);
  color: #8be4b4;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.ops-grid article {
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ops-grid small,
.ops-grid span {
  display: block;
  color: rgba(223, 232, 245, 0.58);
}

.ops-grid small {
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ops-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
}

.ops-grid span {
  font-size: 0.82rem;
  line-height: 1.45;
}

.floating-card {
  position: relative;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  width: calc(50% - 0.55rem);
  min-height: 104px;
  margin-top: 1rem;
  padding: 0.95rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(12, 24, 40, 0.9), rgba(9, 18, 31, 0.88)),
    linear-gradient(135deg, rgba(149, 102, 255, 0.12), rgba(44, 49, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.floating-card strong {
  display: block;
  margin-top: 0.3rem;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.35;
}

.floating-card-left {
  animation: soft-float 8s ease-in-out infinite;
}

.floating-card-right {
  margin-left: 0.7rem;
  animation: soft-float 7s ease-in-out infinite reverse;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at 88% 18%, rgba(149, 102, 255, 0.08), transparent 18%),
    radial-gradient(circle at 12% 18%, rgba(44, 49, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #08131f 0%, #0d1b29 100%);
  color: var(--text);
}

.section-muted {
  background: linear-gradient(180deg, #eef3f7 0%, #f7f9fb 100%);
}

.section-heading {
  max-width: 760px;
}

.section-heading.narrow {
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading h2,
.content-card h2,
.cta-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.section-heading p,
.glass-card p,
.contact-copy p,
.footer-inner p {
  margin-top: 1rem;
  font-size: 1rem;
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .quote-highlight,
.cta-copy h2,
.cta-copy p,
.contact-copy h2,
.contact-copy p {
  color: var(--text);
}

.quote-highlight {
  margin-top: 1.2rem;
  font-weight: 600;
}

.split-layout,
.integration-layout,
.dashboard-layout,
.value-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.split-solution {
  align-items: center;
}

.pain-grid,
.solution-stack,
.value-cards {
  display: grid;
  gap: 1rem;
}

.glass-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 250, 0.94));
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.section-dark .glass-card,
.cta-panel,
.contact-form,
.dashboard-preview,
.integration-panel,
.architecture-card {
  background:
    linear-gradient(180deg, rgba(12, 24, 38, 0.92), rgba(10, 19, 31, 0.9)),
    linear-gradient(135deg, rgba(44, 49, 255, 0.08), rgba(149, 102, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.section-dark .glass-card h3,
.section-dark .glass-card p,
.section-dark .glass-card li,
.section-dark .glass-card strong,
.section-dark .glass-card span,
.cta-panel h2,
.cta-panel p,
.contact-form span,
.architecture-card h2,
.architecture-card p {
  color: var(--text);
}

.pain-card h3,
.solution-card h3,
.feature-card h3,
.benefit-card h3,
.content-card h2,
.timeline-step h3,
.value-cards h3,
.architecture-card h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

.check-list,
.feature-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 1.4rem;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-cyan);
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(44, 49, 255, 0.9), rgba(149, 102, 255, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  border-color: rgba(255, 255, 255, 0.12);
}

.accent-card .card-kicker,
.accent-card h3 {
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 100%;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(44, 49, 255, 0.16), rgba(149, 102, 255, 0.16));
  color: #0c1c2c;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.content-card h2,
.content-card p,
.content-card li {
  color: var(--text-strong);
}

.content-card .card-note {
  color: var(--text-muted);
}

.feature-card h3,
.benefit-card h3,
.timeline-step h3,
.value-cards h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

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

.benefit-card p,
.pain-card p,
.solution-card p,
.value-cards p {
  color: var(--text-muted);
}

.integration-panel {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.integration-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.integration-flow span {
  padding: 1rem 0.7rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.integration-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.integration-columns h3,
.panel-heading strong,
.content-card h2 {
  font-family: "Outfit", sans-serif;
}

.panel-footnote {
  margin: 1rem 0 0;
}

.dashboard-preview {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.preview-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.preview-kpis article strong {
  color: #fff;
}

.preview-chart-area {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  gap: 1rem;
}

.line-chart {
  position: relative;
  min-height: 240px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  background-size: 60px 60px, 60px 60px, auto;
  overflow: hidden;
}

.line-chart span {
  position: absolute;
  inset: auto;
  left: -4%;
  right: -4%;
  height: 2px;
  transform-origin: left center;
  border-radius: 999px;
}

.line-chart span:nth-child(1) {
  top: 68%;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  transform: rotate(-6deg);
}

.line-chart span:nth-child(2) {
  top: 53%;
  background: linear-gradient(90deg, transparent, #91ecff, transparent);
  transform: rotate(4deg);
}

.line-chart span:nth-child(3) {
  top: 74%;
  background: linear-gradient(90deg, transparent, rgba(149, 102, 255, 0.95), transparent);
  transform: rotate(-11deg);
}

.line-chart span:nth-child(4) {
  top: 39%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: rotate(10deg);
}

.indicator-list {
  display: grid;
  gap: 0.75rem;
}

.indicator-list span {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.content-card .eyebrow {
  color: var(--accent-cyan);
}

.card-note {
  margin-top: 1rem;
  font-weight: 600;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  min-height: 100%;
}

.timeline-step span {
  color: var(--accent-cyan);
}

.timeline-step p {
  margin-bottom: 0;
}

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

.audience-layout {
  display: grid;
  gap: 1.5rem;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.audience-tags span {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(7, 24, 45, 0.08);
  color: var(--text-strong);
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(7, 24, 45, 0.07);
}

.architecture-card {
  border-radius: var(--radius-xl);
}

.section-cta {
  padding-top: 1rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 32px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: min(100%, 300px);
}

.section-contact {
  padding-bottom: 6rem;
}

.contact-layout {
  align-items: stretch;
}

.contact-copy {
  align-self: center;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.contact-channels a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.5rem;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid span {
  color: #fff;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(223, 232, 245, 0.42);
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: rgba(149, 102, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(149, 102, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.site-footer {
  padding: 0 0 2rem;
  background: #07111c;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(223, 232, 245, 0.72);
}

.footer-inner strong {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 54px;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #119d65, #1dc979);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(17, 157, 101, 0.28);
}

.feature-card,
.benefit-card,
.glass-card,
.dashboard-shell,
.button,
.audience-tags span,
.contact-channels a,
.floating-whatsapp {
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.feature-card:hover,
.benefit-card:hover,
.glass-card:hover,
.dashboard-shell:hover,
.audience-tags span:hover,
.contact-channels a:hover,
.floating-whatsapp:hover {
  transform: translateY(-4px);
}

.dashboard-shell:hover {
  transform: rotateY(-5deg) rotateX(2deg) translateY(-4px);
}

@keyframes sweep {
  from {
    transform: translateX(-140%);
  }

  to {
    transform: translateX(140%);
  }
}

@keyframes pulse-orbit {
  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.92;
  }

  50% {
    transform: scale(1.04) translateY(-8px);
    opacity: 1;
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes button-sheen {
  0%,
  62% {
    transform: translateX(-120%) rotate(18deg);
  }

  100% {
    transform: translateX(420%) rotate(18deg);
  }
}

@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;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .split-layout,
  .integration-layout,
  .dashboard-layout,
  .value-layout,
  .contact-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

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

  .value-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 2rem 1.2rem 1rem;
  }

  .dashboard-shell {
    transform: none;
  }

  .dashboard-shell:hover {
    transform: translateY(-4px);
  }

  .floating-card-left {
    left: 0;
  }

  .floating-card-right {
    right: 0;
  }

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

@media (max-width: 900px) {
  .brand::after {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(7, 16, 27, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .dashboard-grid,
  .preview-chart-area,
  .dual-grid,
  .integration-columns,
  .preview-kpis,
  .dashboard-kpis,
  .chart-legend,
  .ops-grid,
  .integration-flow,
  .feature-grid,
  .benefit-grid,
  .timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-tabs {
    width: 100%;
  }

  .dashboard-shell {
    padding-bottom: 5rem;
    transform: none;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .floating-card-right {
    margin-left: 0;
  }

  .hero-logo-orbit {
    top: -0.4rem;
    right: 1rem;
    width: 112px;
    height: 112px;
  }

  .hero-logo-orbit img {
    width: 82px;
    height: 82px;
  }

  .hero-visual-line-one,
  .hero-visual-line-two {
    display: none;
  }

  .cta-actions {
    min-width: 0;
  }
}

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

  .header-inner {
    min-height: 76px;
  }

  .hero {
    padding: 4.2rem 0 3rem;
  }

  .section {
    padding: 4.2rem 0;
  }

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

  .button {
    min-height: 52px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .dashboard-shell,
  .glass-card,
  .contact-form,
  .cta-panel {
    border-radius: 24px;
  }

  .hero-brand-band {
    align-items: flex-start;
  }

  .hero-brand-icon {
    width: 46px;
    height: 46px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
    min-width: 0;
  }
}
