/* Estilos compartilhados pela landing page e pelos termos de uso.
 * A ordem dos blocos preserva a cascata e os ajustes responsivos do site.
 */

:root {
  --bg: #050608;
  --bg2: #090c10;
  --surface: #10141a;
  --steel: #e9edf2;
  --paper: #f5f5f2;
  --text: #f6f7f9;
  --muted: #9ea7b3;
  --ink: #11151a;
  --ink2: #535d68;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #ff9d24;
  --accent2: #ffb547;
  --radius: 10px;
  --shell: min(1380px, calc(100vw - 48px));
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 82px;
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.82), transparent);
  transition: 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong {
  font-size: 13px;
  letter-spacing: 0.14em;
}
.brand-copy small {
  font-size: 8px;
  color: #8c97a4;
  letter-spacing: 0.16em;
  margin-top: 6px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.main-nav > a:not(.nav-cta) {
  color: #b9c0c8;
}
.main-nav > a:hover {
  color: #fff;
}
.nav-cta {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  margin: 6px 0;
}
.section-dark {
  background: var(--bg);
  color: var(--text);
}
.section-light {
  background: var(--paper);
  color: var(--ink);
}
.section-steel {
  background: linear-gradient(145deg, #edf0f3, #cbd2d9);
  color: var(--ink);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #bbc3cd;
}
.eyebrow.dark {
  color: #6f7882;
}
.signal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
  margin-right: 8px;
}
.hero {
  min-height: 100vh;
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 76% 48%,
      rgba(105, 133, 168, 0.18),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      transparent 0 48%,
      rgba(255, 255, 255, 0.03) 48% 48.1%,
      transparent 48.1%
    );
  pointer-events: none;
}
.arena-lines {
  position: absolute;
  width: 90vw;
  height: 90vw;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  right: -38vw;
  top: -44vw;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.012),
    0 0 0 160px rgba(255, 255, 255, 0.01);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
  min-height: 720px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(72px, 8.2vw, 138px);
  line-height: 0.78;
  margin: 28px 0 28px;
  font-weight: 900;
  letter-spacing: -0.065em;
}
.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.61em;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero-kicker {
  font-size: clamp(25px, 2.35vw, 40px);
  max-width: 760px;
  line-height: 1.07;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.hero-sub {
  max-width: 680px;
  color: #929ca7;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  border: 0;
  border-radius: 6px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #101010;
  box-shadow: 0 12px 40px rgba(255, 157, 36, 0.15);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e8ecf0;
  background: rgba(255, 255, 255, 0.035);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hero-notes {
  display: flex;
  gap: 26px;
  margin-top: 30px;
  color: #8d96a1;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-notes i {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #68717d;
  border-radius: 50%;
  margin-right: 8px;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 660px;
}
.hero-logo {
  width: min(600px, 80%);
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.65));
}
.logo-orbit {
  position: absolute;
  inset: 10%;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(183, 205, 230, 0.14);
}
.orbit-a {
  width: 100%;
  height: 100%;
  animation: spin 28s linear infinite;
  border-style: dashed;
}
.orbit-b {
  width: 74%;
  height: 74%;
  box-shadow: 0 0 80px rgba(147, 185, 225, 0.08);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.meter-card {
  position: absolute;
  z-index: 4;
  background: rgba(8, 11, 15, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 13px 15px;
  border-radius: 7px;
  color: #cbd3db;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
.meter-card span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.meter-card small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #6f7b87;
  margin-top: 8px;
}
.meter-left {
  left: 0;
  bottom: 18%;
}
.meter-right {
  right: 0;
  top: 22%;
  min-width: 110px;
}
.meter-right strong {
  font-size: 28px;
  display: block;
  color: #fff;
}
.vu {
  display: flex;
  gap: 3px;
  height: 36px;
  align-items: end;
  margin-top: 8px;
}
.vu i {
  width: 5px;
  height: var(--v);
  background: linear-gradient(to top, #647c91, var(--accent));
  animation: meter 1.3s ease-in-out infinite alternate;
}
.vu i:nth-child(2) {
  animation-delay: 0.2s;
}
.vu i:nth-child(3) {
  animation-delay: 0.4s;
}
.vu i:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes meter {
  to {
    height: 36%;
  }
}
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  color: #59616b;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 14px 0;
}
.hero-marquee div {
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.software-stage {
  padding: 130px 0;
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}
.section-heading h2 {
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 14px 0 0;
}
.section-heading h2 em,
.feature-copy h2 em {
  font-style: normal;
  color: #7a838c;
  font-weight: 450;
}
.section-heading p {
  color: #66707a;
  font-size: 17px;
  max-width: 580px;
}
.screen-monolith {
  position: relative;
  background: #0a0d11;
  border: 1px solid rgba(16, 23, 30, 0.22);
  box-shadow: 0 35px 90px rgba(20, 27, 35, 0.2);
  padding: 36px 16px 16px;
}
.screen-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #818b96;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.screen-topbar div {
  display: flex;
  gap: 6px;
}
.screen-topbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3d4650;
}
.screen-monolith img {
  width: 100%;
}
.screen-caption {
  display: flex;
  justify-content: space-between;
  color: #78828d;
  padding: 15px 4px 2px;
  font-size: 11px;
}
.screen-caption span {
  letter-spacing: 0.16em;
  font-weight: 800;
}
.screen-caption p {
  margin: 0;
}
.hotspot {
  position: absolute;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 157, 36, 0.85);
  color: #0d0f12;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 0 0 7px rgba(255, 157, 36, 0.12);
  cursor: help;
}
.hotspot:after {
  content: attr(data-tip);
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  background: #11161d;
  color: #fff;
  padding: 7px 9px;
  border-radius: 4px;
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.hotspot:hover:after,
.hotspot:focus:after {
  opacity: 1;
}
.hs-1 {
  left: 8%;
  top: 31%;
}
.hs-2 {
  right: 9%;
  top: 47%;
}
.hs-3 {
  left: 48%;
  top: 72%;
}
.manifesto {
  padding: 95px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-line {
  font-size: clamp(45px, 6.4vw, 105px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.manifesto-line span {
  display: block;
}
.manifesto-line span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1px #616975;
}
.manifesto-line span:nth-child(3) {
  color: var(--accent);
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}
.feature-strip div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  color: #acb5bf;
}
.feature-strip b {
  color: #5d6671;
}
.feature-editorial {
  padding: 130px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.feature-grid.reverse {
  grid-template-columns: 1.2fr 0.8fr;
}
.feature-grid.reverse .feature-copy {
  order: 2;
}
.feature-grid.reverse .feature-media {
  order: 1;
}
.panel-separator {
  margin-top: 150px;
  padding-top: 150px;
  border-top: 1px solid var(--line);
}
.number {
  font-size: 10px;
  color: #75808d;
  letter-spacing: 0.18em;
  font-weight: 800;
}
.feature-copy h2 {
  font-size: clamp(44px, 4.7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 18px 0 30px;
}
.feature-copy p {
  color: #929ca7;
  font-size: 17px;
  max-width: 620px;
}
.checklist {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checklist li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 13px;
}
.checklist li:before {
  content: '↳';
  color: var(--accent);
  margin-right: 10px;
}
.feature-media {
  position: relative;
  background: #0b0e12;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}
.feature-media img {
  width: 100%;
}
.media-tag {
  position: absolute;
  bottom: -14px;
  left: 22px;
  background: var(--accent);
  color: #161616;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 9px 12px;
}
.compat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.compat-list span {
  border: 1px solid var(--line);
  padding: 9px 11px;
  border-radius: 4px;
  color: #c7ced6;
  font-size: 11px;
}
.mobile-mirror {
  padding: 120px 0;
  overflow: hidden;
}
.mirror-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.phone-shell {
  width: min(460px, 80%);
  margin: auto;
  background: #080a0d;
  border: 10px solid #171c22;
  border-radius: 48px;
  padding: 18px 10px 12px;
  box-shadow: 0 35px 70px rgba(28, 36, 46, 0.28);
  position: relative;
}
.phone-shell img {
  border-radius: 28px;
  width: 100%;
}
.phone-notch {
  width: 110px;
  height: 16px;
  border-radius: 0 0 15px 15px;
  background: #11161c;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.dark-copy .number {
  color: #6c7783;
}
.dark-copy h2 {
  color: #11161b;
}
.dark-copy p {
  color: #4c5863;
}
.network-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  color: #39444e;
  font-size: 11px;
}
.network-line i {
  height: 1px;
  background: #89929b;
  flex: 1;
}
.network-line b {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.pad-section {
  padding: 135px 0;
}
.section-heading.center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 65px;
}
.section-heading.center p {
  margin: 22px auto 0;
}
.pad-showcase {
  position: relative;
  border: 1px solid var(--line);
  background: #0c0f13;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}
.pad-showcase img {
  width: 100%;
}
.pad-floating {
  position: absolute;
  right: -22px;
  bottom: -26px;
  background: #121820;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 150px auto;
  column-gap: 16px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.pad-floating b {
  font-size: 24px;
}
.pad-floating small {
  grid-column: 2;
  color: #727d88;
}
.mini-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 42px;
}
.mini-wave i {
  width: 4px;
  background: var(--accent);
  height: 40%;
  animation: wave 0.9s ease-in-out infinite alternate;
}
.mini-wave i:nth-child(2n) {
  height: 75%;
  animation-delay: 0.1s;
}
.mini-wave i:nth-child(3n) {
  height: 95%;
  animation-delay: 0.25s;
}
.mini-wave i:nth-child(4n) {
  height: 55%;
  animation-delay: 0.4s;
}
@keyframes wave {
  to {
    height: 18%;
  }
}
.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.mini-features article {
  padding: 26px 25px;
  border-right: 1px solid var(--line);
}
.mini-features b {
  font-size: 16px;
}
.mini-features p {
  font-size: 13px;
  color: #7f8994;
}
.mastering {
  padding: 130px 0;
}
.master-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 65px;
  align-items: center;
}
.master-card {
  background: #0c1015;
  padding: 10px;
  position: relative;
}
.master-card img {
  width: 100%;
}
.master-meta {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: rgba(7, 10, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 15px;
  color: white;
}
.master-meta span,
.master-meta small {
  display: block;
  color: #7f8994;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.master-meta b {
  font-size: 24px;
  color: var(--accent);
}
.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17, 21, 26, 0.12);
  padding: 18px 0;
  color: #5d6670;
}
.spec-row b {
  font-size: 14px;
  color: #1c2228;
}
.spec-row.active {
  color: #111;
  font-weight: 800;
}
.spec-row.active b {
  color: #c06d00;
}
.tech-note {
  font-size: 12px;
  color: #6d7680;
  margin-top: 25px;
}
.tool-duo {
  padding: 125px 0;
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.tool-card {
  background: #0d1116;
  border: 1px solid var(--line);
  padding: 10px;
  overflow: hidden;
}
.tool-card-head {
  padding: 25px 25px 30px;
}
.tool-card-head span {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #6d7884;
}
.tool-card-head h3 {
  font-size: 30px;
  line-height: 1.08;
  margin: 8px 0 0;
  max-width: 520px;
}
.tool-card img {
  width: 100%;
}
.shortcut-row,
.cut-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px;
}
.shortcut-row kbd,
.cut-row b {
  font-family: inherit;
  background: #171d24;
  border: 1px solid var(--line);
  color: #c8d0d8;
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 9px;
}
.shortcut-row span {
  font-size: 10px;
  color: #6f7a86;
  margin-right: 6px;
}
.cut-row {
  justify-content: space-between;
}
.profile-section {
  padding: 135px 0;
  overflow: hidden;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: center;
}
.profile-stack {
  position: relative;
  min-height: 520px;
}
.profile-stack img {
  position: absolute;
  width: 85%;
  box-shadow: 0 25px 70px rgba(33, 42, 50, 0.25);
}
.profile-back {
  right: 0;
  top: 0;
  transform: rotate(2deg);
}
.profile-front {
  left: 0;
  bottom: 0;
  transform: rotate(-1.5deg);
}
.profile-switch {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.profile-switch button {
  border: 1px solid rgba(17, 21, 26, 0.16);
  background: transparent;
  color: #49535d;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.08em;
}
.profile-switch button.active {
  background: #15191e;
  color: #fff;
}
.example-note {
  display: block;
  margin-top: 10px;
  color: #76808a;
}
.why {
  padding: 135px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 85px;
}
.why-statement span {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #707b87;
}
.why-statement h2 {
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  margin: 20px 0;
}
.why-statement p {
  color: #89939e;
}
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar-grid article {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 220px;
}
.pillar-grid b {
  font-size: 10px;
  color: #646f7b;
}
.pillar-grid h3 {
  font-size: 26px;
  margin: 55px 0 10px;
}
.pillar-grid p {
  font-size: 13px;
  color: #77828d;
}
.history {
  padding: 130px 0;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 80px;
}
.timeline-line {
  position: absolute;
  height: 1px;
  background: #b9c0c6;
  top: 31px;
  left: 0;
  right: 0;
}
.timeline article {
  position: relative;
  padding-top: 70px;
}
.timeline article:before {
  content: '';
  position: absolute;
  top: 26px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #8f979e;
  background: var(--paper);
  border-radius: 50%;
  z-index: 2;
}
.timeline article.current:before {
  background: var(--accent);
  border-color: #c87712;
  box-shadow: 0 0 0 8px rgba(255, 157, 36, 0.18);
}
.timeline b {
  font-size: 46px;
  letter-spacing: -0.04em;
}
.timeline span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #7e8790;
}
.timeline p {
  font-size: 13px;
  color: #626c76;
  max-width: 260px;
}
.download {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.download-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 100px;
  align-items: center;
}
.download-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--line);
}
.download-brand img {
  width: 240px;
}
.download-brand span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #77828e;
}
.download-copy h2 {
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 15px 0 22px;
}
.download-copy p {
  color: #89939e;
  max-width: 700px;
}
.download-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.download-info {
  display: flex;
  gap: 48px;
  margin-top: 35px;
}
.download-info span {
  display: flex;
  flex-direction: column;
  font-size: 9px;
  color: #717b86;
  letter-spacing: 0.12em;
}
.download-info b {
  color: #d4d9de;
  font-size: 11px;
  margin-bottom: 4px;
}
.faq {
  padding: 120px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}
.faq-title h2 {
  font-size: 56px;
  letter-spacing: -0.055em;
  margin: 15px 0;
}
.faq-title p {
  color: #65707a;
}
.accordion details {
  border-top: 1px solid rgba(17, 21, 26, 0.15);
}
.accordion details:last-child {
  border-bottom: 1px solid rgba(17, 21, 26, 0.15);
}
.accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary i {
  font-style: normal;
  color: #8b949d;
  font-size: 21px;
}
.accordion details[open] summary i {
  transform: rotate(45deg);
}
.accordion details p {
  margin: 0 0 23px;
  color: #5f6973;
  max-width: 780px;
}
.site-footer {
  background: #030405;
  border-top: 1px solid var(--line);
  padding: 55px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  color: #6f7984;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 50px;
}
.footer-brand div {
  display: flex;
  flex-direction: column;
}
.footer-brand b {
  font-size: 12px;
  color: #ddd;
}
.footer-brand span {
  font-size: 10px;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 11px;
}
.footer-grid > p {
  text-align: right;
  font-size: 10px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 120px);
  background: #161c23;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 11px 16px;
  border-radius: 6px;
  color: #dce2e8;
  font-size: 12px;
  z-index: 200;
  opacity: 0;
  transition: 0.3s var(--ease);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 32px, 1000px);
  }
  .main-nav {
    gap: 18px;
  }
  .hero-grid,
  .feature-grid,
  .feature-grid.reverse,
  .mirror-grid,
  .profile-grid,
  .download-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .hero {
    padding-top: 130px;
  }
  .hero-grid {
    min-height: auto;
  }
  .hero-visual {
    min-height: 540px;
  }
  .feature-grid.reverse .feature-copy,
  .feature-grid.reverse .feature-media {
    order: initial;
  }
  .panel-separator {
    margin-top: 100px;
    padding-top: 100px;
  }
  .section-heading.split,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .master-grid {
    grid-template-columns: 1fr;
  }
  .phone-shell {
    width: 420px;
  }
  .profile-stack {
    min-height: 560px;
  }
  .download-brand {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 45px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer-grid > p {
    text-align: center;
  }
  .feature-strip {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .feature-strip div {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 28px);
  }
  .site-header {
    height: 70px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .brand-copy small {
    display: none;
  }
  .menu-btn {
    display: block;
    z-index: 3;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    background: #07090c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    font-size: 18px;
    transform: translateX(100%);
    transition: 0.3s var(--ease);
  }
  .main-nav.open {
    transform: none;
  }
  .hero {
    padding-top: 110px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .hero h1 span {
    font-size: 0.54em;
  }
  .hero-grid {
    gap: 20px;
  }
  .hero-visual {
    min-height: 420px;
  }
  .hero-logo {
    width: 82%;
  }
  .meter-card {
    transform: scale(0.82);
  }
  .meter-left {
    left: -8px;
  }
  .meter-right {
    right: -4px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .hero-notes {
    display: none;
  }
  .software-stage,
  .feature-editorial,
  .pad-section,
  .mastering,
  .tool-duo,
  .profile-section,
  .why,
  .history,
  .faq {
    padding: 85px 0;
  }
  .section-heading h2,
  .feature-copy h2 {
    font-size: 45px;
  }
  .screen-monolith {
    padding: 32px 7px 7px;
  }
  .screen-caption {
    display: none;
  }
  .hotspot {
    display: none;
  }
  .manifesto {
    padding: 70px 0;
  }
  .manifesto-line {
    font-size: 52px;
  }
  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }
  .feature-strip div {
    min-height: 68px;
  }
  .feature-grid,
  .feature-grid.reverse {
    gap: 40px;
  }
  .panel-separator {
    margin-top: 75px;
    padding-top: 75px;
  }
  .checklist {
    grid-template-columns: 1fr;
  }
  .mirror-grid {
    gap: 50px;
  }
  .phone-shell {
    width: 88%;
  }
  .pad-floating {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 12px;
    grid-template-columns: 1fr auto;
  }
  .mini-features,
  .duo-grid,
  .why-grid,
  .pillar-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  .mini-features article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .tool-card-head h3 {
    font-size: 25px;
  }
  .shortcut-row {
    flex-wrap: wrap;
  }
  .profile-stack {
    min-height: 390px;
  }
  .why-statement h2 {
    font-size: 57px;
  }
  .pillar-grid article {
    min-height: auto;
  }
  .pillar-grid h3 {
    margin-top: 25px;
  }
  .timeline {
    gap: 30px;
  }
  .timeline-line {
    display: none;
  }
  .timeline article {
    padding-top: 40px;
  }
  .timeline article:before {
    top: 0;
  }
  .download {
    padding: 80px 0;
  }
  .download-brand img {
    width: 180px;
  }
  .download-copy h2 {
    font-size: 50px;
  }
  .download-actions,
  .download-info {
    flex-direction: column;
  }
  .download-info {
    gap: 15px;
  }
  .faq-title h2 {
    font-size: 45px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-heading.split {
    margin-bottom: 40px;
  }
}

/* Componentes: navegação, apresentação do produto e galeria */
:root {
  --bg: #05070a;
  --bg2: #080c12;
  --surface: #0c121a;
  --surface2: #111923;
  --accent: #149cff;
  --accent2: #45b8ff;
  --accent-soft: rgba(20, 156, 255, 0.14);
}
.section-dark {
  background: linear-gradient(180deg, #05070a 0%, #080c12 55%, #05070a 100%);
}
.site-header.scrolled {
  background: rgba(5, 8, 12, 0.91);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.nav-cta {
  border-color: rgba(69, 184, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(20, 156, 255, 0.04);
}
.nav-cta:hover {
  border-color: rgba(69, 184, 255, 0.68);
  background: rgba(20, 156, 255, 0.09) !important;
}
.hero {
  isolation: isolate;
  background: #05070a;
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 7, 11, 0.98) 0%,
      rgba(4, 7, 11, 0.9) 40%,
      rgba(4, 7, 11, 0.52) 69%,
      rgba(4, 7, 11, 0.78) 100%
    ),
    url('../gallery/full/event-1.webp') center/cover no-repeat;
  opacity: 0.82;
}
.hero:before {
  z-index: -1;
  background:
    radial-gradient(
      circle at 77% 43%,
      rgba(20, 156, 255, 0.23),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      transparent 0 48%,
      rgba(255, 255, 255, 0.035) 48% 48.08%,
      transparent 48.08%
    );
}
.signal-dot {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(20, 156, 255, 0.95);
}
.hero h1 {
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}
.hero h1 span {
  -webkit-text-stroke-color: rgba(235, 245, 255, 0.8);
}
.hero-sub {
  color: #aab5c0;
}
.btn-primary {
  background: linear-gradient(135deg, #097ee8, #18a8ff);
  color: #fff;
  box-shadow: 0 12px 42px rgba(0, 126, 232, 0.24);
  border: 1px solid rgba(121, 206, 255, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #138df2, #45b8ff);
  box-shadow: 0 15px 48px rgba(20, 156, 255, 0.32);
}
.hero-visual {
  min-height: 650px;
  perspective: 1300px;
}
.hero-product-frame {
  width: min(760px, 95%);
  position: relative;
  z-index: 2;
  background: #070a0f;
  border: 1px solid rgba(133, 206, 255, 0.24);
  padding: 32px 8px 8px;
  transform: rotateY(-7deg) rotateX(1deg);
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.58),
    0 0 80px rgba(20, 156, 255, 0.1);
}
.hero-product-top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #6e8498;
}
.hero-product-top div {
  display: flex;
  gap: 5px;
}
.hero-product-top i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #31404f;
}
.hero-product-screen {
  width: 100%;
  display: block;
}
.hero-product-scan {
  position: absolute;
  inset: 32px 8px 8px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(20, 156, 255, 0.045),
    transparent
  );
  mix-blend-mode: screen;
}
.hero-logo-badge {
  position: absolute;
  left: 2%;
  top: 8%;
  z-index: 4;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(4, 7, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 35px rgba(20, 156, 255, 0.12);
  backdrop-filter: blur(12px);
}
.hero-logo-badge img {
  width: 92px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.4));
}
.vu i {
  background: linear-gradient(to top, #35729d, var(--accent));
}
.hotspot {
  background: rgba(20, 156, 255, 0.9);
  box-shadow: 0 0 0 7px rgba(20, 156, 255, 0.14);
  color: #fff;
}
.manifesto-line span:nth-child(3) {
  color: var(--accent);
}
.media-tag {
  background: linear-gradient(90deg, #0c83e8, #23b0ff);
  color: #fff;
}
.checklist li:before {
  color: var(--accent);
}
.master-meta b {
  color: var(--accent);
}
.spec-row.active b {
  color: #087bc9;
}
.timeline article.current:before {
  background: var(--accent);
  border-color: #168ad6;
  box-shadow: 0 0 0 8px rgba(20, 156, 255, 0.16);
}
.feature-media,
.tool-card,
.screen-monolith {
  border-color: rgba(124, 190, 235, 0.13);
}
.feature-media:hover,
.tool-card:hover {
  border-color: rgba(20, 156, 255, 0.3);
}

.gallery-section {
  position: relative;
  padding: 135px 0 125px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.gallery-section:before {
  content: '';
  position: absolute;
  right: -18%;
  top: -25%;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 156, 255, 0.11),
    transparent 62%
  );
  pointer-events: none;
}
.gallery-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}
.gallery-heading h2 {
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 15px 0 0;
}
.gallery-heading h2 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}
.gallery-intro {
  padding-left: 28px;
  border-left: 1px solid rgba(69, 184, 255, 0.28);
}
.gallery-intro strong {
  display: block;
  font-size: 18px;
  margin-bottom: 9px;
}
.gallery-intro p {
  margin: 0;
  color: #8e9aa6;
  font-size: 14px;
  max-width: 480px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #0a1016;
  cursor: zoom-in;
  min-height: 0;
  text-align: left;
  isolation: isolate;
}
.gallery-item:nth-child(1) {
  grid-column: span 6;
  grid-row: span 3;
}
.gallery-item:nth-child(2) {
  grid-column: span 3;
  grid-row: span 3;
}
.gallery-item:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item:nth-child(5) {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item:nth-child(6) {
  grid-column: span 6;
  grid-row: span 3;
}
.gallery-item:nth-child(7) {
  grid-column: span 3;
  grid-row: span 3;
}
.gallery-item:nth-child(8) {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item:nth-child(9) {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item:nth-child(10) {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item:nth-child(n + 11) {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s var(--ease),
    filter 0.45s var(--ease);
  filter: saturate(0.92) contrast(1.03) brightness(0.92);
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.06) brightness(1);
}
.gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.gallery-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(2, 5, 8, 0.88) 100%
  );
  opacity: 0.74;
  transition: 0.3s;
}
.gallery-item:hover .gallery-shade {
  opacity: 0.9;
}
.gallery-caption {
  position: absolute;
  left: 18px;
  right: 50px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  transform: translateY(8px);
  transition: 0.35s var(--ease);
}
.gallery-caption small {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #75c7ff;
  opacity: 0.72;
}
.gallery-caption b {
  font-size: 14px;
  color: white;
  margin-top: 3px;
}
.gallery-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  background: rgba(4, 8, 12, 0.45);
  opacity: 0.64;
  transition: 0.3s;
}
.gallery-item:hover .gallery-caption {
  transform: none;
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  border-color: rgba(69, 184, 255, 0.58);
}
.gallery-proof {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 24px;
  align-items: center;
}
.gallery-proof > span {
  display: block;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.gallery-proof p {
  margin: 0;
  color: #8d99a5;
  max-width: 740px;
}
.gallery-proof .btn {
  white-space: nowrap;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(2, 4, 7, 0.94);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox figure {
  margin: 0;
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  padding: 60px 18px 30px;
}
.gallery-lightbox img {
  max-width: min(1500px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.55);
}
.gallery-lightbox figcaption {
  width: min(1200px, 86vw);
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7f8c98;
  font-size: 11px;
}
.gallery-lightbox figcaption b {
  color: #dce7f0;
}
.lightbox-close,
.lightbox-nav {
  border: 0;
  background: transparent;
  color: #d9e4ec;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 38px;
  font-weight: 200;
  line-height: 1;
}
.lightbox-nav {
  font-size: 56px;
  opacity: 0.55;
  transition: 0.2s;
}
.lightbox-nav:hover {
  opacity: 1;
  color: #62c5ff;
}
.lightbox-prev {
  grid-column: 1;
}
.gallery-lightbox figure {
  grid-column: 2;
}
.lightbox-next {
  grid-column: 3;
}
body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hero-product-frame {
    transform: none;
    width: min(820px, 96%);
  }
  .hero-logo-badge {
    left: 5%;
    top: 2%;
  }
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-intro {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid rgba(69, 184, 255, 0.22);
  }
  .gallery-grid {
    grid-auto-rows: 130px;
  }
  .gallery-item:nth-child(n) {
    grid-column: span 4;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 8;
    grid-row: span 3;
  }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(7) {
    grid-column: span 4;
    grid-row: span 3;
  }
  .gallery-proof {
    grid-template-columns: 1fr;
  }
  .gallery-proof > span {
    display: none;
  }
  .gallery-proof .btn {
    width: max-content;
  }
}
@media (max-width: 760px) {
  .hero:after {
    background-position: 42% center;
    opacity: 0.58;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-product-frame {
    padding-top: 28px;
  }
  .hero-logo-badge {
    width: 76px;
    height: 76px;
    left: 0;
    top: -8px;
  }
  .hero-logo-badge img {
    width: 60px;
  }
  .meter-card {
    display: none;
  }
  .gallery-section {
    padding: 82px 0;
  }
  .gallery-heading h2 {
    font-size: 52px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 7px;
  }
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11),
  .gallery-item:nth-child(16) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-caption {
    left: 12px;
    bottom: 11px;
  }
  .gallery-caption small {
    display: none;
  }
  .gallery-caption b {
    font-size: 11px;
  }
  .gallery-zoom {
    right: 10px;
    bottom: 10px;
    width: 26px;
    height: 26px;
  }
  .gallery-proof .btn {
    width: 100%;
  }
  .gallery-lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }
  .gallery-lightbox figure {
    padding-inline: 4px;
  }
  .lightbox-nav {
    font-size: 42px;
  }
  .lightbox-close {
    right: 14px;
    top: 10px;
  }
  .gallery-lightbox figcaption {
    width: 82vw;
    font-size: 10px;
  }
}

/* Composição visual: arena, software e profissionais */
:root {
  --chrome: #dbe6ef;
  --chrome-dim: #6f8292;
  --blue: #149cff;
  --blue-hi: #45b8ff;
  --dark-0: #05070a;
  --dark-1: #080c12;
  --dark-2: #0c121a;
  --dark-3: #111923;
}
body {
  background: var(--dark-0);
}
.site-header {
  border-top: 1px solid rgba(69, 184, 255, 0.16);
}
.brand img {
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.55));
}
.brand-copy strong {
  color: #f4f8fb;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}
.main-nav > a:not(.nav-cta) {
  position: relative;
}
.main-nav > a:not(.nav-cta):after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-hi), transparent);
  transition: right 0.28s var(--ease);
}
.main-nav > a:not(.nav-cta):hover:after {
  right: 0;
}

.hero {
  min-height: 94vh;
  padding-top: 132px;
}
.hero-grid {
  min-height: 650px;
  gap: 58px;
}
.hero h1 {
  font-size: clamp(66px, 7.2vw, 116px);
  line-height: 0.8;
  margin: 24px 0 24px;
}
.hero h1 span {
  font-size: 0.58em;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #fff, #8d9aa7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
}
.hero-kicker {
  font-size: clamp(25px, 2.2vw, 38px);
  max-width: 700px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  max-width: 650px;
}
.hero-copy:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -54px;
  width: 180px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--blue-hi),
    rgba(255, 255, 255, 0.15),
    transparent
  );
}
.hero-actions .btn-primary {
  min-width: 230px;
}
.hero-actions .btn-ghost {
  border-color: rgba(115, 195, 247, 0.24);
  backdrop-filter: blur(12px);
}
.hero-notes span {
  display: inline-flex;
  align-items: center;
}
.hero-notes i {
  background: #3a8fca;
  box-shadow: 0 0 10px rgba(20, 156, 255, 0.32);
}

.hero-product-frame {
  border-radius: 8px;
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(1deg) translateZ(0);
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease);
  will-change: transform;
}
.hero-product-frame:before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 9px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.55),
    rgba(69, 184, 255, 0.34) 32%,
    rgba(255, 255, 255, 0.08) 62%,
    rgba(219, 230, 239, 0.45)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-product-top {
  background: linear-gradient(180deg, #111923, #090e14);
  color: #90a6b8;
}
.hero-product-top:after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(69, 184, 255, 0.4),
    transparent 42%,
    rgba(255, 255, 255, 0.08)
  );
}
.hero-product-screen {
  filter: saturate(0.96) contrast(1.035);
}
.hero-logo-badge {
  border-color: rgba(219, 230, 239, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(20, 156, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 38px rgba(20, 156, 255, 0.14);
}
.meter-card {
  border-color: rgba(124, 190, 235, 0.2);
  background: linear-gradient(
    180deg,
    rgba(12, 18, 26, 0.84),
    rgba(5, 8, 12, 0.78)
  );
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.42);
}
.hero-marquee {
  background: rgba(3, 6, 10, 0.7);
  color: #66788a;
  border-color: rgba(124, 190, 235, 0.12);
}

/* rack-like section separators */
.software-stage,
.feature-editorial,
.pad-section,
.tool-duo,
.why,
.gallery-section {
  position: relative;
}
.software-stage:before,
.feature-editorial:before,
.pad-section:before,
.tool-duo:before,
.why:before,
.gallery-section:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1380px, calc(100vw - 48px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0 2%,
    rgba(219, 230, 239, 0.16) 12%,
    rgba(69, 184, 255, 0.36) 50%,
    rgba(219, 230, 239, 0.16) 88%,
    transparent 98%
  );
}
.software-stage:after,
.feature-editorial:after,
.pad-section:after,
.tool-duo:after,
.why:after {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 72px;
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    #1c9df0 0 3px,
    transparent 3px 7px
  );
  opacity: 0.45;
}

/* software in action — technical frame */
.software-stage {
  background: linear-gradient(180deg, #f5f5f2 0%, #eef1f4 100%);
}
.screen-monolith {
  border-radius: 9px;
  padding: 42px 13px 13px;
  background: linear-gradient(180deg, #10161d, #05080c);
  box-shadow:
    0 38px 100px rgba(13, 25, 36, 0.23),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}
.screen-monolith:before {
  content: 'LIVE / DJRODEIO';
  position: absolute;
  left: 15px;
  top: 13px;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #5fbfff;
  font-weight: 800;
}
.screen-monolith:after {
  content: '';
  position: absolute;
  right: 78px;
  top: 15px;
  width: 84px;
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    #159bff 0 4px,
    transparent 4px 8px
  );
  opacity: 0.75;
}
.screen-topbar {
  padding-left: 145px;
}
.hotspot {
  width: 29px;
  height: 29px;
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 0 0 6px rgba(20, 156, 255, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.28);
}

/* documentary intervention */
.field-documentary {
  padding: 94px 0 110px;
  background: linear-gradient(180deg, #071019, #05070a);
  overflow: hidden;
}
.documentary-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 0.52fr;
  grid-template-rows: 240px 230px;
  gap: 10px;
  align-items: stretch;
}
.documentary-copy {
  grid-row: 1 / span 2;
  align-self: center;
  padding-right: 54px;
}
.documentary-copy h2 {
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 18px 0 24px;
  max-width: 650px;
}
.documentary-copy h2 em {
  font-style: normal;
  color: var(--blue-hi);
  font-weight: 500;
}
.documentary-copy p {
  color: #91a0ad;
  font-size: 16px;
  max-width: 580px;
  margin-bottom: 28px;
}
.documentary-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d8e6f0;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(69, 184, 255, 0.35);
  padding-bottom: 7px;
}
.documentary-link span {
  color: var(--blue-hi);
}
.doc-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #071018;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.07) brightness(0.86);
  transition:
    transform 0.5s var(--ease),
    filter 0.5s var(--ease);
}
.doc-photo:hover img {
  transform: scale(1.025);
  filter: saturate(0.98) contrast(1.08) brightness(0.96);
}
.doc-photo:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 5, 8, 0.85));
}
.doc-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  font-size: 8px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #dce8f1;
}
.doc-a {
  grid-row: 1 / span 2;
}
.doc-b,
.doc-c {
  min-height: 0;
}

/* richer technical dark sections */
.manifesto {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(20, 156, 255, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #05070a, #080c12);
}
.manifesto-line span:nth-child(2) {
  -webkit-text-stroke-color: #73808c;
}
.feature-strip div {
  position: relative;
  overflow: hidden;
}
.feature-strip div:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-hi));
  transition: width 0.32s var(--ease);
}
.feature-strip div:hover:after {
  width: 100%;
}
.feature-editorial {
  background: linear-gradient(180deg, #080c12, #0c121a 50%, #070a0f);
}
.feature-media {
  border-radius: 8px;
  padding: 9px;
  background: linear-gradient(180deg, #0d141c, #06090d);
}
.feature-media:before {
  content: '';
  position: absolute;
  left: 9px;
  right: 9px;
  top: 9px;
  height: 1px;
  background: linear-gradient(90deg, rgba(69, 184, 255, 0.46), transparent);
}
.feature-media img {
  border-radius: 3px;
}
.compat-list span {
  background: rgba(255, 255, 255, 0.025);
  border-radius: 6px;
}

/* image interventions in main sections */
.pad-section {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.94)),
    url('../gallery/full/event-24.webp') 100% 50%/46% auto no-repeat;
}
.pad-section:before {
  z-index: 1;
}
.pad-section .shell {
  position: relative;
  z-index: 2;
}
.pad-showcase {
  border: 1px solid rgba(100, 185, 240, 0.15);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}
.pad-floating {
  border-color: rgba(69, 184, 255, 0.22) !important;
}
.mini-wave i {
  background: linear-gradient(to top, #276789, var(--blue-hi)) !important;
}
.tool-duo {
  background:
    radial-gradient(
      circle at 7% 50%,
      rgba(20, 156, 255, 0.09),
      transparent 26%
    ),
    linear-gradient(180deg, #070b10, #05070a);
}
.tool-card {
  border-radius: 9px;
  overflow: hidden;
}

/* full-width arena proof */
.arena-proof {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.arena-proof-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../cinematic/arena-operacao-real.webp') center center/cover
    no-repeat;
  filter: saturate(0.92) contrast(1.04) brightness(0.82);
}
.arena-proof:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 8, 0.95) 0%,
      rgba(3, 5, 8, 0.74) 42%,
      rgba(3, 5, 8, 0.32) 74%,
      rgba(3, 5, 8, 0.56) 100%
    ),
    linear-gradient(0deg, rgba(3, 5, 8, 0.96), transparent 45%);
}
.arena-proof-inner {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 0.45fr 1.05fr 0.5fr;
  gap: 50px;
  align-items: end;
}
.arena-proof-copy h2 {
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0 0 20px;
}
.arena-proof-copy h2 em {
  font-style: normal;
  color: var(--blue-hi);
  font-weight: 500;
}
.arena-proof-copy p {
  max-width: 720px;
  color: #b1bdc7;
  font-size: 16px;
}
.arena-proof-meter {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 7px;
  height: 92px;
}
.arena-proof-meter span {
  width: 8px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, #0a6baa, #45b8ff);
  box-shadow: 0 0 12px rgba(20, 156, 255, 0.14);
  animation: arenaMeter 1.7s ease-in-out infinite alternate;
}
.arena-proof-meter span:nth-child(1) {
  height: 26%;
}
.arena-proof-meter span:nth-child(2) {
  height: 48%;
  animation-delay: 0.12s;
}
.arena-proof-meter span:nth-child(3) {
  height: 75%;
  animation-delay: 0.24s;
}
.arena-proof-meter span:nth-child(4) {
  height: 92%;
  animation-delay: 0.36s;
}
.arena-proof-meter span:nth-child(5) {
  height: 68%;
  animation-delay: 0.48s;
}
.arena-proof-meter span:nth-child(6) {
  height: 83%;
  animation-delay: 0.6s;
}
.arena-proof-meter span:nth-child(7) {
  height: 52%;
  animation-delay: 0.72s;
}
.arena-proof-meter span:nth-child(8) {
  height: 34%;
  animation-delay: 0.84s;
}
.arena-proof-meter span:nth-child(9) {
  height: 18%;
  animation-delay: 0.96s;
}
@keyframes arenaMeter {
  to {
    transform: scaleY(0.62);
    opacity: 0.74;
  }
}

.why {
  background:
    linear-gradient(90deg, rgba(4, 7, 11, 0.98), rgba(4, 7, 11, 0.9)),
    url('../gallery/full/event-7.webp') right center/42% auto no-repeat;
}
.pillar-grid article {
  background: linear-gradient(
    180deg,
    rgba(17, 25, 35, 0.82),
    rgba(8, 13, 19, 0.82)
  );
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  border-radius: 9px;
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.pillar-grid article:hover {
  border-color: rgba(69, 184, 255, 0.3);
  transform: translateY(-3px);
}

/* chrome details and more expressive gallery */
.gallery-section {
  background: linear-gradient(180deg, #05070a, #08101a 55%, #05070a);
}
.gallery-item {
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 7px;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(11),
.gallery-item:nth-child(16) {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.25);
}
.gallery-proof {
  border-top-color: rgba(69, 184, 255, 0.16);
}

@media (max-width: 1100px) {
  .documentary-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 300px 300px;
  }
  .documentary-copy {
    grid-column: 1/-1;
    grid-row: auto;
    padding-right: 0;
    padding-bottom: 22px;
  }
  .doc-a {
    grid-column: 1;
    grid-row: 2 / span 2;
  }
  .doc-b {
    grid-column: 2;
    grid-row: 2;
  }
  .doc-c {
    grid-column: 2;
    grid-row: 3;
  }
  .arena-proof-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .arena-proof-meter {
    justify-content: flex-start;
    height: 55px;
  }
  .arena-proof {
    min-height: 520px;
  }
}
@media (max-width: 760px) {
  .hero {
    padding-top: 112px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(58px, 20vw, 84px);
  }
  .hero-copy:after {
    display: none;
  }
  .hero-actions .btn-primary {
    min-width: 0;
  }
  .documentary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 220px 180px;
  }
  .doc-a {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .doc-b {
    grid-column: 1;
    grid-row: 3;
  }
  .doc-c {
    grid-column: 2;
    grid-row: 3;
  }
  .doc-photo figcaption {
    font-size: 7px;
  }
  .documentary-copy h2 {
    font-size: 45px;
  }
  .pad-section {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.96)),
      url('../gallery/full/event-24.webp') center top/cover no-repeat;
  }
  .why {
    background:
      linear-gradient(180deg, rgba(4, 7, 11, 0.98), rgba(4, 7, 11, 0.94)),
      url('../gallery/full/event-7.webp') center/cover no-repeat;
  }
  .arena-proof {
    min-height: 500px;
  }
  .arena-proof-media {
    background-position: center center;
  }
  .arena-proof-inner {
    padding: 72px 0 55px;
  }
  .arena-proof-copy h2 {
    font-size: 52px;
  }
  .software-stage:before,
  .feature-editorial:before,
  .pad-section:before,
  .tool-duo:before,
  .why:before,
  .gallery-section:after {
    width: calc(100vw - 28px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .arena-proof-meter span {
    animation: none;
  }
  .hero-product-frame {
    transition: none;
  }
}

/* Download por plataforma */
.download-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
}
.download-platforms .platform-btn {
  min-height: 76px;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  text-align: left;
}
.download-platforms .platform-btn span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.08;
}
.download-platforms .platform-btn small {
  font-size: 8px;
  letter-spacing: 0.18em;
  font-weight: 800;
  opacity: 0.58;
}
.download-platforms .platform-btn b {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.download-platforms .platform-windows {
  box-shadow: 0 16px 45px rgba(20, 156, 255, 0.18);
}
.download-platforms .platform-mac {
  border-color: rgba(255, 255, 255, 0.13);
}
.download-platforms .platform-android {
  border-color: rgba(69, 184, 255, 0.25);
}
.download-platforms .platform-btn:hover {
  transform: translateY(-2px);
}
.download-platforms .platform-mac:hover {
  border-color: rgba(255, 255, 255, 0.26);
}
.download-platforms .platform-android:hover {
  border-color: rgba(69, 184, 255, 0.55);
}
.download-info {
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .download-platforms {
    grid-template-columns: 1fr;
  }
  .download-platforms .platform-btn {
    width: 100%;
  }
}

/* === Termos de Uso === */
.legal-page {
  background: linear-gradient(180deg, #05070a 0%, #080c12 58%, #05070a 100%);
  min-height: 100vh;
  padding: 145px 0 110px;
}
.legal-hero {
  max-width: 960px;
  margin: 0 auto 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-hero .eyebrow {
  color: var(--accent2);
}
.legal-hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 16px 0 18px;
}
.legal-hero p {
  margin: 0;
  color: #8e9aa7;
  font-size: 14px;
}
.legal-document {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(17, 25, 35, 0.72),
    rgba(8, 12, 18, 0.74)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  padding: clamp(28px, 5vw, 64px);
  border-radius: 10px;
}
.legal-section {
  padding: 0 0 38px;
  margin: 0 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2 {
  font-size: clamp(22px, 2.3vw, 31px);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: #f4f7fa;
}
.legal-section p {
  margin: 0 0 14px;
  color: #aab4bf;
  line-height: 1.75;
  font-size: 15px;
}
.legal-section ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.legal-section li {
  color: #aab4bf;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
}
.legal-section li:before {
  content: '↳';
  position: absolute;
  left: 0;
  color: var(--accent2);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: #c7d2dd;
  font-size: 13px;
  border-bottom: 1px solid rgba(69, 184, 255, 0.35);
  padding-bottom: 4px;
}
.legal-back:hover {
  color: #fff;
  border-color: var(--accent2);
}
body.legal-body .site-header {
  background: rgba(5, 8, 12, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.legal-body .site-footer {
  margin-top: 0;
}
@media (max-width: 760px) {
  .legal-page {
    padding: 110px 0 80px;
  }
  .legal-hero {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .legal-document {
    padding: 24px 20px;
    border-radius: 8px;
  }
  .legal-section {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
  .legal-section p,
  .legal-section li {
    font-size: 14px;
  }
}

/* Core capabilities — legacy strengths distributed into current product narrative */
.core-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(17, 21, 26, 0.14);
  border-left: 1px solid rgba(17, 21, 26, 0.14);
  background: rgba(255, 255, 255, 0.25);
}
.core-capabilities article {
  min-height: 185px;
  padding: 25px 24px;
  border-right: 1px solid rgba(17, 21, 26, 0.14);
  border-bottom: 1px solid rgba(17, 21, 26, 0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.core-capabilities strong {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #087bc9;
  margin-bottom: 22px;
}
.core-capabilities span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: #17202a;
}
.core-capabilities p {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: #67717b;
  max-width: 300px;
}
.history-lead {
  max-width: 820px !important;
  margin: 24px auto 0 !important;
  text-align: center;
  color: #626c76 !important;
}
.tool-card-head p {
  font-size: 12px !important;
  line-height: 1.55;
  color: #76818c !important;
  margin: 10px 0 0 !important;
  max-width: 560px;
}
@media (max-width: 900px) {
  .core-capabilities {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .core-capabilities {
    grid-template-columns: 1fr;
  }
  .core-capabilities article {
    min-height: auto;
  }
  .history-lead {
    text-align: left !important;
  }
}

/* Fundos das seções de apresentação e operação */
/* Hero principal: cabine de operação DJRodeio + arena. A imagem já possui área negativa à esquerda para copy. */
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 7, 11, 0.97) 0%,
      rgba(4, 7, 11, 0.89) 31%,
      rgba(4, 7, 11, 0.55) 47%,
      rgba(4, 7, 11, 0.2) 67%,
      rgba(4, 7, 11, 0.28) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 7, 11, 0.74) 0%,
      rgba(4, 7, 11, 0.12) 42%,
      rgba(4, 7, 11, 0.24) 100%
    ),
    url('../cinematic/hero-controle-arena.webp') center center/cover no-repeat;
  opacity: 1;
}
.hero:before {
  background:
    radial-gradient(
      circle at 73% 47%,
      rgba(20, 156, 255, 0.14),
      transparent 26%
    ),
    linear-gradient(
      90deg,
      transparent 0 48%,
      rgba(255, 255, 255, 0.025) 48% 48.1%,
      transparent 48.1%
    );
}
.hero-product-frame {
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.58),
    0 0 55px rgba(20, 156, 255, 0.08);
}

/* Imagem cinematográfica 01: contexto humano no bloco da botoeira, sem substituir a prova social real da galeria. */
.pad-section {
  isolation: isolate;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 10, 0.995) 0%,
      rgba(5, 7, 10, 0.97) 42%,
      rgba(5, 7, 10, 0.82) 68%,
      rgba(5, 7, 10, 0.74) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 7, 10, 0.98),
      rgba(5, 7, 10, 0.12) 55%,
      rgba(5, 7, 10, 0.34)
    ),
    url('../cinematic/sonoplasta-arena.webp') right center/58% auto no-repeat;
}

/* Imagem cinematográfica 03: close de operação no bloco de urgência/controle. */
.why {
  background:
    linear-gradient(
      90deg,
      rgba(4, 7, 11, 0.995) 0%,
      rgba(4, 7, 11, 0.96) 46%,
      rgba(4, 7, 11, 0.77) 69%,
      rgba(4, 7, 11, 0.7) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 7, 11, 0.95),
      rgba(4, 7, 11, 0.08) 52%,
      rgba(4, 7, 11, 0.28)
    ),
    url('../cinematic/close-operacao.webp') right center/55% auto no-repeat;
}

@media (max-width: 900px) {
  .hero:after {
    background:
      linear-gradient(
        180deg,
        rgba(4, 7, 11, 0.8) 0%,
        rgba(4, 7, 11, 0.9) 45%,
        rgba(4, 7, 11, 0.99) 100%
      ),
      linear-gradient(90deg, rgba(4, 7, 11, 0.5), rgba(4, 7, 11, 0.22)),
      url('../cinematic/hero-controle-arena.webp') 64% center/cover no-repeat;
  }
  .pad-section {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 10, 0.97),
        rgba(5, 7, 10, 0.9) 42%,
        rgba(5, 7, 10, 0.985)
      ),
      url('../cinematic/sonoplasta-arena.webp') 68% top/cover no-repeat;
  }
  .why {
    background:
      linear-gradient(
        180deg,
        rgba(4, 7, 11, 0.94),
        rgba(4, 7, 11, 0.92) 45%,
        rgba(4, 7, 11, 0.99)
      ),
      url('../cinematic/close-operacao.webp') 68% center/cover no-repeat;
  }
}

/* Redes sociais oficiais — Instagram e YouTube */
.footer-end {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 22px;
  flex-direction: column;
}
.footer-end > p {
  margin: 0;
  text-align: right;
  font-size: 10px;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.footer-socials > span {
  margin-right: 4px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #59636d;
  font-weight: 800;
}
.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: #9ca7b2;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.24s var(--ease),
    border-color 0.24s var(--ease),
    color 0.24s var(--ease),
    background 0.24s var(--ease);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link svg .play-fill {
  fill: currentColor;
  stroke: none;
}
.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  border-color: rgba(20, 156, 255, 0.48);
  background: rgba(20, 156, 255, 0.08);
  transform: translateY(-2px);
  outline: none;
}
.social-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(20, 156, 255, 0.14);
}
@media (max-width: 1100px) {
  .footer-end {
    align-items: center;
  }
  .footer-end > p {
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
}
@media (max-width: 760px) {
  .footer-socials > span {
    display: none;
  }
  .social-link {
    width: 40px;
    height: 40px;
  }
  .social-link svg {
    width: 19px;
    height: 19px;
  }
}

/* História em vídeo: Lu Moraes */
.creator-story {
  position: relative;
  overflow: hidden;
  padding: 118px 0 112px;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(20, 156, 255, 0.09),
      transparent 30%
    ),
    linear-gradient(180deg, #070b10 0%, #05070a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.creator-story:before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0 49.94%,
      rgba(255, 255, 255, 0.026) 50%,
      transparent 50.06%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 62px
    );
  opacity: 0.45;
}
.creator-story-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(58px, 7vw, 118px);
  align-items: center;
}
.creator-video-column {
  min-width: 0;
}
.creator-video-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #020406;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(20, 156, 255, 0.035);
  border-radius: 10px;
  overflow: hidden;
}
.creator-video-topbar,
.creator-video-footer {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background: linear-gradient(180deg, #10161d, #0a0f14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #7d8995;
  font-weight: 800;
}
.creator-video-topbar div {
  display: flex;
  gap: 5px;
}
.creator-video-topbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #293541;
}
.creator-video-topbar i:nth-child(2) {
  background: #1a76ad;
}
.creator-video-topbar i:nth-child(3) {
  background: #45b8ff;
}
.creator-video-stage {
  position: relative;
  aspect-ratio: 1/1;
  background: #020406;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.creator-video-stage video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #020406;
}
.creator-video-stage:after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}
.creator-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(4, 8, 12, 0.68);
  backdrop-filter: blur(9px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 0 7px rgba(20, 156, 255, 0.045);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    opacity 0.2s ease;
}
.creator-play span {
  font-size: 25px;
  line-height: 1;
  margin-left: 4px;
  color: #45b8ff;
}
.creator-play small {
  font-size: 8px;
  letter-spacing: 0.2em;
  font-weight: 900;
}
.creator-play:hover,
.creator-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(6, 13, 20, 0.86);
  border-color: rgba(69, 184, 255, 0.58);
  outline: none;
}
.creator-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.creator-video-footer {
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: #596673;
}
.creator-video-footer b {
  font-size: 9px;
  color: #9db4c8;
  letter-spacing: 0.15em;
}
.creator-video-note {
  margin: 14px 4px 0;
  color: #63707b;
  font-size: 10px;
  line-height: 1.55;
}
.creator-story-copy .eyebrow {
  margin-bottom: 22px;
}
.creator-story-copy h2 {
  font-size: clamp(44px, 4.6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 0 0 25px;
  max-width: 760px;
}
.creator-story-copy h2 em {
  font-style: normal;
  color: var(--blue-hi);
  font-weight: 500;
}
.creator-story-copy > p {
  font-size: 14px;
  line-height: 1.75;
  color: #8f9ca7;
  max-width: 720px;
  margin: 0 0 16px;
}
.creator-story-copy .creator-lead {
  color: #c4ced6;
  font-size: 16px;
  line-height: 1.7;
}
.creator-role-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 29px 0 30px;
}
.creator-role-row span {
  border: 1px solid rgba(69, 184, 255, 0.18);
  background: rgba(20, 156, 255, 0.045);
  padding: 9px 11px;
  border-radius: 5px;
  color: #8ba9bc;
  font-size: 8px;
  letter-spacing: 0.14em;
  font-weight: 850;
}
.creator-storyline {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin: 0 0 27px;
}
.creator-storyline article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  align-items: start;
}
.creator-storyline article:last-child {
  border-bottom: 0;
}
.creator-storyline b {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #45b8ff;
  padding-top: 2px;
}
.creator-storyline span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #d8e1e8;
  font-weight: 850;
  margin-bottom: 6px;
}
.creator-storyline p {
  margin: 0;
  color: #687581;
  font-size: 11px;
  line-height: 1.55;
}
.creator-manifesto {
  margin: 0 0 29px;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--blue-hi);
  color: #eef4f8;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
  max-width: 680px;
}
.creator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.creator-actions .btn {
  min-height: 50px;
}
@media (max-width: 1050px) {
  .creator-story-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .creator-video-column {
    max-width: 620px;
  }
  .creator-story-copy h2 {
    max-width: 850px;
  }
  .creator-story {
    padding: 94px 0;
  }
}
@media (max-width: 640px) {
  .creator-story {
    padding: 76px 0 72px;
  }
  .creator-video-topbar,
  .creator-video-footer {
    height: 38px;
  }
  .creator-play {
    width: 88px;
    height: 88px;
  }
  .creator-play span {
    font-size: 21px;
  }
  .creator-story-copy h2 {
    font-size: 46px;
  }
  .creator-story-copy .creator-lead {
    font-size: 15px;
  }
  .creator-role-row {
    margin-top: 24px;
  }
  .creator-actions {
    display: grid;
  }
  .creator-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .creator-manifesto {
    font-size: 16px;
  }
  .creator-video-note {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .creator-play {
    transition: none;
  }
}

/* Hero topo — demonstração viva dentro do notebook */
.hero-screen-stage {
  position: relative;
  aspect-ratio: 16 / 9.1;
  overflow: hidden;
  background: #05080d;
  isolation: isolate;
}
.hero-product-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015) translate3d(0, 0, 0);
  transform-origin: center center;
  transition:
    opacity 0.55s ease,
    transform 2.35s ease;
  will-change: opacity, transform;
  filter: saturate(0.98) contrast(1.04) brightness(0.98);
}
.hero-product-screen.is-active {
  opacity: 1;
  transform: scale(1.04) translate3d(-0.3%, -0.4%, 0);
}
.hero-screen-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      transparent 18%,
      transparent 82%,
      rgba(0, 0, 0, 0.22)
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03),
      transparent 12%,
      transparent 88%,
      rgba(0, 0, 0, 0.14)
    );
  pointer-events: none;
}
.hero-screen-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.016) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: screen;
  opacity: 0.18;
  pointer-events: none;
}
.hero-screen-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  --cursor-x: 56%;
  --cursor-y: 48%;
}
.hero-screen-status {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 21, 0.88),
    rgba(4, 8, 12, 0.72)
  );
  border: 1px solid rgba(82, 169, 235, 0.28);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.05);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c5d3df;
  white-space: nowrap;
}
.hero-screen-status b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 9px;
}
.hero-screen-status b::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45b8ff;
  box-shadow: 0 0 12px rgba(69, 184, 255, 0.72);
  animation: heroPulse 1.3s ease-in-out infinite;
}
.hero-screen-label {
  color: #94b8d3;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.hero-screen-progress {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 148px;
  height: 7px;
  padding: 1px;
  border-radius: 999px;
  background: rgba(5, 10, 14, 0.6);
  border: 1px solid rgba(80, 135, 170, 0.26);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.hero-screen-progress span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #149cff, #70c6ff);
  box-shadow: 0 0 20px rgba(20, 156, 255, 0.28);
  animation: heroProgress 2.4s linear infinite;
}
.hero-screen-cursor,
.hero-screen-ping {
  position: absolute;
  left: var(--cursor-x);
  top: var(--cursor-y);
  transition:
    left 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    top 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-screen-cursor {
  width: 24px;
  height: 31px;
  z-index: 4;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.55));
  transform: translate(-15%, -12%);
}
.hero-screen-cursor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  clip-path: polygon(0 0, 0 100%, 26% 72%, 39% 99%, 50% 94%, 38% 68%, 72% 67%);
  border-radius: 2px;
}
.hero-screen-cursor::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #0e1115;
  clip-path: polygon(0 0, 0 100%, 26% 72%, 39% 99%, 50% 94%, 38% 68%, 72% 67%);
  transform: translate(1px, 1px) scale(0.82);
  transform-origin: top left;
}
.hero-screen-ping {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(69, 184, 255, 0.54) 0 34%,
    rgba(69, 184, 255, 0.28) 35% 58%,
    transparent 60%
  );
}
.hero-screen-ui.is-clicking .hero-screen-ping {
  animation: heroPing 0.58s ease-out;
}
.hero-screen-eq {
  position: absolute;
  right: 16px;
  bottom: 15px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
}
.hero-screen-eq i {
  display: block;
  width: 4px;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #65c4ff, #149cff);
  height: 45%;
  box-shadow: 0 0 8px rgba(20, 156, 255, 0.3);
  animation: heroEq 1s ease-in-out infinite alternate;
}
.hero-screen-eq i:nth-child(2) {
  animation-delay: 0.12s;
  height: 70%;
}
.hero-screen-eq i:nth-child(3) {
  animation-delay: 0.22s;
  height: 54%;
}
.hero-screen-eq i:nth-child(4) {
  animation-delay: 0.34s;
  height: 82%;
}
.hero-screen-eq i:nth-child(5) {
  animation-delay: 0.44s;
  height: 60%;
}
.hero-product-scan {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(20, 156, 255, 0.07) 42%,
    transparent 72%
  );
  animation: heroScan 4.6s linear infinite;
}
@keyframes heroPulse {
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}
@keyframes heroProgress {
  0% {
    transform: translateX(-65%);
  }
  100% {
    transform: translateX(210%);
  }
}
@keyframes heroPing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  25% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.7);
  }
}
@keyframes heroEq {
  from {
    height: 28%;
  }
  to {
    height: 100%;
  }
}
@keyframes heroScan {
  0% {
    transform: translateY(-6%);
  }
  100% {
    transform: translateY(102%);
  }
}

@media (max-width: 760px) {
  .hero-screen-status {
    left: 10px;
    right: auto;
    bottom: 10px;
    padding: 7px 10px;
    gap: 8px;
    font-size: 8px;
  }
  .hero-screen-label {
    display: none;
  }
  .hero-screen-progress {
    top: 10px;
    right: 10px;
    width: 108px;
    height: 6px;
  }
  .hero-screen-eq {
    right: 10px;
    bottom: 11px;
    height: 18px;
  }
  .hero-screen-cursor {
    width: 18px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product-screen {
    transition: none;
  }
  .hero-product-scan,
  .hero-screen-progress span,
  .hero-screen-status b::before,
  .hero-screen-eq i,
  .hero-screen-ping {
    animation: none !important;
  }
}

/* Posicionamento da demonstração no notebook */
.hero-visual-embedded {
  position: relative;
  min-height: 650px;
  pointer-events: none;
}
.hero-visual-embedded .hero-screen-stage-embedded {
  position: absolute;
  width: min(67.2%, 546px);
  aspect-ratio: 16 / 9.14;
  left: 24.4%;
  top: 24.5%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(130, 185, 230, 0.09);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  clip-path: polygon(4.1% 2.7%, 96% 5.8%, 95% 94.2%, 4.8% 96.8%);
  transform: perspective(1500px) rotateY(8.8deg) rotateX(2.1deg)
    rotateZ(-2.25deg) skewX(1.2deg);
  transform-origin: center center;
  background: #05080d;
}
.hero-visual-embedded .hero-screen-stage-embedded::before {
  opacity: 0.22;
}
.hero-visual-embedded .hero-screen-stage-embedded::after {
  opacity: 0.12;
}
.hero-visual-embedded .hero-screen-ui {
  opacity: 0.92;
}
.hero-product-frame,
.hero-logo-badge,
.meter-card {
  display: none !important;
}
.hero-screen-status {
  backdrop-filter: blur(8px);
}
.hero-screen-progress {
  opacity: 0.88;
}
.hero-screen-cursor {
  opacity: 0.92;
}
.hero-product-scan {
  inset: 0;
  opacity: 0.7;
}
@media (max-width: 1280px) {
  .hero-visual-embedded .hero-screen-stage-embedded {
    width: min(70%, 528px);
    left: 19.5%;
    top: 24.8%;
    clip-path: polygon(4% 3%, 96% 6%, 95.5% 94.5%, 5% 97%);
    transform: perspective(1400px) rotateY(7deg) rotateX(1.8deg) rotateZ(-2deg)
      skewX(1deg);
  }
}
@media (max-width: 1100px) {
  .hero-visual-embedded {
    min-height: 520px;
  }
  .hero-visual-embedded .hero-screen-stage-embedded {
    width: min(78%, 492px);
    left: 11%;
    top: 21%;
    clip-path: polygon(4% 3%, 96% 5%, 96% 95%, 5% 97%);
    transform: perspective(1200px) rotateY(5deg) rotateX(1.4deg)
      rotateZ(-1.4deg) skewX(0.8deg);
  }
}
@media (max-width: 760px) {
  .hero-visual-embedded {
    min-height: 300px;
    margin-top: 8px;
  }
  .hero-visual-embedded .hero-screen-stage-embedded {
    position: relative;
    left: auto;
    top: auto;
    width: min(92vw, 420px);
    margin: 0 auto;
    transform: none;
    border-radius: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual-embedded .hero-screen-stage-embedded {
    transform: none;
  }
}

/* Projeção da demonstração nos quatro cantos da tela do notebook */
.hero-grid {
  position: relative;
  z-index: 2;
}
.hero-visual-spacer {
  min-height: 650px;
  pointer-events: none;
}
.hero-laptop-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-laptop-screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 1278px;
  height: 720px;
  overflow: hidden;
  background: #05070a;
  transform-origin: 0 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.18s ease;
  clip-path: polygon(0.06% 0.06%, 99.94% 0.06%, 99.94% 99.94%, 0.06% 99.94%);
}
.hero-laptop-screen.is-fitted {
  opacity: 1;
}
.hero-live-demo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #06090d;
}
.hero-live-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.006);
  transition: opacity 0.24s ease;
  filter: brightness(0.86) contrast(1.025) saturate(0.91);
  backface-visibility: hidden;
}
.hero-live-screen.is-active {
  opacity: 1;
}
.hero-screen-glass {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.042),
      transparent 28%,
      transparent 67%,
      rgba(255, 255, 255, 0.012) 78%,
      transparent
    ),
    linear-gradient(
      180deg,
      rgba(7, 12, 18, 0.08),
      transparent 22%,
      transparent 76%,
      rgba(0, 0, 0, 0.18)
    );
  mix-blend-mode: screen;
  opacity: 0.48;
}
.hero-live-cursor,
.hero-live-click {
  position: absolute;
  z-index: 6;
  left: 56%;
  top: 48%;
  transition:
    left 0.62s cubic-bezier(0.22, 0.61, 0.36, 1),
    top 0.62s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-live-cursor {
  width: 21px;
  height: 28px;
  transform: translate(-12%, -10%);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.68));
  opacity: 0.92;
}
.hero-live-cursor:before {
  content: '';
  position: absolute;
  inset: 0;
  background: #f5f8fa;
  clip-path: polygon(0 0, 0 100%, 26% 72%, 39% 99%, 51% 94%, 38% 68%, 72% 67%);
}
.hero-live-cursor:after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #10151b;
  clip-path: polygon(0 0, 0 100%, 26% 72%, 39% 99%, 51% 94%, 38% 68%, 72% 67%);
  transform: translate(1px, 1px) scale(0.81);
  transform-origin: top left;
}
.hero-live-click {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.28);
  border: 2px solid rgba(69, 184, 255, 0.82);
  box-shadow: 0 0 14px rgba(20, 156, 255, 0.32);
  opacity: 0;
}
.hero-live-click.fire {
  animation: heroLaptopClick 0.42s ease-out;
}
@keyframes heroLaptopClick {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25);
  }
  24% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.1);
  }
}
/* A animação dinâmica é desativada abaixo de 900px. O notebook original da própria fotografia continua visível como fallback. */
@media (max-width: 900px) {
  .hero-laptop-overlay {
    display: none;
  }
  .hero-visual-spacer {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-live-screen {
    transition: none;
  }
  .hero-live-cursor,
  .hero-live-click {
    display: none;
  }
}

/* Faixa animada responsiva */
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  width: 100%;
  max-width: 100%;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(
    180deg,
    rgba(3, 6, 10, 0.56),
    rgba(3, 6, 10, 0.88)
  );
  border-top: 1px solid rgba(124, 190, 235, 0.12);
  border-bottom: 1px solid rgba(124, 190, 235, 0.08);
  color: #65788a;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  contain: layout paint;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 3%,
    #000 97%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 3%,
    #000 97%,
    transparent 100%
  );
}
.hero-marquee-track {
  display: flex;
  align-items: center;
  flex: none;
  width: max-content;
  min-width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: heroMarqueeResponsive 32s linear infinite;
}
.hero-marquee-track span {
  display: block;
  flex: none;
  padding-right: clamp(42px, 4vw, 82px);
  font-size: clamp(8px, 0.52vw, 10px);
  font-weight: 650;
  letter-spacing: clamp(0.1em, 0.16vw, 0.16em);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes heroMarqueeResponsive {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 1100px) {
  .hero-marquee {
    height: 36px;
  }
  .hero-marquee-track {
    animation-duration: 28s;
  }
  .hero-marquee-track span {
    font-size: 8px;
    padding-right: 36px;
    letter-spacing: 0.12em;
  }
}
@media (max-width: 760px) {
  .hero {
    padding-bottom: 34px;
  }
  .hero-marquee {
    height: 30px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-marquee-track {
    animation-duration: 24s;
  }
  .hero-marquee-track span {
    font-size: 7px;
    padding-right: 28px;
    letter-spacing: 0.1em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation: none !important;
    transform: none !important;
  }
}

/* Crédito de desenvolvimento */
.developer-credit {
  color: #9db4c8;
  font-weight: 650;
  transition: color 0.22s var(--ease);
}
.developer-credit:hover,
.developer-credit:focus-visible {
  color: #45b8ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

/* Responsive corrections: keep tooltips and controls inside the viewport. */
.hs-2:after {
  left: auto;
  right: 38px;
}
.platform-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.download-platforms .platform-btn:disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.13);
}
@media (max-width: 1100px) {
  .brand {
    flex-shrink: 0;
  }
  .menu-btn {
    display: block;
    position: relative;
    z-index: 3;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    height: 100dvh;
    overflow-y: auto;
    background: #07090c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    font-size: 18px;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.3s var(--ease),
      visibility 0.3s;
  }
  .main-nav.open {
    transform: none;
    visibility: visible;
  }
  .main-nav > a {
    flex-shrink: 0;
  }
  .pad-floating {
    right: 0;
  }
}
@media (max-width: 760px) {
  .pad-floating {
    right: auto;
  }
}

/* Anchor destinations stay below the fixed header, including incoming links. */
html {
  scroll-padding-top: 98px;
}
.main-nav > a[aria-current='location'] {
  color: #fff;
}
.main-nav > a[aria-current='location']:after {
  right: 0;
}
body.menu-open {
  overflow: hidden;
}
.site-header.menu-open,
body.legal-body .site-header.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media (max-width: 1100px) {
  .main-nav {
    padding: 90px 24px 32px;
    justify-content: flex-start;
    gap: 24px;
    overscroll-behavior: contain;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
