/* ==========================================================
   ZAVIER CANVAS — STYLE
   Token system: purple accent, white surface, rounded-xl,
   soft shadow glassmorphism. Mobile-first.
   ========================================================== */

:root {
  /* Color */
  --c-primary: #7C3AED;
  --c-primary-dark: #6423C4;
  --c-primary-light: #A78BFA;
  --c-bg: #FFFFFF;
  --c-bg-soft: #FAF8FF;
  --c-bg-soft-2: #F3EFFC;
  --c-surface: #FFFFFF;
  --c-border: #EAE5F7;
  --c-text: #1E1B2E;
  --c-text-soft: #6B6478;
  --c-text-faint: #9992A8;
  --c-success: #16A34A;
  --c-success-bg: #EEFBF3;
  --c-danger: #DC2626;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(60, 30, 120, 0.06);
  --shadow-md: 0 10px 30px rgba(88, 28, 199, 0.10);
  --shadow-lg: 0 20px 50px rgba(88, 28, 199, 0.16);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --container-w: 1160px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  padding-top: var(--header-h);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-text);
  margin: 0;
  line-height: 1.2;
}

p { margin: 0; }

a { color: inherit; }

button {
  font-family: var(--font-body);
  cursor: pointer;
}

:focus-visible {
  outline: 2.5px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow { max-width: 760px; }

.text-gradient {
  background: linear-gradient(100deg, var(--c-primary) 10%, var(--c-primary-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { box-shadow: var(--shadow-lg); }

.btn--outline {
  background: var(--c-bg);
  color: var(--c-primary-dark);
  border-color: var(--c-border);
}
.btn--outline:hover { border-color: var(--c-primary-light); background: var(--c-bg-soft); }

.btn--ghost {
  background: transparent;
  color: var(--c-primary-dark);
  padding: 10px 18px;
}
.btn--ghost:hover { background: var(--c-bg-soft-2); }

.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary[disabled] { opacity: .75; cursor: default; transform: none; }

.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn--loading .btn-spinner { display: inline-block; }
.btn--loading .btn-label { opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================
   NAVBAR
   ========================================================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  z-index: 100;
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 4px;
}

.brand-mark svg { width: 26px; height: 26px; display: block; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-text);
}
.brand-name em { color: var(--c-primary); font-style: normal; }

.navbar__links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-link {
  background: none;
  border: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-text-soft);
  padding: 8px 14px;
  border-radius: var(--r-sm);
}
.nav-link:hover { color: var(--c-primary-dark); background: var(--c-bg-soft-2); }

.navbar__cta { display: none; }

.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  border-radius: var(--r-sm);
}
.navbar__burger:hover { background: var(--c-bg-soft-2); }
.navbar__burger span {
  height: 2px; width: 20px; margin: 0 auto;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 18px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__link {
  text-align: left;
  background: none;
  border: none;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-bg-soft-2);
}

.mobile-menu__cta { margin-top: 10px; }

@media (min-width: 860px) {
  .navbar__links { display: flex; }
  .navbar__cta { display: inline-flex; }
  .navbar__burger { display: none; }
}

/* ==========================================================
   HERO
   ========================================================== */

.hero {
  padding: 52px 0 56px;
  background:
    radial-gradient(560px 320px at 85% -10%, rgba(124,58,237,.10), transparent 60%),
    var(--c-bg);
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  background: var(--c-bg-soft-2);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  margin-top: 18px;
  font-size: 16px;
  color: var(--c-text-soft);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--c-text-faint);
  font-weight: 500;
}

/* Signature element: fanned carousel-card stack */
.hero__visual {
  display: flex;
  justify-content: center;
  padding: 10px 0 20px;
}

.card-fan {
  position: relative;
  width: 260px;
  height: 300px;
}

.fan-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 20px;
  animation: dealIn .7s cubic-bezier(.2,.8,.2,1) backwards;
}

.fan-card--3 {
  transform: rotate(10deg) translate(18px, 10px);
  background: var(--c-bg-soft-2);
  animation-delay: .05s;
  --deal-rot: 10deg;
}
.fan-card--2 {
  transform: rotate(-7deg) translate(-14px, 4px);
  background: #fff;
  animation-delay: .18s;
  --deal-rot: -7deg;
}
.fan-card--1 {
  transform: rotate(0deg);
  animation-delay: .32s;
  --deal-rot: 0deg;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, #fff 0%, var(--c-bg-soft) 100%);
}

@keyframes dealIn {
  from { opacity: 0; transform: translateY(30px) rotate(var(--deal-rot, 0deg)) scale(.92); }
  to   { opacity: 1; }
}

.fan-card__bar { width: 46px; height: 8px; border-radius: 4px; background: var(--c-primary-light); margin-bottom: 14px; }
.fan-card__line { height: 8px; border-radius: 4px; background: var(--c-border); margin-bottom: 8px; }
.fan-card__line--sm { width: 60%; }
.fan-card__chip { margin-top: 10px; width: 34px; height: 34px; border-radius: 10px; background: var(--c-primary); opacity: .18; }

.fan-card__tag {
  position: absolute; top: 16px; left: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: var(--c-primary-dark);
  background: var(--c-bg-soft-2);
  padding: 4px 9px; border-radius: 999px;
}
.fan-card__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-top: 30px;
}
.fan-card__prompt {
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-text-faint);
  display: flex; align-items: center; gap: 6px;
}
.fan-card__prompt .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-success); }

@media (min-width: 720px) {
  .hero { padding: 76px 0 80px; }
  .hero__title { font-size: 46px; }
  .hero__grid { flex-direction: row; align-items: center; }
  .hero__copy { flex: 1.05; }
  .hero__visual { flex: 1; padding: 0; }
  .card-fan { width: 320px; height: 360px; }
}

/* ==========================================================
   SECTION HEAD (shared)
   ========================================================== */

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 34px;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 { font-size: 26px; font-weight: 700; }
.section-desc { margin-top: 10px; color: var(--c-text-soft); font-size: 15px; }

@media (min-width: 720px) {
  .section-head h2 { font-size: 32px; }
}

/* ==========================================================
   BENEFITS
   ========================================================== */

.benefits { padding: 54px 0; background: var(--c-bg-soft); }

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}

.benefit-card__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border-radius: var(--r-md);
  background: var(--c-bg-soft-2);
  margin-bottom: 14px;
}

.benefit-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.benefit-card p { color: var(--c-text-soft); font-size: 14.5px; }

@media (min-width: 720px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ==========================================================
   GENERATOR
   ========================================================== */

.generator { padding: 58px 0 64px; }

.generator__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.gen-form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
}

.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 7px;
}
.field label .req { color: var(--c-danger); }
.field label .opt { color: var(--c-text-faint); font-weight: 400; }

.field input,
.field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text);
  min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(124,58,237,.12);
}
.field input.has-error { border-color: var(--c-danger); }

.field-error {
  display: none;
  color: var(--c-danger);
  font-size: 12.5px;
  margin-top: 6px;
}
.field-error.is-visible { display: block; }

.advanced-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--c-primary-dark);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 2px;
  margin-bottom: 14px;
}
.advanced-toggle svg { transition: transform .2s ease; }
.advanced-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.advanced-fields { margin-bottom: 6px; }

.form-hint {
  text-align: center;
  font-size: 12.5px;
  color: var(--c-text-faint);
  margin-top: 12px;
}

@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

/* --- Result panel --- */

.gen-result {
  background: var(--c-bg-soft);
  border: 1px dashed var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.result-empty {
  margin: auto;
  text-align: center;
  max-width: 320px;
  padding: 20px 0;
}
.result-empty__icon { font-size: 34px; margin-bottom: 10px; }
.result-empty h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.result-empty p { font-size: 13.5px; color: var(--c-text-soft); }

.result-content { display: flex; flex-direction: column; gap: 18px; }

.result-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 18px 18px;
}
.result-block__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  margin-bottom: 6px;
  display: block;
}
.result-block__text { font-size: 14.5px; color: var(--c-text); }

.result-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .result-meta-grid { grid-template-columns: 1fr 1fr; }
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slides-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.slides-heading h3 { font-size: 16px; font-weight: 700; }
.slides-heading span { font-size: 13px; color: var(--c-text-faint); }

.slides-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.slides-track::-webkit-scrollbar { height: 6px; }
.slides-track::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 4px; }

.slide-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-card__num {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-primary-dark);
  background: var(--c-bg-soft-2);
  padding: 4px 10px;
  border-radius: 999px;
}
.slide-card__headline { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; }
.slide-card__section-label { font-size: 11px; font-weight: 700; color: var(--c-text-faint); text-transform: uppercase; letter-spacing: .04em; margin-top: 4px; }
.slide-card__prompt { font-size: 13px; color: var(--c-text-soft); }
.slide-card__caption { font-size: 12.5px; color: var(--c-text-faint); font-style: italic; }

.copy-btn {
  margin-top: auto;
  background: var(--c-bg-soft-2);
  color: var(--c-primary-dark);
  border: none;
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
}
.copy-btn:hover { background: #E4DBFB; }
.copy-btn.is-copied { background: var(--c-success-bg); color: var(--c-success); }

/* ==========================================================
   TRUST
   ========================================================== */

.trust { padding: 56px 0; background: var(--c-bg-soft); }

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.trust-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.trust-card p { font-size: 14.5px; color: var(--c-text); }

.trust-card__who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.trust-card__who strong { display: block; font-size: 14px; }
.trust-card__who span { font-size: 12.5px; color: var(--c-text-faint); }

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

@media (min-width: 860px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================
   FINAL CTA
   ========================================================== */

.final-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
}
.final-cta__inner { text-align: center; max-width: 560px; margin: 0 auto; }
.final-cta h2 { color: #fff; font-size: 26px; }
.final-cta p { color: rgba(255,255,255,.85); margin-top: 12px; font-size: 15px; }
.final-cta__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 26px;
}
.final-cta .btn--outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.final-cta .btn--outline:hover { background: rgba(255,255,255,.16); }
.final-cta .btn--primary { background: #fff; color: var(--c-primary-dark); box-shadow: none; }

@media (min-width: 720px) {
  .final-cta h2 { font-size: 30px; }
}

/* ==========================================================
   PAGE SECTIONS (History / Guide)
   ========================================================== */

.page-section { padding: 50px 0 70px; min-height: 60vh; }

/* --- History --- */

.history-empty {
  text-align: center;
  max-width: 320px;
  margin: 40px auto;
  padding: 20px;
}
.history-empty .btn { margin-top: 16px; }

.history-list { display: flex; flex-direction: column; gap: 12px; }

.history-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.history-item__info h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.history-item__info span { font-size: 12.5px; color: var(--c-text-faint); }
.history-item__actions { display: flex; gap: 8px; flex-shrink: 0; }
.history-item__actions button {
  border: none; background: var(--c-bg-soft-2); color: var(--c-primary-dark);
  border-radius: var(--r-sm); padding: 9px 13px; font-size: 12.5px; font-weight: 600;
  min-height: 40px;
}
.history-item__actions button.danger { background: #FDEDED; color: var(--c-danger); }

/* --- Guide --- */

.guide-steps { list-style: none; padding: 0; margin: 0 0 44px; display: flex; flex-direction: column; gap: 22px; }
.guide-steps li { display: flex; gap: 16px; align-items: flex-start; }
.guide-steps__num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.guide-steps h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.guide-steps p { font-size: 14.5px; color: var(--c-text-soft); }

.guide-faq h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.guide-faq details {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.guide-faq summary {
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
}
.guide-faq details p { margin-top: 10px; font-size: 14px; color: var(--c-text-soft); }

/* ==========================================================
   TOAST
   ========================================================== */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  background: var(--c-text);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 300;
  max-width: 88vw;
  text-align: center;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ==========================================================
   FLOATING WHATSAPP
   ========================================================== */

.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  transition: transform .15s ease;
}
.fab-whatsapp svg { width: 32px; height: 32px; }
.fab-whatsapp:hover { transform: scale(1.06); }
.fab-whatsapp:active { transform: scale(.96); }

/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
  background: var(--c-text);
  padding: 40px 0 30px;
}
.site-footer__inner { text-align: center; }
.site-footer__brand { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name em { color: var(--c-primary-light); }
.site-footer__tag { color: rgba(255,255,255,.6); font-size: 13.5px; margin-top: 12px; }
.site-footer__watermark { color: rgba(255,255,255,.45); font-size: 12.5px; margin-top: 18px; }
.site-footer__watermark a { color: rgba(255,255,255,.75); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.site-footer__watermark a:hover { color: #fff; }

/* ==========================================================
   VIEW SWITCHING & UTILITIES
   ========================================================== */

.view[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fan-card { animation: none; opacity: 1; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
