/* HOSTMENA Domain Parking — Brand tokens from logo */
:root {
  --navy: #0d2137;
  --navy-light: #12263a;
  --teal: #128c7e;
  --teal-muted: #3b7a8b;
  --teal-glow: rgba(18, 140, 126, 0.3);
  --text-primary: #e8edf2;
  --text-secondary: #8899a8;
  --text-muted: #5c6b7a;
  --bg: #000000;
  --bg-elevated: #0a1018;
  --border: rgba(18, 140, 126, 0.12);
  --border-strong: rgba(18, 140, 126, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background layers */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(18, 140, 126, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 140, 126, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0% { background-position: 0 0; }
  100% { background-position: 64px 64px; }
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-glow::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: float-glow 8s ease-in-out infinite;
}

.bg-glow::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 122, 139, 0.18) 0%, transparent 70%);
  filter: blur(80px);
  animation: float-glow 10s ease-in-out infinite reverse;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Layout */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

/* Header */
.header {
  padding: 28px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 78px;
  width: auto;
  display: block;
  transition: transform var(--transition), filter var(--transition);
}

.logo:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 12px var(--teal-glow));
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(18, 140, 126, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.header-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0 80px;
}

.hero-content {
  width: 100%;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-text {
  min-width: 0;
}

/* Hero visual animation */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin-left: auto;
}

.visual-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(18, 140, 126, 0.15);
  border-radius: 50%;
}

.visual-orbit-1 {
  animation: orbit-spin 20s linear infinite;
}

.visual-orbit-2 {
  inset: 18%;
  border-color: rgba(59, 122, 139, 0.2);
  animation: orbit-spin 15s linear infinite reverse;
}

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

.visual-core {
  position: absolute;
  inset: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-globe {
  width: 100%;
  height: 100%;
  animation: globe-pulse 4s ease-in-out infinite;
}

@keyframes globe-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.globe-dot {
  animation: dot-glow 2s ease-in-out infinite;
}

.globe-dot:nth-child(6) { animation-delay: 0s; }
.globe-dot:nth-child(7) { animation-delay: 0.5s; }
.globe-dot:nth-child(8) { animation-delay: 1s; }
.globe-dot:nth-child(9) { animation-delay: 1.5s; }

@keyframes dot-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; filter: drop-shadow(0 0 6px var(--teal)); }
}

.visual-center {
  position: absolute;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy-light), var(--bg-elevated));
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  color: var(--teal);
  box-shadow: 0 0 40px var(--teal-glow);
  animation: center-float 3s ease-in-out infinite;
}

@keyframes center-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.visual-node {
  position: absolute;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--teal);
  z-index: 2;
}

.visual-node-1 {
  top: 8%;
  right: 12%;
  animation: node-float 4s ease-in-out infinite;
}

.visual-node-2 {
  top: 18%;
  left: 4%;
  animation: node-float 4s ease-in-out infinite 1s;
}

.visual-node-3 {
  bottom: 12%;
  left: 28%;
  animation: node-float 4s ease-in-out infinite 2s;
}

@keyframes node-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.node-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 1px solid var(--teal);
  opacity: 0;
  animation: node-pulse 2s ease-out infinite;
}

.visual-node-2 .node-pulse { animation-delay: 0.7s; }
.visual-node-3 .node-pulse { animation-delay: 1.4s; }

@keyframes node-pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

.visual-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.conn-line {
  stroke: var(--teal);
  stroke-width: 1;
  stroke-dasharray: 6 8;
  opacity: 0.35;
  animation: line-flow 3s linear infinite;
}

.conn-line:nth-child(2) { animation-delay: 1s; stroke: var(--teal-muted); }
.conn-line:nth-child(3) { animation-delay: 2s; }

@keyframes line-flow {
  to { stroke-dashoffset: -28; }
}

.visual-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(10, 16, 24, 0.9);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.visual-badge-1 {
  bottom: 22%;
  right: 0;
  animation: badge-slide 5s ease-in-out infinite;
}

.visual-badge-2 {
  top: 42%;
  right: 0;
  animation: badge-slide 5s ease-in-out infinite 2.5s;
}

@keyframes badge-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-6px); }
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.visual-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.4;
  animation: particle-rise 6s ease-in-out infinite;
}

.visual-particles span:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; }
.visual-particles span:nth-child(2) { left: 75%; top: 25%; animation-delay: 1s; background: var(--teal-muted); }
.visual-particles span:nth-child(3) { left: 60%; top: 70%; animation-delay: 2s; }
.visual-particles span:nth-child(4) { left: 35%; top: 80%; animation-delay: 3s; background: var(--teal-muted); }
.visual-particles span:nth-child(5) { left: 85%; top: 55%; animation-delay: 1.5s; }
.visual-particles span:nth-child(6) { left: 10%; top: 55%; animation-delay: 2.5s; }

@keyframes particle-rise {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.7; }
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-label .line {
  height: 1px;
  width: 0;
  animation: line-draw 0.8s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--delay, 0s) + 0.3s);
}

.hero-label .line-left {
  background: var(--teal-muted);
}

.hero-label .line-right {
  background: var(--teal);
}

@keyframes line-draw {
  to { width: 32px; }
}

.domain-name {
  font-size: clamp(1.75rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.shimmer-text {
  background: linear-gradient(
    120deg,
    var(--text-primary) 0%,
    var(--text-primary) 40%,
    var(--teal) 50%,
    var(--teal-muted) 60%,
    var(--text-primary) 70%,
    var(--text-primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 0;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.cards-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 140, 126, 0.1);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--teal);
  transition: transform var(--transition), background var(--transition);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-3deg);
  background: rgba(18, 140, 126, 0.18);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CTA section */
.cta-section {
  background: linear-gradient(145deg, var(--navy-light) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-muted), var(--teal), var(--teal-muted));
  background-size: 200% 100%;
  animation: border-flow 3s ease infinite;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-text {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: #15a090;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--teal-glow);
  animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 8px 24px var(--teal-glow); }
  50% { box-shadow: 0 8px 40px rgba(18, 140, 126, 0.5); }
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

@keyframes border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Section headers */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.section-label .line {
  height: 1px;
  width: 32px;
}

.section-label .line-left {
  background: var(--teal-muted);
}

.section-label .line-right {
  background: var(--teal);
}

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

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Why HOSTMENA */
.why-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  padding: 28px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.why-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.why-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 16px;
}

.why-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Features strip */
.features {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature {
  text-align: center;
  padding: 24px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--teal);
  background: rgba(18, 140, 126, 0.1);
  border-radius: var(--radius);
}

.feature-stat {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
  transition: transform var(--transition), color var(--transition);
}

.feature:hover .feature-stat {
  transform: scale(1.05);
  color: var(--teal);
}

.feature-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 54px;
  opacity: 0.85;
}

.footer-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Entrance animations */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 0.8s var(--ease-out-expo) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive — tablet & mobile */
/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
  .hero-top {
    gap: 40px;
  }

  .hero-visual {
    max-width: 380px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Tablet portrait */
@media (max-width: 900px) {
  .hero-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .hero-visual {
    max-width: 340px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 36px;
  }
}

/* Large phones / small tablets */
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }

  .header-inner {
    gap: 16px;
  }

  .logo img {
    height: 56px;
  }

  .header-badge {
    padding: 6px 12px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .hero {
    padding: 24px 0 56px;
  }

  .cards,
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .card {
    padding: 24px;
  }

  .cta-section {
    padding: 28px 20px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .why-section {
    padding: 56px 0;
  }

  .features {
    padding: 48px 0;
  }

  .footer {
    padding: 28px 0;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-logo img {
    height: 44px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .logo img {
    height: 48px;
  }

  .header-badge {
    font-size: 0.6875rem;
    padding: 5px 10px;
  }

  .hero-label {
    font-size: 0.6875rem;
    gap: 8px;
    flex-wrap: wrap;
  }

  .hero-label .line {
    width: 20px;
  }

  @keyframes line-draw {
    to { width: 20px; }
  }

  .domain-name {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  .hero-visual {
    max-width: min(100%, 300px);
  }

  .visual-center {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .visual-center svg {
    width: 26px;
    height: 26px;
  }

  .visual-node {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .visual-node svg {
    width: 16px;
    height: 16px;
  }

  .visual-badge {
    font-size: 0.625rem;
    padding: 5px 10px;
    gap: 6px;
  }

  .visual-badge-1 {
    bottom: 18%;
    right: 2%;
  }

  .visual-badge-2 {
    top: 40%;
    right: 2%;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.875rem;
  }

  .cta-text {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-item {
    padding: 20px 18px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature {
    padding: 16px 10px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-stat {
    font-size: 1.125rem;
  }

  .feature-label {
    font-size: 0.6875rem;
  }

  .section-title {
    font-size: 1.375rem;
  }

  .section-desc {
    font-size: 0.9375rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .logo img {
    height: 40px;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-in {
    opacity: 1;
    transform: none;
  }

  .hero-label .line {
    width: 32px;
  }

  @media (max-width: 480px) {
    .hero-label .line {
      width: 20px;
    }
  }

  .visual-orbit,
  .visual-globe,
  .visual-center,
  .visual-node,
  .visual-badge,
  .visual-particles span,
  .conn-line,
  .globe-dot,
  .node-pulse {
    animation: none !important;
  }
}
