:root {
  --bg: #02050c;
  --bg-2: #040915;
  --bg-3: #07111f;
  --surface: rgba(5, 11, 23, 0.84);
  --surface-2: rgba(7, 15, 28, 0.92);
  --surface-3: rgba(9, 18, 34, 0.98);
  --card: rgba(5, 10, 20, 0.88);
  --line: rgba(231, 190, 86, 0.12);
  --line-strong: rgba(231, 190, 86, 0.22);
  --text: #f4f7fb;
  --muted: #8c97b1;
  --muted-2: #b3bcd2;
  --gold: #e7be56;
  --gold-2: #f5d788;
  --gold-3: #bc8823;
  --cyan: #4dc9ff;
  --danger: #ff5566;
  --success: #2de096;
  --shadow-xl: 0 36px 96px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 22px 58px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --nav-height: 92px;
  --bs-gutter-x: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(14, 41, 94, 0.18), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(231, 190, 86, 0.04), transparent 18%),
    linear-gradient(180deg, #010309 0%, #030712 24%, #040913 100%);
  line-height: 1.5;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

body::before {
  background:
    radial-gradient(circle at 50% -10%, rgba(231, 190, 86, 0.04), transparent 28%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 108px
    );
  opacity: 0.18;
}

body::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22)),
    linear-gradient(90deg, rgba(6, 15, 30, 0.68), transparent 18%, transparent 82%, rgba(6, 15, 30, 0.68));
  opacity: 0.72;
}

.site-beacon {
  position: fixed;
  top: 12vh;
  right: -12vw;
  width: min(72vw, 980px);
  height: 220px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.52;
  mix-blend-mode: screen;
}

.site-beacon__glow {
  position: absolute;
  top: 46%;
  right: 14%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 166, 0.92) 0%, rgba(231, 190, 86, 0.34) 48%, transparent 72%);
  filter: blur(6px);
}

.site-beacon__beam {
  position: absolute;
  top: 50%;
  right: 14%;
  width: min(64vw, 840px);
  height: 92px;
  transform-origin: right center;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 50%);
  background: linear-gradient(90deg, rgba(255, 226, 145, 0.18), rgba(255, 226, 145, 0.07) 56%, transparent 100%);
  filter: blur(12px);
  animation: siteBeaconSweep 11s ease-in-out infinite;
}

.site-beacon__beam--soft {
  width: min(48vw, 620px);
  height: 62px;
  opacity: 0.56;
  animation-duration: 14s;
  animation-delay: -3s;
}

::selection {
  color: #07111d;
  background: var(--gold);
}

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

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

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

button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

[id] {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(231, 190, 86, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(2, 6, 14, 0.94), rgba(2, 6, 14, 0.98));
  transition:
    opacity 700ms ease,
    visibility 700ms ease;
}

.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-core {
  position: relative;
  width: min(360px, 86vw);
  padding: 40px 24px 28px;
  text-align: center;
  perspective: 1200px;
}

.preloader-mark {
  position: relative;
  width: 172px;
  height: 172px;
  margin: 0 auto 26px;
  transform-style: preserve-3d;
  animation: preloaderFloat 4s ease-in-out infinite;
}

.preloader-ring,
.preloader-ring::before,
.preloader-ring::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.preloader-ring {
  border: 1px solid rgba(231, 190, 86, 0.18);
  box-shadow:
    0 0 0 18px rgba(231, 190, 86, 0.03),
    0 0 0 42px rgba(231, 190, 86, 0.02);
  animation: rotateSlow 12s linear infinite;
  transform: translateZ(-10px) rotateX(64deg);
}

.preloader-ring::before {
  content: "";
  inset: 18px;
  border: 1px solid rgba(231, 190, 86, 0.12);
}

.preloader-ring::after {
  content: "";
  inset: 34px;
  background: radial-gradient(circle, rgba(231, 190, 86, 0.16), transparent 66%);
}

.preloader-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 74px;
  transform-origin: left center;
  transform: translate(6px, -50%) rotate(-12deg);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 50%);
  background: linear-gradient(90deg, rgba(255, 224, 138, 0.42), rgba(255, 224, 138, 0.08) 62%, transparent 100%);
  filter: blur(6px);
  animation: preloaderSweep 3.8s ease-in-out infinite;
}

.preloader-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
  transform: rotateX(14deg) rotateY(-14deg);
}

.preloader-base {
  fill: rgba(11, 18, 33, 0.96);
}

.preloader-rock {
  fill: rgba(28, 37, 58, 0.92);
}

.preloader-tower-main {
  fill: url(#preloaderTowerGradient);
}

.preloader-tower-edge {
  fill: rgba(255, 255, 255, 0.12);
}

.preloader-top {
  fill: url(#preloaderTopGradient);
}

.preloader-light {
  fill: rgba(255, 233, 164, 0.98);
  filter: url(#preloaderGlow);
  animation: pulseOrb 2.4s ease-in-out infinite;
}

.preloader-wave-line {
  fill: none;
  stroke: rgba(231, 190, 86, 0.26);
  stroke-width: 2.4;
  stroke-linecap: round;
  opacity: 0.8;
}

.preloader-sweep {
  opacity: 0.8;
  transform-origin: 86px 82px;
  animation: preloaderSweepCone 3.8s ease-in-out infinite;
}

.preloader-waves {
  position: relative;
  width: 180px;
  height: 26px;
  margin: 0 auto 18px;
  overflow: hidden;
}

.preloader-waves span {
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  border-top: 1px solid rgba(231, 190, 86, 0.22);
  border-radius: 50%;
  animation: waveDrift 2.6s ease-in-out infinite;
}

.preloader-waves span:nth-child(1) {
  bottom: 0;
}

.preloader-waves span:nth-child(2) {
  bottom: 7px;
  left: 14px;
  right: 14px;
  opacity: 0.72;
  animation-delay: 0.18s;
}

.preloader-waves span:nth-child(3) {
  bottom: 14px;
  left: 28px;
  right: 28px;
  opacity: 0.5;
  animation-delay: 0.36s;
}

.preloader-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.92);
}

.preloader-copy {
  margin: 10px 0 0;
  color: rgba(179, 188, 210, 0.62);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

.section {
  position: relative;
  padding: 132px 0;
  isolation: isolate;
  overflow: clip;
}

.section > .container {
  position: relative;
  z-index: 3;
}

.section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 190, 86, 0.15), transparent);
  pointer-events: none;
  z-index: 2;
}

.text-center {
  text-align: center;
}

.mb-section {
  margin-bottom: 88px;
}

.text-gold {
  color: var(--gold);
}

.section-title,
.hero-title,
.big-quote {
  margin: 0;
  font-family: "Manrope", sans-serif;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.text-center .section-title {
  max-width: 18ch;
  margin-inline: auto;
}

.section-desc {
  width: min(100%, 68ch);
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
  font-weight: 400;
}

.section-desc > .text-gold:first-child {
  display: block;
  margin-bottom: 0.28rem;
}

.section-title br,
.section-desc br,
.big-quote br {
  display: none;
}

.section-tag,
.badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(231, 190, 86, 0.26);
  background:
    linear-gradient(180deg, rgba(7, 14, 27, 0.84), rgba(5, 10, 20, 0.94)),
    rgba(5, 10, 20, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 30px rgba(231, 190, 86, 0.12);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.badge::after,
.section-tag::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(231, 190, 86, 0.06), transparent);
  opacity: 0.8;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(231, 190, 86, 0.14), 0 0 18px rgba(231, 190, 86, 0.42);
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition:
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 14, 0.84), rgba(3, 7, 14, 0)),
    linear-gradient(90deg, rgba(231, 190, 86, 0.04), transparent 16%, transparent 84%, rgba(231, 190, 86, 0.04));
  opacity: 0.86;
  pointer-events: none;
}

.navbar.is-scrolled {
  background: rgba(2, 6, 14, 0.74);
  border-bottom: 1px solid rgba(231, 190, 86, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.nav-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: var(--nav-height);
}

.logo-link {
  position: relative;
  z-index: 2;
}

.logo-icon,
.footer-logo {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(231, 190, 86, 0.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(231, 190, 86, 0.42), transparent 34%),
    linear-gradient(180deg, #0a1730 0%, #050b15 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 44px rgba(231, 190, 86, 0.14);
}

.logo-icon::before,
.footer-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("logo.jpg") center / cover no-repeat;
}

.logo-icon svg,
.footer-logo svg {
  opacity: 0;
}

.nav-links,
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.nav-link,
.footer-nav a {
  position: relative;
  color: rgba(212, 221, 238, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  transition: color 220ms ease;
}

.nav-link::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.nav-link:hover,
.nav-link.active,
.footer-nav a:hover {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after,
.footer-nav a:hover::after {
  width: 100%;
}

.btn-demo,
.btn-primary,
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  white-space: nowrap;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.btn-demo,
.btn-primary {
  overflow: hidden;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 45%, var(--gold-3) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 240, 194, 0.18),
    0 12px 28px rgba(231, 190, 86, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.btn-demo::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.btn-demo:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 240, 194, 0.26),
    0 16px 34px rgba(231, 190, 86, 0.22);
}

.btn-demo:hover::before,
.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-ghost {
  color: rgba(210, 220, 238, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(231, 190, 86, 0.18);
  background: rgba(231, 190, 86, 0.06);
}

.btn-arrow {
  display: inline-flex;
  transition: transform 220ms ease;
}

.btn-primary:hover .btn-arrow,
.btn-demo:hover .btn-arrow {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(231, 190, 86, 0.16);
  background: rgba(5, 12, 23, 0.9);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-top: calc(var(--nav-height) + 36px);
  background:
    linear-gradient(180deg, rgba(2, 5, 11, 0.72), rgba(2, 5, 11, 0.96)),
    linear-gradient(90deg, rgba(4, 10, 20, 0.92), rgba(4, 10, 20, 0.36) 45%, rgba(4, 10, 20, 0.84) 100%),
    url("bg-farol.jpg") center center / cover no-repeat;
}

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

.hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(231, 190, 86, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(5, 11, 22, 0.1), rgba(5, 11, 22, 0.66)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 120px
    );
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero::after {
  inset: auto 0 0;
  height: 34%;
  background:
    linear-gradient(180deg, transparent, rgba(3, 6, 12, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(231, 190, 86, 0.12), transparent 34%);
}

.mesh-bg,
.grid-bg,
.glow,
.cta-glow {
  position: absolute;
  pointer-events: none;
}

.mesh-bg {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(38, 91, 190, 0.1), transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(231, 190, 86, 0.08), transparent 28%),
    radial-gradient(circle at 64% 66%, rgba(255, 220, 125, 0.04), transparent 24%);
  opacity: 0.64;
}

.grid-bg {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(231, 190, 86, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 190, 86, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
  opacity: 0.12;
}

.glow {
  z-index: 0;
  border-radius: 50%;
  filter: blur(140px);
}

.glow-1 {
  top: 14%;
  left: -160px;
  width: 340px;
  height: 340px;
  background: rgba(44, 108, 214, 0.14);
}

.glow-2,
.glow-gold,
.cta-glow {
  top: 10%;
  right: -190px;
  width: 480px;
  height: 480px;
  background: rgba(231, 190, 86, 0.1);
}

.glow-center {
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  background: rgba(231, 190, 86, 0.06);
  transform: translate(-50%, -50%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
  width: 100%;
  padding-bottom: 124px;
}

.hero-text {
  position: relative;
  z-index: 4;
  max-width: 680px;
}

.hero-title {
  margin: 28px 0 24px;
  font-size: clamp(2.9rem, 5.8vw, 4.65rem);
  line-height: 1;
  letter-spacing: -0.065em;
  max-width: 11.5ch;
  font-weight: 800;
}

.hero-title br {
  display: none;
}

.hero-title .text-gold {
  display: block;
  background: linear-gradient(90deg, var(--gold-2) 0%, var(--gold) 45%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(231, 190, 86, 0.18);
}

.hero-desc {
  max-width: 56ch;
  margin: 0;
  color: rgba(226, 233, 247, 0.58);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.72;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.hero-actions > * {
  flex: 0 0 auto;
}

.hero-lighthouse {
  display: none;
}

.hero-lighthouse__tower {
  position: absolute;
  right: 22%;
  bottom: 10%;
  width: 86px;
  height: 360px;
  background:
    linear-gradient(180deg, rgba(248, 214, 122, 0.24), rgba(231, 190, 86, 0.02)),
    linear-gradient(180deg, #20324d 0%, #162437 22%, #102033 80%, #08111d 100%);
  clip-path: polygon(35% 0, 65% 0, 88% 100%, 12% 100%);
  border-radius: 22px 22px 10px 10px;
  box-shadow: 0 0 50px rgba(231, 190, 86, 0.12);
}

.hero-lighthouse__tower::before {
  content: "";
  position: absolute;
  inset: 12% 40% 10% 42%;
  background: linear-gradient(180deg, rgba(6, 12, 24, 0.2), rgba(6, 12, 24, 0.7));
  border-radius: 999px;
}

.hero-lighthouse__cap {
  position: absolute;
  right: calc(22% - 18px);
  bottom: calc(10% + 332px);
  width: 122px;
  height: 70px;
  background:
    radial-gradient(circle at center, rgba(255, 235, 180, 0.6), transparent 34%),
    linear-gradient(180deg, #f4d47e 0%, #c59024 46%, #463113 100%);
  clip-path: polygon(18% 100%, 22% 36%, 35% 14%, 50% 0, 65% 14%, 78% 36%, 82% 100%);
  filter: drop-shadow(0 0 20px rgba(231, 190, 86, 0.3));
}

.hero-lighthouse__glow {
  position: absolute;
  right: calc(22% + 10px);
  bottom: calc(10% + 330px);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 148, 0.68) 0%, rgba(231, 190, 86, 0.28) 34%, transparent 72%);
  filter: blur(10px);
}

.hero-lighthouse__beam {
  position: absolute;
  top: 8%;
  right: calc(22% + 42px);
  transform-origin: top right;
  clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 56%);
  background: linear-gradient(90deg, rgba(255, 224, 138, 0.34), rgba(255, 219, 110, 0.12) 60%, transparent 100%);
  filter: blur(8px);
}

.hero-lighthouse__beam--left {
  width: min(64vw, 820px);
  height: 210px;
  transform: rotate(-12deg);
  animation: lighthouseSweepLeft 9s ease-in-out infinite;
}

.hero-lighthouse__beam--right {
  width: min(42vw, 560px);
  height: 150px;
  clip-path: polygon(0 50%, 100% 10%, 100% 90%, 0 50%);
  background: linear-gradient(90deg, rgba(255, 224, 138, 0.56), rgba(255, 219, 110, 0.18) 56%, transparent 100%);
  transform: rotate(8deg);
  animation: lighthouseSweepRight 9s ease-in-out infinite;
}

.dashboard {
  position: relative;
  z-index: 4;
  width: min(100%, 540px);
  margin-left: auto;
  padding: 22px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(231, 190, 86, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 15, 30, 0.94), rgba(4, 8, 18, 0.98)),
    rgba(4, 8, 18, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 26px 68px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(231, 190, 86, 0.04);
  backdrop-filter: blur(18px);
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(231, 190, 86, 0.12), transparent 36%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.03), transparent 34%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 34px
    );
  opacity: 0.7;
  pointer-events: none;
}

.dashboard::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 160%;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: rotate(-8deg);
  animation: scan 7s linear infinite;
  pointer-events: none;
}

.dashboard-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red {
  background: #ff4f63;
}

.dot-yellow {
  background: var(--gold);
}

.dot-green {
  background: #2dde95;
}

.dash-title {
  color: rgba(214, 223, 241, 0.56);
  font-size: 0.8rem;
}

.dash-kpis,
.dash-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dash-bottom {
  margin-top: 14px;
  grid-template-columns: 1.45fr 1fr;
}

.kpi,
.dash-chart-section,
.dash-categories,
.dash-risk {
  position: relative;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(2, 8, 18, 0.95), rgba(4, 11, 22, 0.92)),
    rgba(2, 8, 18, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.kpi::before,
.dash-chart-section::before,
.dash-categories::before,
.dash-risk::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(231, 190, 86, 0.08), transparent 42%);
  opacity: 0.54;
  pointer-events: none;
}

.kpi-label,
.dash-chart-label,
.dash-cat-label,
.risk-period {
  color: rgba(154, 167, 192, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
}

.kpi-value {
  margin-top: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-shadow: 0 0 20px rgba(231, 190, 86, 0.08);
}

.kpi-change,
.impact-rate {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.positive,
.impact-rate,
.check-icon {
  color: var(--success);
}

.negative,
.x-icon {
  color: var(--danger);
}

.dash-chart-section {
  margin-top: 14px;
  padding-bottom: 18px;
}

.dash-chart-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dash-period {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.bar-chart {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 150px;
  margin-top: 24px;
}

.bar-chart::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 12px;
  background:
    linear-gradient(rgba(231, 190, 86, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 190, 86, 0.025) 1px, transparent 1px);
  background-size: 100% 30px, 32px 100%;
  opacity: 0.38;
}

.bar {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  height: 0;
  border-radius: 10px 10px 6px 6px;
  background:
    linear-gradient(180deg, rgba(248, 214, 122, 0.96) 0%, rgba(231, 190, 86, 0.82) 54%, rgba(156, 111, 18, 0.82) 100%);
  box-shadow:
    0 0 14px rgba(231, 190, 86, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.03);
  animation: riseBars 1.45s cubic-bezier(0.2, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 180ms);
}

.bar::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 24%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 245, 210, 0.46), transparent);
  opacity: 0.82;
}

.cat-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: rgba(214, 223, 241, 0.68);
  font-size: 0.78rem;
}

.cat-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.cat-fill {
  width: 0 !important;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(231, 190, 86, 0.78), var(--gold));
  box-shadow: 0 0 16px rgba(231, 190, 86, 0.16);
  transition: width 900ms cubic-bezier(0.2, 1, 0.22, 1);
}

.cat-fill.is-ready {
  width: var(--fill-width) !important;
}

.risk-number {
  margin: 10px 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 3.2rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--danger);
  text-shadow: 0 0 20px rgba(255, 85, 102, 0.18);
}

.ticker-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  overflow: hidden;
  z-index: 3;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  padding: 20px 0 0;
  color: rgba(174, 186, 207, 0.36);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  animation: ticker 18s linear infinite;
}

.ticker-dot {
  color: rgba(231, 190, 86, 0.4);
}

.features-section {
  background:
    linear-gradient(180deg, #040915 0%, #060d18 100%);
}

.problem-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 85, 102, 0.05), transparent 28%),
    linear-gradient(180deg, #030711 0%, #050a14 100%);
}

.solution-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    radial-gradient(circle at 50% 40%, rgba(231, 190, 86, 0.08), transparent 34%),
    linear-gradient(180deg, #050b16 0%, #07111f 100%);
}

.insights-section {
  background:
    linear-gradient(180deg, #07111f 0%, #040914 100%);
}

.platform-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(77, 201, 255, 0.06), transparent 26%),
    linear-gradient(180deg, #050913 0%, #08101c 100%);
}

.compare-section {
  background:
    linear-gradient(90deg, rgba(255, 85, 102, 0.03), transparent 44%, rgba(231, 190, 86, 0.06) 100%),
    linear-gradient(180deg, #030711 0%, #060c16 100%);
}

.impact-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(231, 190, 86, 0.14), transparent 30%),
    linear-gradient(180deg, #050912 0%, #08111f 100%);
}

.results-section {
  background:
    linear-gradient(180deg, #07111f 0%, #040914 100%);
}

.quote-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(231, 190, 86, 0.08), transparent 30%),
    linear-gradient(180deg, #030711 0%, #060d17 100%);
}

.cta-section {
  background:
    linear-gradient(180deg, #050b16 0%, #060f1b 100%);
}

.section-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  --parallax-y: 0px;
  --media-scale: 1.08;
}

.section-media::before,
.section-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.section-media::before {
  background-image: var(--section-photo);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(0.08) saturate(0.7) contrast(1.02);
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--media-scale));
  opacity: var(--photo-opacity, 0.24);
  transition:
    transform 1.4s cubic-bezier(0.2, 1, 0.22, 1),
    opacity 1.2s ease;
}

.section-media::after {
  background:
    linear-gradient(90deg, rgba(4, 9, 17, 0.84) 0%, rgba(4, 9, 17, 0.3) 42%, rgba(4, 9, 17, 0.84) 100%),
    linear-gradient(180deg, rgba(4, 9, 17, 0.22), rgba(4, 9, 17, 0.7));
}

.section.is-active .section-media::before {
  --media-scale: 1.03;
  opacity: calc(var(--photo-opacity, 0.24) + 0.04);
}

.section-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.34;
}

.section-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 9, 17, 0.78) 0%, rgba(4, 9, 17, 0.26) 44%, rgba(4, 9, 17, 0.76) 100%),
    linear-gradient(180deg, rgba(4, 9, 17, 0.18), rgba(4, 9, 17, 0.68));
}

.section-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.12);
  filter: saturate(0.8) contrast(1.02) brightness(0.72);
}

.section.is-active .section-video {
  opacity: 0.48;
}

.section-media--features {
  --section-photo: url("https://images.pexels.com/photos/28656388/pexels-photo-28656388.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --photo-opacity: 0.18;
}

.section-media--problem {
  --section-photo: url("https://images.pexels.com/photos/14777019/pexels-photo-14777019.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --photo-opacity: 0.3;
}

.section-media--platform {
  --section-photo: url("https://images.unsplash.com/photo-1662525194258-78be0bbd781b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMjA3fDB8MXxzZWFyY2h8Nnx8cm91Z2glMjBzZWElMjBzaGlwJTIwbGlnaHRob3VzZXxlbnwwfHx8fDE3OTEzOTUwMzV8MA&ixlib=rb-4.1.0&q=80&w=1400");
  --photo-opacity: 0.3;
}

.section-media--results {
  --section-photo: url("https://images.pexels.com/photos/33912089/pexels-photo-33912089.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --photo-opacity: 0.24;
}

.section-media--quote {
  --section-photo: url("https://images.unsplash.com/photo-1771585267892-5c902318a12e?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MXxzZWFyY2h8MTR8fGxpZ2h0aG91c2UlMjBzdG9ybSUyMHNlYSUyMG5pZ2h0fGVufDB8fHx8MTc5MTM5NDkzOHww&ixlib=rb-4.1.0&q=80&w=1400");
  --photo-opacity: 0.3;
}

.section-media--cta {
  --section-photo: url("https://images.unsplash.com/photo-1505118380757-91f5f5632de0?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMjA3fDB8MXxzZWFyY2h8Mnx8bGlnaHRob3VzZSUyMHN0b3JtJTIwc2VhfGVufDB8fHx8MTc5MTM5NTI1NHww&ixlib=rb-4.1.0&q=80&w=1400");
  --photo-opacity: 0.28;
}

.authority-widget {
  position: absolute;
  z-index: 2;
  width: min(280px, 24vw);
  min-width: 220px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(231, 190, 86, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.9), rgba(5, 10, 20, 0.96)),
    rgba(5, 10, 20, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  pointer-events: none;
  overflow: hidden;
}

.authority-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(231, 190, 86, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(231, 190, 86, 0.08), transparent 42%);
  pointer-events: none;
}

.authority-widget__eyebrow {
  margin-bottom: 10px;
  color: rgba(231, 190, 86, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  font-weight: 700;
}

.authority-widget__value {
  font-family: "Manrope", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: var(--text);
}

.authority-widget__sub {
  margin-top: 8px;
  color: rgba(214, 223, 241, 0.56);
  font-size: 0.82rem;
  line-height: 1.6;
}

.authority-widget__chart,
.authority-widget__bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 56px;
  margin-top: 14px;
}

.authority-widget__chart span,
.authority-widget__bars span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(245, 215, 136, 0.9), rgba(231, 190, 86, 0.52));
  opacity: 0.82;
}

.authority-widget__chart span:nth-child(1) { height: 24px; }
.authority-widget__chart span:nth-child(2) { height: 38px; }
.authority-widget__chart span:nth-child(3) { height: 30px; }
.authority-widget__chart span:nth-child(4) { height: 46px; }
.authority-widget__chart span:nth-child(5) { height: 52px; }
.authority-widget__chart span:nth-child(6) { height: 40px; }

.authority-widget__bars span:nth-child(1) { height: 18px; }
.authority-widget__bars span:nth-child(2) { height: 28px; }
.authority-widget__bars span:nth-child(3) { height: 40px; }
.authority-widget__bars span:nth-child(4) { height: 50px; }
.authority-widget__bars span:nth-child(5) { height: 34px; }

.authority-widget--platform {
  top: 102px;
  right: 3.5vw;
}

.authority-widget--results {
  bottom: 72px;
  left: 3.5vw;
}

.authority-widget--compare {
  top: 96px;
  right: 4vw;
}

.growth-illustration {
  position: absolute;
  z-index: 2;
  width: min(260px, 22vw);
  min-width: 180px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(9, 15, 29, 0.84), rgba(6, 10, 19, 0.94)),
    rgba(6, 10, 19, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  pointer-events: none;
  overflow: hidden;
}

.growth-illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 18%, rgba(231, 190, 86, 0.12), transparent 28%);
}

.growth-illustration__eyebrow {
  position: relative;
  margin-bottom: 10px;
  color: rgba(231, 190, 86, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  font-weight: 700;
}

.growth-illustration__chart {
  position: relative;
  height: 110px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(231, 190, 86, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 190, 86, 0.04) 1px, transparent 1px);
  background-size: 100% 28px, 28px 100%;
  overflow: hidden;
}

.growth-illustration__line {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 76px;
}

.growth-illustration__line svg {
  width: 100%;
  height: 100%;
}

.growth-illustration__caption {
  position: relative;
  margin-top: 12px;
  color: rgba(179, 188, 210, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
}

.growth-illustration--insights {
  left: 3vw;
  bottom: 82px;
}

.growth-illustration--impact {
  right: 4vw;
  bottom: 96px;
}

.growth-illustration--results {
  right: 4vw;
  top: 96px;
}

.section-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.28;
}

.section-scene::before,
.section-scene::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.scene-orb,
.scene-ring,
.scene-wave,
.scene-ship,
.scene-mast,
.scene-crew,
.scene-radar,
.scene-column,
.scene-beacon,
.scene-scan,
.scene-stars,
.scene-portrait {
  position: absolute;
  pointer-events: none;
}

.scene-orb {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  background: rgba(231, 190, 86, 0.05);
  animation: pulseOrb 9s ease-in-out infinite;
}

.scene-stars {
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 14%, rgba(231, 190, 86, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 32% 64%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  opacity: 0.18;
}

.scene-wave {
  left: -4%;
  right: -4%;
  bottom: -2%;
  height: 150px;
  background:
    radial-gradient(60% 100% at 12% 100%, rgba(14, 29, 56, 0.86) 0 60%, transparent 61%),
    radial-gradient(52% 100% at 38% 100%, rgba(12, 24, 48, 0.92) 0 60%, transparent 61%),
    radial-gradient(56% 100% at 66% 100%, rgba(10, 22, 44, 0.92) 0 60%, transparent 61%),
    radial-gradient(58% 100% at 90% 100%, rgba(13, 27, 52, 0.88) 0 60%, transparent 61%);
  opacity: 0.22;
  transform: translateZ(0);
}

.scene-wave--back {
  bottom: 4%;
  height: 112px;
  opacity: 0.14;
  filter: blur(1px);
}

.scene-ship {
  right: 9%;
  bottom: 9%;
  width: 260px;
  height: 110px;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(231, 190, 86, 0.12) 58%, rgba(231, 190, 86, 0.02) 63%, transparent 63%),
    linear-gradient(180deg, transparent 0 40%, rgba(10, 18, 34, 0.94) 40%, rgba(10, 18, 34, 0.94) 84%, transparent 84%);
  clip-path: polygon(0 84%, 18% 64%, 42% 64%, 48% 38%, 54% 38%, 58% 56%, 68% 56%, 78% 48%, 92% 52%, 100% 72%, 100% 100%, 0 100%);
  opacity: 0.2;
}

.scene-mast {
  right: 19%;
  bottom: 18%;
  width: 5px;
  height: 108px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(231, 190, 86, 0.46), rgba(231, 190, 86, 0.08));
  box-shadow: 0 0 10px rgba(231, 190, 86, 0.06);
}

.scene-crew {
  right: 16%;
  bottom: 18.5%;
  width: 58px;
  height: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(231, 190, 86, 0.18) 0 5px, transparent 6px),
    linear-gradient(180deg, rgba(18, 28, 48, 0.95) 32%, transparent 33%),
    radial-gradient(circle at 48% 16%, rgba(231, 190, 86, 0.16) 0 4px, transparent 5px),
    linear-gradient(180deg, transparent 0 38%, rgba(18, 28, 48, 0.95) 38% 100%);
  display: none;
}

.scene-beacon {
  right: 22%;
  top: 12%;
  width: 46vw;
  max-width: 640px;
  height: 180px;
  background: linear-gradient(90deg, rgba(255, 225, 144, 0.18), rgba(255, 225, 144, 0.06) 52%, transparent);
  clip-path: polygon(0 50%, 100% 8%, 100% 92%, 0 50%);
  filter: blur(6px);
  opacity: 0.12;
  animation: sectionBeam 8s ease-in-out infinite;
  transform-origin: right center;
}

.scene-ring {
  top: 22%;
  left: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(231, 190, 86, 0.12);
  box-shadow:
    0 0 0 32px rgba(231, 190, 86, 0.03),
    0 0 0 72px rgba(231, 190, 86, 0.02);
  opacity: 0.12;
  animation: rotateSlow 16s linear infinite;
}

.scene-radar {
  top: 22%;
  left: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 82%, rgba(231, 190, 86, 0.24) 92%, transparent 100%);
  opacity: 0.1;
  mask-image: radial-gradient(circle, transparent 0 55%, black 58%);
  animation: rotateRadar 8s linear infinite;
}

.scene-column {
  bottom: 12%;
  width: 34px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(231, 190, 86, 0.54), rgba(231, 190, 86, 0.06));
  box-shadow: 0 0 12px rgba(231, 190, 86, 0.05);
  opacity: 0.14;
  animation: dataPulse 4.5s ease-in-out infinite;
}

.scene-column--1 {
  left: 72%;
  height: 120px;
}

.scene-column--2 {
  left: 76%;
  height: 170px;
  animation-delay: 0.35s;
}

.scene-column--3 {
  left: 80%;
  height: 210px;
  animation-delay: 0.7s;
}

.scene-column--4 {
  left: 84%;
  height: 150px;
  animation-delay: 1.05s;
}

.scene-scan {
  inset: 0;
  background: linear-gradient(180deg, transparent 0 42%, rgba(255, 255, 255, 0.03) 48%, transparent 54%);
  opacity: 0.08;
  animation: scan 9s linear infinite;
}

.scene-portrait {
  right: 7%;
  bottom: 4%;
  width: 240px;
  height: 320px;
  background:
    radial-gradient(circle at 52% 18%, rgba(231, 190, 86, 0.24) 0 28px, transparent 29px),
    linear-gradient(180deg, transparent 0 24%, rgba(10, 18, 34, 0.9) 24% 74%, transparent 74%),
    radial-gradient(76% 56% at 50% 78%, rgba(10, 18, 34, 0.92) 0 60%, transparent 61%);
  clip-path: polygon(50% 0, 68% 8%, 74% 26%, 86% 44%, 90% 68%, 82% 100%, 18% 100%, 10% 68%, 14% 44%, 26% 26%, 32% 8%);
  opacity: 0.05;
  filter: blur(0.2px);
}

.scene--ship .scene-orb {
  top: 8%;
  left: -80px;
}

.scene--storm .scene-orb {
  top: 8%;
  right: -80px;
  background: rgba(255, 85, 102, 0.08);
}

.scene--intel .scene-orb,
.scene--impact .scene-orb {
  top: 0;
  right: -80px;
}

.scene--quote .scene-orb,
.scene--cta .scene-orb {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.scene--quote .scene-beacon,
.scene--cta .scene-beacon {
  right: 50%;
  top: 4%;
  transform: translateX(50%);
}

.features-grid,
.insights-grid,
.platform-grid,
.impact-cards,
.results-grid {
  display: grid;
  gap: 28px;
}

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

.insights-grid,
.impact-cards,
.results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.feature-card,
.insight-card,
.platform-card,
.impact-card,
.result-card,
.problem-item,
.compare-card,
.impact-total {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(11, 18, 33, 0.84), rgba(6, 10, 20, 0.96)),
    rgba(5, 10, 20, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.feature-card,
.insight-card,
.platform-card,
.impact-card,
.result-card {
  padding: 34px 30px 30px;
}

.feature-card::before,
.insight-card::before,
.platform-card::before,
.impact-card::before,
.result-card::before,
.compare-card::before,
.impact-total::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    radial-gradient(circle at top right, rgba(231, 190, 86, 0.06), transparent 28%);
  opacity: 0.92;
  pointer-events: none;
}

.feature-card::after,
.insight-card::after,
.platform-card::after,
.impact-card::after,
.result-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 190, 86, 0.28), transparent);
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.feature-card:hover,
.insight-card:hover,
.platform-card:hover,
.impact-card:hover,
.result-card:hover,
.compare-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 190, 86, 0.12);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(231, 190, 86, 0.04);
}

.dashboard:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 32px 80px rgba(0, 0, 0, 0.38),
    0 0 52px rgba(231, 190, 86, 0.06);
}

.feature-card:hover .feature-icon,
.insight-card:hover .insight-icon,
.platform-card:hover .platform-icon,
.impact-card:hover .impact-icon,
.result-card:hover .result-icon {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(231, 190, 86, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 28px rgba(231, 190, 86, 0.1);
}

.feature-card:hover h3,
.insight-card:hover h4,
.platform-card:hover h4,
.impact-card:hover .impact-title,
.result-card:hover h4 {
  color: #fff8e6;
}

.feature-card:hover::after,
.insight-card:hover::after,
.platform-card:hover::after,
.impact-card:hover::after,
.result-card:hover::after {
  opacity: 1;
}

.feature-icon,
.insight-icon,
.platform-icon,
.impact-icon,
.result-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 20px;
  border: 1px solid rgba(231, 190, 86, 0.12);
  color: var(--gold);
  background:
    linear-gradient(180deg, rgba(231, 190, 86, 0.08), rgba(231, 190, 86, 0.03)),
    rgba(231, 190, 86, 0.05);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 18px rgba(231, 190, 86, 0.06);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.feature-icon::after,
.insight-icon::after,
.platform-icon::after,
.impact-icon::after,
.result-icon::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 22px;
  border: 1px solid rgba(231, 190, 86, 0.05);
  opacity: 0.2;
  animation: none;
}

.feature-card h3,
.insight-card h4,
.platform-card h4,
.impact-title,
.result-card h4 {
  font-size: 1.22rem;
}

.feature-card p,
.insight-card p,
.platform-card p,
.impact-card p,
.result-card p {
  font-size: 0.95rem;
}

.feature-card h3,
.insight-card h4,
.platform-card h4,
.impact-title,
.result-card h4,
.compare-card-title,
.problem-value {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.feature-card h3,
.insight-card h4,
.platform-card h4,
.impact-title,
.result-card h4 {
  font-size: 1.3rem;
}

.feature-card p,
.insight-card p,
.platform-card p,
.impact-card p,
.result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.problem-section .section-desc,
.solution-section .section-desc {
  max-width: 72ch;
}

.problem-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
}

.problem-item {
  padding: 28px 24px;
}

.problem-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 85, 102, 0.12), transparent 40%);
  opacity: 0.38;
}

.problem-label {
  color: rgba(214, 223, 241, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.problem-value {
  margin-top: 12px;
  font-size: 1.95rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 22px;
  width: min(100%, 1000px);
  margin: 46px auto 0;
}

.compare-card {
  padding: 34px;
}

.problem-item,
.compare-card,
.impact-total {
  overflow: hidden;
}

.problem-item::after,
.compare-card::after,
.impact-total::after {
  pointer-events: none;
}

.compare-card-title {
  margin-bottom: 24px;
  font-size: 1.44rem;
}

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

.compare-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
}

.compare-bad {
  border-color: rgba(255, 85, 102, 0.12);
}

.compare-good {
  border-color: rgba(231, 190, 86, 0.18);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.38),
    0 0 62px rgba(231, 190, 86, 0.08);
}

.compare-vs {
  display: grid;
  place-items: center;
  align-self: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(231, 190, 86, 0.18);
  background:
    radial-gradient(circle at center, rgba(231, 190, 86, 0.16), transparent 54%),
    rgba(8, 14, 28, 0.92);
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  box-shadow: 0 0 48px rgba(231, 190, 86, 0.16);
}

.impact-value {
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 2.35rem;
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, var(--gold-2) 0%, var(--gold) 48%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(231, 190, 86, 0.1);
}

.impact-rate {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.impact-total {
  width: min(100%, 900px);
  margin: 36px auto 0;
  padding: 58px 42px;
  text-align: center;
  border-color: rgba(231, 190, 86, 0.14);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(231, 190, 86, 0.05);
}

.impact-total::after {
  content: "408";
  position: absolute;
  inset: auto auto -12px 50%;
  transform: translateX(-50%);
  font-family: "Manrope", sans-serif;
  font-size: clamp(7rem, 20vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.009);
  pointer-events: none;
}

.impact-total-label,
.cta-note,
.footer-copy {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
}

.impact-total-value {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4.2rem, 9vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold-2) 0%, var(--gold) 48%, var(--gold-3) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 30px rgba(231, 190, 86, 0.14),
    0 0 60px rgba(231, 190, 86, 0.08);
  animation: goldShift 8s linear infinite;
}

.impact-total-value #counter {
  display: inline-block;
  min-width: 4.6ch;
}

.impact-total-sub {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.impact-half {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  padding: 16px 24px;
  border-radius: 18px;
  border: 1px solid rgba(231, 190, 86, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-2);
}

.big-quote {
  width: min(100%, 980px);
  margin: 0 auto;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.big-quote p {
  margin: 0;
}

.quote-highlight {
  margin-top: 16px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold-2) 0%, var(--gold) 48%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.big-quote footer {
  margin-top: 28px;
  color: rgba(231, 190, 86, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-style: normal;
}

.cta-section {
  padding-top: 96px;
  padding-bottom: 0;
  margin-bottom: -96px;
  z-index: 6;
}

.cta-glow {
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.btn-large {
  min-height: 62px;
  margin-top: 30px;
  padding-inline: 34px;
  font-size: 0.96rem;
}

.cta-note {
  margin-top: 26px;
  color: rgba(180, 191, 210, 0.52);
}

.cta-section .container {
  max-width: min(1120px, calc(100% - 32px));
  padding: clamp(34px, 5vw, 72px);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(9, 15, 29, 0.9), rgba(6, 10, 19, 0.96)),
    rgba(6, 10, 19, 0.94);
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.3),
    0 0 48px rgba(231, 190, 86, 0.05);
  transform: translateY(110px);
  transition:
    transform 1.1s cubic-bezier(0.2, 1, 0.22, 1),
    box-shadow 600ms ease;
}

.cta-section.is-active .container {
  transform: translateY(0);
  box-shadow:
    0 42px 96px rgba(0, 0, 0, 0.34),
    0 0 58px rgba(231, 190, 86, 0.06);
}

.footer {
  position: relative;
  padding: 150px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(2, 6, 14, 0.82);
  backdrop-filter: blur(12px);
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-tagline {
  color: rgba(214, 223, 241, 0.6);
}

.footer-copy {
  color: rgba(214, 223, 241, 0.34);
}

.js-ready .animate-on-scroll {
  opacity: 0;
  transition:
    opacity 820ms cubic-bezier(0.2, 1, 0.22, 1),
    transform 820ms cubic-bezier(0.2, 1, 0.22, 1),
    filter 820ms cubic-bezier(0.2, 1, 0.22, 1);
  transition-delay: var(--delay, 0s);
  filter: blur(12px);
}

.js-ready [data-reveal="up"] {
  transform: translate3d(0, 40px, 0) scale(0.98);
}

.js-ready [data-reveal="left"] {
  transform: translate3d(-44px, 0, 0) scale(0.98);
}

.js-ready [data-reveal="right"] {
  transform: translate3d(44px, 0, 0) scale(0.98);
}

.js-ready [data-reveal="zoom"] {
  transform: scale(0.92) translateY(18px);
}

.js-ready [data-reveal="flip"] {
  transform: perspective(1200px) rotateX(18deg) translateY(36px) scale(0.96);
  transform-origin: center top;
}

.js-ready .animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.section-scene,
.section-media,
.section-video,
.authority-widget {
  transition:
    opacity 900ms ease,
    transform 1.1s cubic-bezier(0.2, 1, 0.22, 1);
}

.section .section-scene,
.section .section-video,
.section .authority-widget {
  transform: translateY(28px);
}

.section.is-active .section-scene,
.section.is-active .section-video,
.section.is-active .authority-widget {
  transform: translateY(0);
}

.section .growth-illustration {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 900ms ease,
    transform 1.1s cubic-bezier(0.2, 1, 0.22, 1);
}

.section.is-active .growth-illustration {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes waveDrift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.52;
  }
  50% {
    transform: translateX(8px);
    opacity: 0.9;
  }
}

@keyframes preloaderSweep {
  0%,
  100% {
    transform: translate(6px, -50%) rotate(-20deg);
    opacity: 0.28;
  }
  50% {
    transform: translate(6px, -50%) rotate(8deg);
    opacity: 0.62;
  }
}

@keyframes goldShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes siteBeaconSweep {
  0%,
  100% {
    transform: translateY(-50%) rotate(-18deg);
    opacity: 0.14;
  }
  50% {
    transform: translateY(-50%) rotate(8deg);
    opacity: 0.32;
  }
}

@keyframes preloaderFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-6px) rotateX(5deg) rotateY(-4deg);
  }
}

@keyframes preloaderSweepCone {
  0%,
  100% {
    transform: rotate(-18deg);
    opacity: 0.34;
  }
  50% {
    transform: rotate(10deg);
    opacity: 0.78;
  }
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

@keyframes lighthouseSweepLeft {
  0%,
  100% {
    transform: rotate(-18deg) translateX(0);
    opacity: 0.26;
  }
  50% {
    transform: rotate(-5deg) translateX(-12px);
    opacity: 0.56;
  }
}

@keyframes lighthouseSweepRight {
  0%,
  100% {
    transform: rotate(2deg);
    opacity: 0.16;
  }
  50% {
    transform: rotate(12deg);
    opacity: 0.34;
  }
}

@keyframes sectionBeam {
  0%,
  100% {
    transform: rotate(-2deg);
    opacity: 0.28;
  }
  50% {
    transform: rotate(5deg);
    opacity: 0.5;
  }
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.64;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateRadar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes riseBars {
  from {
    height: 0;
    opacity: 0.2;
  }
  to {
    height: var(--bar-height);
    opacity: 1;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scan {
  0% {
    transform: translate3d(-10%, -180%, 0) rotate(-8deg);
  }
  100% {
    transform: translate3d(12%, 260%, 0) rotate(-8deg);
  }
}

@keyframes sheen {
  from {
    transform: translateX(0) rotate(-14deg);
  }
  to {
    transform: translateX(260%) rotate(-14deg);
  }
}

@keyframes dataPulse {
  0%,
  100% {
    opacity: 0.18;
    transform: translateY(0);
  }
  50% {
    opacity: 0.48;
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .bar {
    height: var(--bar-height) !important;
  }

  .cat-fill {
    width: var(--fill-width) !important;
  }
}

@media (max-width: 1199.98px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .insights-grid,
  .impact-cards,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .navbar {
    position: sticky;
    top: 0;
    background: rgba(2, 6, 14, 0.88);
    border-bottom: 1px solid rgba(231, 190, 86, 0.08);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
            height: 90px;
  }

  .navbar::before {
    opacity: 0.96;
  }

  .navbar.is-scrolled {
    background: rgba(2, 6, 14, 0.92);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  }

  .nav-links,
  .navbar .btn-demo {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-menu {
    display: grid;
    gap: 12px;
    width: min(calc(100% - 24px), 720px);
    margin: 0 auto 16px;
    padding: 18px;
    border: 1px solid rgba(231, 190, 86, 0.08);
    border-radius: 24px;
    background: rgba(4, 10, 20, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .mobile-link,
  .mobile-btn-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 16px;
  }

  .mobile-link {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(214, 223, 241, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(20px, 5vw, 36px);
  }

  .hero-inner,
  .features-grid,
  .insights-grid,
  .platform-grid,
  .problem-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 32px;
    padding-top: 8px;
    padding-bottom: 110px;
  }

  .authority-widget {
    display: none;
  }

  .hero-title,
  .text-center .section-title {
    max-width: none;
  }

  .hero-lighthouse {
    inset: auto 0 12% auto;
    width: 100%;
    opacity: 0.56;
  }

  .dashboard {
    width: 100%;
  }

  .dash-kpis,
  .dash-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-chart-section {
    grid-column: 1 / -1;
  }

  .compare-vs {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  :root {
    --nav-height: 82px;
    --bs-gutter-x: 1rem;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-title {
    margin-top: 22px;
    max-width: 10.5ch;
  }

  .hero-actions,
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost,
  .btn-demo {
    width: 100%;
  }

  .dashboard {
    padding: 16px;
    border-radius: 24px;
  }

  .dash-kpis,
  .dash-bottom,
  .impact-cards,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    height: 122px;
    gap: 5px;
  }

  .feature-card,
  .insight-card,
  .platform-card,
  .impact-card,
  .result-card,
  .compare-card,
  .problem-item,
  .impact-total {
    padding: 22px;
  }

  .impact-total {
    padding: 36px 22px;
  }

  .impact-value,
  .risk-number,
  .kpi-value {
    font-size: 2.2rem;
  }

  .scene-ring,
  .scene-radar,
  .hero-lighthouse__beam--right {
    display: none;
  }

  .scene-ship,
  .scene-mast,
  .scene-crew,
  .scene-portrait {
    opacity: 0.24;
    transform: scale(0.85);
    transform-origin: bottom right;
  }

  .ticker-bar {
    bottom: 8px;
  }

  .ticker-track {
    font-size: 0.62rem;
    padding-top: 16px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .footer-copy,
  .footer-tagline {
    text-align: center;
  }
}
