/* ============================================
   ROOTED WISDOM STORIES — Master Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --bg-primary: #1a1a1a;
  --bg-deep: #0d0d0d;
  --bg-card: #222222;
  --bg-card-hover: #2a2a2a;
  --gold: #c9a84c;
  --gold-bright: #d4a843;
  --gold-dim: #a08533;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-glow-strong: rgba(201, 168, 76, 0.3);
  --green: #34a853;
  --text-primary: #e8e4dc;
  --text-secondary: #b0a99e;
  --text-muted: #7a7570;
  --border-subtle: rgba(201, 168, 76, 0.15);
  --border-gold: rgba(201, 168, 76, 0.4);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

a:hover {
  color: var(--gold-bright);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-padding {
  padding: clamp(var(--space-3xl), 8vw, var(--space-4xl)) 0;
}

.gold-text {
  color: var(--gold);
}

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

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s var(--ease-out);
}

.nav--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-interactive);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/rw_banner_ai.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  filter: blur(2px);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.7) 0%,
    rgba(13, 13, 13, 0.75) 30%,
    rgba(13, 13, 13, 0.8) 60%,
    rgba(13, 13, 13, 0.9) 80%,
    rgba(26, 26, 26, 1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) var(--space-lg);
  max-width: 900px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 24px rgba(201, 168, 76, 0.3);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2xl);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.hero__cta:hover {
  background: var(--gold-bright);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.hero__cta:active {
  transform: translateY(0);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-header__line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-md) auto 0;
}

/* --- Video / Episode Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
  cursor: pointer;
}

.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px var(--gold-glow);
}

.card__thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.card__thumbnail-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2420 0%, #1a1612 50%, #2a2218 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.card:hover .card__play-icon {
  background: rgba(201, 168, 76, 0.4);
  transform: scale(1.1);
}

.card__play-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  margin-left: 3px;
}

.card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 2px;
}

.card__body {
  padding: var(--space-md);
}

.card__culture-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-sm);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.35;
}

.card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-md);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color var(--transition-interactive), gap var(--transition-interactive);
}

.card__link:hover {
  color: var(--gold-bright);
  gap: 10px;
}

/* --- YouTube Embed --- */
.trailer-section {
  background: var(--bg-deep);
  padding: var(--space-3xl) 0;
}

.trailer-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-gold);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.trailer-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Filter Buttons --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  transition: all var(--transition-interactive);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-btn:hover,
.filter-btn--active {
  color: var(--bg-deep);
  background: var(--gold);
  border-color: var(--gold);
}

/* --- Signup / Newsletter --- */
.signup-section {
  background: var(--bg-deep);
  text-align: center;
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.signup-section__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.signup-section__desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form__input {
  flex: 1;
  min-width: 240px;
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-interactive);
}

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

.signup-form__input:focus {
  border-color: var(--gold);
}

.signup-form__btn {
  padding: var(--space-md) var(--space-xl);
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-interactive),
              transform var(--transition-interactive);
}

.signup-form__btn:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

/* --- About Page --- */
.about-hero {
  text-align: center;
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: var(--bg-deep);
}

.about-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-section {
  margin-bottom: var(--space-3xl);
}

.about-section__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.about-section__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.about-host {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}

.about-host__img {
  width: 200px;
  height: 200px;
  border-radius: 4px;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
}

.about-host__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.about-host__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.about-host__bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Quote Block */
.quote-block {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: var(--space-3xl) 0;
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

.quote-block__text::before {
  content: '"';
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 4px;
  opacity: 0.5;
}

.quote-block__text::after {
  content: '"';
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-left: 4px;
  opacity: 0.5;
}

/* --- Page Hero (for inner pages) --- */
.page-hero {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg) var(--space-2xl);
  background: var(--bg-deep);
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: var(--space-xl);
  transition: border-color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px var(--gold-glow);
}

.blog-card__culture {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__readmore {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-interactive), gap var(--transition-interactive);
}

.blog-card__readmore:hover {
  color: var(--gold-bright);
  gap: 10px;
}

/* --- Blog Detail Modal --- */
.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.blog-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.blog-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  position: relative;
}

.blog-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-interactive);
  line-height: 1;
}

.blog-modal__close:hover {
  color: var(--gold);
}

.blog-modal__culture {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.blog-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--gold);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.blog-modal__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.blog-modal__body p {
  margin-bottom: var(--space-md);
}

/* --- Footer --- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer__signoff {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.footer__social-link {
  color: var(--text-muted);
  transition: color var(--transition-interactive);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.footer__social-link:hover {
  color: var(--gold);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__link {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition-interactive);
}

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

.footer__bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__attribution {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.footer__attribution a {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer__attribution a:hover {
  color: var(--gold);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
  }
  .fade-in.visible {
    opacity: 1;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 75vh;
  }

  .hero__title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .footer__right {
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .about-host {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-host__img {
    width: 160px;
    height: 160px;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  .signup-form {
    flex-direction: column;
  }

  .signup-form__input {
    min-width: unset;
  }

  .nav__logo-text {
    font-size: 0.9rem;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
