/* ==========================================================================
   VapeBreak — Holding Page Styles
   ========================================================================== */


/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
  --color-bg:      #0F0F12;
  --color-surface: #1A1A1E;
  --color-border:  #2A2A2E;
  --color-text:    #EDE9DE;
  --color-muted:   #8A8680;
  --color-subtle:  #6A6A72;
  --color-accent:  #7C3AED;
  --color-amber:   #F59E0B;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}


/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}


/* ==========================================================================
   3. Skip Link
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}


/* ==========================================================================
   4. Focus Indicators (global)
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}


/* ==========================================================================
   5. Main Layout
   ========================================================================== */

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}


/* ==========================================================================
   6. Center Block & Animation
   ========================================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.center-block {
  text-align: center;
  animation: fadeUp 600ms ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .center-block {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================================
   7. Wordmark
   ========================================================================== */

.wordmark {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.1;
}

@media (min-width: 48rem) {
  .wordmark {
    font-size: 3.5rem;
  }
}


/* ==========================================================================
   8. Divider
   ========================================================================== */

.divider {
  width: 3rem;
  height: 1px;
  background-color: var(--color-accent);
  border: none;
  margin: 1.5rem auto;
}


/* ==========================================================================
   9. Tagline
   ========================================================================== */

.tagline {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.6;
}


/* ==========================================================================
   10. Coming Soon
   ========================================================================== */

.coming-soon {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}


/* ==========================================================================
   11. Footer
   ========================================================================== */

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  text-align: center;
}

.footer-url {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-subtle);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
