/* variables */
/* --- SPACING SCALE (8px System + Fine Detail) ---  */
:root {
    /* variables */
  --space-2: 0.2rem;   /* 2px very tight grouping */
  --space-4: 0.4rem;   /* 4px Tight grouping */
  --space-8: 0.8rem;   /*8px Small padding */
  --space-12: 1.2rem;  /*12px Mid-component gap */
  --space-16: 1.6rem;  /*16px Standard baseline */
  --space-24: 2.4rem;  /*24px Card padding / Small gaps */
  --space-32: 3.2rem;  /*32px Component gaps */
  --space-48: 4.8rem;  /*48px Section spacing (Small) */
  --space-64: 6.4rem;  /*64px Section spacing (Medium) */
  --space-96: 9.6rem;  /*96px Section spacing (Large) */
  --space-128: 12.8rem; /*128px Hero / Large layouts */
  --space-192: 19.2rem; /*192px Ultra-breathable space */

/* --- TYPOGRAPHY SCALE --- */
  --font-12: 1.2rem;    /* 12px Captions/Legal */
  --font-14: 1.4rem;    /* 14px Secondary UI/Labels */
  --font-16: 1.6rem;    /* 16px Body text (Default) */
  --font-20: 2.0rem;    /* 20px Small Headings / Lead text */
  --font-24: 2.4rem;    /* 24px Medium Headings (H3) */
  --font-32: 3.2rem;    /* 32px Large Headings (H2) */
  --font-40: 4.0rem;    /* 40px Display Small */
  --font-48: 4.8rem;    /* 48px Hero Titles (H1) */
  --font-64: 6.4rem;    /* 64px Ultra Display */

/* colors */
  --primary: #1a1a1a;   /* Main Background */

  --secondary:#96ffca; /* Catchphrase/Accents */
  --light: #f8f9fa;     /* "Coming Soon" Title */


}


/* Universal Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* Root Element */
html {
  box-sizing: inherit;
  font-size: 62.5%; /* 1rem = 10px */
}

/* Body Defaults */
body {
  line-height: 1.6;
  background-color: var(--primary);
  color: var(--secondary);
  font-family: "Inter", sans-serif;
  font-size: var(--font-16);
  min-height: 100dvh;
}

/* Media Elements */
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Prevent text from overflowing on mobile */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Lists */
ol,
ul {
  list-style: none;
}
/* Links */
a {
  text-decoration: none;
  color: inherit;
}
/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Form Controls */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* Buttons */
button {
  cursor: pointer;
}
/* Accessibility: Focus Styles */
:focus-visible {
  outline: var(--space-2) solid var(--primary);
  outline-offset: 2px;
}
/* Accessibility: Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Remove the "sticky" hover effect on mobile touch */
@media (hover: none) {
  button:hover {
    background-color: inherit;
  }
}






/* --- BUMPER SECTION (Coming Soon Page) --- */

/* 1. The Animation Instructions (The "Warm Pulse") */
@keyframes tv-pulse {
  0%   { opacity: 0.94; filter: brightness(1.02) contrast(1.05); }
  50%  { opacity: 0.98; filter: brightness(1.08) contrast(1.1) saturate(1.1); }
  100% { opacity: 0.94; filter: brightness(1.02) contrast(1.05); }
}


.bumper-wrapper {
  position: relative;
  overflow: hidden;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  text-align: center;
  padding: var(--space-24);
  /* This creates the breathing effect */
  animation: tv-pulse 5s ease-in-out infinite;
}


.bumper-wrapper::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.15) 50%
  ), 
  linear-gradient(
    90deg, 
    rgba(255, 0, 0, 0.03), 
    rgba(0, 255, 0, 0.01), 
    rgba(0, 0, 255, 0.03)
  );
  z-index: 2;
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
}


.bumper-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.4) 150%);
  pointer-events: none;
  z-index: 4;
}


.bumper-content {
  max-width: 80rem;
  position: relative;
  z-index: 5; /* Sit above scanlines and vignette */
}

.status-text {
  font-family: monospace;
  font-size: var(--font-12);
  letter-spacing: 0.5rem;
  margin-bottom: var(--space-8);
  opacity: 0.6;
  color: var(--light);
}

.glitch-title {
  font-size: var(--font-64);
  font-weight: 900;
  margin-bottom: var(--space-24);
  color: var(--light);
  text-transform: uppercase;
}

.catchphrase {
  font-family: "Courier New", Courier, monospace;
  font-size: var(--font-20);
  font-style: italic;
  margin-bottom: var(--space-48);
  max-width: 60rem;
  line-height: 1.6;
  margin-inline: auto;
  color: var(--light);
}

.brand-tag {
  position: relative;
  display: inline-block;
  font-size: var(--font-24);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--secondary);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.brand-tag:hover {
  transform: scale(1.05); /* Slight pop on hover */
}

/* Creating the "Ghost" layers for the RGB shift */
.brand-tag:hover::before,
.brand-tag:hover::after {
  content: "[ peopleswebdev ]";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -1;
}

.brand-tag:hover::before {
  color: #ff00c1; /* Magenta/Red shift */
  animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.brand-tag:hover::after {
  color: #00fff9; /* Cyan/Blue shift */
  animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
}

/* The Glitch Movement */
@keyframes glitch-anim {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
  100% { transform: translate(0); }
}