/* Palette mirrors the macro app's "Neo Terminal" theme (near-black + electric
   cyan/teal/violet) so the site and the product feel like the same brand. */
:root {
  --bg-deep:    #07080d;
  --bg-card:    #0e1016;
  --bg-surface: #14171f;
  --border:     #262b3a;
  --text:       #eef1fb;
  --text-dim:   #9298ac;
  --text-muted: #575d72;

  --brand:  #22d3ee;
  --teal:   #34e7c4;
  --amber:  #fbbf24;
  --violet: #b06bff;
  --rose:   #fb5273;
  --sky:    #38bdf8;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.03), 0 20px 60px -20px rgba(0,0,0,0.6);
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--text-dim); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.text-gradient {
  background: linear-gradient(90deg, var(--brand), var(--teal) 55%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- ambient background glow ---- */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.bg-glow--one {
  width: 560px; height: 560px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, var(--brand), transparent 70%);
}
.bg-glow--two {
  width: 640px; height: 640px;
  top: 30%; right: -220px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
  opacity: 0.25;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--brand {
  background: linear-gradient(135deg, var(--brand), var(--teal));
  color: #04141a;
  box-shadow: 0 10px 30px -10px color-mix(in srgb, var(--brand) 60%, transparent);
}
.btn--brand:hover { box-shadow: 0 14px 34px -8px color-mix(in srgb, var(--brand) 70%, transparent); }
.btn--ghost {
  background: color-mix(in srgb, var(--text) 4%, transparent);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: color-mix(in srgb, var(--brand) 50%, var(--border)); }
.btn--lg { padding: 15px 30px; font-size: 1.05rem; }

/* ---- nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg-deep) 78%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-right: auto;
  /* Never let this shrink below its natural size -- without this, a
     cramped row shrinks the brand's own box (it's the least visually
     "important" flex item by content, so flexbox happily squeezes it
     first) and its text spills out past that shrunk box into whatever
     sits next to it, rather than the row just running out of room
     honestly. Same reasoning on .nav__links/.nav__actions below. */
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__logo { width: 40px; height: 40px; border-radius: 10px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.nav__links:empty { display: none; }
.nav__links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.auth-slot { display: flex; align-items: center; }
.auth-slot:empty { display: none; }
.auth-slot__user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.auth-slot__logout {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: underline;
  cursor: pointer;
}
.auth-slot__logout:hover { color: var(--text); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
}
.nav__burger span {
  width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  padding: 12px 4px;
  color: var(--text-dim);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.nav__mobile-actions .btn { flex: 1; }
/* #auth-slot-mobile sits in this row too, but it's a <span> wrapping the
   actual .btn, not a .btn itself -- without this, the rule above never
   reaches it, so its login button stays content-sized while its Discord/
   Explore Macros siblings stretch to fill the row. */
.nav__mobile-actions .auth-slot { flex: 1; }
.nav__mobile-actions .auth-slot .btn { flex: 1; }

.nav.is-open .nav__mobile { display: flex; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1320px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
}

/* ---- hero ---- */
.hero {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 24px 40px;
  text-align: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}
.pill--tight { margin-bottom: 18px; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.hero__frame-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- generic section ---- */
.section {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 24px;
}
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section__title { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.section__subtitle { font-size: 1.05rem; }

/* ---- stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.stat-card:hover { border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); transform: translateY(-3px); }
.stat-card__icon {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  margin: 0 auto 16px;
  font-size: 0;
}
.stat-card--offline .stat-card__icon { background: var(--text-muted); box-shadow: none; }
.stat-card--coming .stat-card__icon { background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
}
.stat-card__label {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: 4px;
}
.stat-card--skeleton { opacity: 0.6; }
.stats__updated {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 20px 0 0;
}

/* ---- badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-dim);
}
.badge--live    { color: var(--teal);   border-color: color-mix(in srgb, var(--teal) 40%, var(--border));   background: color-mix(in srgb, var(--teal) 12%, transparent); }
.badge--dev     { color: var(--amber);  border-color: color-mix(in srgb, var(--amber) 40%, var(--border));  background: color-mix(in srgb, var(--amber) 12%, transparent); }
.badge--planned { color: var(--text-dim); border-style: dashed; }

/* ---- macros / product cards ---- */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.products__browse-all {
  text-align: center;
  margin-top: 32px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-card:hover { border-color: color-mix(in srgb, var(--brand) 35%, var(--border)); transform: translateY(-4px); }
.product-card .badge { align-self: flex-start; margin-bottom: 14px; }
.product-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-card__tagline { font-size: 0.95rem; margin-bottom: 18px; }
.product-card__highlights {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.product-card__highlights li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}
.product-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
}
.product-card--planned { border-style: dashed; }
.product-card__cta {
  display: flex;
  align-items: center;
  gap: 40px;
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

/* ---- rdp manager panel ---- */
.rdp-panel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  padding: 52px;
}
.rdp-panel__glow {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 360px; height: 360px;
  background: radial-gradient(circle, color-mix(in srgb, var(--violet) 30%, transparent), transparent 70%);
  filter: blur(20px);
}
.rdp-panel__content { position: relative; }
.rdp-panel h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
.rdp-panel__tagline { font-size: 1.02rem; max-width: 560px; }
.rdp-panel__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rdp-panel__list--last { margin-bottom: 0; }
.rdp-panel__list li {
  font-size: 0.95rem;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
}
.rdp-panel__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 9px; height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--violet), var(--brand));
}
/* ---- feature cards ---- */
.grid--features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: color-mix(in srgb, var(--brand) 35%, var(--border)); transform: translateY(-4px); }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: 0.95rem; }
.card__icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 22px; height: 22px; }
.card__icon--brand  { background: color-mix(in srgb, var(--brand) 16%, transparent); color: var(--brand); }
.card__icon--teal   { background: color-mix(in srgb, var(--teal) 16%, transparent); color: var(--teal); }
.card__icon--violet { background: color-mix(in srgb, var(--violet) 16%, transparent); color: var(--violet); }
.card__icon--sky    { background: color-mix(in srgb, var(--sky) 16%, transparent); color: var(--sky); }
.card__icon--amber  { background: color-mix(in srgb, var(--amber) 16%, transparent); color: var(--amber); }
.card__icon--rose   { background: color-mix(in srgb, var(--rose) 16%, transparent); color: var(--rose); }

/* ---- reviews placeholder ---- */
.reviews-placeholder {
  max-width: 440px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}
.reviews-placeholder__icon {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  color: var(--text-muted);
}
.reviews-placeholder__icon svg { width: 100%; height: 100%; }
.reviews-placeholder__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* ---- steps ---- */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 0 16px;
}
.step__num {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  color: #04141a;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; }
.step__connector {
  flex: 0 0 60px;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--border), var(--brand), var(--border));
  opacity: 0.5;
}
@media (max-width: 720px) {
  .step__connector { display: none; }
}

/* ---- faq ---- */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--brand);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin-top: 14px; margin-bottom: 0; font-size: 0.95rem; }

/* ---- cta band ---- */
.cta-band {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 64px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 10%, var(--bg-card)), color-mix(in srgb, var(--violet) 10%, var(--bg-card)));
}
.cta-band h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.cta-band .hero__actions { margin-bottom: 0; }

/* ---- footer ---- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 24px 28px;
}
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links:empty { display: none; }
.footer__links a, .footer__actions a { color: var(--text-dim); font-size: 0.9rem; }
.footer__links a:hover, .footer__actions a:hover { color: var(--text); }
.footer__actions { display: flex; gap: 18px; }
.footer__copy {
  max-width: 1160px;
  margin: 28px auto 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ---- legal pages ---- */
.legal-page {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.legal-page__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 8px;
}
.legal-page h1 { font-size: clamp(2rem, 5vw, 2.6rem); margin-bottom: 8px; }
.legal-page__updated { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.25rem; margin-top: 40px; }
.legal-page h3 { font-size: 1.02rem; margin-top: 24px; color: var(--text); }
.legal-page p, .legal-page li { font-size: 0.96rem; }
.legal-page ul { padding-left: 22px; margin: 0 0 1em; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.legal-page code {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.88em;
}
/* Flags a spot you still need to fill in (refund window, jurisdiction,
   effective date) before treating this page as final -- deliberately
   loud so it can't be missed and accidentally published as-is. */
.legal-page__todo {
  display: inline;
  background: color-mix(in srgb, var(--amber) 18%, transparent);
  border: 1px dashed var(--amber);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--amber);
  font-weight: 600;
}

/* ---- dashboard ---- */
.dashboard-hero {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 24px 24px;
  text-align: center;
}
.dashboard-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.dashboard-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin: 0;
}

.link-license-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.link-license-card h2 { font-size: 1.15rem; margin-bottom: 8px; }
.link-license-card p { font-size: 0.92rem; margin-bottom: 20px; }
.link-license-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.link-license-input {
  flex: 1 1 220px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text);
  font-size: 0.92rem;
}
.link-license-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--brand) 50%, var(--border));
}
.link-license-result {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.licenses-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.licenses-list__status {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-dim);
}
.license-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.license-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.license-card__head h3 { margin: 0; font-size: 1.1rem; text-transform: capitalize; }
.license-card__meta {
  font-size: 0.92rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}
.license-card__key {
  margin-bottom: 18px;
}
.license-card__key code {
  display: block;
  padding: 8px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-dim);
  overflow-wrap: break-word;
}
.license-card__activations {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
}
.license-instances {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.license-instance {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.license-instance__name {
  flex: 1;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.license-instance--empty { color: var(--text-muted); }
.license-instance__deactivate {
  padding: 6px 14px;
  font-size: 0.8rem;
}
.license-card__cancel {
  margin-top: 18px;
  width: 100%;
  color: var(--rose);
  border-color: color-mix(in srgb, var(--rose) 35%, var(--border));
}
.license-card__cancel:hover {
  border-color: var(--rose);
  background: color-mix(in srgb, var(--rose) 10%, transparent);
}

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
