:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #151515;
  --stroke: rgba(255, 153, 0, 0.28);
  --primary: #ff9900;
  --primary-strong: #ffb84d;
  --text: #d8d6d7;
  --text-soft: rgba(216, 214, 215, 0.78);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1240px;
  --nav-pill-radius: 999px;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: rgba(255, 184, 77, 1);
  inherits: false;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 40;
  pointer-events: none;
}


/* ===== Custom cursor ===== */
html.has-custom-cursor,
html.has-custom-cursor body,
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor summary,
html.has-custom-cursor input,
html.has-custom-cursor textarea,
html.has-custom-cursor select,
html.has-custom-cursor label {
  cursor: none !important;
}

.custom-cursor,
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  z-index: 10000;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.custom-cursor {
  width: 8px;
  height: 8px;
  background: #ff9900;
}

.custom-cursor-follower {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 153, 0, 0.42);
  background: rgba(255, 153, 0, 0.18);
  box-shadow: 0 0 22px rgba(255, 153, 0, 0.18);
}

.custom-cursor.is-visible,
.custom-cursor-follower.is-visible {
  opacity: 1;
}

.custom-cursor.is-active {
  transform: translate3d(-100px, -100px, 0) scale(0.2);
  opacity: 0.75;
}

.custom-cursor-follower.is-active {
  transform: translate3d(-100px, -100px, 0) scale(2.9);
  opacity: 0.22;
}

.custom-cursor.is-hidden,
.custom-cursor-follower.is-hidden {
  opacity: 0;
}

@media (hover: none),
(pointer: coarse) {

  .custom-cursor,
  .custom-cursor-follower {
    display: none !important;
  }
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: var(--primary);
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 153, 0, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(112px, 10vw, 134px);
  height: auto;
  object-fit: contain;
}

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

.nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary);
}

.nav-cta {
  min-width: 128px;
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--nav-pill-radius);
  background: var(--primary);
  color: #0a0a0a !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 28px rgba(255, 153, 0, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav-cta__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 16px;
  object-fit: contain;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #0a0a0a !important;
  background: var(--primary-strong);
  box-shadow: 0 16px 32px rgba(255, 153, 0, 0.24);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
}

.panel {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 0 50px;
}

.hero {
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 153, 0, 0.18) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100svh - 128px);
  min-height: calc(100vh - 128px);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--primary);
  background: rgba(255, 153, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge {
  position: relative;
  max-width: min(92vw, 620px);
  padding: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
}

.hero-badge__marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  flex-wrap: nowrap;
}

.hero-badge__track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  animation: hero-badge-marquee 24s linear infinite;
}

.hero-badge__track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-badge__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.hero-title {
  max-width: 1200px;
  margin-top: 52px;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}


.hero-title {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.hero-title .char {
  display: inline-block;
  transform: translateY(1.18em);
  will-change: transform, opacity;
}

.hero-title__accent,
.hero-title .hero-title__accent,
.hero-title .hero-title__accent .char {
  color: var(--primary);
}

.hero-subtitle.split-subtitle {
  visibility: hidden;
}

.hero-subtitle {
  max-width: 850px;
  margin-top: 24px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-subtitle {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-subtitle .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero-subtitle.split-subtitle .char {
  opacity: 0;
  transform: translateY(24px);
  display: inline-block;
  will-change: transform, opacity;
}

.hero-subtitle .char {
  display: inline-block;
  transform: translateY(1.08em);
  will-change: transform, opacity;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-width: 190px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #0a0a0a;
  box-shadow: 0 12px 28px rgba(255, 153, 0, 0.24);
}

.shiny-cta {
  --shiny-cta-bg: #0a0a0a;
  --shiny-cta-bg-subtle: #1a1205;
  --shiny-cta-fg: var(--text);
  --shiny-cta-highlight: rgba(255, 153, 0, 1);
  --shiny-cta-highlight-subtle: rgba(255, 184, 77, 1);
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  min-width: clamp(320px, 32vw, 460px);
  padding: 1.25rem 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
    conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-cta-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine, transform, box-shadow, color;
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta span::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.shiny-cta:active {
  transform: translateY(1px);
}

.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at var(--position) var(--position), white calc(var(--position) / 4), transparent 0) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg),
      black,
      transparent 10% 90%,
      black);
  border-radius: inherit;
  opacity: 0.32;
}

.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, rgba(255, 153, 0, 0.9), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.55;
}

.shiny-cta span {
  position: relative;
  z-index: 1;
}

.shiny-cta span::before {
  --size: calc(100% + 3rem);
  width: var(--size);
  height: var(--size);
  border-radius: inherit;
  box-shadow: inset 0 -1ex 2rem 4px rgba(255, 153, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
  animation: calc(var(--duration) * 1.5) breathe linear infinite;
}

.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
  animation: var(--animation) var(--duration),
    var(--animation) calc(var(--duration) / 0.4) reverse paused;
  animation-composition: add;
}

.shiny-cta:hover,
.shiny-cta:focus-visible {
  --gradient-percent: 100%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
  color: var(--white);
}

.shiny-cta:hover,
.shiny-cta:hover::before,
.shiny-cta:hover::after,
.shiny-cta:focus-visible,
.shiny-cta:focus-visible::before,
.shiny-cta:focus-visible::after {
  animation-play-state: running;
}

.shiny-cta:hover span::before,
.shiny-cta:focus-visible span::before {
  opacity: 1;
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {

  from,
  to {
    scale: 3;
  }

  50% {
    scale: 3.5;
  }
}

@keyframes hero-badge-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

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

.scroll-indicator {
  margin-top: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: var(--text-soft);
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-indicator i {
  position: relative;
  display: block;
  width: 26px;
  height: 42px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
}

.scroll-indicator i::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  animation: wheel 1.4s infinite;
}

@keyframes wheel {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
  }

  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }
}

.panel-grid {
  display: grid;
  align-items: center;
  gap: 36px;
}

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

.copy h2,
.section-heading h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
}

.copy p,
.section-heading p,
.cta-box p {
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.card,
.feature-card,
.cta-box {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.showcase,
.metrics {
  padding: 28px;
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
}

.showcase-top strong {
  color: var(--primary);
}

.showcase-main {
  display: grid;
  gap: 18px;
  padding-top: 22px;
}

.showcase-main small,
.metric-item span {
  display: block;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.showcase-main h3,
.metric-item strong,
.feature-card h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.section-heading {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 36px;
}

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

.feature-card {
  padding: 28px;
  min-height: 250px;
}

.feature-card p {
  margin-top: 16px;
  color: var(--text-soft);
  line-height: 1.8;
}

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

.metric-item {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 153, 0, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.cta-panel {
  padding-bottom: 70px;
}

.cta-box {
  padding: clamp(28px, 4vw, 54px);
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}

.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1024px) {
  .header-inner {
    min-height: 84px;
  }

  .nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    /*border: 1px solid var(--stroke);
    border-radius: 24px;*/
    background: rgba(10, 10, 10, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    text-transform: uppercase;
    color: #fff;
  }

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

  .nav a,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

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

  .panel-grid--two,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .panel {
    padding: 112px 0 34px;
  }

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

  .brand-logo {
    width: 132px;
  }

  .hero-content {
    min-height: calc(100svh - 112px);
    min-height: calc(100vh - 112px);
  }

  .hero-badge {
    max-width: 100%;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .hero-badge__track span {
    min-height: 40px;
    padding: 0 8px;
  }

  .hero-badge__track {
    animation-duration: 18s;
  }


  .hero-title {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-title .word {
    display: inline-block;
    overflow: hidden;
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
  }

  .hero-title .char {
    display: inline-block;
    transform: translateY(1.18em);
    will-change: transform, opacity;
  }

  .hero-title__accent,
  .hero-title .hero-title__accent,
  .hero-title .hero-title__accent .char {
    color: var(--primary);
  }

  .hero-subtitle {
    max-width: 95%;
    line-height: 1;
  }

  .btn,
  .shiny-cta {
    width: 100%;
  }

  .shiny-cta {
    min-width: 0;
    padding-inline: 1.5rem;
  }

  .hero-actions {
    width: 100%;
  }

  .reverse-mobile>*:first-child {
    order: 2;
  }

  .reverse-mobile>*:last-child {
    order: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    visibility: visible;
  }
}


/* ===== Features section ===== */
.features-panel {
  padding-top: 136px;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 36px;
}

.features-copy h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  max-width: 11ch;
}

.features-copy p {
  max-width: 52ch;
}

.features-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.features-side {
  display: grid;
  gap: 18px;
}

.feature-shell {
  --mx: 50%;
  --my: 50%;
  --glow-alpha: .72;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.border-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 153, 0, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(255, 153, 0, 0.55), rgba(255, 153, 0, 0.06) 28%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 153, 0, 0.38));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--glow-alpha);
  pointer-events: none;
}

.border-glow::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 153, 0, 0.18) 85deg, transparent 160deg, transparent 280deg, rgba(255, 153, 0, 0.12) 330deg, transparent 360deg);
  animation: border-orbit 7s linear infinite;
  opacity: .55;
  pointer-events: none;
}

.feature-shell>* {
  position: relative;
  z-index: 1;
}

.feature-shell--primary {
  padding: 28px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-shell--mini {
  padding: 24px;
  min-height: 173px;
}

.feature-shell__header,
.feature-shell__mini-icon,
.feature-stream__item,
.feature-hero {
  position: relative;
  z-index: 1;
}

.feature-shell__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.feature-chip,
.feature-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 0, 0.14);
  background: rgba(255, 153, 0, 0.06);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  font-weight: 700;
}

.feature-chip svg,
.feature-shell__mini-icon svg,
.feature-stream__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.feature-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.5);
  animation: pulse-dot 2s ease infinite;
}

.feature-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.feature-hero__metric,
.feature-stream__item,
.feature-shell--mini {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.feature-hero__metric {
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-hero__metric small,
.feature-stream__item small {
  display: block;
  color: var(--text-soft);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-hero__metric strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.feature-stream {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.feature-stream__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 112px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-stream__icon,
.feature-shell__mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(255, 153, 0, 0.08);
  border: 1px solid rgba(255, 153, 0, 0.16);
}

.feature-stream__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  flex: 0 0 48px;
}

.feature-stream__item h3,
.feature-shell--mini h3 {
  margin-top: 10px;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.25;
}

.feature-shell--mini p,
.feature-stream__item p {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.72;
}

.feature-shell__mini-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
}

.feature-shell--mini h3 {
  margin-top: 18px;
}

@keyframes border-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.42);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 153, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
  }
}

@media (max-width: 1180px) {

  .features-layout,
  .features-stage {
    grid-template-columns: 1fr;
  }

  .features-copy h2 {
    max-width: 12ch;
  }
}

@media (max-width: 767px) {
  .features-panel {
    padding-top: 112px;
  }

  .feature-shell,
  .feature-shell--primary,
  .feature-shell--mini {
    border-radius: 26px;
  }

  .feature-shell--primary {
    min-height: auto;
    padding: 20px;
  }

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

  .feature-stream__item {
    min-height: 0;
  }
}





/* ===== Features section background topics ===== */
.features-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100svh;
  min-height: 100vh;
}

.features-section__bg,
.features-section__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.features-section__bg {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.18) 16%, rgba(10, 10, 10, 0.42) 45%, rgba(10, 10, 10, 0.82) 100%),
    url("../img/bg-section-funcionalidades-shark-cripto.webp") center center / cover no-repeat;
  transform: scale(1.02);
  will-change: transform;
}

.features-section__overlay {
  background:
    radial-gradient(circle at 50% 48%, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.44) 42%, rgba(10, 10, 10, 0.78) 100%);
}

.features-wrap {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.section-heading--center {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-heading--center .eyebrow,
.section-heading--center h2,
.section-heading--center p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading--center h2 {
  max-width: 38ch;
  margin-top: 52px;
}

.section-heading--center p {
  max-width: 90ch;
}

.features-topics {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.feature-topic {
  --mx: 50%;
  --my: 50%;
  --glow-alpha: .72;
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 28px;
  border: 1px solid rgba(255, 153, 0, 0.16);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.54), rgba(10, 10, 10, 0.38));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}

.feature-topic>* {
  position: relative;
  z-index: 1;
}

.border-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 153, 0, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(255, 153, 0, 0.55), rgba(255, 153, 0, 0.06) 28%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 153, 0, 0.38));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--glow-alpha);
  pointer-events: none;
}

.border-glow::after {
  content: "";
  position: absolute;
  inset: -55%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 153, 0, 0.18) 85deg, transparent 160deg, transparent 280deg, rgba(255, 153, 0, 0.12) 330deg, transparent 360deg);
  animation: border-orbit 7s linear infinite;
  opacity: .6;
  pointer-events: none;
  width: 850px;
}

.feature-topic__icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border-radius: 18px;
  border: 1px solid rgba(255, 153, 0, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 153, 0, 0.22), transparent 62%),
    rgba(255, 255, 255, 0.02);
}

.feature-topic__icon svg {
  width: 28px;
  height: 28px;
}

.feature-topic__copy h3 {
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  line-height: 1.2;
}

.feature-topic__copy p {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.98rem;
}

@media (max-width: 1100px) {
  .features-topics {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .section-heading--center h2,
  .section-heading--center p {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .features-wrap {
    padding-top: 112px;
    padding-bottom: 34px;
    gap: 26px;
  }

  .feature-topic {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .features-section__bg {
    background-position: 62% center;
  }
}


/* ===== Pricing section ===== */

/* ===== SISTEMA ===== */
.sistema-section {
  position: relative;
  min-height: 320vh;
  padding: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 153, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #050505 0%, #090909 48%, #050505 100%);
  overflow: clip;
}

.sistema-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.sistema-wrap {
  position: relative;
  width: min(calc(100% - 80px), 1360px);
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding-top: 140px;
  padding-bottom: 40px;
}

.sistema-heading {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 760px);
  z-index: 3;
  pointer-events: none;
}

.sistema-stage {
  position: relative;
  width: min(100%, 1240px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  perspective: 1600px;
}

.sistema-screen-glow {
  position: absolute;
  inset: 12% 14% 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 28%, rgba(255, 153, 0, 0.08) 48%, rgba(0, 0, 0, 0) 72%);
  filter: blur(42px);
  opacity: 0.8;
  transform: scale(0.9);
  z-index: 0;
  pointer-events: none;
}

.sistema-image {
  position: relative;
  width: min(100%, 1180px);
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.5));
  will-change: transform, opacity;
  z-index: 1;
}

@media (max-width: 900px) {
  .sistema-section {
    min-height: 240vh;
  }

  .sistema-wrap {
    width: min(calc(100% - 40px), 1360px);
    padding-top: 126px;
  }

  .sistema-heading {
    top: 126px;
    width: min(100%, 620px);
  }

  .sistema-image {
    width: min(100%, 980px);
  }
}

@media (max-width: 640px) {
  .sistema-section {
    min-height: 200vh;
  }

  .sistema-wrap {
    padding-top: 112px;
    padding-bottom: 20px;
  }

  .sistema-heading {
    top: 112px;
    width: min(100%, 92vw);
  }

  .sistema-stage {
    width: min(100%, 1000px);
  }

  .sistema-screen-glow {
    inset: 18% 8% 22%;
    filter: blur(28px);
  }
}


.pricing-section {
  padding-top: 136px;
  padding-bottom: 72px;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.pricing-grid {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: 0.92fr 1fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  --mx: 50%;
  --my: 50%;
  --glow-alpha: .56;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 585px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 153, 0, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.pricing-card--featured {
  --glow-alpha: .95;
  transform: translateY(-12px);
  border-color: rgba(255, 153, 0, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 153, 0, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 153, 0, 0.08) inset;
}

.pricing-card__badge {
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 0, 0.18);
  background: rgba(255, 153, 0, 0.08);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-card__top {
  margin-bottom: 22px;
}

.pricing-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.pricing-card__top p {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 24px;
}

.pricing-card__price strong {
  color: var(--white);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  line-height: .95;
  letter-spacing: -0.04em;
}

.pricing-card__price span {
  color: var(--text-soft);
  font-size: .96rem;
  padding-bottom: 6px;
}

.pricing-card__cta {
  min-height: 54px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 0, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-weight: 700;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.pricing-card__cta:hover,
.pricing-card__cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 153, 0, 0.34);
  background: var(--primary);
  color: #0a0a0a;
  box-shadow: 0 14px 30px rgba(255, 153, 0, 0.18);
}

.pricing-card__cta--featured {
  background: var(--primary);
  color: #0a0a0a;
  border-color: rgba(255, 153, 0, 0.42);
  box-shadow: 0 14px 30px rgba(255, 153, 0, 0.22);
}

.pricing-card__cta--featured:hover,
.pricing-card__cta--featured:focus-visible {
  color: #0a0a0a;
  background: var(--primary-strong);
  border-color: rgba(255, 184, 77, 0.48);
  box-shadow: 0 18px 36px rgba(255, 153, 0, 0.28);
}

.pricing-card__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pricing-card__list li {
  position: relative;
  min-height: 52px;
  padding: 0 16px 0 44px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0 35%, rgba(255, 153, 0, 0.18) 36% 100%);
  box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.08);
}

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

  .pricing-card--featured {
    transform: none;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .pricing-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 24px;
  }
}




/* ===== Video ===== */
.video-section {
  padding-top: 136px;
  padding-bottom: 72px;
  min-height: auto;
}

.video-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.video-card {
  width: min(100%, 1080px);
  padding: 18px;
  border-radius: 32px;
}

.video-player {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.telegram-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0088CC;
  color: #0a0a0a;
  box-shadow: 0 18px 38px rgba(21, 54, 71, 0.28);
  border: 1px solid rgba(1, 82, 123, 0.48);
  z-index: 120;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.telegram-float svg {
  width: 40px;
  height: 40px;
  margin-right: 4px;
  margin-top: 4px;
}

.telegram-float:hover,
.telegram-float:focus-visible {
  transform: translateY(-3px);
  background: #00aaff;
  box-shadow: 0 22px 42px rgba(21, 54, 71, 0.28);
}


/* ===== FAQ ===== */
.faq-section {
  padding-top: 136px;
  padding-bottom: 72px;
  min-height: auto;
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.faq-list {
  width: min(100%, 980px);
  display: grid;
  gap: 18px;
}

.faq-item {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255, 153, 0, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.faq-question {
  list-style: none;
  min-height: 88px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 600;
}

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

.faq-question i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--primary);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}

.faq-question i::before {
  width: 18px;
  height: 2px;
}

.faq-question i::after {
  width: 2px;
  height: 18px;
}

.faq-item[open] .faq-question i::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(.2);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .52s cubic-bezier(.22, 1, .36, 1);
  will-change: height;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 72ch;
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  background: #05070d;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 56px 0 46px;
}

.footer-inner {
  max-width: 980px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 56px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand-block {
  max-width: 360px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand__logo {
  width: 154px;
  height: 74px;
  object-fit: contain;
}

.footer-description {
  margin-top: 22px;
  color: rgba(184, 192, 214, 0.52);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 320px;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 56px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #cfd7f6;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(184, 192, 214, 0.62);
  font-size: 0.96rem;
  line-height: 1.6;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.footer-social {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 0, 0.16);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 0, 0.34);
  background: rgba(255, 153, 0, 0.08);
  color: var(--primary);
}

.footer-copy {
  color: rgba(184, 192, 214, 0.4);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .video-section {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .video-card {
    padding: 14px;
    border-radius: 24px;
  }

  .video-player {
    border-radius: 18px;
  }

  .telegram-float {
    left: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .telegram-float svg {
    width: 27px;
    height: 27px;
  }

  .faq-section {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .faq-item {
    border-radius: 22px;
  }

  .faq-question {
    min-height: 78px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 18px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-content: start;
  }

  .footer-brand-block {
    max-width: 100%;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-bottom {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-note {
    text-align: left;
  }
}


/* ===== Custom Cursor ===== */
.custom-cursor,
.custom-cursor-follower {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  z-index: 99999;
  transform: translate3d(-100px, -100px, 0);
  transition:
    opacity 0.22s ease,
    transform 0.18s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    width 0.22s ease,
    height 0.22s ease;
  will-change: transform, opacity, width, height;
}

.custom-cursor {
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  background: #ff9900;
}

.custom-cursor-follower {
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  background: rgba(255, 153, 0, 0.14);
  border: 1px solid rgba(255, 153, 0, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 153, 0, 0.08);
}

.custom-cursor.is-visible,
.custom-cursor-follower.is-visible {
  opacity: 1;
}

.custom-cursor.is-active {
  transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0) scale(0.7);
}

.custom-cursor-follower.is-active {
  width: 54px;
  height: 54px;
  margin-left: -27px;
  margin-top: -27px;
  background: rgba(255, 153, 0, 0.10);
  border-color: rgba(255, 153, 0, 0.65);
}

@media (pointer: fine) {

  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor summary,
  html.has-custom-cursor .faq-question,
  html.has-custom-cursor .telegram-float,
  html.has-custom-cursor input,
  html.has-custom-cursor textarea,
  html.has-custom-cursor select,
  html.has-custom-cursor label {
    cursor: none !important;
  }
}

@media (pointer: coarse),
(max-width: 991px) {

  .custom-cursor,
  .custom-cursor-follower {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .features-section__bg {
    transform: none;
    will-change: auto;
  }

  .feature-topic,
  .pricing-card,
  .faq-item,
  .video-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }  

  .hero-subtitle {
    line-height: 1.45;
  }
}

@media (max-width: 767px) {
  .hero-bg {
    background:
      radial-gradient(circle at center, rgba(255, 153, 0, 0.14) 0%, transparent 36%),
      linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  }

  .panel {
    min-height: auto;
  }
}