/* Basic styles for waitlist webpage */
/* Keeping minimal styling as requested - using default HTML fonts and sizes */

/* Custom Font Declaration */
@font-face {
  font-family: 'CustomFont';
  src: url('../fonts/Redaction_35-Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RedactionRegular';
  src: url('../fonts/Redaction_35-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RedactionBold';
  src: url('../fonts/Redaction_35-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Redaction20Regular';
  src: url('../fonts/Redaction_20-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Scroll-triggered animations with low frame rate aesthetic */
@keyframes glitchReveal {
  0% { 
    opacity: 0; 
    transform: translateY(30px) skewX(-2deg);
    filter: hue-rotate(0deg) saturate(0.8);
  }
  20% { 
    opacity: 0.3; 
    transform: translateY(25px) skewX(1deg);
    filter: hue-rotate(90deg) saturate(1.2);
  }
  40% { 
    opacity: 0.7; 
    transform: translateY(15px) skewX(-1deg);
    filter: hue-rotate(180deg) saturate(0.9);
  }
  60% { 
    opacity: 0.9; 
    transform: translateY(8px) skewX(0.5deg);
    filter: hue-rotate(270deg) saturate(1.1);
  }
  75% { 
    opacity: 0.95; 
    transform: translateY(3px) skewX(-0.2deg);
    filter: hue-rotate(135deg) saturate(1.05);
  }
  90% { 
    opacity: 0.98; 
    transform: translateY(1px) skewX(-0.1deg);
    filter: hue-rotate(45deg) saturate(1.02);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) skewX(0deg);
    filter: hue-rotate(0deg) saturate(1);
  }
}

@keyframes staggeredSlideIn {
  0% { 
    opacity: 0; 
    transform: translateX(-50px) scale(0.8);
  }
  25% { 
    opacity: 0.2; 
    transform: translateX(-30px) scale(0.85);
  }
  50% { 
    opacity: 0.6; 
    transform: translateX(-15px) scale(0.9);
  }
  75% { 
    opacity: 0.8; 
    transform: translateX(-5px) scale(0.95);
  }
  100% { 
    opacity: 1; 
    transform: translateX(0) scale(1);
  }
}

@keyframes choppyFadeIn {
  0%, 30% { opacity: 0; transform: scale(0.9) rotate(-1deg); }
  40%, 60% { opacity: 0.4; transform: scale(0.95) rotate(0.5deg); }
  70%, 90% { opacity: 0.7; transform: scale(0.98) rotate(-0.3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes glitchPulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    filter: hue-rotate(0deg) brightness(1);
  }
  25% { 
    transform: scale(1.02) rotate(0.5deg);
    filter: hue-rotate(90deg) brightness(1.1);
  }
  50% { 
    transform: scale(0.98) rotate(-0.3deg);
    filter: hue-rotate(180deg) brightness(0.9);
  }
  75% { 
    transform: scale(1.01) rotate(0.2deg);
    filter: hue-rotate(270deg) brightness(1.05);
  }
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.animate-on-scroll.animated {
  animation: glitchReveal 2.5s steps(8) forwards;
}

.staggered-animate {
  opacity: 0;
  transform: translateX(-50px) scale(0.8);
  transition: none;
}

.staggered-animate.animated {
  animation: staggeredSlideIn 3s steps(6) forwards;
}

.choppy-fade {
  opacity: 0;
  transform: scale(0.9) rotate(-1deg);
  transition: none;
}

.choppy-fade.animated {
  animation: choppyFadeIn 1.2s steps(40) forwards;
}

.glitch-pulse {
  animation: glitchPulse 4s steps(6) infinite;
}

/* Staggered delays for multiple elements */
.staggered-animate:nth-child(1) { animation-delay: 0s; }
.staggered-animate:nth-child(2) { animation-delay: 0.3s; }
.staggered-animate:nth-child(3) { animation-delay: 0.6s; }
.staggered-animate:nth-child(4) { animation-delay: 0.9s; }
.staggered-animate:nth-child(5) { animation-delay: 1.2s; }

/* Garden can rotation animation */
@keyframes gardenCanRotate {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-30deg); }
  30% { transform: rotate(-30deg); }
  80% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.garden-can-rotate {
  animation: gardenCanRotate 6s ease-in-out infinite;
}

/* Reset some basic elements and prevent flash */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent white flash on tab focus */
:root {
  background-color: #f5f5f5 !important;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  z-index: -9999;
  pointer-events: none;
}

html, body {
  /* Custom cursor removed */
  background-color: #f5f5f5 !important;
}

html {
  background-color: #f5f5f5 !important;
}

/* Body uses default font and size */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  background-image: url('../images/noise-background-1.webp');
  background-attachment: scroll;
  background-size: 100vw auto;
  background-position: center;
  background-repeat: repeat-y;
}

/* Q&A section gif styling */
.qa-gif {
  display: block;
  width: 18%;
  height: auto;
  margin: 5px auto;
}

/* Hot Takes header styling */
.hot-takes-header {
  font-family: 'RedactionBold', serif;
  text-align: center;
  margin: 20px 0;
  font-size: 1.5em;
}

/* Headers use default styling */
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* Waitlist heading specific styling */
h2 {
  font-size: 24px;
}

/* Welcome heading specific styling */
h1 {
  font-size: 36px;
  text-align: center;
  margin-top: 40px;
  color: #006400;
  font-weight: bold;
}

/* Paragraphs use default styling */
p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Links use default styling */
a {
  color: inherit;
  text-decoration: inherit;
}

/* Lists use default styling */
ul, ol {
  list-style: inherit;
}

/* Forms use default styling */
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Form styling for centered, stacked layout */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
}

/* Form inputs and textarea */
form input[type="text"],
form input[type="email"],
form input[type="url"],
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 12px;
  background-color: white;
}

/* Textarea specific styling */
form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Submit button */
form button[type="submit"] {
  padding: 10px 20px;
  background-color: #000;
  color: white;
  border: 1px solid #000;
  border-radius: 0;
  cursor: pointer;
  font-size: 16px;
}

form button[type="submit"]:hover {
  background-color: #333;
  border-color: #333;
}

/* Disclaimer text styling */
.disclaimer {
  font-size: 10px;
  text-align: left;
  margin: 0;
  padding: 0;
  color: #000;
  width: 100%;
}

/* Dummy text styling */
.dummy-text {
  font-size: 12px;
  text-align: left;
  margin: 0;
  margin-top: -8px;
  padding: 0;
  color: #666;
  width: 100%;
  font-style: italic;
}

/* Section styling for better spacing */
section {
  text-align: center;
  padding: 20px;
}

section h2 {
  color: #006400;
}

/* Footer styling with divider line */
footer {
  border-top: 1px solid black;
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
  padding-bottom: 40px;
  font-family: 'Redaction20Regular', serif;
}

/* Cookie Consent Banner */
#cc-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 280px;
  background: white;
  color: black;
  font-size: 14px;
  font-family: inherit;
  padding: 10px 12px;
  border-radius: 0;
  border: 1px solid #ccc;
  box-shadow: none;
  z-index: 9999;
}

#cc-banner button {
  background: none;
  color: #0645AD;
  border: none;
  font-size: 14px;
  font-family: inherit;
  padding: 0;
  margin-top: 6px;
  text-decoration: underline;
  cursor: pointer;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Hide mobile line break on desktop */
.mobile-break {
  display: none;
}

/* Mobile devices */
@media (max-width: 500px) {
  #cc-banner {
    bottom: 10px;
    right: 10px;
    max-width: 90%;
    font-size: 13px;
  }

  #cc-banner button {
    font-size: 13px;
  }

  /* Show mobile line break on mobile */
  .mobile-break {
    display: inline;
  }
}

/* Platform group styling */
.platform-group {
  font-size: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  width: 100%;
}
.platform-group label {
  margin-bottom: 4px;
  text-align: left;
  font-size: 14px;
  width: 100%;
}
.platform-group select {
  width: 100%;
  font-size: 16px;
  color: #000;
  padding: 10px;
  background: white;
  border: 1px solid #000;
  border-radius: 0;
  box-sizing: border-box;
}
.platform-group option {
  font-size: 16px;
  color: #000;
  background: white;
}

/* Custom dropdown styling */
.custom-dropdown {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  color: #000;
  background: white;
  border: 1px solid #000;
  border-radius: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
  margin-bottom: 0;
  text-align: left;
}
.custom-dropdown .selected {
  display: block;
  padding: 10px;
  font-size: 12px;
  background: white;
  border-radius: 0;
  text-align: left;
  color: #888;
  font-style: normal;
}
.custom-dropdown .selected.placeholder {
  color: #888;
  font-size: 12px;
  font-style: normal;
}
.custom-dropdown .dropdown-options {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: -1px;
  width: 100%;
  background: white;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-top: none;
  border-radius: 0;
  z-index: 10;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.custom-dropdown.open .dropdown-options {
  display: block;
}
.custom-dropdown .dropdown-options li {
  padding: 10px;
  font-size: 12px;
  color: #000;
  background: white;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.1s;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.custom-dropdown .dropdown-options li:last-child {
  border-bottom: none;
}
.custom-dropdown .dropdown-options li:hover {
  background: #f0f0f0;
}

.custom-dropdown.dropdown-error {
  border: 1px solid red;
}

.intro-block {
  font-family: inherit;
  background: none;
  border: none;
  padding: 16px 20px;
  margin: 24px auto 24px auto;
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
  color: #222;
}

@media (max-width: 600px) {
  .intro-block {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.intro-block b {
  color: #006400;
  font-size: 1.08em;
  font-weight: bold;
}

.intro-block p {
  margin-bottom: 1em;
}

.qa-section {
  background-color: #4949c9;
  color: white;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0;
  border: 1px solid #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qa-section p {
  margin: 0;
  color: white;
  font-family: 'RedactionRegular', serif;
}

.qa-section b {
  color: white;
  font-family: 'CustomFont', serif;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
}

.big-break {
  display: block;
  height: 5px;
}

.waitlist-btn {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 10px 20px;
  border: 1.5px solid #000;
  border-radius: 0;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  font-weight: normal;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  font-family: 'RedactionRegular', serif;
}

.waitlist-btn:hover {
  background-color: #5252cc;
  color: #fff;
  border-color: #000;
}

html {
  scroll-behavior: smooth;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

.hero-gif {
  display: block;
  margin: 35px auto 24px auto;
  max-width: 220px;
  height: auto;
}

.hero-logo {
  display: block;
  margin: 15px auto 20px auto;
  max-width: 308px;
  height: auto;
}

.hero h1 {
  margin: 15px 0 0 0;
}

.hero .waitlist-btn {
  margin-top: 24px;
}

.hero-subheader {
  font-size: 1.25em;
  font-weight: normal;
  color: #222;
  margin: 0 0 0 0;
  text-align: center;
  font-family: 'RedactionBold', serif;
  text-transform: uppercase;
}

.intro-block hr {
  display: block;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border: none;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #fff;
  box-sizing: content-box;
}

.intro-block hr:last-of-type {
  margin-top: 48px;
  margin-bottom: 0;
}

.social-proof-section {
  margin-top: 40px;
  margin-bottom: 48px;
  text-align: center;
}

.social-proof-title {
  font-size: 1.15em;
  font-weight: bold;
  margin-bottom: 18px;
  color: #006400;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.social-proof img {
  height: 84px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
}

@media (min-width: 800px) {
  .social-proof {
    flex-wrap: wrap;
  }
} 

.who-we-are-section {
  max-width: 1000px;
  margin: 48px auto 0 auto;
  text-align: center;
}

.who-we-are-section h2 {
  color: #006400;
  margin-bottom: 24px;
}

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

.bio-card {
  padding: 24px 20px;
  width: 400px;
  box-sizing: border-box;
  text-align: left;
}

.bio-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #006400;
  font-weight: bold;
}

@media (max-width: 700px) {
  .bios {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .bio-card {
    width: 100%;
    max-width: 340px;
  }
} 

 

.why-section {
  margin: 40px auto 32px auto;
  max-width: 600px;
  text-align: center;
}

.why-section h2 {
  color: #006400;
  margin-bottom: 16px;
} 

.timeline-section {
  max-width: 700px;
  margin: 48px auto 0 auto;
  text-align: center;
}

.timeline-section h2 {
  color: #006400;
  margin-bottom: 24px;
}

.timeline-section p {
  margin-bottom: 14px;
  font-size: 1.08em;
} 

.timeline-section + hr {
  margin-top: 48px;
} 

.next-steps {
  max-width: 700px;
  margin: 48px auto 0 auto;
  text-align: center;
}

.next-steps h2 {
  color: #006400;
  margin-bottom: 24px;
}

.next-steps p {
  margin-bottom: 14px;
  font-size: 1.08em;
}

.referral-section {
  max-width: 700px;
  margin: 48px auto 0 auto;
  text-align: center;
}

.referral-section h2 {
  color: #006400;
  margin-bottom: 18px;
}

.referral-section p {
  margin-bottom: 12px;
  font-size: 1.08em;
} 

.sticky-gnome {
  position: fixed;
  right: 0;
  bottom: 0;
  max-width: 270px;
  width: 54vw;
  height: auto;
  z-index: 1000;
  pointer-events: none;
} 

.timeline-events {
  text-align: center;
  margin-top: 10px;
} 

section#waitlist-section h2 {
  margin-top: 48px;
  font-family: 'RedactionBold', serif;
  font-size: 24px;
  color: #000;
}

#waitlist-form {
  font-family: 'RedactionRegular', serif;
}

#waitlist-form input[type="text"],
#waitlist-form input[type="email"],
#waitlist-form input[type="url"] {
  font-family: 'RedactionRegular', serif;
  font-size: 14px;
}

#waitlist-form .dummy-text {
  font-family: 'RedactionRegular', serif;
  font-style: italic;
}

#waitlist-form button[type="submit"] {
  font-family: 'RedactionRegular', serif;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* DVD Screensaver Bouncing GIF Animation */
.bouncing-gif {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  z-index: 9999;
  cursor: pointer;
  transition: none;
}

.dvd-bounce {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}



 