/* ============================================
   Muse — Base Styles
   ============================================ */

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

:root {
  --bg: #000;
  --text: #c8c8c8;
  --dim: #555;
  --accent: rgba(255, 255, 255, 0.06);
  --serif: 'Cormorant Garamond', 'Noto Serif TC', serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
}

::selection {
  background: rgba(120, 100, 180, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: var(--text);
  font-family: var(--mono);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 300;
  line-height: 2;
  overflow-x: hidden;
}

@media (min-width: 769px) {
  body { padding-left: 48px; }
}

/* ============================================
   Typography
   ============================================ */

.section-label {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 3.5em;
}

.content p {
  margin-bottom: 2em;
  color: #999;
}

.content p strong {
  color: var(--text);
  font-weight: 400;
}

/* ============================================
   Layout
   ============================================ */

.page {
  position: relative;
  z-index: 1;
}

section {
  padding: 18vh 8vw;
  display: flex;
  justify-content: center;
}

.content {
  max-width: 960px;
  width: 100%;
}

.content.full-width {
  max-width: 100%;
  padding: 0 2vw;
}
.content.full-width > p,
.content.full-width > .section-label,
.content.full-width > .quote,
.content.full-width > .seed-btn-wrap,
.content.full-width > form,
.content.full-width > .form-success,
.content.full-width > .form-note {
  max-width: 960px;
}

.sep {
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto;
}

/* ============================================
   Scroll Reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

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

@media (max-width: 640px) {
  body { font-size: 13px; }
  section { padding: 12vh 7vw; }
}
