/* ==========================================================================
   NO S**T THERE I WAS — Book site
   Tactical / rugged first-responder art direction.
   Display: Anton — Body: Barlow (Google Fonts)
   ========================================================================== */

:root,
[data-theme='light'] {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.5vw, 7rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces — Buckeye gray */
  --color-bg: #eceeef;
  --color-surface: #f4f5f6;
  --color-surface-2: #e6e8e9;
  --color-surface-offset: #d6d9db;
  --color-surface-offset-2: #c5c9cc;
  --color-divider: #b8bcbf;
  --color-border: #a8acaf;

  /* Text — charcoal ink */
  --color-text: #1c1c1e;
  --color-text-muted: #55585c;
  --color-text-faint: #86898d;
  --color-text-inverse: #f5f6f7;

  /* Primary accent — Buckeye scarlet */
  --color-primary: #bb0000;
  --color-primary-hover: #950000;
  --color-primary-active: #740000;
  --color-primary-highlight: #f3d6d6;

  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.2 0 0 / 0.14);
  --shadow-md: 0 6px 16px oklch(0.2 0 0 / 0.18);
  --shadow-lg: 0 16px 40px oklch(0.15 0 0 / 0.28);

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1220px;
  --content-full: 100%;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #141414;
  --color-surface: #191919;
  --color-surface-2: #1f1f1f;
  --color-surface-offset: #272727;
  --color-surface-offset-2: #303030;
  --color-divider: #383838;
  --color-border: #454545;

  --color-text: #ececec;
  --color-text-muted: #a3a3a3;
  --color-text-faint: #757575;
  --color-text-inverse: #141414;

  --color-primary: #e2231a;
  --color-primary-hover: #ff4136;
  --color-primary-active: #ff7a70;
  --color-primary-highlight: #3d1414;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.4);
  --shadow-md: 0 6px 16px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #141414;
    --color-surface: #191919;
    --color-surface-2: #1f1f1f;
    --color-surface-offset: #272727;
    --color-surface-offset-2: #303030;
    --color-divider: #383838;
    --color-border: #454545;
    --color-text: #ececec;
    --color-text-muted: #a3a3a3;
    --color-text-faint: #757575;
    --color-text-inverse: #141414;
    --color-primary: #e2231a;
    --color-primary-hover: #ff4136;
    --color-primary-active: #ff7a70;
    --color-primary-highlight: #3d1414;
  }
}

/* ==========================================================================
   Global type & layout helpers
   ========================================================================== */

body {
  background-color: var(--color-bg);
  background-image:
    repeating-linear-gradient(
      0deg,
      oklch(from var(--color-text) l c h / 0.015) 0px,
      transparent 1px,
      transparent 3px
    );
}

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--wide {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 {
  font-size: var(--text-hero);
  line-height: 1.02;
}
h2 {
  font-size: var(--text-2xl);
  line-height: 1.05;
}
h3 {
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow::before {
  content: '';
  width: 1.4em;
  height: 2px;
  background: currentColor;
}

.lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 46ch;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-2);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus-visible {
  left: var(--space-2);
}

/* Stencil badge / chip */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.5);
  border-radius: var(--radius-full);
  background: oklch(from var(--color-primary) l c h / 0.1);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: currentColor;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid oklch(from var(--color-text) l c h / 0.35);
}
.btn--ghost:hover {
  border-color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.06);
}
.btn:active {
  transform: translateY(1px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
}
.brand:hover {
  color: var(--color-text);
}
.brand__mark {
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.brand__word {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}
.brand__word small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
.nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.nav a:hover {
  color: var(--color-text);
}
@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-text-faint);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}

[data-desktop-cta] {
  display: none;
}
@media (min-width: 900px) {
  [data-desktop-cta] {
    display: inline-flex;
  }
}

.nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
}
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--color-divider);
  padding: var(--space-4) 0 var(--space-6);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-sm);
  color: var(--color-text);
  min-height: 44px;
  display: flex;
  align-items: center;
}
@media (min-width: 900px) {
  .mobile-nav {
    display: none !important;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(var(--space-16), 12vw, var(--space-32)) clamp(var(--space-12), 8vw, var(--space-20));
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, oklch(0.08 0 0 / 0.35) 0%, oklch(0.08 0 0 / 0.55) 45%, oklch(0.06 0 0 / 0.94) 100%),
    linear-gradient(90deg, oklch(0.06 0 0 / 0.7) 0%, transparent 55%);
}
.hero__content {
  position: relative;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
  width: 100%;
  color: #ececec;
}
.hero .eyebrow {
  color: #ff4136;
}
.hero h1 {
  color: #f5f5f5;
  margin-top: var(--space-4);
  text-shadow: 0 2px 24px oklch(0 0 0 / 0.5);
}
.hero__sub {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: 400;
  color: #c2c2c2;
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.hero__actions .btn--ghost {
  color: #ececec;
  border-color: oklch(1 0 0 / 0.4);
}
.hero__actions .btn--ghost:hover {
  border-color: #ececec;
  background: oklch(1 0 0 / 0.08);
}
.hero__meta {
  margin-top: var(--space-12);
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  font-family: var(--font-body);
}
.hero__meta div {
  border-left: 1px solid oklch(1 0 0 / 0.25);
  padding-left: var(--space-4);
}
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #f5f5f5;
}
.hero__meta span {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9a9a;
}

/* ==========================================================================
   The Book section
   ========================================================================== */

.book {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
}
.book__grid {
  display: grid;
  gap: var(--space-16);
  align-items: center;
}
@media (min-width: 860px) {
  .book__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
.book__copy h2 {
  margin-top: var(--space-3);
}
.book__copy p {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}
.book__pull {
  margin-top: var(--space-8);
  padding-left: var(--space-5);
  border-left: 3px solid var(--color-primary);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text);
  max-width: 32ch;
}
.book__media {
  position: relative;
}
.book__media img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.book__media figcaption {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================================================
   Progress tracker
   ========================================================================== */

.progress {
  background: var(--color-bg);
}
.progress__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.progress__head h2 {
  margin-top: var(--space-3);
}
.progress__count {
  text-align: right;
  font-family: var(--font-body);
}
.progress__count strong {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  line-height: 1;
  display: block;
}
.progress__count span {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.progress__bar {
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  overflow: hidden;
  margin-bottom: var(--space-10);
  border: 1px solid var(--color-border);
}
.progress__fill {
  height: 100%;
  width: 24%;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.progress__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
}
@media (min-width: 640px) {
  .progress__grid {
    grid-template-columns: repeat(9, 1fr);
    gap: var(--space-3);
  }
}
.progress__cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  background: var(--color-surface);
}
.progress__cell.is-done {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.progress__legend {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.progress__legend span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.progress__legend i {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  display: block;
}
.progress__legend i.done {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ==========================================================================
   Excerpt / First Pages
   ========================================================================== */

.excerpt {
  background: var(--color-surface-2);
  border-block: 1px solid var(--color-divider);
}
.excerpt__grid {
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 860px) {
  .excerpt__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}
.excerpt__page {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.excerpt__page::before {
  content: '';
  position: absolute;
  inset: var(--space-3);
  border: 1px dashed var(--color-border);
  border-radius: calc(var(--radius-lg) - var(--space-3));
  pointer-events: none;
}
.excerpt__quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--color-text);
  position: relative;
}
.excerpt__quote span {
  color: var(--color-primary);
}
.excerpt__lock {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.excerpt__lock svg {
  width: 16px;
  height: 16px;
}
.excerpt__copy p {
  color: var(--color-text-muted);
  margin-top: var(--space-5);
}
.excerpt__copy h2 {
  margin-top: var(--space-3);
}

/* ==========================================================================
   Author section
   ========================================================================== */

.author {
  background: var(--color-bg);
}
.author__grid {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}
@media (min-width: 860px) {
  .author__grid {
    grid-template-columns: 0.7fr 1.3fr;
  }
}
.author__emblem {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface-offset);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.author__emblem svg {
  width: 46%;
  height: 46%;
}
.author__copy p {
  color: var(--color-text-muted);
  margin-top: var(--space-5);
}
.author__copy h2 {
  margin-top: var(--space-3);
}
.author__credentials {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.author__credentials .badge {
  border-color: var(--color-border);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
}
.author__credentials .badge .badge__dot {
  background: var(--color-primary);
}

/* ==========================================================================
   Book Two teaser
   ========================================================================== */

.next {
  background: linear-gradient(180deg, #141414, #1a1a1a);
  border-block: 1px solid var(--color-divider);
  position: relative;
  overflow: hidden;
}
.next::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    oklch(1 0 0 / 0.02) 0px,
    oklch(1 0 0 / 0.02) 2px,
    transparent 2px,
    transparent 14px
  );
  pointer-events: none;
}
.next__inner {
  position: relative;
  text-align: left;
  color: #ececec;
}
.next .eyebrow {
  color: #ff4136;
}
.next h2 {
  color: #f5f5f5;
  margin-top: var(--space-3);
}
.next p {
  margin-top: var(--space-5);
  color: #a3a3a3;
  max-width: 54ch;
}
.next__row {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================================================
   Notify / signup
   ========================================================================== */

.notify {
  background: var(--color-surface);
}
.notify__box {
  max-width: var(--content-narrow);
  margin-inline: auto;
  text-align: left;
}
.notify h2 {
  margin-top: var(--space-3);
}
.notify p.lede {
  margin-top: var(--space-4);
  max-width: 52ch;
}
.notify__form {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media (min-width: 560px) {
  .notify__form {
    flex-direction: row;
  }
}
.notify__field {
  flex: 1;
}
.notify__field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.notify__field input {
  width: 100%;
  min-height: 48px;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: var(--text-base);
}
.notify__field input:focus-visible {
  border-color: var(--color-primary);
}
.notify__form .btn {
  align-self: flex-end;
}
@media (min-width: 560px) {
  .notify__form .btn {
    margin-top: var(--space-6);
  }
}
.notify__note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.02em;
}
.notify__success {
  display: none;
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.4);
  background: var(--color-primary-highlight);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
}
.notify__success.is-visible {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
  padding-block: var(--space-10);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
@media (min-width: 700px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
}
.footer__brand svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.footer__nav {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}
.footer__nav a:hover {
  color: var(--color-text);
}
.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  clip-path: inset(8% 0 0 0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    clip-path: none;
  }
}
