/* ============================================================
   CatchAll marketing site — shared styles
   Brand tokens mirror packages/core/src/theme/tokens.ts
   ============================================================ */

:root {
  /* Light theme drawn from the app logo: black ink mark on a warm
     sand-cream gradient with a soft periwinkle-blue corner */
  color-scheme: light;
  --bg: #f8f3e7;
  --surface: #fffdf6;
  --surface-alt: #f1ead8;
  --border: #e3dac3;
  --text: #191712;
  --text-muted: #6e6754;
  --accent: #915f0d;
  --accent-contrast: #fffdf6;
  --chip-bg: #e4eaf6;
  --chip-text: #3b5a97;
  --success: #1e8a5e;
  --warning: #b3540e;
  --glow-1: rgba(196, 144, 47, 0.22);
  --glow-2: rgba(122, 152, 214, 0.2);
  --shadow: 0 1px 2px rgba(60, 48, 22, 0.05), 0 8px 24px rgba(60, 48, 22, 0.07);
  --shadow-lg: 0 2px 6px rgba(60, 48, 22, 0.06), 0 24px 60px rgba(60, 48, 22, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1100px;
}

/* Dark tokens are applied two ways: forced via data-theme="dark" (navbar
   toggle, persisted in localStorage) or by the system preference when the
   user hasn't chosen. The blocks must stay identical. */
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c0d12;
  --surface: #16171e;
  --surface-alt: #1e2029;
  --border: #292b36;
  --text: #f4f5fa;
  --text-muted: #9ba0b0;
  --accent: #8b95ff;
  --accent-contrast: #0c0d12;
  --chip-bg: #23263a;
  --chip-text: #b9c0ff;
  --success: #3ad08e;
  --warning: #f0b45e;
  --glow-1: rgba(139, 149, 255, 0.14);
  --glow-2: rgba(58, 208, 142, 0.08);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.45), 0 24px 60px rgba(0, 0, 0, 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0c0d12;
    --surface: #16171e;
    --surface-alt: #1e2029;
    --border: #292b36;
    --text: #f4f5fa;
    --text-muted: #9ba0b0;
    --accent: #8b95ff;
    --accent-contrast: #0c0d12;
    --chip-bg: #23263a;
    --chip-text: #b9c0ff;
    --success: #3ad08e;
    --warning: #f0b45e;
    --glow-1: rgba(139, 149, 255, 0.14);
    --glow-2: rgba(58, 208, 142, 0.08);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.45), 0 24px 60px rgba(0, 0, 0, 0.5);
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  background: var(--accent);
  color: var(--accent-contrast) !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  filter: brightness(1.08);
}

.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.theme-toggle:hover {
  background: var(--surface-alt);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

/* ---------- Buttons & chips ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 6px 20px var(--glow-1);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-alt);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--chip-bg);
  color: var(--chip-text);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 420px at 18% 8%, var(--glow-1), transparent 65%),
    radial-gradient(520px 380px at 85% 30%, var(--glow-2), transparent 65%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 56px 0 48px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* ---------- Real device frames / screenshots ---------- */

.device-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #0c0d12;
  line-height: 0;
}

.device-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.device-frame-sm {
  border-radius: 22px;
}

.phone-stack {
  position: relative;
  width: min(340px, 88vw);
  height: min(520px, 72vw);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.phone-stack .device-frame {
  width: min(240px, 62vw);
}

.phone-stack .device-frame-back {
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(6deg) translate(12%, -4%);
  opacity: 0.92;
  z-index: 1;
}

.phone-stack .device-frame-front {
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
}

@media (max-width: 960px) {
  .phone-stack {
    height: auto;
    min-height: 360px;
    margin-top: 12px;
  }
}

/* Silent-capture gallery */

.capture-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .capture-gallery {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

.capture-card {
  margin: 0;
  text-align: center;
}

.capture-card .device-frame {
  max-width: 280px;
  margin: 0 auto;
}

.capture-card figcaption {
  margin-top: 16px;
  padding: 0 8px;
}

.capture-card figcaption strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.capture-card figcaption span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Library split with two phones */

.library-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .library-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.library-split h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.library-split > div > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 22px;
}

.library-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.library-shots .device-frame {
  border-radius: 22px;
}

.library-shots .device-frame:first-child {
  transform: translateY(12px);
}

.library-shots .device-frame:last-child {
  transform: translateY(-12px);
}

@media (max-width: 520px) {
  .library-shots {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .library-shots .device-frame:first-child,
  .library-shots .device-frame:last-child {
    transform: none;
  }
}

.status-link {
  text-decoration: none;
  transition: filter 0.15s ease;
}

.status-link:hover {
  filter: brightness(1.08);
}

/* ---------- Sections ---------- */

section {
  padding: 74px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head .chip {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Sources strip ---------- */

.sources {
  padding: 34px 0 10px;
}

.sources-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.sources-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.source-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--chip-bg);
  color: var(--chip-text);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ---------- Feature grid ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--chip-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ---------- Privacy split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.split h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.split > div > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list .check {
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.6;
}

.check-list strong {
  display: block;
  font-size: 0.98rem;
}

.check-list span.detail {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

.privacy-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.data-row:last-child {
  border-bottom: none;
}

.data-row .where {
  font-weight: 700;
  white-space: nowrap;
}

.where.on-device {
  color: var(--success);
}

.where.your-cloud {
  color: var(--accent);
}

.where.never {
  color: var(--warning);
}

/* ---------- Pricing / AI tiers ---------- */

.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .tiers {
    grid-template-columns: 1fr;
  }
}

.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.tier.featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 10px 40px var(--glow-1);
}

.tier h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.tier .price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 10px 0 4px;
}

.tier .price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tier > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.tier ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.94rem;
}

.tier ul li {
  display: flex;
  gap: 10px;
}

.tier ul .check {
  color: var(--success);
  font-weight: 800;
}

/* ---------- Platforms ---------- */

.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .platforms {
    grid-template-columns: 1fr;
  }
}

.platform {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
}

.platform .emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.platform h3 {
  margin-bottom: 6px;
}

.platform p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.platform .status {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.status.live {
  background: color-mix(in srgb, var(--success) 15%, transparent);
  color: var(--success);
}

.status.soon {
  background: color-mix(in srgb, var(--warning) 15%, transparent);
  color: var(--warning);
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Final CTA ---------- */

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

.cta-final .hero-glow {
  background: radial-gradient(560px 360px at 50% 20%, var(--glow-1), transparent 70%);
}

.cta-final h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
}

.cta-final p {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 30px;
  position: relative;
}

.cta-final .hero-ctas {
  justify-content: center;
  position: relative;
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 36px;
  font-size: 0.92rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 34ch;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: var(--text);
  padding: 4px 0;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 30px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Legal / content pages ---------- */

.page-hero {
  padding: 64px 0 48px;
}

.page-hero .container {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-hero .meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 90px;
}

.legal h2 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin: 48px 0 20px;
  font-weight: 700;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  font-size: 1.08rem;
  margin: 32px 0 12px;
  font-weight: 600;
}

.legal p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.legal li {
  color: var(--text-muted);
  font-size: 1rem;
}

.legal ul,
.legal ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal strong {
  color: var(--text);
}

.legal .callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 32px 0;
}

.legal .callout p {
  margin-bottom: 0;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 0.95rem;
}

.legal .table-scroll {
  overflow-x: auto;
  margin: 18px 0 24px;
}

.legal .table-scroll table {
  margin: 0;
  min-width: 560px;
}

.legal th,
.legal td {
  text-align: left;
  padding: 11px 14px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

.legal th {
  background: var(--surface-alt);
  color: var(--text);
  font-weight: 700;
}

.legal code {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 7px;
  font-size: 0.88em;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
}

/* ---------- Reveal helpers (Motion sets the animation; this is the safety
   net so content is never hidden when JS/motion is unavailable) ---------- */

.reveal {
  opacity: 1;
}
