@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #101112;
  --bg-soft: #151719;
  --surface: #1b1d20;
  --surface-2: #22262a;
  --line: #30363d;
  --line-soft: rgba(217, 219, 219, 0.12);
  --text: #f4f7f8;
  --muted: #b7c0c7;
  --muted-2: #89949d;
  --blue: #00b5ff;
  --blue-soft: rgba(0, 181, 255, 0.14);
  --orange: #fba802;
  --orange-soft: rgba(251, 168, 2, 0.08);
  --gunmetal: #3d3d3d;
  --white: #ffffff;
  --danger: #ffb4ab;
  --ok: #89f0c5;
  --radius: 8px;
  --radius-lg: 16px;
  --max: 1180px;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 181, 255, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(0, 181, 255, 0.06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 181, 255, 0.7);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-130%);
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(16, 17, 18, 0.88);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Sora, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #008ed0 72%, #3d3d3d);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 16px 36px rgba(0, 181, 255, 0.2);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font: 600 11px/1.2 Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #008ed0;
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(0, 181, 255, 0.55);
  background: rgba(0, 181, 255, 0.08);
}

.btn-secondary:hover {
  border-color: var(--blue);
  background: rgba(0, 181, 255, 0.15);
}

.btn-orange {
  background: var(--blue);
  color: var(--white);
}

.btn-ghost {
  color: var(--blue);
  border-color: rgba(0, 181, 255, 0.34);
  background: rgba(0, 181, 255, 0.055);
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 56px 0;
}

.eyebrow {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
}

h1,
h2,
h3 {
  font-family: Sora, Inter, sans-serif;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 760px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 72px 0 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 6% -10% auto auto;
  width: 52vw;
  min-width: 420px;
  height: 52vw;
  min-height: 420px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, #000 0 38%, transparent 72%);
  opacity: 0.72;
}

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

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  color: var(--muted-2);
  font-size: 0.95rem;
}

.visual-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 181, 255, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(0, 181, 255, 0.08), transparent 24%),
    rgba(27, 29, 32, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 14px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
}

.node {
  position: absolute;
  width: 188px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(16, 17, 18, 0.9);
  padding: 16px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.node strong {
  display: block;
  margin-bottom: 6px;
}

.node small {
  color: var(--muted);
}

.node:nth-child(1) {
  top: 52px;
  left: 42px;
}

.node:nth-child(2) {
  top: 156px;
  right: 42px;
}

.node:nth-child(3) {
  bottom: 86px;
  left: 76px;
}

.node:nth-child(4) {
  bottom: 52px;
  right: 64px;
}

.flow-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.stat strong {
  display: block;
  color: var(--text);
  font-family: Sora, Inter, sans-serif;
  font-size: 1.05rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(27, 29, 32, 0.82);
  padding: 24px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 181, 255, 0.42);
  background: rgba(34, 38, 42, 0.9);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--blue-soft);
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p,
.muted {
  color: var(--muted);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.band {
  border-block: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}

.timeline {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 70px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.step + .step {
  margin-top: 26px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  font-size: 0.9rem;
}

.tag.blue {
  color: #bce9ff;
  border-color: rgba(0, 181, 255, 0.28);
  background: var(--blue-soft);
}

.tag.orange {
  color: #ffd486;
  border-color: rgba(0, 181, 255, 0.2);
  background: rgba(0, 181, 255, 0.055);
}

.cta {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(0, 181, 255, 0.22), transparent 30rem),
    linear-gradient(135deg, #22262a, var(--gunmetal));
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  gap: 22px;
  overflow: hidden;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(27, 29, 32, 0.72);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  list-style: none;
}

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

.faq-item p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-hero {
  padding: 88px 0 56px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 0, rgba(0, 181, 255, 0.18), transparent 32rem),
    rgba(255, 255, 255, 0.02);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 800;
}

.form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0c0d;
  color: var(--text);
  padding: 13px 14px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 181, 255, 0.12);
  outline: 0;
}

.field-error {
  color: var(--danger);
  min-height: 18px;
  font-size: 0.86rem;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--blue);
}

.form-status {
  min-height: 26px;
  font-weight: 800;
}

.form-status.ok {
  color: var(--ok);
}

.form-status.error {
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 20px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #0c0d0e;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.footer-col a,
.footer-col p {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #082415;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  transform: translateY(90px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.whatsapp-float i {
  font-size: 2rem;
  line-height: 1;
}

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

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(16, 17, 18, 0.96);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-options {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.cookie-banner.is-customizing .cookie-options {
  display: grid;
}

.cookie-option {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.notice {
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(0, 181, 255, 0.055);
  padding: 16px;
  color: #ffe0a3;
}

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

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .desktop-only {
    display: none;
  }

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

  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: rgba(16, 17, 18, 0.98);
    border-bottom: 1px solid var(--line-soft);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 420px;
  }

  .stats-row,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .visual-panel {
    min-height: 360px;
  }

  .node {
    width: 154px;
    padding: 13px;
  }

  .node:nth-child(1) {
    left: 18px;
  }

  .node:nth-child(2) {
    right: 18px;
    top: 130px;
  }

  .node:nth-child(3) {
    left: 24px;
    bottom: 64px;
  }

  .node:nth-child(4) {
    display: none;
  }

  .stats-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .cookie-options {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Reference-inspired MSG fluid landing system */
.hero-fluid {
  min-height: auto;
  padding: clamp(44px, 6vw, 88px) 0 clamp(40px, 7vw, 96px);
  isolation: isolate;
  background: #090a0b;
}

.hero-fluid::before {
  display: none;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 10, 11, 0.22), rgba(9, 10, 11, 0.88) 68%, #090a0b),
    radial-gradient(circle at 50% 8%, rgba(0, 181, 255, 0.26), transparent 34rem),
    radial-gradient(circle at 75% 38%, rgba(0, 181, 255, 0.08), transparent 26rem),
    #090a0b;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(0, 181, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 181, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(#000, transparent 88%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(0, 181, 255, 0.18);
  border-radius: 50%;
  filter: blur(0.2px);
}

.hero-orbit-one {
  width: 720px;
  height: 720px;
  left: 50%;
  top: -290px;
  transform: translateX(-50%);
  box-shadow: 0 0 120px rgba(0, 181, 255, 0.08);
}

.hero-orbit-two {
  width: 440px;
  height: 440px;
  right: -130px;
  top: 190px;
  border-color: rgba(0, 181, 255, 0.12);
}

.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  text-align: center;
}

.livebar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  border: 1px solid rgba(0, 181, 255, 0.28);
  border-radius: 999px;
  padding: 10px 16px;
  color: #d6f3ff;
  background: rgba(0, 181, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  font-weight: 800;
}

.live-dot,
.pulse-dot {
  color: var(--orange);
  animation: msgPulse 1.5s ease-in-out infinite;
}

.hero-copy-center {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 960px;
}

.hero-copy-center h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 7.2vw, 5.6rem);
  letter-spacing: -0.02em;
}

.hero-copy-center .lead {
  max-width: 760px;
}

.hero-screen {
  width: min(100%, 1010px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.035), 0 36px 110px rgba(0, 0, 0, 0.5);
}


.hero-mockup-frame {
  position: relative;
  width: min(100%, 1080px);
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(0, 181, 255, 0.16), rgba(255, 255, 255, 0.04) 48%, rgba(251, 168, 2, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.mockup-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 0 0 16px 16px;
  padding: clamp(14px, 2.4vw, 26px);
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 181, 255, 0.18), transparent 26rem),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #07090b;
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.mockup-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.1) 48%, transparent 58% 100%);
  transform: translateX(-70%);
  animation: mockupShine 5.8s ease-in-out infinite;
}

.hero-mockup-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(62vh, 620px);
  object-fit: contain;
  border-radius: 14px;
  background: #050607;
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.48), 0 0 52px rgba(0, 181, 255, 0.15);
}

.mockup-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 181, 255, 0.28);
  border-radius: 999px;
  padding: 10px 13px;
  color: #eaf9ff;
  background: rgba(7, 9, 11, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28), inset 0 0 18px rgba(0, 181, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 900;
}

.mockup-badge i {
  color: var(--blue);
  filter: drop-shadow(0 0 9px rgba(0, 181, 255, 0.58));
}

.mockup-badge-one { left: clamp(18px, 4vw, 44px); top: clamp(46px, 7vw, 82px); }
.mockup-badge-two { right: clamp(16px, 3vw, 34px); top: 45%; }
.mockup-badge-three { left: 50%; bottom: clamp(20px, 4vw, 42px); transform: translateX(-50%); }

@keyframes mockupShine {
  0%, 42% { transform: translateX(-76%); opacity: 0; }
  52% { opacity: 0.5; }
  76%, 100% { transform: translateX(76%); opacity: 0; }
}
.screen-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-soft);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  padding: 12px 16px;
  background: rgba(13, 14, 15, 0.92);
  color: var(--muted);
  font-size: 0.82rem;
}

.screen-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.screen-topbar span:nth-child(1) { background: #ff6868; }
.screen-topbar span:nth-child(2) { background: #ffc65b; }
.screen-topbar span:nth-child(3) { background: #67f2b0; }
.screen-topbar strong { margin-left: auto; color: #d9f5ff; font-weight: 800; }

.screen-body {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  min-height: 470px;
  border: 1px solid var(--line-soft);
  border-radius: 0 0 16px 16px;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 14%, rgba(0, 181, 255, 0.2), transparent 25rem),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #0d0e10;
  background-size: auto, 52px 52px, 52px 52px, auto;
}

.screen-main,
.screen-side {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: center;
}

.pipeline-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 4px;
  color: var(--blue);
  font: 800 0.78rem/1 Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
}

.pipeline-row span { color: var(--text); font-weight: 900; }
.pipeline-row b { color: #bdeaff; font-size: 0.88rem; }
.pipeline-row i {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 181, 255, 0.1));
  box-shadow: 0 0 18px rgba(0, 181, 255, 0.38);
}

.metric-card {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid rgba(0, 181, 255, 0.26);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  background: rgba(0, 181, 255, 0.09);
}

.metric-card.orange {
  border-color: rgba(0, 181, 255, 0.2);
  background: rgba(0, 181, 255, 0.055);
}

.metric-card small {
  color: var(--muted-2);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.metric-card strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

.play-facade {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 0 rgba(0, 181, 255, 0.5);
  animation: playPulse 1.9s ease-out infinite;
}


.ops-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 18%, rgba(0, 181, 255, 0.18), transparent 20rem);
  pointer-events: none;
}

.ops-main {
  align-content: stretch;
}

.ops-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 0;
}

.ops-node {
  position: relative;
  min-height: 128px;
  display: grid;
  align-content: end;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
}

.ops-node::before {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 181, 255, 0.14);
}

.ops-node small {
  color: #fba802;
  font-weight: 900;
}

.ops-node strong {
  color: #ffffff;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.08rem;
}

.ops-node span {
  color: #9de8ff;
  font-size: 0.8rem;
  font-weight: 800;
}

.node-blue {
  border-color: rgba(0, 181, 255, 0.34);
  background: rgba(0, 181, 255, 0.09);
}

.node-orange {
  border-color: rgba(251, 168, 2, 0.28);
}

.ops-link {
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 181, 255, 0.2), #00b5ff, rgba(0, 181, 255, 0.2));
  box-shadow: 0 0 16px rgba(0, 181, 255, 0.48);
  animation: dataPulse 2.2s ease-in-out infinite;
}

.ops-console {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  padding: 12px;
  background: rgba(4, 6, 8, 0.54);
}

.ops-console div {
  display: grid;
  grid-template-columns: 48px 128px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.ops-console span {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.ops-console b {
  color: #00b5ff;
  font-size: 0.82rem;
}

.ops-console em {
  color: #d9dbdb;
  font-style: normal;
  font-size: 0.82rem;
}

.ops-side {
  align-content: stretch;
}

.ops-health {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 220px;
  border: 1px solid rgba(0, 181, 255, 0.22);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  background: rgba(0, 181, 255, 0.075);
}

.health-ring {
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: conic-gradient(#00b5ff 0 88%, rgba(255, 255, 255, 0.12) 88% 100%);
  box-shadow: 0 0 34px rgba(0, 181, 255, 0.22);
}

.health-ring i {
  width: 72px;
  height: 72px;
  border-radius: inherit;
  background: #0d0e10;
}

.ops-health small,
.ops-metrics small {
  color: var(--muted-2);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ops-health strong {
  color: #ffffff;
  font-family: Sora, Inter, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.ops-health p {
  max-width: 220px;
  color: #c6d0d7;
  font-size: 0.86rem;
}

.ops-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ops-metrics div {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.ops-metrics strong {
  color: #eaf9ff;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.1rem;
}

.ops-metrics span {
  color: #9de8ff;
  font-size: 0.78rem;
  font-weight: 800;
}

@keyframes dataPulse {
  50% { opacity: 0.45; transform: scaleX(0.72); }
}

@media (max-width: 900px) {
  .ops-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ops-link {
    width: 3px;
    height: 18px;
    justify-self: center;
  }

  .ops-console div {
    grid-template-columns: 44px 1fr;
  }

  .ops-console em {
    grid-column: 2;
  }
}
.hero-actions-center {
  justify-content: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-proof span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.app-strip-section {
  padding: 0;
  background: #090a0b;
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
}

.service-rail {
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.service-rail-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: railMove 34s linear infinite;
}

.service-rail-track span {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(0, 181, 255, 0.22);
  border-radius: 12px;
  padding: 12px 16px;
  color: #d7f3ff;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
}

.service-rail-track i {
  color: var(--blue);
  font-size: 0.95rem;
  filter: drop-shadow(0 0 9px rgba(0, 181, 255, 0.52));
}


.generative-belt-section {
  padding-block: clamp(54px, 8vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 181, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #090a0b, #0d0e10);
  border-bottom: 1px solid var(--line-soft);
}

.belt-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  text-align: center;
  justify-items: center;
}

.belt-head h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
}

.belt-wrap {
  position: relative;
  overflow: hidden;
  padding-block: 8px 14px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.belt-wrap::before,
.belt-wrap::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 24px;
  z-index: 2;
  width: min(12vw, 120px);
  pointer-events: none;
}

.belt-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #090a0b, transparent);
}

.belt-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #0d0e10, transparent);
}

.belt-in {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  animation: beltMove 30s linear infinite;
}

.belt-in:hover {
  animation-play-state: paused;
}

.bi {
  width: clamp(132px, 12vw, 166px);
  min-height: 142px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(7, 9, 11, 0.7);
  box-shadow: inset 0 0 24px rgba(0, 181, 255, 0.055), 0 22px 60px rgba(0, 0, 0, 0.3);
}

.bi img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 181, 255, 0.24));
}

.bi span {
  color: #eaf9ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bi:nth-child(3n) {
  border-color: rgba(0, 181, 255, 0.28);
}

.bi:nth-child(5n) span::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 9px auto 0;
  border-radius: 999px;
  background: #fba802;
}

@keyframes beltMove {
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .generative-belt-section {
    padding-block: 46px 64px;
  }

  .belt-in {
    gap: 10px;
    animation-duration: 24s;
  }

  .bi {
    width: 122px;
    min-height: 126px;
    border-radius: 16px;
  }

  .bi img {
    width: 48px;
    height: 48px;
  }
}

.creative-spy-section {
  padding-block: clamp(46px, 7vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 181, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, #0d0e10, #090a0b);
}

.spy-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(0, 181, 255, 0.1), rgba(255, 255, 255, 0.035) 44%, rgba(251, 168, 2, 0.05)),
    rgba(7, 9, 11, 0.82);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.44), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.sc-top {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  padding: clamp(22px, 4vw, 42px) clamp(20px, 4vw, 46px) 18px;
}

.sc-head {
  display: grid;
  gap: 10px;
}

.sc-tag {
  width: fit-content;
  border: 1px solid rgba(0, 181, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #9de8ff;
  background: rgba(0, 181, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sc-num {
  color: #ffffff;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.9rem, 4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.sc-prop {
  max-width: 720px;
  color: #c6d0d7;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
}

.creative-wall {
  position: relative;
  padding: 10px 0 32px;
}

.creative-wall::before,
.creative-wall::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(12vw, 130px);
  pointer-events: none;
}

.creative-wall::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 9, 11, 0.96), transparent);
}

.creative-wall::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 9, 11, 0.96), transparent);
}

.sce-wall {
  display: grid;
  gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.sce-wall-row {
  display: flex;
  width: max-content;
  gap: 12px;
  padding-inline: 18px;
}

.sce-r1 {
  animation: creativeWallMove 36s linear infinite;
}

.sce-r2 {
  animation: creativeWallMoveReverse 42s linear infinite;
  transform: translateX(-50%);
}

.spy-card:hover .sce-wall-row {
  animation-play-state: paused;
}

.sce-ad {
  position: relative;
  flex: 0 0 118px;
  height: 166px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34), inset 0 0 22px rgba(255, 255, 255, 0.07);
}

.sce-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.sce-live {
  position: absolute;
  left: 8px;
  top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 5px 7px;
  color: #ffffff;
  background: rgba(7, 9, 11, 0.68);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.sce-live i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00b5ff;
  box-shadow: 0 0 10px rgba(0, 181, 255, 0.85);
  animation: msgPulse 1.4s ease-in-out infinite;
}

.sce-pbar {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.sce-pbar i {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00b5ff, #fba802);
  animation: creativeProgress 2.8s ease-in-out infinite;
}

@keyframes creativeWallMove {
  to { transform: translateX(-50%); }
}

@keyframes creativeWallMoveReverse {
  to { transform: translateX(0); }
}

@keyframes creativeProgress {
  0%, 100% { transform: translateX(-35%); }
  50% { transform: translateX(92%); }
}

@media (max-width: 820px) {
  .sc-top {
    grid-template-columns: 1fr;
  }

  .sce-ad {
    flex-basis: 96px;
    height: 136px;
    border-radius: 15px;
  }
}
.mechanism-section {
  background:
    linear-gradient(rgba(0, 181, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 181, 255, 0.04) 1px, transparent 1px),
    #0d0e10;
  background-size: 64px 64px;
}

.centered {
  justify-items: center;
  text-align: center;
}

.centered .lead {
  margin-inline: auto;
}

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

.mechanism-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  padding: 24px;
  background: rgba(23, 25, 28, 0.88);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mechanism-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 181, 255, 0.46);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 28px rgba(0, 181, 255, 0.12);
}

.mechanism-num {
  color: var(--blue);
  font: 900 0.86rem/1 Inter, sans-serif;
  letter-spacing: 0.12em;
}

.mechanism-card h3 {
  font-size: 1.42rem;
}

.mechanism-card p {
  color: var(--muted);
}

.mini-viz {
  min-height: 150px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #0b0c0d;
  overflow: hidden;
}

.scan-viz {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 20px;
}

.scan-viz span {
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 181, 255, 0.28), rgba(255, 255, 255, 0.04));
}

.scan-viz i {
  position: absolute;
  left: 0;
  right: 0;
  top: 20%;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 22px var(--orange);
  animation: scanMove 2.8s ease-in-out infinite;
}

.flow-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
}

.flow-viz b,
.data-viz span {
  border: 1px solid rgba(0, 181, 255, 0.24);
  border-radius: 10px;
  padding: 10px 12px;
  color: #dcf5ff;
  background: rgba(0, 181, 255, 0.09);
  font-size: 0.82rem;
}

.flow-viz i {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 181, 255, 0.25));
}

.data-viz {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
  align-content: center;
}


@keyframes railMove { to { transform: translateX(-50%); } }
@keyframes scanMove { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(92px); } }
@keyframes msgPulse { 50% { opacity: 0.35; } }
@keyframes playPulse { 70% { box-shadow: 0 0 0 22px rgba(0, 181, 255, 0); } }

@media (max-width: 980px) {
  .screen-body,
  .mechanism-grid {
    grid-template-columns: 1fr;
  }

  .hero-screen {
    border-radius: 18px;
  }

  .play-facade {
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 680px) {
  .hero-fluid {
    padding-top: 34px;
  }

  .livebar {
    width: 100%;
    font-size: 0.78rem;
  }

  .screen-body {
    min-height: 520px;
    padding: 16px;
  }

  .pipeline-row {
    grid-template-columns: 82px 1fr;
  }

  .pipeline-row b {
    grid-column: 1 / -1;
  }

  .flow-viz {
    flex-direction: column;
  }

  .flow-viz i {
    width: 2px;
    height: 24px;
  }
}
/* Contrast, platform motion and media placeholders */
.title-blue,
.title-orange {
  position: relative;
  display: inline-block;
  color: var(--text);
}

.title-blue {
  color: #7bdcff;
}

.title-orange {
  color: #9de6ff;
}

.title-blue::after,
.title-orange::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.18em;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.42;
}

.title-blue::after { background: var(--blue); }
.title-orange::after { background: var(--blue); }

.hero-fluid .btn-primary {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 28px rgba(0,181,255,0.36);
}

.hero-fluid .btn-secondary {
  box-shadow: inset 0 0 0 1px rgba(0,181,255,0.16), 0 0 24px rgba(0,181,255,0.12);
}

.card,
.mechanism-card,
.platform-card,
.media-card {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025), 0 18px 56px rgba(0,0,0,0.26);
}

.platforms-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 181, 255, 0.09), transparent 24rem),
    radial-gradient(circle at 85% 35%, rgba(0, 181, 255, 0.14), transparent 28rem),
    #090a0b;
}

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

.platform-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  overflow: hidden;
}

.sce-pcov-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.sce-pcov-hd .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange);
  animation: msgPulse 1.4s ease-in-out infinite;
}

.sce-pcov-hd b {
  color: #7bdcff;
}

.sce-pcov-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.sce-pcov-wrap + .sce-pcov-wrap {
  margin-top: 10px;
}

.sce-prow {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: platformRoll 42s linear infinite;
}

.sce-pr2 { animation-duration: 52s; }
.sce-pr3 { animation-duration: 46s; }
.sce-rev { animation-direction: reverse; }

.sce-ptile {
  flex: none;
  width: 96px;
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 8px;
  background: rgba(255,255,255,0.055);
}

.sce-ptile img {
  width: auto;
  max-width: 58px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

.sce-ptile span {
  max-width: 100%;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 800;
}


.infra-tools-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 181, 255, 0.1), transparent 25rem),
    radial-gradient(circle at 18% 76%, rgba(251, 168, 2, 0.05), transparent 22rem),
    #0d0e10;
}

.infra-split {
  gap: clamp(28px, 5vw, 64px);
}

.infra-card {
  background:
    linear-gradient(180deg, rgba(0, 181, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(7, 9, 11, 0.72);
}

.infra-row {
  animation-duration: 38s;
}

.infra-row.sce-pr2 {
  animation-duration: 46s;
}

.infra-tile {
  width: 124px;
  min-height: 92px;
  border-color: rgba(0, 181, 255, 0.15);
  background: rgba(255, 255, 255, 0.065);
}

.infra-tile img {
  max-width: 68px;
  height: 34px;
}

.infra-tile span {
  color: #dbeef5;
  font-size: 0.74rem;
}

@media (max-width: 900px) {
  .infra-split .infra-card {
    order: 2;
  }
}
.media-section {
  background:
    linear-gradient(rgba(0,181,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,181,255,0.04) 1px, transparent 1px),
    #0d0f11;
  background-size: 56px 56px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.media-card {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #090a0b;
}

.media-card.tall {
  grid-row: span 2;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.01);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.media-card:hover img {
  transform: scale(1.045);
  opacity: 1;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.76));
  pointer-events: none;
}

.media-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}

@keyframes platformRoll {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card.tall {
    grid-row: auto;
  }
}
.project-card {
  overflow: hidden;
}

.project-thumb {
  width: calc(100% + 48px);
  max-width: none;
  height: 190px;
  object-fit: cover;
  margin: -24px -24px 22px;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0.86;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.project-card:hover .project-thumb {
  transform: scale(1.04);
  opacity: 1;
}
/* Cleaner fluorescent title and readable text highlights */
.title-blue,
.title-orange {
  color: #00b5ff;
  font-weight: 900;
}

.title-blue::after,
.title-orange::after {
  display: none !important;
}

.text-neon {
  color: #eaf9ff;
  font-weight: 900;
}

.text-gold {
  color: #fba802;
  font-weight: 900;
}

.lead .text-neon,
.card p .text-neon,
.timeline p .text-neon {
  color: #9de8ff;
}

.icon {
  color: #00b5ff;
  border: 1px solid rgba(0, 181, 255, 0.3);
  box-shadow: inset 0 0 18px rgba(0, 181, 255, 0.08), 0 0 20px rgba(0, 181, 255, 0.14);
}

.icon i {
  font-size: 1.18rem;
  filter: drop-shadow(0 0 10px rgba(0, 181, 255, 0.52));
}

.mechanism-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mechanism-num i {
  color: #fba802;
  font-size: 0.92rem;
  filter: drop-shadow(0 0 8px rgba(251, 168, 2, 0.38));
}

.btn i {
  font-size: 0.95em;
}

.card p,
.mechanism-card p,
.lead {
  color: #c6d0d7;
}

.title-blue,
.title-orange {
  color: #00b5ff;
}

.text-neon,
.lead .text-neon,
.card p .text-neon,
.timeline p .text-neon {
  color: #9de8ff;
}

.results-video-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 181, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.results-video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(28px, 5vw, 46px);
}

.result-video-card {
  min-width: 0;
}

.result-phone {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 7px;
  background: linear-gradient(145deg, rgba(0, 181, 255, 0.18), rgba(255, 255, 255, 0.035) 42%, rgba(251, 168, 2, 0.08));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.result-video-cover,
.result-phone iframe {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 0;
  border-radius: 17px;
  overflow: hidden;
}

.result-video-cover {
  cursor: pointer;
  padding: 0;
  color: var(--white);
  background: #07090b;
  text-align: left;
}

.result-video-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 11, 0.12), rgba(7, 9, 11, 0.72)),
    var(--thumb) center / cover no-repeat,
    linear-gradient(135deg, rgba(0, 181, 255, 0.28), rgba(251, 168, 2, 0.12));
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.result-video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 9px);
  mix-blend-mode: screen;
  opacity: 0.34;
  transform: translateX(-100%);
  animation: resultScan 4.4s ease-in-out infinite;
}

.result-video-cover:hover::before {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.08);
}

.video-topbar,
.video-caption,
.result-play {
  position: absolute;
  z-index: 2;
}

.video-topbar {
  left: 12px;
  right: 12px;
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(7, 9, 11, 0.58);
  backdrop-filter: blur(10px);
  color: #dff7ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-topbar i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00b5ff;
  box-shadow: 0 0 12px rgba(0, 181, 255, 0.7);
}

.result-play.play-facade {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  background: rgba(0, 181, 255, 0.18);
}

.video-caption {
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 12px;
  background: rgba(7, 9, 11, 0.7);
  backdrop-filter: blur(12px);
}

.video-caption strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 0.98rem;
  line-height: 1.1;
}

.video-caption small {
  color: #9de8ff;
  font-weight: 800;
}

.result-phone.is-playing {
  background: rgba(0, 0, 0, 0.78);
}

@keyframes resultScan {
  0%, 42% { transform: translateX(-115%); opacity: 0; }
  52% { opacity: 0.36; }
  72%, 100% { transform: translateX(115%); opacity: 0; }
}

@media (max-width: 1080px) {
  .results-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .results-video-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x mandatory;
  }

  .result-video-card {
    flex: 0 0 min(76vw, 310px);
    scroll-snap-align: center;
  }
}


.tool-ecosystem-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 181, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 72%, rgba(0, 181, 255, 0.08), transparent 24rem),
    #090a0b;
}

.tool-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 5vw, 46px);
}

.stack-card {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(7, 9, 11, 0.72);
}

.stack-card:nth-child(3) {
  grid-column: 1 / -1;
}

.stack-row {
  animation-duration: 44s;
}

.stack-card:nth-child(even) .stack-row {
  animation-direction: reverse;
  animation-duration: 52s;
}

.stack-tile {
  width: 118px;
  min-height: 92px;
  border-color: rgba(0, 181, 255, 0.14);
}

.stack-tile img {
  max-width: 64px;
  height: 34px;
}

.stack-tile span {
  color: #dbeef5;
  font-size: 0.72rem;
}

.stack-ia {
  border-color: rgba(0, 181, 255, 0.22);
}

@media (max-width: 860px) {
  .tool-stack-grid {
    grid-template-columns: 1fr;
  }

  .stack-card:nth-child(3) {
    grid-column: auto;
  }
}

.tools-summary-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 181, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 82% 76%, rgba(251, 168, 2, 0.05), transparent 22rem),
    #090a0b;
}

.tools-summary-split {
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.tools-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tools-summary-grid article {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 181, 255, 0.04);
}

.tools-summary-grid i {
  color: #00b5ff;
  font-size: 1.25rem;
}

.tools-summary-grid strong {
  color: #ffffff;
  font-family: Sora, Inter, sans-serif;
}

.tools-summary-grid span {
  color: #c6d0d7;
  font-size: 0.88rem;
  line-height: 1.45;
}


.tools-preview-card {
  background:
    linear-gradient(180deg, rgba(0, 181, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(7, 9, 11, 0.72);
}

.tools-preview-row {
  animation-duration: 38s;
}

.tools-preview-row.sce-pr2 {
  animation-duration: 46s;
}

.tools-preview-row.sce-pr3 {
  animation-duration: 42s;
}

.tools-preview-tile {
  width: 118px;
  min-height: 88px;
  border-color: rgba(0, 181, 255, 0.14);
}

.tools-preview-tile img {
  max-width: 64px;
  height: 34px;
}

.tools-preview-tile span {
  color: #dbeef5;
}
.tools-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 181, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #090a0b, #0d0e10);
}

.tools-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tools-hero-stats span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: #c6d0d7;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.tools-hero-stats b {
  color: #00b5ff;
}

.tools-catalog-section {
  background: #090a0b;
}

.tools-catalog {
  display: grid;
  gap: 22px;
}

.tool-category {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 9, 11, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.tool-category-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 20px;
}

.tool-category-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
}

.tool-category-head p:last-child {
  color: #c6d0d7;
  line-height: 1.55;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
}

.tool-tile {
  min-height: 106px;
  display: grid;
  place-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 14px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.045);
}

.tool-tile img {
  width: auto;
  max-width: 68px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.35));
}

.tool-tile span {
  max-width: 100%;
  color: #dbeef5;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 850;
}

@media (max-width: 860px) {
  .tools-summary-grid,
  .tool-category-head {
    grid-template-columns: 1fr;
  }
}
.results-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 181, 255, 0.13), transparent 27rem),
    radial-gradient(circle at 12% 78%, rgba(251, 168, 2, 0.07), transparent 22rem),
    #090a0b;
}

.results-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.results-gallery-head .lead {
  max-width: 760px;
}

.gallery-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.gallery-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 181, 255, 0.26);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 14px rgba(0, 181, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gallery-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 181, 255, 0.56);
  background: rgba(0, 181, 255, 0.13);
}

.gallery-count {
  min-width: 76px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
  font-weight: 900;
}

.gallery-count b {
  color: #00b5ff;
}

.gallery-count small {
  color: var(--muted-2);
}

.results-gallery-shell {
  position: relative;
  margin-top: clamp(28px, 5vw, 44px);
}

.results-gallery-shell::before,
.results-gallery-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 120px);
  pointer-events: none;
}

.results-gallery-shell::before {
  left: 0;
  background: linear-gradient(90deg, #090a0b, transparent);
}

.results-gallery-shell::after {
  right: 0;
  background: linear-gradient(270deg, #090a0b, transparent);
}

.results-gallery-track {
  display: flex;
  gap: clamp(14px, 2vw, 20px);
  overflow-x: auto;
  padding: 4px max(18px, calc((100vw - 1180px) / 2)) 20px;
  margin-inline: calc(-1 * max(18px, calc((100vw - 1180px) / 2)));
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 181, 255, 0.5) rgba(255, 255, 255, 0.08);
}

.result-shot {
  flex: 0 0 clamp(210px, 21vw, 286px);
  scroll-snap-align: start;
  margin: 0;
}

.result-shot-btn {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 7px;
  background: linear-gradient(145deg, rgba(0, 181, 255, 0.16), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  cursor: zoom-in;
}

.result-shot-btn::after {
  content: "\f00e";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(7, 9, 11, 0.68);
  font: var(--fa-font-solid);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.result-shot-btn:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.result-shot img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  object-fit: contain;
  background: #050607;
}

.result-shot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-shot figcaption strong {
  color: #9de8ff;
  font-size: 0.72rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(4, 6, 8, 0.9);
  backdrop-filter: blur(16px);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img {
  max-width: min(94vw, 980px);
  max-height: 86vh;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #050607;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62);
  object-fit: contain;
}

.gallery-lightbox button {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(7, 9, 11, 0.72);
}

.gallery-lightbox-close {
  right: 20px;
  top: 20px;
}

.gallery-lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 820px) {
  .results-gallery-head {
    align-items: start;
    flex-direction: column;
  }

  .gallery-controls {
    width: 100%;
    justify-content: space-between;
  }

  .result-shot {
    flex-basis: min(72vw, 300px);
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .gallery-lightbox-prev { left: calc(50% - 62px); }
  .gallery-lightbox-next { right: calc(50% - 62px); }
}
/* Global polish for internal pages */
main {
  position: relative;
  overflow: hidden;
}

main > * {
  position: relative;
  z-index: 1;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 181, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 181, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(0, 181, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 86% 72%, rgba(251, 168, 2, 0.045), transparent 22rem);
  background-size: 76px 76px, 76px 76px, auto, auto;
  opacity: 0.62;
  animation: ambientGrid 18s ease-in-out infinite alternate;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 10%, rgba(0, 181, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 18% 72%, rgba(251, 168, 2, 0.055), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.page-hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 181, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 181, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  opacity: 0.34;
}

.page-hero::after {
  width: min(42vw, 560px);
  aspect-ratio: 1;
  right: -160px;
  top: -210px;
  border: 1px solid rgba(0, 181, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(0, 181, 255, 0.055), 0 0 90px rgba(0, 181, 255, 0.08);
  animation: orbitBreath 7s ease-in-out infinite alternate;
}

.page-hero .container,
.section .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.section h2 {
  text-wrap: balance;
}

.card,
.cta,
.tool-category,
.faq-item,
.form,
.notice,
.legal-content {
  position: relative;
}

.card,
.tool-category,
.faq-item,
.form {
  overflow: hidden;
}

.card::before,
.tool-category::before,
.faq-item::before,
.form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 34%, rgba(0, 181, 255, 0.1) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 0.28s ease, transform 0.55s ease;
}

.card:hover::before,
.tool-category:hover::before,
.faq-item:hover::before,
.form:hover::before {
  opacity: 1;
  transform: translateX(28%);
}

.learn-more::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.18s ease;
}

.learn-more:hover::after {
  transform: translateX(4px);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  display: block;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes ambientGrid {
  to { transform: translate3d(-18px, 16px, 0); opacity: 0.82; }
}

@keyframes orbitBreath {
  to { transform: scale(1.08) translate3d(-16px, 18px, 0); opacity: 0.82; }
}

@media (max-width: 760px) {
  .page-hero::after {
    width: 360px;
    right: -210px;
    top: -170px;
  }
}

@media (max-width: 760px) {
  .mockup-showcase {
    padding: 10px;
  }

  .hero-mockup-image {
    max-height: 420px;
  }

  .mockup-badge {
    display: none;
  }
}

/* Strategic service plans */
.strategic-plans-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 181, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 28%, rgba(251, 168, 2, 0.06), transparent 24rem),
    linear-gradient(180deg, #090a0b, #0d0e10 48%, #090a0b);
  border-block: 1px solid var(--line-soft);
}

.strategic-plans-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 181, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 181, 255, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.45;
}

.plans-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 24px;
}

.plans-head h2 {
  max-width: 880px;
}

.plan-signal-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(26px, 5vw, 44px);
}

.plan-signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 181, 255, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  color: #d7f3ff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 900;
}

.plan-signal-row i {
  color: var(--blue);
}

.strategic-plans-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  grid-column: span 3;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: clamp(22px, 3.2vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(9, 10, 11, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 181, 255, 0.42);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42), 0 0 44px rgba(0, 181, 255, 0.09);
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 181, 255, 0.16), transparent 16rem),
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.09) 48%, transparent 62% 100%);
  opacity: 0.58;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 181, 255, 0.28);
  border-radius: 14px;
  color: #00b5ff;
  background: rgba(0, 181, 255, 0.1);
  box-shadow: inset 0 0 22px rgba(0, 181, 255, 0.08), 0 0 26px rgba(0, 181, 255, 0.16);
}

.plan-card h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.18rem);
}

.plan-card p {
  color: #c6d0d7;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 26px;
  color: #dbeef5;
  font-size: 0.95rem;
  line-height: 1.45;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 181, 255, 0.58);
}

.plan-price {
  display: grid;
  gap: 6px;
  margin-top: auto;
  border: 1px solid rgba(0, 181, 255, 0.18);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0, 181, 255, 0.065);
}

.plan-price small {
  color: var(--muted-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-price strong {
  color: #ffffff;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
}

.plan-price span {
  color: #dbeef5;
  font-weight: 800;
}

.plan-price b,
.plan-market-note strong {
  color: #00b5ff;
}

.plan-market-note {
  border-left: 3px solid var(--blue);
  padding-left: 14px;
  font-size: 0.95rem;
}

.plan-card .btn {
  width: 100%;
  margin-top: 2px;
}

.plan-card-featured {
  grid-column: span 3;
  border-color: rgba(0, 181, 255, 0.38);
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 181, 255, 0.22), transparent 20rem),
    linear-gradient(145deg, rgba(0, 181, 255, 0.14), rgba(255, 255, 255, 0.035) 42%, rgba(251, 168, 2, 0.08)),
    rgba(7, 9, 11, 0.9);
}

.plan-card-dark {
  grid-column: span 4;
  background:
    radial-gradient(circle at 12% 15%, rgba(0, 181, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #08090a;
}

.plan-card-consulting {
  grid-column: span 2;
  background:
    radial-gradient(circle at 74% 14%, rgba(251, 168, 2, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #0d0e10;
}

.plan-card-light {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 181, 255, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(217, 219, 219, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(13, 14, 16, 0.88);
}

.plan-ribbon {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  border: 1px solid rgba(0, 181, 255, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: #eaf9ff;
  background: rgba(0, 181, 255, 0.13);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-diagnosis-section {
  background:
    radial-gradient(circle at 16% 26%, rgba(0, 181, 255, 0.16), transparent 26rem),
    radial-gradient(circle at 86% 78%, rgba(251, 168, 2, 0.08), transparent 24rem),
    #090a0b;
}

.diagnosis-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(0, 181, 255, 0.1), rgba(255, 255, 255, 0.03) 44%, rgba(251, 168, 2, 0.055)),
    rgba(7, 9, 11, 0.76);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
}

.diagnosis-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(0, 181, 255, 0.22);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.diagnosis-card > i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #00b5ff;
  background: rgba(0, 181, 255, 0.1);
  font-size: 1.35rem;
  box-shadow: inset 0 0 22px rgba(0, 181, 255, 0.08), 0 0 28px rgba(0, 181, 255, 0.14);
}

.diagnosis-card p {
  color: #ffffff;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.diagnosis-card small {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .plans-head,
  .diagnosis-panel {
    grid-template-columns: 1fr;
  }

  .strategic-plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .plan-card-featured,
  .plan-card-dark,
  .plan-card-consulting {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .plan-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-ribbon {
    position: static;
    width: fit-content;
    order: -1;
  }
}
/* About team section */
.team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 181, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(251, 168, 2, 0.06), transparent 24rem),
    linear-gradient(180deg, #090a0b, #0d0e10);
  border-block: 1px solid var(--line-soft);
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 181, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 181, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
  opacity: 0.46;
}

.team-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.team-copy {
  display: grid;
  gap: 18px;
}

.team-copy p:not(.eyebrow):not(.lead) {
  color: #c6d0d7;
  font-size: 1.02rem;
}

.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.team-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #060708;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46), 0 0 54px rgba(0, 181, 255, 0.11);
}

.team-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 7, 9, 0.82)),
    linear-gradient(90deg, rgba(0, 181, 255, 0.18), transparent 36%, rgba(251, 168, 2, 0.08));
}

.team-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.09) 50%, transparent 60% 100%);
  transform: translateX(-78%);
  animation: teamPhotoScan 6.4s ease-in-out infinite;
}

.team-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.01);
}

.team-photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 16px;
  background: rgba(7, 9, 11, 0.7);
  backdrop-filter: blur(14px);
}

.team-photo-card figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9de8ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-photo-card figcaption strong {
  color: #ffffff;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 5vw, 54px);
}

.team-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.02)),
    rgba(7, 9, 11, 0.78);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 181, 255, 0.12), transparent 12rem),
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.08) 48%, transparent 62% 100%);
  opacity: 0.58;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 181, 255, 0.38);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.36), 0 0 34px rgba(0, 181, 255, 0.08);
}

.team-card > * {
  position: relative;
  z-index: 1;
}


.team-portrait {
  position: relative;
  width: calc(100% + 36px);
  aspect-ratio: 4 / 5;
  margin: -18px -18px 4px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #060708;
}

.team-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 46%, rgba(5, 7, 9, 0.82)),
    linear-gradient(90deg, rgba(0, 181, 255, 0.14), transparent 45%, rgba(251, 168, 2, 0.06));
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.team-card:hover .team-portrait img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}
.team-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 181, 255, 0.32);
  border-radius: 16px;
  color: #eaf9ff;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(0, 181, 255, 0.82), rgba(0, 90, 132, 0.72));
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08), 0 0 24px rgba(0, 181, 255, 0.16);
  font-family: Sora, Inter, sans-serif;
  font-weight: 900;
}

.team-card small {
  color: #9de8ff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  font-size: 1.15rem;
}

.team-card p {
  color: #c6d0d7;
  font-size: 0.92rem;
  line-height: 1.48;
}

@keyframes teamPhotoScan {
  0%, 46% { transform: translateX(-78%); opacity: 0; }
  56% { opacity: 0.46; }
  80%, 100% { transform: translateX(78%); opacity: 0; }
}

@media (max-width: 1080px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .team-intro-grid {
    grid-template-columns: 1fr;
  }

  .team-photo-card {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-actions {
    display: grid;
  }

  .team-photo-card {
    min-height: 300px;
    border-radius: 18px;
  }
}