.global-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: #050505;
  overflow: hidden;
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 142, 255, 0.2), transparent 70%);
  animation-delay: 0s;
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 142, 255, 0.15), transparent 70%);
  animation-delay: -5s;
}

.orb-3 {
  top: 40%;
  left: 30%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0, 195, 255, 0.08), transparent 70%);
  animation-delay: -10s;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 71px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.hero-bg-glow {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-family: var(--font-marquee);
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  line-height: 1.06;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
}

.text-highlight {
  position: relative;
  color: var(--accent);
  white-space: nowrap;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-buttons .btn {
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(48px);
}

.visual-svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  position: relative;
  z-index: 1;
}

.anim-pulse {
  animation: pulseOp 3s infinite ease-in-out;
}

.anim-float {
  animation: floatY 6s infinite ease-in-out;
}

.anim-float-reverse {
  animation: floatYReverse 7s infinite ease-in-out;
}

.anim-float-delayed {
  animation: floatY 6s infinite ease-in-out;
  animation-delay: 2s;
}

.anim-scan {
  animation: scanMove 4s infinite linear;
}

.anim-scan-new {
  animation: scanMoveNew 3s infinite linear;
}

.anim-rotate {
  transform-origin: center;
  animation: rot 20s infinite linear;
}

.anim-risk-group {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center;
  animation: riskReveal 3s infinite;
  animation-delay: var(--delay, 0s);
}

.anim-spin-slow {
  transform-origin: center;
  transform-box: fill-box;
  animation: rot 15s infinite linear;
}

.anim-spin-slow-reverse {
  transform-origin: center;
  transform-box: fill-box;
  animation: rot-rev 15s infinite linear;
}

.anim-pulse-glow {
  animation: pulseGlow 3s infinite ease-in-out;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes pulseOp {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatYReverse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}

@keyframes scanMove {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(280px);
    opacity: 0;
  }
}

@keyframes scanMoveNew {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateY(300px);
    opacity: 0;
  }
}

@keyframes riskReveal {
  0%,
  30% {
    opacity: 0;
    transform: scale(0.5);
  }
  40%,
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

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

@keyframes rot-rev {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

section {
  position: relative;
}

.hero-section,
.methods-section,
.features-section,
.steps-section,
.cta-section {
  background: transparent;
  border: none;
}

.features-section {
  padding: 100px 0;
}

.features-section::before {
  content: "";
  position: absolute;
  inset: -120px 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 142, 255, 0.06), transparent 70%),
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.32) 22%,
      rgba(0, 0, 0, 0.38) 50%,
      rgba(0, 0, 0, 0.32) 78%,
      transparent 100%
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.methods-section {
  padding: 100px 0;
}

.methods-section::before {
  content: "";
  position: absolute;
  inset: -120px 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0, 142, 255, 0.04), transparent 70%),
    linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.012) 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.steps-section {
  padding: 100px 0;
}

.steps-section::before {
  content: "";
  position: absolute;
  inset: -120px 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.22) 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.cta-section {
  overflow: visible;
}

.cta-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 90vw);
  height: 380px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 50% 50% at 50% 50%,
    rgba(0, 142, 255, 0.3),
    rgba(0, 142, 255, 0.12) 40%,
    transparent 75%
  );
  filter: blur(36px);
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 2px;
  font-weight: 800;
  margin-top: 0;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: method-counter;
}

@media (max-width: 1080px) {
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .methods-grid .method-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 20px);
  }
}

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

  .methods-grid .method-card:last-child {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }
}

.method-card {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 28px;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  cursor: help;
  z-index: 1;
}

.method-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 142, 255, 0.15),
    transparent 40%
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s;
  pointer-events: none;
}

.method-card::before {
  counter-increment: method-counter;
  content: "0" counter(method-counter);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
  z-index: -2;
  pointer-events: none;
  line-height: 1;
  font-family: var(--font-primary);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
}

.method-card:hover {
  background: #000;
  border-color: #008eff;
  box-shadow:
    0 0 0 1px #008eff,
    0 28px 80px -24px rgba(0, 142, 255, 0.45);
}

.method-card:hover::after {
  opacity: 1;
}

.method-card:hover::before {
  color: rgba(0, 142, 255, 0.03);
  -webkit-text-stroke: 0 transparent;
  transform: translate(-50%, -50%) scale(1.2) rotate(-10deg);
  opacity: 1;
}

.method-icon-box {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 2;
}

.method-card:hover .method-icon-box svg {
  transform: scale(1.06) rotate(-2deg);
  color: rgb(0, 142, 255);
}

.method-icon-box svg {
  width: 44px;
  height: 44px;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.5;
  transition: all 0.4s ease;
}

.method-card:hover .method-icon-box svg {
  stroke: #008eff;
  filter: drop-shadow(0 0 24px rgba(0, 142, 255, 0.7));
}

.method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.method-card:hover h3 {
  color: #008eff;
  text-shadow: 0 0 20px rgba(0, 142, 255, 0.5);
}

.method-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.method-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.why-cards {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-items: start;
  text-align: left;
  padding: 34px 0;
  transition: transform 200ms ease-in-out;
  cursor: help;
}

.why-card:hover {
  transform: scale(1.02);
}

.why-card:first-child {
  padding-top: 0;
}

.why-card:last-child {
  padding-bottom: 0;
}

.why-card:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-icon {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  margin-top: 2px;
  stroke: var(--accent);
  stroke-width: 1.5;
}

.why-card h3 {
  grid-column: 2;
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.why-card p {
  grid-column: 2;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.why-cta {
  margin-top: 52px;
  text-align: center;
}

@media (max-width: 768px) {
  .why-card {
    column-gap: 16px;
    padding: 26px 0;
  }

  .why-icon {
    width: 32px;
    height: 32px;
  }

  .why-card h3 {
    font-size: 1.2rem;
  }
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-number {
  font-family: var(--font-marquee);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  margin-top: 20px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.step-connector {
  flex: 0 0 100px;
  height: 1px;
  background: var(--glass-border);
  margin-top: 40px;
}

.cta-section {
  padding: 80px 0 0;
}

.cta-box {
  padding: 40px 0 120px;
  text-align: center;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #b8c5d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0 auto 44px;
  max-width: 560px;
}

.cta-box .btn-lg {
  position: relative;
  z-index: 1;
}

.cta-box .btn-lg::after {
  content: "";
  position: absolute;
  inset: -20px -40px;
  z-index: -1;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0, 142, 255, 0.35), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.ai-disclaimer {
  margin: 36px auto 0;
  font-size: 0.8rem;
  color: var(--text-tertiary, #6b7280);
  opacity: 0.55;
  max-width: 480px;
  line-height: 1.5;
}

.btn-arrow-icon {
  margin-left: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow-icon {
  opacity: 0.85;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-90 {
  opacity: 0.9;
}

.pointer-events-none {
  pointer-events: none;
}

.delay-1s {
  animation-delay: 1s;
}

.delay-2s {
  animation-delay: 2s;
}

.delay-var-1-2 {
  --delay: 1.2s;
}
.delay-var-2 {
  --delay: 2s;
}
.anim-delay-0-5 {
  animation-delay: 0.5s;
}
.anim-delay-1 {
  animation-delay: 1s;
}
.anim-delay-1-5 {
  animation-delay: 1.5s;
}
.anim-delay-2 {
  animation-delay: 2s;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    position: relative;
  }

  .hero-visual {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    overflow: hidden;
  }

  .visual-svg {
    width: 120%;
    max-width: 600px;
    opacity: 0.15;
  }

  .hero-text {
    position: relative;
    z-index: 1;
  }

  .hero-text p {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }
}

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

  .methods-section,
  .features-section,
  .steps-section {
    padding: 56px 0;
  }

  .cta-section {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .method-card {
    padding: 32px 24px;
  }

  .method-icon-box {
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .text-highlight {
    white-space: normal;
  }

  .cta-box {
    padding: 40px 0 52px;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .cta-box p {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
