/* =============================================================
   BroLabs Co. — Stylesheet
   Dark tech premium · Electric blue · Inter
   ============================================================= */

/* ----------------- Tokens ----------------- */
:root {
  color-scheme: dark;
  /* Brand */
  --c-midnight: #0D1117;
  --c-deep-navy: #111827;
  --c-slate-blue: #1F2937;
  --c-electric: #3B82F6;
  --c-sky: #60A5FA;
  --c-white: #FFFFFF;

  /* Text */
  --c-text: #F9FAFB;
  --c-text-2: #CBD5E1;
  --c-text-muted: #94A3B8;

  /* Surfaces */
  --c-border: #263241;
  --c-border-strong: #34435A;
  --c-surface: #101722;
  --c-surface-2: #151F2E;
  --c-surface-3: #1A2638;

  /* States */
  --c-success: #22C55E;
  --c-warning: #F59E0B;
  --c-error: #EF4444;

  /* Glow */
  --glow-blue: rgba(59, 130, 246, 0.35);
  --glow-blue-soft: rgba(59, 130, 246, 0.18);
  --glow-sky: rgba(96, 165, 250, 0.28);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;

  /* Space */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-8: 64px;
  --s-10: 80px;
  --s-12: 96px;
  --s-16: 128px;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 600ms;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
  --shadow-blue: 0 0 40px rgba(59, 130, 246, 0.24);
  --shadow-blue-strong: 0 0 60px rgba(59, 130, 246, 0.42);

  /* Layout */
  --header-h: 76px;
  --container: 1200px;
  --container-lg: 1360px;
}

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
}

/* ----------------- Base ----------------- */
html,
body {
  background: var(--c-midnight);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  overflow-x: clip;
}

body {
  min-height: 100vh;
  overflow-x: clip;
}

/* Selection */
::selection {
  background: var(--c-electric);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--c-midnight);
}

::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 8px;
  border: 2px solid var(--c-midnight);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-border-strong);
}

/* Utility */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--s-3);
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, var(--c-electric) 0%, var(--c-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ----------------- Background ----------------- */
/* Official background image — fixed, fills the entire site */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: url("../assets/fundo-oficial.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Subtle dark vignette to ensure content readability over the bg image */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at center, transparent 45%, rgba(6, 10, 20, 0.55) 100%),
    linear-gradient(180deg, rgba(8, 12, 22, 0.25) 0%, rgba(8, 12, 22, 0.45) 100%);
}

/* ----------------- Splash ----------------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--c-midnight);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), visibility 700ms;
}

.splash__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.14), transparent 36%),
    radial-gradient(circle at 50% 78%, rgba(96, 165, 250, 0.05), transparent 34%),
    linear-gradient(180deg, #02060f 0%, #050b16 52%, #070f1b 100%);
  animation: splashBgIgnition 3s ease-in-out both;
}

.splash__inner {
  position: relative;
  justify-content: center;
  display: grid;
  place-items: center;
  width: min(92vw, 720px);
  min-height: 100vh;
  animation: splashFade 600ms var(--ease-out) both;
}

.splash__rock-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72vw, 440px);
  aspect-ratio: 1 / 1;
  isolation: isolate;
  transform: translateX(-8.3%);
}

.splash__rock {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter:
    hue-rotate(-48deg) saturate(1.2) brightness(0.45) drop-shadow(0 0 0 rgba(59, 130, 246, 0));
  animation: splashRockIgnition 3s ease-in-out both;
}

.splash__rock-glow {
  position: absolute;
  z-index: 0;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 68%);
  filter: blur(16px);
  animation: splashGlowIgnition 3s ease-in-out both;
}

.splash__rock-floor {
  position: absolute;
  z-index: 1;
  bottom: 19%;
  width: 54%;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.72), transparent 72%);
  filter: blur(16px);
  animation: splashFloorIgnition 3s ease-in-out both;
}

.splash.is-leaving {
  opacity: 0;
  transform: translateY(-2vh);
  pointer-events: none;
}

.splash.is-gone {
  visibility: hidden;
}

@keyframes splashFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: scale(0.86);
    filter: blur(8px) drop-shadow(0 0 0 rgba(59, 130, 246, 0));
  }

  60% {
    opacity: 1;
    transform: scale(1.02);
    filter: blur(0) drop-shadow(0 0 60px rgba(59, 130, 246, 0.55));
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) drop-shadow(0 0 44px rgba(59, 130, 246, 0.45));
  }
}

@keyframes logoBreathe {

  0%,
  100% {
    filter: drop-shadow(0 0 32px rgba(59, 130, 246, 0.32));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 60px rgba(96, 165, 250, 0.55));
    transform: scale(1.015);
  }
}

@keyframes splashBgIgnition {
  0% {
    filter: brightness(0.58);
  }

  52% {
    filter: brightness(1.04);
  }

  100% {
    filter: brightness(0.58);
  }
}

@keyframes splashRockIgnition {
  0% {
    opacity: 0;
    transform: scale(0.97);
    filter: hue-rotate(-48deg) saturate(0.82) brightness(0.1) blur(3px) drop-shadow(0 0 0 rgba(59, 130, 246, 0));
  }

  22% {
    opacity: 0.38;
    transform: scale(0.99);
    filter: hue-rotate(-48deg) saturate(1.02) brightness(0.42) blur(1px) drop-shadow(0 0 12px rgba(59, 130, 246, 0.2));
  }

  52% {
    opacity: 1;
    transform: scale(1.012);
    filter: hue-rotate(-48deg) saturate(1.36) brightness(1.18) blur(0) drop-shadow(0 0 42px rgba(59, 130, 246, 0.78)) drop-shadow(0 0 92px rgba(59, 130, 246, 0.36));
  }

  78% {
    opacity: 0.38;
    transform: scale(0.99);
    filter: hue-rotate(-48deg) saturate(1.02) brightness(0.42) blur(1px) drop-shadow(0 0 12px rgba(59, 130, 246, 0.2));
  }

  100% {
    opacity: 0;
    transform: scale(0.97);
    filter: hue-rotate(-48deg) saturate(0.82) brightness(0.1) blur(3px) drop-shadow(0 0 0 rgba(59, 130, 246, 0));
  }
}

@keyframes splashGlowIgnition {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.82);
  }

  52% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes splashFloorIgnition {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.55);
  }

  52% {
    opacity: 0.96;
    transform: scaleX(1.08);
  }
}

/* ----------------- Header ----------------- */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), padding var(--t-base) var(--ease);
  background: rgba(13, 17, 23, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(13, 17, 23, 0.82);
  border-bottom-color: rgba(96, 165, 250, 0.14);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  height: var(--header-h);
}

.header__brand {
  display: inline-flex;
  align-items: center;
}

.header__logo {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(59, 130, 246, 0.32));
  transition: filter var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.header__brand:hover .header__logo {
  filter: drop-shadow(0 0 28px rgba(96, 165, 250, 0.55));
  transform: translateY(-1px);
}

.nav {
  display: flex;
  gap: var(--s-4);
  align-items: center;
}

.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-2);
  padding: 8px 0;
  transition: color var(--t-fast) var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--c-electric), var(--c-sky));
  transition: width var(--t-base) var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--c-text);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.header__menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  background: rgba(15, 23, 42, 0.5);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header__menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast) var(--ease);
}

.header__menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ----------------- Buttons ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
}

.btn--lg {
  padding: 18px 28px;
  font-size: 15px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-electric) 0%, var(--c-sky) 100%);
  color: var(--c-white);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.28);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-sky) 0%, var(--c-electric) 100%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

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

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.55);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--secondary {
  background: rgba(15, 23, 42, 0.5);
  color: var(--c-text);
  border-color: rgba(96, 165, 250, 0.35);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.6);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-sky);
  border-color: rgba(96, 165, 250, 0.25);
}

.btn--ghost:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--c-text);
  border-color: rgba(96, 165, 250, 0.5);
}

/* ----------------- Badge ----------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--c-sky);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--c-sky);
  box-shadow: 0 0 12px var(--c-sky);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

/* ----------------- Section base ----------------- */
.section {
  position: relative;
  padding-block: var(--s-12);
  z-index: 1;
}

.section__head {
  max-width: 760px;
  margin-bottom: var(--s-8);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--c-sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.section__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: var(--s-3);
}

.section__subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-text-2);
  max-width: 60ch;
}

/* ----------------- Reveal animations ----------------- */
[data-reveal] [data-reveal-delay],
[data-reveal-delay] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: 0ms;
}

[data-reveal].is-revealed [data-reveal-delay],
[data-reveal-delay].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------- HERO ----------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--s-10));
  padding-bottom: var(--s-12);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(59, 130, 246, 0.22), transparent 35%),
    radial-gradient(circle at 22% 78%, rgba(96, 165, 250, 0.12), transparent 35%);
  z-index: 0;
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 620px;
}

.hero__title {
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  margin-block: var(--s-3) var(--s-3);
}

.hero__subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--c-text-2);
  margin-bottom: var(--s-5);
  max-width: 56ch;
}

.hero__ctas {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

.hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}

.hero__pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__pillar strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0;
}

.hero__pillar span {
  font-size: 12px;
  color: var(--c-text-muted);
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 90%;
  max-width: 560px;
  margin-inline: auto;
  perspective: 1100px;
}

.hero__signal-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-12deg);
  box-shadow: inset 0 0 42px rgba(59, 130, 246, 0.08), 0 0 42px rgba(59, 130, 246, 0.08);
  animation: ringSpin 18s linear infinite;
  opacity: 0;
}

.hero__signal-ring--two {
  inset: 22%;
  animation-duration: 13s;
  animation-direction: reverse;
  opacity: 0;
}

@keyframes ringSpin {
  to {
    transform: rotateX(66deg) rotateZ(348deg);
  }
}

/* Rock scene */
.hero__rock-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  mask-image: radial-gradient(ellipse 75% 50% at 50% 50%, black 42%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 73% 75% at 50% 40%, black 42%, transparent 78%);
}

.hero__orbit-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 32px;
  padding-inline: 12px;
  border: 1px solid rgba(96, 165, 250, 0.36);
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.78);
  color: var(--c-sky);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.18);
  backdrop-filter: blur(12px);
  animation: nodeOrbitFloat 5s ease-in-out infinite;
}

.hero__orbit-node--one {
  top: 23%;
  right: 9%;
}

.hero__orbit-node--two {
  left: 8%;
  top: 45%;
  animation-delay: -1.6s;
}

.hero__orbit-node--three {
  right: 9%;
  bottom: 32%;
  animation-delay: -3.2s;
}

@keyframes nodeOrbitFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 24px);
  }

  50% {
    transform: translate3d(0, -8px, 40px);
  }
}

.hero__system-panel {
  position: absolute;
  z-index: 4;
  width: min(210px, 42vw);
  padding: 16px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(13, 17, 23, 0.92));
  box-shadow: var(--shadow-md), 0 0 34px rgba(59, 130, 246, 0.14);
  backdrop-filter: blur(14px);
}

.hero__system-panel span,
.hero__system-panel small {
  display: block;
  color: var(--c-text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__system-panel strong {
  display: block;
  margin-block: 4px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05;
  color: var(--c-text);
}

.hero__system-panel--left {
  left: -10px;
  bottom: 85%;
  transform: rotateY(9deg) rotateZ(-2deg);
}

.hero__system-panel--right {
  top: -8%;
  right: -40px;
  transform: rotateY(-10deg) rotateZ(2deg);
}

.hero__rock-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.32) 0%, rgba(59, 130, 246, 0) 65%);
  filter: blur(48px);
  z-index: 0;
  animation: rockBgGlow 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes rockBgGlow {

  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.14);
  }
}

.hero__rock {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 500px;
  height: auto;
  display: block;
  margin-inline: auto;
  /* Blend the dark PNG background away */
  mix-blend-mode: screen;
  /* Shift purple hue → electric blue (#3B82F6) */
  filter: hue-rotate(-48deg) saturate(1.3) brightness(1.12) drop-shadow(0 0 36px rgba(59, 130, 246, 0.7)) drop-shadow(0 0 72px rgba(59, 130, 246, 0.38)) drop-shadow(0 0 120px rgba(59, 130, 246, 0.18));
  animation: rockFloat 7s ease-in-out infinite;
}

@keyframes rockFloat {

  0%,
  100% {
    transform: translateY(-8px);
  }

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

.hero__rock-floor-glow {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.65) 0%, transparent 70%);
  filter: blur(16px);
  z-index: 1;
  border-radius: 50%;
  animation: rockFloorPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes rockFloorPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.2);
  }
}

.hero__scroll {
  position: absolute;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
}

.hero__scroll span {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--c-sky));
  animation: scrollLine 2.2s ease-in-out infinite;
}

.hero__scroll small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 600;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ----------------- MOBILE ROCK SHOWCASE ----------------- */
.mobile-rock-showcase {
  display: none;
}

.mobile-rock-showcase__scene {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.mobile-rock-showcase__panel {
  position: absolute;
  top: 10%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(42vw, 178px);
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.86), rgba(13, 17, 23, 0.94));
  box-shadow: var(--shadow-md), 0 0 32px rgba(59, 130, 246, 0.14);
  backdrop-filter: blur(14px);
}

.mobile-rock-showcase__panel--left {
  left: clamp(12px, 4vw, 24px);
}

.mobile-rock-showcase__panel--right {
  right: clamp(12px, 4vw, 24px);
}

.mobile-rock-showcase__panel span,
.mobile-rock-showcase__panel small {
  display: block;
  color: var(--c-text-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-rock-showcase__panel strong {
  display: block;
  margin-block: 5px;
  color: var(--c-text);
  font-size: clamp(20px, 6vw, 27px);
  font-weight: 800;
  line-height: 1.05;
}

.mobile-rock-showcase__image {
  position: relative;
  z-index: 2;
  width: min(82vw, 360px);
  height: auto;
  mix-blend-mode: screen;
  filter:
    hue-rotate(-48deg) saturate(1.3) brightness(1.12) drop-shadow(0 0 34px rgba(59, 130, 246, 0.72)) drop-shadow(0 0 80px rgba(59, 130, 246, 0.34));
  animation: mobileRockFloat 7s ease-in-out infinite;
}

.mobile-rock-showcase__ring {
  position: absolute;
  z-index: 1;
  width: min(82vw, 360px);
  height: min(82vw, 360px);
  border: 0;
  border-radius: 50%;
  transform: rotateX(68deg);
  box-shadow: none;
  opacity: 0;
  animation: none;
}

.mobile-rock-showcase__ring--inner {
  width: min(58vw, 260px);
  height: min(58vw, 260px);
  animation-duration: 11s;
  animation-direction: reverse;
  opacity: 0.74;
}

.mobile-rock-showcase__pulse {
  position: absolute;
  z-index: 0;
  width: min(92vw, 410px);
  height: min(92vw, 410px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 67%);
  filter: blur(14px);
  animation: mobilePulse 5.8s ease-in-out infinite;
}

.mobile-rock-showcase__floor {
  position: absolute;
  z-index: 1;
  bottom: 19%;
  width: min(56vw, 250px);
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.68), transparent 72%);
  filter: blur(16px);
  animation: mobileFloorPulse 7s ease-in-out infinite;
}

@keyframes mobileRockFloat {

  0%,
  100% {
    transform: translateY(-6px) scale(1);
  }

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

@keyframes mobileRingSpin {
  to {
    transform: rotateX(68deg) rotateZ(360deg);
  }
}

@keyframes mobilePulse {

  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes mobileFloorPulse {

  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.9);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.12);
  }
}

/* ----------------- PAIN / DIAGNOSTIC ----------------- */
.section--pain {
  padding-top: var(--s-8);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

.pain-card {
  position: relative;
  min-height: 220px;
  padding: var(--s-4);
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.58), rgba(13, 17, 23, 0.88));
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}

.pain-card::before {
  content: "";
  position: absolute;
  inset-inline: var(--s-4);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-sky), transparent);
  opacity: 0.7;
}

.pain-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 50%;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.42);
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(13, 17, 23, 0.9));
}

.pain-card span {
  display: inline-flex;
  margin-bottom: var(--s-5);
  color: var(--c-sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pain-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pain-card p {
  color: var(--c-text-2);
  font-size: 14px;
  line-height: 1.65;
}

/* ----------------- SERVICES ----------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

.service-card {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.72), rgba(13, 17, 23, 0.92));
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(59, 130, 246, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  z-index: -1;
}

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

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: var(--shadow-md), 0 0 28px rgba(59, 130, 246, 0.14);
}

.service-card--featured {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(13, 17, 23, 0.92));
  border-color: rgba(96, 165, 250, 0.32);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(96, 165, 250, 0.08));
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--c-sky);
  margin-bottom: var(--s-3);
  transition: transform var(--t-base) var(--ease), color var(--t-base) var(--ease);
}

.service-card:hover .service-card__icon {
  transform: translateY(-2px);
  color: var(--c-white);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-text-2);
  margin-bottom: var(--s-3);
}

.service-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-sky);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(96, 165, 250, 0.22);
}

/* ----------------- ECOSYSTEM (Soluções panorâmica) ----------------- */
.ecosystem-board {
  position: relative;
  margin-top: var(--s-6);
  padding: clamp(16px, 2vw, 28px);
  border-radius: var(--r-xl);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.55), rgba(13, 17, 23, 0.78));
  border: 1px solid rgba(96, 165, 250, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(59, 130, 246, 0.12),
    inset 0 1px 0 rgba(96, 165, 250, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.ecosystem-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.18), transparent 36%),
    radial-gradient(circle at 88% 100%, rgba(96, 165, 250, 0.12), transparent 38%);
  z-index: -1;
  pointer-events: none;
}

.ecosystem-board__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* Decorative tech corners */
.ecosystem-board__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--c-sky);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.ecosystem-board__corner--tl {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 6px;
}

.ecosystem-board__corner--tr {
  top: 12px;
  right: 12px;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 6px;
}

.ecosystem-board__corner--bl {
  bottom: 12px;
  left: 12px;
  border-right: 0;
  border-top: 0;
  border-bottom-left-radius: 6px;
}

.ecosystem-board__corner--br {
  bottom: 12px;
  right: 12px;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 6px;
}

/* ----------------- SECURITY CARD ----------------- */
.security-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.7), rgba(13, 17, 23, 0.92));
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    var(--shadow-lg),
    0 0 80px rgba(59, 130, 246, 0.14),
    inset 0 1px 0 rgba(96, 165, 250, 0.08);
}

.security-card__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.security-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}

.security-card:hover .security-card__image {
  transform: scale(1.04);
}

.security-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 17, 23, 0) 0%, rgba(13, 17, 23, 0.55) 100%),
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.18), transparent 55%);
  pointer-events: none;
}

.security-card__badge {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(13, 17, 23, 0.7);
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 999px;
  color: var(--c-sky);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
}

.security-card__content {
  padding: clamp(28px, 3.6vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-2);
}

.security-card__list {
  margin-top: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security-card__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.5;
}

.security-card__list i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-electric);
  box-shadow: 0 0 12px var(--c-sky), 0 0 24px rgba(59, 130, 246, 0.45);
  flex-shrink: 0;
}

.security-card__ctas {
  margin-top: var(--s-4);
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}

/* ----------------- ABOUT ----------------- */
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-8);
  align-items: center;
}

.about__content {
  max-width: 600px;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.about__pillar {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-3);
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}

.about__pillar:hover {
  border-color: rgba(96, 165, 250, 0.45);
  background: rgba(59, 130, 246, 0.06);
}

.about__pillar-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-sky);
  margin-bottom: 8px;
}

.about__pillar h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about__pillar p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text-muted);
}

/* Circuit visual */
.about__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
}

.circuit {
  position: relative;
  width: 100%;
  height: 100%;
}

.circuit__core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.32), rgba(13, 17, 23, 0.92));
  border: 1px solid rgba(96, 165, 250, 0.5);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.42), inset 0 0 40px rgba(59, 130, 246, 0.18);
  animation: corePulse 4s ease-in-out infinite;
}

.circuit__core img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.6));
}

@keyframes corePulse {

  0%,
  100% {
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.42), inset 0 0 40px rgba(59, 130, 246, 0.18);
  }

  50% {
    box-shadow: 0 0 90px rgba(59, 130, 246, 0.7), inset 0 0 60px rgba(96, 165, 250, 0.32);
  }
}

.circuit__node {
  position: absolute;
  width: 70px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(96, 165, 250, 0.3);
  backdrop-filter: blur(8px);
}

.circuit__node::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-2);
}

.circuit__node::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: var(--r-sm);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 60%);
}

.circuit__node--1 {
  top: 8%;
  left: 8%;
  animation: nodeFloat 5s ease-in-out infinite;
}

.circuit__node--2 {
  top: 8%;
  right: 8%;
  animation: nodeFloat 5.4s ease-in-out infinite -1s;
}

.circuit__node--3 {
  bottom: 8%;
  left: 8%;
  animation: nodeFloat 5.8s ease-in-out infinite -2s;
}

.circuit__node--4 {
  bottom: 8%;
  right: 10%;
  animation: nodeFloat 6s ease-in-out infinite -3s;
}

@keyframes nodeFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -6px);
  }
}

.circuit__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circuit__lines path {
  fill: none;
  stroke: url(#circuitGrad);
  stroke-width: 1.2;
  stroke-dasharray: 6 4;
  opacity: 0.4;
  animation: dashFlow 16s linear infinite;
}

.circuit__lines path:nth-child(2) {
  animation-duration: 12s;
}

.circuit__lines path:nth-child(3) {
  animation-duration: 14s;
}

.circuit__lines path:nth-child(4) {
  animation-duration: 18s;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -200;
  }
}

/* SVG gradient inline trick: we add via JS or via style */
.circuit__lines {
  color: var(--c-sky);
}

.circuit__lines path {
  stroke: currentColor;
}

/* ----------------- PROCESS ----------------- */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

.process__step {
  position: relative;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-3);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.process__step:hover {
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-3px);
}

.process__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-electric), var(--c-sky));
  color: var(--c-white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: var(--s-3);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.45);
}

.process__step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process__step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text-muted);
}

/* ----------------- DIFFERENTIALS ----------------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

.diff-card {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-4);
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  position: relative;
}

.diff-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: var(--s-4);
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--c-electric), var(--c-sky));
  transition: width var(--t-base) var(--ease);
}

.diff-card:hover::before {
  width: calc(100% - var(--s-4) * 2);
}

.diff-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-3px);
}

.diff-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-2);
}

/* ----------------- CLIENTS preview ----------------- */
.clients-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

.client-tile {
  position: relative;
  display: block;
  background: linear-gradient(180deg, rgba(21, 31, 46, 0.85), rgba(13, 17, 23, 0.95));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  min-height: 280px;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.client-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.18), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.10), transparent 50%);
  opacity: 0.6;
  transition: opacity var(--t-base) var(--ease);
}

.client-tile:hover {
  border-color: rgba(96, 165, 250, 0.55);
  transform: translateY(-4px);
}

.client-tile:hover::after {
  opacity: 1;
}

.client-tile__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: var(--s-3);
}

.client-tile__eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--c-sky);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--r-sm);
  background: rgba(59, 130, 246, 0.08);
}

.client-tile__brand {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--c-white), var(--c-sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-tile__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-2);
  max-width: 40ch;
}

.client-tile__more {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-sky);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap var(--t-base) var(--ease);
}

.client-tile:hover .client-tile__more {
  letter-spacing: 0.14em;
}

.clients-cta {
  text-align: center;
  margin-top: var(--s-6);
}

/* ----------------- CTA Final ----------------- */
.section--cta {
  padding-bottom: var(--s-12);
}

.cta-box {
  position: relative;
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(96, 165, 250, 0.32);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(13, 17, 23, 0.95));
}

.cta-box__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.28), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(96, 165, 250, 0.18), transparent 50%);
  opacity: 0.85;
}

.cta-box__content {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.cta-box__title {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  margin: var(--s-2) 0 var(--s-3);
}

.cta-box__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text-2);
  margin-bottom: var(--s-5);
}

.cta-box__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
}

/* ----------------- FOOTER ----------------- */
.footer {
  position: relative;
  padding-top: var(--s-10);
  padding-bottom: var(--s-4);
  border-top: 1px solid var(--c-border);
  background: linear-gradient(180deg, transparent, rgba(13, 17, 23, 1));
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--c-border);
}

.footer__logo {
  height: 114px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.32));
  margin-bottom: var(--s-3);
}

.footer__tagline {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.footer__col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-sky);
  margin-bottom: var(--s-2);
}

.footer__col a,
.footer__col span {
  display: block;
  font-size: 14px;
  color: var(--c-text-2);
  padding: 6px 0;
  transition: color var(--t-fast) var(--ease);
}

.footer__col a:hover {
  color: var(--c-text);
}

/* WhatsApp link in footer */
.footer__wa-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.footer__wa-link svg {
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease);
}

.footer__wa-link:hover svg {
  transform: scale(1.15);
}

/* Instagram social link */
.footer__social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}

.footer__social-link svg {
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease), color var(--t-fast) var(--ease);
}

.footer__social-link:hover svg {
  transform: scale(1.12);
  color: var(--c-sky);
}

.footer__social-link span {
  display: inline !important;
  padding: 0 !important;
}

/* WhatsApp icon inside CTA buttons */
.btn__icon {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-3);
  font-size: 12px;
  color: var(--c-text-muted);
  flex-wrap: wrap;
  gap: var(--s-2);
}

.footer__bottom-tagline {
  color: var(--c-sky);
  letter-spacing: 0.04em;
}

/* ===========================================================
   CLIENTES PAGE
   =========================================================== */
.page-clients {
  padding-top: var(--header-h);
}

.clients-hero {
  padding-top: var(--s-12);
  padding-bottom: var(--s-10);
  text-align: center;
}

.clients-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}

.clients-hero__title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  margin: var(--s-2) 0;
}

.clients-hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-text-2);
  max-width: 60ch;
}

.clients-hero__metrics {
  display: flex;
  gap: var(--s-5);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.metric strong {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--c-electric), var(--c-sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
}

/* Lista de clientes */
.clients-list {
  padding-block: var(--s-10);
}

.client-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}

.client-case {
  position: relative;
  min-height: 440px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.66), rgba(13, 17, 23, 0.92));
  overflow: hidden;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(96, 165, 250, 0.06);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.client-case::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(59, 130, 246, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(96, 165, 250, 0.08), transparent 46%);
  opacity: 0.75;
  pointer-events: none;
}

.client-case:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.48);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(59, 130, 246, 0.16);
}

.client-case__top,
.client-case h2,
.client-case p,
.client-case ul,
.client-case__signal,
.client-case__flow {
  position: relative;
  z-index: 1;
}

.client-case__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  color: var(--c-text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-case__top strong {
  color: var(--c-sky);
  font-size: 11px;
}

.client-case h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 800;
  margin-bottom: var(--s-3);
  background: linear-gradient(135deg, var(--c-white), var(--c-sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-case p {
  max-width: 46ch;
  color: var(--c-text-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--s-4);
}

.client-case ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.client-case li {
  color: var(--c-sky);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--r-sm);
  background: rgba(59, 130, 246, 0.08);
}

.client-case__signal {
  position: absolute;
  left: clamp(28px, 4vw, 44px);
  right: clamp(28px, 4vw, 44px);
  bottom: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: end;
  gap: 12px;
  height: 92px;
}

.client-case__signal span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--c-sky), var(--c-electric));
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.22);
  transform-origin: bottom;
  animation: signalRise 4.5s ease-in-out infinite;
}

.client-case__signal span:nth-child(2) {
  animation-delay: -0.8s;
}

.client-case__signal span:nth-child(3) {
  animation-delay: -1.6s;
}

.client-case__signal span:nth-child(4) {
  animation-delay: -2.4s;
}

.client-case__signal span:nth-child(5) {
  animation-delay: -3.2s;
}

@keyframes signalRise {

  0%,
  100% {
    transform: scaleY(0.86);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.client-case__flow {
  position: absolute;
  left: clamp(28px, 4vw, 44px);
  right: clamp(28px, 4vw, 44px);
  bottom: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.client-case__flow span {
  display: inline-flex;
  justify-content: center;
  color: var(--c-text);
  font-size: 12px;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: rgba(13, 17, 23, 0.72);
}

.client-case__flow i {
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.08), var(--c-sky));
  position: relative;
  overflow: hidden;
}

.client-case__flow i::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 35%;
  background: linear-gradient(90deg, transparent, var(--c-sky), transparent);
  animation: flowLine 2.8s linear infinite;
}

@keyframes flowLine {
  from {
    transform: translateX(-120%);
  }

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

@keyframes flowLineVertical {
  from {
    transform: translateY(-120%);
  }

  to {
    transform: translateY(240%);
  }
}

.client-operating-system {
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-border);
}

.client-os-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

.client-os-grid div {
  padding: var(--s-3);
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: var(--r-md);
  background: rgba(17, 24, 39, 0.46);
}

.client-os-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--c-text);
  font-size: 15px;
}

.client-os-grid p {
  color: var(--c-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.client-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
  margin-bottom: var(--s-12);
  scroll-margin-top: calc(var(--header-h) + var(--s-4));
}

.client-row:last-of-type {
  margin-bottom: 0;
}

.client-row--reverse .client-row__visual {
  order: 2;
}

.client-row--reverse .client-row__content {
  order: 1;
}

.client-row__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  margin: var(--s-2) 0 var(--s-3);
  background: linear-gradient(135deg, var(--c-white), var(--c-sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-row__desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text-2);
  margin-bottom: var(--s-3);
}

.client-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--s-4);
}

.client-row__tags li {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(96, 165, 250, 0.28);
  color: var(--c-sky);
}

.client-row__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
}

.client-row__highlights>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.client-row__highlights strong {
  font-size: 14px;
  font-weight: 700;
}

.client-row__highlights span {
  font-size: 12px;
  color: var(--c-text-muted);
}

/* Mock visuals */
.client-mock {
  position: relative;
  background: linear-gradient(180deg, rgba(21, 31, 46, 0.95), rgba(10, 14, 20, 1));
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(59, 130, 246, 0.16);
  animation: mockFloat 8s ease-in-out infinite;
}

@keyframes mockFloat {

  0%,
  100% {
    transform: translateY(0);
  }

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

.client-mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-border);
  background: rgba(13, 17, 23, 0.65);
}

.client-mock__bar>span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.22);
}

.client-mock__bar>span:first-child {
  background: rgba(239, 68, 68, 0.55);
}

.client-mock__bar>span:nth-child(2) {
  background: rgba(245, 158, 11, 0.55);
}

.client-mock__bar>span:nth-child(3) {
  background: rgba(34, 197, 94, 0.55);
}

.client-mock__bar em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 600;
}

.client-mock__body {
  padding: var(--s-4);
}

.client-mock__kpi {
  margin-bottom: var(--s-3);
}

.client-mock__kpi small {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 600;
}

.client-mock__kpi strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--c-white), var(--c-sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.05;
  margin: 4px 0;
}

.client-mock__kpi i {
  font-style: normal;
  color: var(--c-success);
  font-size: 12px;
  font-weight: 600;
}

.client-mock__chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 90px;
  margin-bottom: var(--s-3);
}

.client-mock__chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--c-sky), var(--c-electric));
  border-radius: 6px;
  position: relative;
}

.client-mock__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-mock__lines em {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.32), rgba(96, 165, 250, 0.06));
}

.client-mock__lines em:nth-child(2) {
  width: 78%;
}

.client-mock__lines em:nth-child(3) {
  width: 56%;
}

/* Chat mock */
.client-mock__body--chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 78%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.chat-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--c-electric), var(--c-sky));
  color: white;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chat-msg--bot {
  align-self: flex-start;
  background: rgba(31, 41, 55, 0.85);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  border-bottom-left-radius: 4px;
}

.ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-sky);
  box-shadow: 0 0 10px var(--c-sky);
  animation: dotPulse 1.6s ease-in-out infinite;
}

.typing {
  display: inline-flex;
  gap: 4px;
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--c-sky);
  animation: typingDot 1.2s ease-in-out infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Divider entre clientes */
.clients-divider {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin: var(--s-8) auto var(--s-10);
  max-width: 360px;
  color: var(--c-sky);
}

.clients-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

.clients-divider em {
  font-style: normal;
  font-size: 18px;
}

/* ----------------- Tilt cursor follow (hover effect) ----------------- */
[data-controller~="tilt"] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ----------------- Reduced motion ----------------- */
@media (prefers-reduced-motion: reduce) {

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

  [data-reveal] [data-reveal-delay],
  [data-reveal-delay] {
    opacity: 1 !important;
    transform: none !important;
  }

  .splash__rock {
    opacity: 1 !important;
    filter:
      hue-rotate(-48deg) saturate(1.25) brightness(1) drop-shadow(0 0 34px rgba(59, 130, 246, 0.58)) !important;
  }

  .splash__rock-glow,
  .splash__rock-floor {
    opacity: 0.75 !important;
  }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {

  .pain-grid,
  .client-os-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .process::before {
    display: none;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 68px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: blur(18px);
    padding: var(--s-3);
    border-bottom: 1px solid var(--c-border);
    transform: translateY(-105%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  }

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

  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--c-border);
    width: 100%;
  }

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

  .header__menu-btn {
    display: flex;
  }

  .header__actions .btn {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-h) + var(--s-6));
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }

  .hero__visual {
    max-width: 420px;
  }

  .hero__system-panel {
    width: min(190px, 44vw);
  }

  .about {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }

  .about__visual {
    max-width: 360px;
  }

  .security-card {
    grid-template-columns: 1fr;
  }

  .security-card__media {
    min-height: 280px;
  }

  .client-row,
  .client-row--reverse {
    grid-template-columns: 1fr;
    gap: var(--s-5);
    margin-bottom: var(--s-10);
  }

  .client-row--reverse .client-row__visual,
  .client-row--reverse .client-row__content {
    order: initial;
  }

  .client-directory {
    grid-template-columns: 1fr;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .splash__inner {
    width: min(94vw, 430px);
  }

  .splash__rock-scene {
    width: min(86vw, 350px);
    max-height: 52vh;
  }

  .section {
    padding-block: var(--s-8);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + var(--s-5));
    padding-bottom: var(--s-6);
  }

  .hero__ctas {
    margin-bottom: var(--s-5);
  }

  .hero__pillars {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }

  .hero__visual,
  .hero__scroll {
    display: none;
  }

  .hero__system-panel {
    display: none;
  }

  .hero__orbit-node {
    display: none;
  }

  .mobile-rock-showcase {
    display: block;
    position: relative;
    z-index: 1;
    padding-block: 0 var(--s-8);
    overflow: hidden;
  }

  .mobile-rock-showcase__scene {
    min-height: min(132vw, 560px);
    margin-top: calc(var(--s-2) * -1);
    padding-top: 96px;
  }

  .mobile-rock-showcase__image {
    width: min(74vw, 330px);
    margin-top: 24px;
  }

  .mobile-rock-showcase__floor {
    bottom: 16%;
  }

  .cta-box__actions {
    display: flex;
    width: 100%;
  }

  .cta-box__actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding-inline: 14px;
  }

  .cta-box__actions .btn--primary svg:not(.btn__icon) {
    display: none;
  }

  .pain-grid,
  .client-os-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .clients-preview {
    grid-template-columns: 1fr;
  }

  .client-row__highlights {
    grid-template-columns: 1fr;
  }

  .client-case {
    min-height: auto;
    padding-bottom: var(--s-5);
  }

  .client-case ul {
    margin-bottom: var(--s-4);
  }

  .client-case__signal {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: 84px;
    margin-top: var(--s-4);
  }

  .client-case__flow {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    margin-top: var(--s-4);
  }

  .client-case__flow i {
    width: 1px;
    height: 28px;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.08), var(--c-sky));
  }

  .client-case__flow i::after {
    width: 1px;
    height: 55%;
    inset-inline: 0;
    inset-block: auto;
    background: linear-gradient(180deg, transparent, var(--c-sky), transparent);
    animation: flowLineVertical 2.8s linear infinite;
  }

  .clients-hero__metrics {
    gap: var(--s-3);
  }

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

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

  .cta-box {
    padding: var(--s-5) var(--s-3);
  }

  .header__brand .header__logo {
    height: 90px;
  }
}

@media (max-width: 380px) {
  .mobile-rock-showcase__scene {
    min-height: 560px;
    padding-top: 128px;
  }

  .mobile-rock-showcase__panel {
    width: calc(50% - 18px);
    min-height: 88px;
    padding: 12px 10px;
  }

  .mobile-rock-showcase__panel span,
  .mobile-rock-showcase__panel small {
    font-size: 8.5px;
    letter-spacing: 0.08em;
  }

  .mobile-rock-showcase__panel strong {
    font-size: 21px;
  }

  .mobile-rock-showcase__image {
    width: min(78vw, 300px);
  }

  .cta-box__actions .btn {
    font-size: 13px;
    gap: 8px;
    padding: 15px 12px;
  }
}
