/* ==========================================================================
   Minesweeper: Retiled — site styles
   Static site, no build step. Palette taken from the app logo.
   ========================================================================== */

:root {
  --navy-900: #061428;
  --navy-800: #0a2142;
  --navy-700: #0f3163;
  --navy-600: #14428a;
  --blue-500: #1d6fd0;
  --blue-400: #3f95ee;

  --gold-500: #f9b233;
  --gold-400: #ffc95a;
  --orange-500: #f26722;
  --red-500: #e03131;
  --green-500: #2f9e44;

  --cream: #f6efdd;
  --tile: #efe6cd;
  --ink: #0b1a2e;
  --paper: #ffffff;

  --text: #e9eefa;
  --text-dim: #a9bad6;
  --text-ink: #1c2b42;
  --text-ink-dim: #4d5f7c;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(3, 12, 26, .18);
  --shadow: 0 10px 30px rgba(3, 12, 26, .28);
  --shadow-lg: 0 24px 60px rgba(3, 12, 26, .45);

  --wrap: 1140px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
}

/* --------------------------------------------------------------- base */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--navy-900);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h2 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem); }

p { margin: 0 0 1.1em; }

a { color: var(--gold-400); text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: var(--gold-500); }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: min(100% - (2 * var(--gutter)), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold-500);
  color: var(--ink);
  padding: .7rem 1.2rem;
  font-weight: 700;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------- tessellated backdrop */

.tess-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .5;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 132px 152px;
  /* hexagonal lattice, drawn as an inline SVG so there's no extra request */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='132' height='152' viewBox='0 0 132 152'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.09' stroke-width='2'%3E%3Cpath d='M33 0 L99 0 L132 38 L99 76 L33 76 L0 38 Z'/%3E%3Cpath d='M33 76 L99 76 L132 114 L99 152 L33 152 L0 114 Z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
}

/* --------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 20, 40, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 62px;
  padding-block: .5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .01em;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.brand span { white-space: nowrap; }
.brand b { color: var(--gold-400); font-weight: 700; }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 1.6vw, 1.4rem);
}

.site-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  padding: .35rem 0;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text); }
.site-nav .nav-secondary { display: none; }

@media (min-width: 760px) { .site-nav .nav-secondary { display: inline; } }

/* Very narrow phones: drop the wordmark and let the icon carry the brand. */
@media (max-width: 400px) {
  .brand span { display: none; }
  .site-nav { gap: .85rem; }
  .site-nav a { font-size: .9rem; }
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.5rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-400), var(--orange-500));
  color: #2a1503;
  box-shadow: 0 6px 0 #b5450f, var(--shadow);
}
.btn-primary:hover { color: #2a1503; box-shadow: 0 8px 0 #b5450f, var(--shadow); }
.btn-primary:active { box-shadow: 0 3px 0 #b5450f, var(--shadow-sm); }

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .22);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .13); color: var(--text); }

/* --------------------------------------------------------------- hero */

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(120% 80% at 50% 0%, var(--navy-600) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  text-align: center;
  overflow: hidden;
}

.hero > .wrap { position: relative; z-index: 1; }

.hero-logo {
  width: min(100%, 640px);
  margin: 0 auto clamp(1rem, 3vw, 1.75rem);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .55));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1.8vw, 2rem);
  font-weight: 700;
  color: var(--gold-400);
  margin: 0 0 .6rem;
  text-wrap: balance;
}

.hero-lede {
  max-width: 62ch;
  margin: 0 auto 1.8rem;
  color: var(--text-dim);
  font-size: clamp(1.02rem, .98rem + .35vw, 1.2rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem .9rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .88rem;
  color: var(--text-dim);
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .3rem .85rem;
}
.hero-badges svg { width: 15px; height: 15px; flex: none; color: var(--gold-400); }

/* --------------------------------------------------------------- sections */

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  position: relative;
}

.section-alt { background: var(--navy-800); }
.section-deep { background: var(--navy-900); }

.section-head {
  max-width: 66ch;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.section-head p {
  color: var(--text-dim);
  margin-bottom: 0;
  text-wrap: pretty;
}

.eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: .6rem;
}

/* --------------------------------------------------------------- carousel (shared) */

.carousel {
  position: relative;
  /* The screenshots are tall phone portraits, so the frame is generous.
     --slide-pad is subtracted from --frame-h below to size the media, which
     keeps the whole image visible without relying on percentage max-height. */
  --frame-h: clamp(420px, 74vh, 780px);
  --slide-pad: clamp(.9rem, 2vw, 1.5rem);
}

.carousel-viewport {
  position: relative;
  height: var(--frame-h);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.carousel-track {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--slide-pad);
  opacity: 0;
  visibility: hidden;
  transform: scale(.985);
  transition: opacity .55s ease, transform .55s ease, visibility .55s;
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 2;
}

.carousel-slide img,
.carousel-slide video {
  /* Fit the WHOLE image inside the frame — never crop.
     min-height/min-width 0 defeats the flex item's automatic minimum size,
     which would otherwise hold the media at its intrinsic height and let it
     overflow the frame. The max-height is a concrete calc rather than a
     percentage so it resolves the same way in every browser. */
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(var(--frame-h) - (2 * var(--slide-pad)) - 2px);
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
  background: #10233f;
}

.carousel-caption {
  min-height: 3.2em;
  margin: 1rem auto 0;
  max-width: 62ch;
  text-align: center;
  color: var(--text-dim);
  font-size: .95rem;
  text-wrap: pretty;
}

/* arrows */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(6, 20, 40, .72);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color .15s ease, transform .15s ease;
}
.carousel-btn:hover { background: var(--blue-500); transform: translateY(-50%) scale(1.06); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-prev { left: clamp(.4rem, 1.5vw, 1rem); }
.carousel-next { right: clamp(.4rem, 1.5vw, 1rem); }

/* playback toggle */

.carousel-play {
  position: absolute;
  right: clamp(.4rem, 1.5vw, 1rem);
  bottom: clamp(.4rem, 1.5vw, 1rem);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .85rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(6, 20, 40, .72);
  color: var(--text-dim);
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.carousel-play:hover { color: var(--text); background: rgba(6, 20, 40, .9); }
.carousel-play svg { width: 13px; height: 13px; }

/* progress bar */

.carousel-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  z-index: 5;
  background: rgba(255, 255, 255, .1);
}
.carousel-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-400), var(--orange-500));
}

/* dots + thumbnails */

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}
.carousel-dots button {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .26);
  cursor: pointer;
  transition: background-color .2s ease, width .2s ease;
}
.carousel-dots button:hover { background: rgba(255, 255, 255, .5); }
.carousel-dots button[aria-current="true"] {
  width: 26px;
  border-radius: 999px;
  background: var(--gold-400);
}

.carousel-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  padding: .25rem .1rem .6rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.carousel-thumbs::-webkit-scrollbar { height: 6px; }
.carousel-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 3px; }

.carousel-thumbs button {
  flex: none;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  opacity: .55;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
  scroll-snap-align: center;
  line-height: 0;
}
.carousel-thumbs button:hover { opacity: .85; transform: translateY(-2px); }
.carousel-thumbs button[aria-current="true"] {
  opacity: 1;
  border-color: var(--gold-400);
}
.carousel-thumbs img {
  height: 74px;
  width: auto;
  border-radius: 6px;
}

.carousel-noscript {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.carousel-noscript img { border-radius: 10px; }

/* video carousel tweaks */

.carousel-video { --frame-h: clamp(400px, 70vh, 720px); }
.carousel-video .carousel-slide video { cursor: pointer; }

/* --------------------------------------------------------------- feature cards */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 178, 51, .45);
  box-shadow: var(--shadow);
}
.card h3 { color: var(--paper); margin-bottom: .45rem; }
.card p { color: var(--text-dim); margin-bottom: 0; font-size: .97rem; }

.card-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: .9rem;
  background: rgba(249, 178, 51, .16);
  color: var(--gold-400);
  border: 1px solid rgba(249, 178, 51, .3);
}
.card-icon svg { width: 22px; height: 22px; }

.card-feature {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(29, 111, 208, .28), rgba(249, 178, 51, .12));
  border-color: rgba(63, 149, 238, .4);
}
@media (min-width: 900px) { .card-feature { grid-column: span 2; } }

/* --------------------------------------------------------------- tilings */

.tilings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 215px), 1fr));
  gap: .6rem;
  padding: 0;
  margin: 0 0 1.6rem;
  list-style: none;
  counter-reset: tiling;
}

.tilings li {
  counter-increment: tiling;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
  font-size: .94rem;
}
.tilings li::before {
  content: counter(tiling);
  flex: none;
  width: 1.7em;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--text-dim);
  font-size: .82rem;
}
.tilings .tag {
  margin-left: auto;
  flex: none;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 999px;
}
.tilings .tag-free { background: rgba(47, 158, 68, .25); color: #8ce99a; border: 1px solid rgba(47,158,68,.45); }
.tilings .tag-pro  { background: rgba(249, 178, 51, .2); color: var(--gold-400); border: 1px solid rgba(249,178,51,.45); }
.tilings li:has(.tag-free) { border-color: rgba(47, 158, 68, .3); }

/* --------------------------------------------------------------- pricing */

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 860px;
  margin-inline: auto;
}

.tier {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.tier-pro {
  border-color: rgba(249, 178, 51, .55);
  box-shadow: 0 0 0 1px rgba(249, 178, 51, .2), var(--shadow);
  position: relative;
}
.tier-pro::after {
  content: "One-off purchase";
  position: absolute;
  top: -.75rem; left: 50%;
  translate: -50% 0;
  background: linear-gradient(180deg, var(--gold-400), var(--orange-500));
  color: #2a1503;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tier h3 { font-size: 1.35rem; margin-bottom: .15rem; }
.tier .tier-price {
  color: var(--gold-400);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 1rem;
}
.tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
  font-size: .96rem;
  color: var(--text-dim);
}
.tier li { display: flex; gap: .6rem; align-items: flex-start; }
.tier li::before {
  content: "";
  flex: none;
  width: 1.15em; height: 1.15em;
  margin-top: .22em;
  border-radius: 50%;
  background: var(--green-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 70% no-repeat;
}

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

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(110% 130% at 50% 0%, var(--navy-600), var(--navy-900) 70%);
}
.cta > .wrap { position: relative; z-index: 1; }
.cta h2 { margin-bottom: .4rem; }
.cta p { color: var(--text-dim); max-width: 56ch; margin-inline: auto; }
.cta .hero-actions { margin-top: 1.6rem; margin-bottom: 0; }

.cta-icon {
  width: 96px;
  margin: 0 auto 1.2rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------- article (privacy) */

.page-hero {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-900));
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-hero > .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3rem);
  margin-bottom: .4rem;
}
.page-hero .updated {
  color: var(--text-dim);
  font-size: .92rem;
  margin: 0;
}

.prose {
  max-width: 74ch;
  margin-inline: auto;
}
.prose h2 {
  font-size: clamp(1.3rem, 1.15rem + .7vw, 1.65rem);
  margin-top: 2.2em;
  padding-top: .3em;
  color: var(--paper);
}
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--text-dim); }
.prose ul { padding-left: 1.2em; display: grid; gap: .5rem; margin-bottom: 1.2em; }
.prose strong { color: var(--paper); }

.callout {
  background: linear-gradient(135deg, rgba(47, 158, 68, .18), rgba(29, 111, 208, .12));
  border: 1px solid rgba(47, 158, 68, .4);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-bottom: 2rem;
}
.callout p:last-child { margin-bottom: 0; }
.callout p { color: var(--text); }
.prose .callout h2 { margin-top: 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
  margin-bottom: 1.2rem;
  color: var(--text-dim);
}
.back-link:hover { color: var(--gold-400); }
.back-link svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------- footer */

.site-footer {
  background: #04101f;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  font-size: .93rem;
  color: var(--text-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h4 {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .8rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-grid a { color: var(--text-dim); text-decoration: none; }
.footer-grid a:hover { color: var(--gold-400); text-decoration: underline; }

.footer-brand img { width: 44px; height: 44px; border-radius: 11px; margin-bottom: .7rem; }
.footer-brand p { margin: 0; max-width: 34ch; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------- reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
