/* ============================================
   InternetHuman.co — Landing Page Styles
   Design System: Black, White, Blue (#0000FF)
   Glass surfaces, pixel accents, dark-first
   ============================================ */

/* --- Reset & Base --- */

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

:root {
  /* Core palette */
  --black: #000000;
  --white: #FFFFFF;
  --blue: #0000FF;
  --blue-hover: #0000CC;
  --blue-muted: rgba(0, 0, 255, 0.15);

  /* Light theme (default) */
  --bg-primary: #FFFFFF;
  --bg-surface: rgba(0, 0, 0, 0.04);
  --bg-surface-hover: rgba(0, 0, 0, 0.07);
  --bg-elevated: rgba(0, 0, 0, 0.04);
  --text-primary: #000000;
  --text-secondary: rgba(0, 0, 0, 0.60);
  --text-tertiary: rgba(0, 0, 0, 0.40);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-default: rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-agent: 'Space Grotesk', sans-serif;
  --font-user: 'Satoshi', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Glass */
  --glass-blur: 24px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 64px;
}

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

body {
  font-family: var(--font-user);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* --- Background Canvas --- */

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
}

/* --- Glass Utility --- */

.glass {
  background: var(--bg-surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

/* --- Navigation --- */

.nav {
  position: fixed;
  top: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--space-8));
  max-width: var(--max-width);
  z-index: 100;
  padding: var(--space-3) var(--space-5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-family: var(--font-user);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--text-primary);
  transition: color 150ms ease-out;
}

.nav-cta {
  font-family: var(--font-agent);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--blue) !important;
  transition: opacity 150ms ease-out;
}

.nav-cta:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: all 200ms ease-out;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-height) + var(--space-6));
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--space-8));
  max-width: var(--max-width);
  z-index: 99;
  padding: var(--space-5);
  flex-direction: column;
  gap: var(--space-4);
  font-family: var(--font-user);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

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

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

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

/* --- Buttons --- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-user);
  font-size: 15px;
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 150ms ease-out, transform 100ms ease-out;
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: 16px;
  width: 100%;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-family: var(--font-user);
  font-size: 15px;
  font-weight: 500;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  transition: color 150ms ease-out, background 150ms ease-out;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-surface-hover);
}

.btn-ghost .arrow {
  font-family: var(--font-mono);
  transition: transform 150ms ease-out;
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* --- Sections --- */

.section {
  position: relative;
  z-index: 1;
  padding: var(--space-24) var(--space-6);
}

.section-dark {
  background: var(--bg-elevated);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-agent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-6);
}

.section-title {
  font-family: var(--font-user);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-10);
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.text-accent {
  color: var(--blue);
}

/* --- Hero --- */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-6) var(--space-16);
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  font-family: var(--font-agent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-user);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-8);
}

.hero-accent {
  color: var(--blue);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-value {
  font-family: var(--font-agent);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* --- Glitch Effect --- */

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.glitch::before {
  color: var(--blue);
  z-index: -1;
  animation: glitch-1 3s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--text-primary);
  z-index: -2;
  animation: glitch-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
  0%, 93% { clip-path: inset(0 0 0 0); transform: translate(0); }
  94% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 1px); }
  95% { clip-path: inset(50% 0 20% 0); transform: translate(3px, -1px); }
  96% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 2px); }
  97% { clip-path: inset(40% 0 40% 0); transform: translate(2px, -2px); }
  98% { clip-path: inset(60% 0 10% 0); transform: translate(-1px, 1px); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

@keyframes glitch-2 {
  0%, 95% { clip-path: inset(0 0 0 0); transform: translate(0); }
  96% { clip-path: inset(30% 0 40% 0); transform: translate(2px, -1px); }
  97% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 1px); }
  98% { clip-path: inset(15% 0 55% 0); transform: translate(1px, 2px); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

/* --- What Section --- */

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.what-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-6);
}

.what-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.what-card {
  padding: var(--space-6);
}

.agent-profile {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
}

.agent-avatar {
  width: 48px;
  height: 48px;
  background: var(--blue-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pixel-person {
  width: 32px;
  height: 32px;
  background: var(--blue);
  image-rendering: pixelated;
  clip-path: polygon(
    37.5% 0%, 62.5% 0%, 62.5% 25%, 75% 25%, 75% 50%,
    87.5% 50%, 87.5% 75%, 62.5% 75%, 62.5% 62.5%,
    75% 62.5%, 75% 50%, 62.5% 50%, 62.5% 37.5%,
    37.5% 37.5%, 37.5% 50%, 25% 50%, 25% 62.5%,
    37.5% 62.5%, 37.5% 75%, 12.5% 75%, 12.5% 50%,
    25% 50%, 25% 25%, 37.5% 25%
  );
}

.agent-name {
  font-family: var(--font-agent);
  font-size: 16px;
  font-weight: 600;
}

.agent-email {
  font-size: 13px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}

.agent-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: var(--space-1);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-active {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(0, 0, 255, 0.4);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.agent-activity {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.activity-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  font-size: 13px;
  color: var(--text-secondary);
  align-items: center;
}

.activity-icon {
  font-family: var(--font-agent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--blue);
  white-space: nowrap;
}

.activity-time {
  font-size: 11px;
  color: var(--text-tertiary);
  white-space: nowrap;
}

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

/* --- Capabilities Grid --- */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.capability-card {
  padding: var(--space-6);
  transition: background 200ms ease-out, transform 200ms ease-out;
}

.capability-card:hover {
  background: var(--bg-surface-hover);
  transform: translateY(-2px);
}

.capability-number {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue);
  margin-bottom: var(--space-4);
}

.capability-card h3 {
  font-family: var(--font-user);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.capability-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

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

/* --- Steps --- */

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
}

.step {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  min-width: 60px;
  text-align: center;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 2px;
  height: 40px;
  background: var(--border-subtle);
  margin-left: 29px;
}

/* --- Use Cases --- */

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.usecase-card {
  padding: var(--space-6);
  transition: background 200ms ease-out, transform 200ms ease-out;
}

.usecase-card:hover {
  background: var(--bg-surface-hover);
  transform: translateY(-2px);
}

.usecase-category {
  font-family: var(--font-agent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: var(--space-3);
}

.usecase-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.usecase-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

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

/* --- Channels --- */

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.channel-card {
  padding: var(--space-6);
  position: relative;
  transition: background 200ms ease-out, transform 200ms ease-out;
}

.channel-card:hover {
  background: var(--bg-surface-hover);
  transform: translateY(-2px);
}

.channel-highlight {
  border-color: rgba(0, 0, 255, 0.3) !important;
}

.channel-icon {
  color: var(--blue);
  margin-bottom: var(--space-4);
}

.channel-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.channel-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.channel-status {
  font-family: var(--font-agent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
}

.channel-live {
  background: rgba(0, 204, 102, 0.15);
  color: #00CC66;
}

.channel-soon {
  background: rgba(255, 170, 0, 0.15);
  color: #FFAA00;
}

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

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

/* --- WhatsApp Detail --- */

.wa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.wa-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-6);
}

.wa-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.wa-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.wa-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--text-secondary);
}

.wa-check {
  font-family: var(--font-agent);
  font-size: 12px;
  color: #00CC66;
  font-weight: 700;
}

.wa-demo {
  padding: 0;
  overflow: hidden;
}

.wa-demo-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-subtle);
}

.wa-demo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-muted);
}

.wa-demo-name {
  font-family: var(--font-agent);
  font-size: 14px;
  font-weight: 600;
}

.wa-demo-status {
  font-size: 12px;
  color: var(--text-tertiary);
}

.wa-demo-messages {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-height: 420px;
  overflow-y: auto;
}

.wa-msg {
  max-width: 85%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  position: relative;
}

.wa-msg p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.wa-msg-time {
  display: block;
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: right;
  margin-top: var(--space-1);
}

.wa-msg-agent {
  background: var(--bg-elevated);
  align-self: flex-start;
  border-bottom-left-radius: var(--space-1);
}

.wa-msg-user {
  background: var(--blue-muted);
  align-self: flex-end;
  margin-left: auto;
  border-bottom-right-radius: var(--space-1);
}

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

/* --- Trust --- */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.trust-icon {
  font-family: var(--font-agent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: var(--space-4);
}

.trust-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.trust-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

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

/* --- CTA Section --- */

.section-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 0, 255, 0.06) 100%);
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-5);
}

.cta-content > p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-input {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-user);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 150ms ease-out;
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

.form-input:focus {
  border-color: var(--blue);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

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

/* --- Footer --- */

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: var(--space-10);
}

.footer-brand .logo-text {
  font-size: 20px;
  margin-bottom: var(--space-3);
  display: block;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col-title {
  font-family: var(--font-agent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-2);
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 150ms ease-out;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-built {
  font-family: var(--font-agent);
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .footer-links { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

/* --- Scroll Reveal --- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Reduced Motion --- */

@media (prefers-reduced-motion: reduce) {
  .glitch::before,
  .glitch::after {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #bg-canvas {
    display: none;
  }

  .status-active {
    animation: none;
  }
}
