/* ========================================
   NEXON Cloud - Style (Purple + Neon Green Theme)
   벤토 그리드/대시보드형 레이아웃
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #7C3AED;
  --primary-dark: #6D28D9;
  --primary-glow: rgba(124, 58, 237, 0.3);
  --accent: #06D6A0;
  --accent-dark: #059669;
  --accent-glow: rgba(6, 214, 160, 0.3);
  --bg-dark: #0A0A12;
  --bg-darker: #06060C;
  --bg-charcoal: #12121E;
  --bg-light: #F5F3FF;
  --bg-white: #FFFFFF;
  --text-white: #FFFFFF;
  --text-black: #1A1A1A;
  --text-gray: #888888;
  --text-light-gray: #AAAAAA;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-mono: 'JetBrains Mono', monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-black);
  background: var(--bg-white);
  line-height: 1.6;
  word-break: keep-all;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(124,58,237,0.4);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-black);
  border: 1.5px solid #ddd;
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 12, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-link {
  color: var(--text-white);
  font-size: 28px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav.active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link:hover {
  color: var(--accent);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(6, 214, 160, 0.08) 0%, transparent 60%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  min-height: 1.2em;
}

.typing-wrapper {
  display: inline;
}

.typing-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-cursor {
  color: var(--accent);
  animation: cursorBlink 1s step-end infinite;
  font-weight: 400;
  -webkit-text-fill-color: var(--accent);
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-desc {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-light-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 1.5s forwards;
}

.hero-desc.fade-up { animation-delay: 1.8s; }
.hero-buttons.fade-up { animation-delay: 2.0s; }
.hero-terminal.fade-up { animation-delay: 2.2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Terminal */
.hero-terminal {
  max-width: 540px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.2);
  text-align: left;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(18, 18, 30, 0.8);
  border-bottom: 1px solid rgba(124,58,237,0.1);
}

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

.terminal-dot.red { background: #EF4444; }
.terminal-dot.yellow { background: #F59E0B; }
.terminal-dot.green { background: #06D6A0; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-gray);
  margin-left: auto;
}

.terminal-body {
  padding: 16px;
  background: rgba(10, 10, 18, 0.9);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2;
}

.terminal-body code {
  display: block;
  color: var(--text-light-gray);
}

.t-prompt { color: var(--accent); font-weight: 700; }
.t-success { color: var(--accent); }
.t-highlight { color: var(--primary); font-weight: 700; }

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(124,58,237,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* --- Section Commons --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-black);
}

.section-title-light {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--text-white);
}

.section-desc {
  font-size: 17px;
  color: var(--text-gray);
  margin-top: 12px;
}

/* --- Bento Grid --- */
.services {
  padding: 120px 0;
  background: var(--bg-white);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.bento-large {
  grid-row: span 2;
}

.bento-card {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--bg-white);
  border: 1px solid #eee;
  transition: all var(--transition);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.2);
}

.bento-icon {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.bento-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
}

.bento-name {
  font-size: 26px;
  font-weight: 800;
  margin: 10px 0 14px;
  letter-spacing: -0.02em;
  color: var(--text-black);
}

.bento-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.bento-metrics {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.metric-label {
  font-size: 13px;
  color: var(--text-gray);
}

/* --- Tech Stack --- */
.techstack {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.techstack-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  background-image:
    linear-gradient(rgba(124,58,237,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(124,58,237,0.1);
  transition: all var(--transition);
}

.tech-item:hover {
  background: rgba(124,58,237,0.05);
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
}

.tech-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light-gray);
}

/* --- Stats --- */
.stats {
  padding: 120px 0;
  background: var(--bg-light);
}

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

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--bg-white);
  border: 1px solid rgba(124,58,237,0.08);
  transition: all var(--transition);
}

.stat-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(124,58,237,0.08);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 15px;
  color: var(--text-gray);
  margin-top: 12px;
  font-weight: 500;
}

/* --- Clients --- */
.clients {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.clients-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
}

.client-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124,58,237,0.1);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: -0.01em;
  transition: all var(--transition);
}

.client-logo:hover {
  border-color: rgba(124,58,237,0.3);
  color: var(--text-white);
  background: rgba(124,58,237,0.05);
}

/* --- Pricing --- */
.pricing {
  padding: 120px 0;
  background: var(--bg-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid #eee;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.pricing-popular {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(124,58,237,0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.pricing-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
}

.price-period {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 500;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* --- CTA --- */
.cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-darker);
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(6, 214, 160, 0.06) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  text-align: center;
}

.cta-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.cta-desc {
  font-size: 18px;
  color: var(--text-gray);
  margin: 24px 0 40px;
}

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

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 40px;
  color: var(--text-gray);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(124,58,237,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 8px;
}

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

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--primary);
}

.portfolio-disclaimer {
  text-align: center;
  color: #e53e3e;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(229, 62, 62, 0.3);
  border-radius: 6px;
  background: rgba(229, 62, 62, 0.05);
}

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

.footer-bottom p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

.footer-copy {
  margin-top: 16px;
  color: #444;
}

/* --- Scroll Animations --- */
.anim-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .client-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-links {
    gap: 40px;
  }
}

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

  .header-inner { height: 64px; }

  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }

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

  .bento-large {
    grid-column: span 1;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .services { padding: 80px 0; }
  .techstack { padding: 80px 0; }
  .stats { padding: 80px 0; }
  .clients { padding: 80px 0; }
  .pricing { padding: 80px 0; }
  .cta { padding: 80px 0; }

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

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

  .stat-item { padding: 24px 12px; }

  .bento-metrics {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-terminal {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 32px;
    flex-wrap: wrap;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    padding: 16px 40px;
    width: 100%;
    max-width: 300px;
  }
}

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

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

  .hero-content {
    padding: 0 16px;
  }

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

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

  .anim-on-scroll {
    opacity: 1;
    transform: none;
  }

  .typing-cursor {
    animation: none;
  }

  html { scroll-behavior: auto; }
}
