/* ==========================================================================
   Renewables Marketing — Coming Soon
   style.css — Consolidated stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   RESET
   -------------------------------------------------------------------------- */

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

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   DESIGN TOKENS (CSS Custom Properties)
   -------------------------------------------------------------------------- */

:root {
  /* Colours */
  --bg-primary: #0a0f1a;
  --bg-secondary: #111827;
  --bg-tertiary: #1a2332;
  --accent-green: #00c853;
  --accent-teal: #00bfa5;
  --accent-gold: #ffab00;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(148, 163, 184, 0.1);
  --border-accent: rgba(0, 200, 83, 0.25);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
  --gradient-accent-reverse: linear-gradient(135deg, var(--accent-teal), var(--accent-green));
  --gradient-glow: radial-gradient(ellipse at center, rgba(0, 200, 83, 0.15), transparent 70%);
  --gradient-hero-bg: radial-gradient(ellipse at 20% 50%, rgba(0, 200, 83, 0.06) 0%, transparent 50%),
                      radial-gradient(ellipse at 80% 20%, rgba(0, 191, 165, 0.05) 0%, transparent 50%),
                      radial-gradient(ellipse at 50% 80%, rgba(255, 171, 0, 0.03) 0%, transparent 50%);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.775rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.0625rem);
  --text-lg: clamp(1.0625rem, 0.975rem + 0.4375vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1.625rem + 3.125vw, 3.75rem);
  --text-5xl: clamp(2.75rem, 1.875rem + 4.375vw, 4.5rem);

  /* Spacing (8px grid) */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-section: clamp(4rem, 3rem + 5vw, 8rem);

  /* Layout */
  --max-width: 72rem;       /* 1152px */
  --max-width-narrow: 48rem; /* 768px */
  --container-padding: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);

  /* Borders & Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-green: 0 0 20px rgba(0, 200, 83, 0.2), 0 0 60px rgba(0, 200, 83, 0.1);
  --shadow-glow-teal: 0 0 20px rgba(0, 191, 165, 0.2), 0 0 60px rgba(0, 191, 165, 0.1);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;

  /* Z-index scale */
  --z-base: 1;
  --z-above: 10;
  --z-overlay: 100;
  --z-modal: 1000;
}

/* --------------------------------------------------------------------------
   @FONT-FACE
   -------------------------------------------------------------------------- */

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

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

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   BASE / GLOBAL
   -------------------------------------------------------------------------- */

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  max-width: 65ch;
}

::selection {
  background-color: rgba(0, 200, 83, 0.3);
  color: var(--text-primary);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

/* --------------------------------------------------------------------------
   SKIP LINK
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-modal);
  padding: var(--space-3) var(--space-6);
  background: var(--accent-green);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: top var(--duration-base) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-4);
}

/* --------------------------------------------------------------------------
   NOISE / GRAIN OVERLAY
   -------------------------------------------------------------------------- */

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --------------------------------------------------------------------------
   ANIMATED BACKGROUND (Gradient Mesh + Grid)
   -------------------------------------------------------------------------- */

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

.bg-animation__gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-bg);
  animation: bg-drift 20s ease-in-out infinite alternate;
}

.bg-animation__grid {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 30s linear infinite;
}

.bg-animation__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 15s ease-in-out infinite alternate;
}

.bg-animation__orb--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 15%;
  background: rgba(0, 200, 83, 0.07);
  animation-duration: 18s;
}

.bg-animation__orb--2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: 10%;
  background: rgba(0, 191, 165, 0.06);
  animation-duration: 22s;
  animation-delay: -5s;
}

.bg-animation__orb--3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 40%;
  background: rgba(255, 171, 0, 0.04);
  animation-duration: 25s;
  animation-delay: -10s;
}

@keyframes bg-drift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-2%, 1%); }
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

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

/* --------------------------------------------------------------------------
   PAGE WRAPPER
   -------------------------------------------------------------------------- */

.page-wrapper {
  position: relative;
  z-index: var(--z-base);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--space-16) var(--container-padding) var(--space-12);
  text-align: center;
  position: relative;
}

.hero__content {
  max-width: 52rem;
  margin-inline: auto;
}

.hero__pre-headline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-out) 0.2s forwards;
}

.hero__pre-headline::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gradient-accent);
}

.hero__pre-headline::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gradient-accent);
}

.hero__headline {
  font-size: var(--text-5xl);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-out) 0.4s forwards;
}

.hero__headline-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub-headline {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-out) 0.6s forwards;
}

.hero__form-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-out) 0.8s forwards;
}

/* --------------------------------------------------------------------------
   SIGNUP FORM
   -------------------------------------------------------------------------- */

.signup-form {
  max-width: 32rem;
  margin-inline: auto;
}

.signup-form__fields {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.signup-form__input-wrapper {
  flex: 1;
  position: relative;
}

.signup-form__input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.signup-form__input::placeholder {
  color: var(--text-muted);
}

.signup-form__input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.15);
}

.signup-form__input--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.signup-form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  tab-index: -1;
}

.signup-form__button {
  flex-shrink: 0;
  padding: var(--space-4) var(--space-6);
  background: var(--gradient-accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              opacity var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.signup-form__button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.signup-form__button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-green);
}

.signup-form__button:hover::before {
  opacity: 1;
}

.signup-form__button:active {
  transform: translateY(0);
}

.signup-form__button:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 3px;
}

.signup-form__hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
}

.signup-form__error {
  font-size: var(--text-sm);
  color: #ef4444;
  margin-bottom: var(--space-2);
  min-height: 1.25em;
}

.signup-form__success {
  padding: var(--space-4) var(--space-6);
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: var(--radius-lg);
  color: var(--accent-green);
  font-weight: 500;
  text-align: center;
  animation: fade-up 0.5s var(--ease-out);
}

/* Stack on mobile */
@media (max-width: 639px) {
  .signup-form__fields {
    flex-direction: column;
  }

  .signup-form__button {
    width: 100%;
    text-align: center;
    padding: var(--space-4);
  }
}

/* --------------------------------------------------------------------------
   SECTION SHARED
   -------------------------------------------------------------------------- */

.section {
  padding: var(--space-section) var(--container-padding);
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}

.section__title {
  font-size: var(--text-3xl);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 36rem;
  margin-inline: auto;
}

/* Divider between sections */
.section__divider {
  width: 4rem;
  height: 2px;
  background: var(--gradient-accent);
  margin: 0 auto var(--space-8);
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL (JS toggles .is-visible)
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   CARDS — WHAT'S COMING
   -------------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.card {
  position: relative;
  padding: var(--space-8);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(0, 200, 83, 0.03), transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow-green);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 191, 165, 0.1));
  border: 1px solid rgba(0, 200, 83, 0.15);
}

.card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card__title {
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.card__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   WHY SECTION — BULLET POINTS
   -------------------------------------------------------------------------- */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: var(--max-width-narrow);
  margin-inline: auto;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration-base) var(--ease-out);
}

.why-item:hover {
  border-color: var(--border-accent);
}

.why-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: rgba(0, 200, 83, 0.08);
  font-size: 1.25rem;
  line-height: 1;
}

.why-item__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-item__text strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */

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

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.cta__title {
  font-size: var(--text-3xl);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.cta__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.footer {
  padding: var(--space-12) var(--container-padding);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  font-size: var(--text-xs);
}

.footer__link {
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--accent-teal);
}

/* --------------------------------------------------------------------------
   KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.3);
  }
}

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

/* Pulse glow on the hero pre-headline dot */
.hero__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   REDUCED MOTION
   -------------------------------------------------------------------------- */

@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;
  }

  .hero__pre-headline,
  .hero__headline,
  .hero__sub-headline,
  .hero__form-wrapper {
    opacity: 1;
    transform: none;
  }

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

  .bg-animation__gradient,
  .bg-animation__grid,
  .bg-animation__orb {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   PRINT
   -------------------------------------------------------------------------- */

@media print {
  .bg-animation,
  .noise-overlay {
    display: none;
  }

  body {
    background: #fff;
    color: #111;
  }
}
