:root {
  --navy-deep: #171c23;
  --navy-mid: #202a37;
  --navy-surface: #3c485e;
  --navy-border: #3c485e;
  --brand-muted: #aeb7c0;
  --brand-light: #dbdfe3;
  --brand-white: #f4f4f4;
  --cyan: #00bfff;
  --cyan-glow: #4dd4ff;
  --cyan-dim: #0088b3;
}

/* ===============================
 — GLOBAL FONT-FACE
================================ */

@font-face {
  font-family: "Inter";
  src: url("/_cdn/fonts/inter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/_cdn/fonts/inter-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("/_cdn/fonts/rajdhani-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--navy-deep);
  color: var(--brand-white);
  line-height: 1.6;

  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Rajdhani", "Arial Narrow", system-ui, sans-serif;
}

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

/* ---- Visibility control for GSAP ---- */
.gsap-hidden {
  opacity: 0;
}

/* ---- Utilities ---- */
.text-gradient-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(23, 28, 35, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(60, 72, 94, 0.6);
}

.glass-card-hover {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.glass-card-hover:hover {
  border-color: rgba(0, 191, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 191, 255, 0.15);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brand-white);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--brand-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-line {
  width: 4rem;
  height: 4px;
  background: var(--cyan);
  border-radius: 2px;
  margin: 1rem auto 0;
  transform-origin: left center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--cyan);
  color: var(--navy-deep);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.25);
}

.btn-primary:hover {
  background: var(--cyan-glow);
  box-shadow: 0 0 40px rgba(0, 191, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  background: transparent;
  color: var(--brand-white);
  border: 1px solid var(--navy-border);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: rgba(0, 191, 255, 0.4);
  background: rgba(60, 72, 94, 0.5);
  transform: translateY(-2px);
}

/* ============================================ NAVBAR ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(32, 42, 55, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  /* font-family: "Rajdhani", sans-serif; */
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar-brand .empresas {
  color: var(--brand-muted);
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--brand-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--cyan);
  color: var(--navy-deep) !important;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.25);
  transition:
    background 0.3s,
    transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--cyan-glow) !important;
  transform: translateY(-1px) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-white);
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu {
  display: none;
  background: rgba(32, 42, 55, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
  padding: 0 1.5rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--brand-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--navy-border);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--cyan);
}

.mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ============================================ HERO ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-image: url("https://mottanet.com.br/empresas/_cdn/img/hero-sem-fundo.png") !important;
  background-size: cover;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(23, 28, 35, 0.95),
    rgba(23, 28, 35, 0.75),
    rgba(23, 28, 35, 0.4)
  );
}

.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--navy-deep),
    transparent,
    rgba(23, 28, 35, 0.6)
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(0, 191, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Animated particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Scanning line */
.hero-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 191, 255, 0.4),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}

.hero-inner {
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  background: rgba(0, 191, 255, 0.1);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-badge span:last-child {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--brand-muted);
  max-width: 42rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.stat-value {
  /* font-family: "Rajdhani", sans-serif; */
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--brand-muted);
  font-weight: 500;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--navy-deep), transparent);
}

/* ============================================ ABOUT ============================================ */
.about {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--navy-deep),
    rgba(32, 42, 55, 0.8),
    var(--navy-deep)
  );
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text p {
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--brand-white);
}

.about-text .cdn-name {
  color: var(--cyan);
  font-weight: 500;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.highlight-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.highlight-card:hover {
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.15);
}

.highlight-value {
  /* font-family: "Rajdhani", sans-serif; */
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlight-desc {
  color: var(--brand-muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

.cdn-bar {
  grid-column: span 2;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
}

.cdn-label {
  font-size: 0.75rem;
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cdn-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cdn-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-white);
  transition:
    border-color 0.3s,
    color 0.3s;
  cursor: default;
}

.cdn-tag:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ============================================ SOLUTIONS ============================================ */
.solutions {
  padding: 6rem 0;
  background: linear-gradient(
    to bottom,
    var(--navy-deep),
    rgba(32, 42, 55, 0.5)
  );
}

.solutions-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sol-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.sol-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.sol-card:hover::after {
  transform: scaleX(1);
}

.sol-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.sol-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.2);
  color: var(--cyan);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.sol-card:hover .sol-icon {
  background: rgba(0, 191, 255, 0.18);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.25);
}

.sol-title {
  /* font-family: "Rajdhani", sans-serif; */
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1.2;
}

.sol-subtitle {
  color: var(--brand-muted);
  font-size: 0.875rem;
}

.sol-features {
  list-style: none;
}

.sol-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--brand-muted);
  padding: 0.25rem 0;
}

.sol-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.sol-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--navy-border);
}

.sol-footer p {
  font-size: 0.75rem;
  color: rgba(0, 191, 255, 0.7);
  font-weight: 500;
}

/* ============================================ DIFFERENTIALS ============================================ */
.differentials {
  padding: 6rem 0;
  background: rgba(32, 42, 55, 0.3);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.diff-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.diff-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.2);
  color: var(--cyan);
  transition: all 0.3s;
}

.diff-card:hover .diff-icon {
  background: rgba(0, 191, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.35);
  transform: scale(1.1) rotate(-5deg);
}

.diff-title {
  /* font-family: "Rajdhani", sans-serif; */
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-white);
}

.diff-desc {
  font-size: 0.875rem;
  color: var(--brand-muted);
  line-height: 1.5;
}

/* ============================================ CONTACT ============================================ */
.contact {
  padding: 6rem 0;
  background: linear-gradient(
    to bottom,
    rgba(32, 42, 55, 0.3),
    var(--navy-deep)
  );
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
  box-shadow: 0 0 60px rgba(0, 191, 255, 0.15);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 3rem;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-white);
  margin-bottom: 0.375rem;
}

.form-group label .req {
  color: var(--cyan);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  color: var(--brand-white);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  transition: all 0.3s;
  outline: none;
}

.form-input::placeholder {
  color: rgba(174, 183, 192, 0.5);
}

.form-input:focus {
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

textarea.form-input {
  resize: none;
  min-height: 100px;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23AEB7C0' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--brand-muted);
  margin-top: 1rem;
}

.form-submit {
  width: 100%;
}

.form-message {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.form-message.success {
  color: #00e5ff;
  opacity: 1;
  transform: translateY(0);
}

.form-message.error {
  color: #ff6b6b;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ FOOTER ============================================ */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  /* font-family: "Rajdhani", sans-serif; */
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand .empresas {
  color: var(--brand-muted);
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-desc {
  color: var(--brand-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--brand-muted);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--cyan);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  color: var(--brand-muted);
  font-size: 0.75rem;
}

.footer-noc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-muted);
  font-size: 0.75rem;
}

.footer-noc-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

/* Icons */
.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-lg {
  width: 26px;
  height: 26px;
}

.icon-sm {
  width: 15px;
  height: 15px;
}

/* ============ GSAP CUSTOM ANIMATIONS ============ */

/* Glitch effect on hero title */
@keyframes glitch {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-3px, 0);
  }

  10% {
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(3px, 0);
  }

  20% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate(0, 0);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate(0, 0);
  }
}

/* Cyber border reveal animation */
.cyber-border {
  position: relative;
}

.cyber-border::before,
.cyber-border::after {
  content: "";
  position: absolute;
  background: var(--cyan);
  transition: all 0.4s ease;
}

.cyber-border::before {
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
}

.cyber-border::after {
  bottom: 0;
  right: 0;
  height: 2px;
  width: 0;
}

.cyber-border:hover::before,
.cyber-border:hover::after {
  width: 100%;
}

/* Floating badge */
.hero-badge {
  animation: float 3s ease-in-out infinite;
}

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

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

/* Parallax layers */
.parallax-slow {
  will-change: transform;
}

.parallax-fast {
  will-change: transform;
}

/* Shimmer on stat cards */
.stat-card {
  overflow: hidden;
  position: relative;
}

.stat-card .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  pointer-events: none;
}

/* Magnetic button effect */
.btn-magnetic {
  will-change: transform;
}

/* Progress bar for section lines */
.section-line {
  transform-origin: left;
}

/* Typewriter cursor */
.typewriter-cursor {
  border-right: 2px solid var(--cyan);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Counter glow */
.stat-value {
  text-shadow: 0 0 0px var(--cyan);
  transition: text-shadow 0.3s;
}

.stat-card:hover .stat-value {
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
  color: var(--brand-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--navy-border);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

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

/* NOC pulse ring */
.noc-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.noc-ring::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 191, 255, 0.2);
  animation: ring-pulse 2s ease-out infinite;
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

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

/* Magnetic cursor dot */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 191, 255, 0.4);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
