/* ==========================================================================
   EmpyManager — main stylesheet
   No frameworks, no build step. Design tokens first, then components.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --brand:        #8167e6;
  --brand-soft:   #9a86f0;
  --brand-deep:   #6247c9;
  --brand-rgb:    129, 103, 230;
  --accent:       #f0a33c;   /* the warm tone from the logo */

  /* Surfaces — dark by design; this is a Discord product */
  --bg:           #0c0a14;
  --bg-alt:       #100d1c;
  --surface:      #171328;
  --surface-2:    #1e1935;
  --line:         rgba(255, 255, 255, .09);
  --line-strong:  rgba(255, 255, 255, .16);

  /* Text */
  --text:         #ece9f5;
  --text-muted:   #a49fbd;
  --text-dim:     #7c7796;

  /* Type */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(.85rem,  .82rem + .15vw, .92rem);
  --step-0:  clamp(1rem,    .96rem + .2vw,  1.06rem);
  --step-1:  clamp(1.13rem, 1.05rem + .4vw, 1.3rem);
  --step-2:  clamp(1.35rem, 1.2rem + .75vw, 1.75rem);
  --step-3:  clamp(1.75rem, 1.45rem + 1.5vw, 2.6rem);
  /* Sized so the longest rotator word ("temporary channels") fits the hero
     column on one line at every width — see .rotator. */
  --step-4:  clamp(1.75rem, 1.3rem + 2.4vw, 3.4rem);

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-full: 999px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .3);
  --shadow-md: 0 18px 45px -20px rgba(0, 0, 0, .8);
  --shadow-brand: 0 20px 60px -25px rgba(var(--brand-rgb), .75);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -.02em; }
h4 { font-size: var(--step-0); }

p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--brand-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(var(--brand-rgb), .4); color: #fff; }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  padding: .7rem 1.2rem;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.icon { width: 1.15em; height: 1.15em; flex: none; fill: currentColor; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: min(1180px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.container-narrow { width: min(760px, 100% - var(--gutter) * 2); }

.section { padding-block: var(--section-y); position: relative; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.stack-xl { display: grid; gap: clamp(4rem, 8vw, 7rem); }

/* rem, not ch — `ch` here resolves against this block's 1rem font size, which
   is far too narrow for the h2 inside it and forces early wraps. */
.section-head {
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-sub {
  max-width: 46ch;
  margin: .9rem auto 0;
  color: var(--text-muted);
  font-size: var(--step-1);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand-soft);
  margin-bottom: 1rem;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(240, 163, 60, .18);
}

/* --------------------------------------------------------------------------
   4. Ambient background
   -------------------------------------------------------------------------- */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
}
.blob-1 {
  width: 60vw; height: 60vw;
  max-width: 780px; max-height: 780px;
  top: -22vw; right: -14vw;
  background: radial-gradient(circle, rgba(var(--brand-rgb), .85), transparent 68%);
}
.blob-2 {
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  top: 34vh; left: -18vw;
  background: radial-gradient(circle, rgba(240, 163, 60, .35), transparent 68%);
  opacity: .35;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 20%, transparent 78%);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .72rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 600;
  font-size: var(--step--1);
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: .95rem 1.8rem; font-size: var(--step-0); }

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--brand-soft), var(--brand-deep));
  --btn-fg: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { --btn-fg: #fff; box-shadow: 0 24px 70px -22px rgba(var(--brand-rgb), .95); }

.btn-ghost {
  --btn-bg: rgba(255, 255, 255, .04);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  --btn-bg: rgba(255, 255, 255, .08);
  border-color: rgba(var(--brand-rgb), .6);
  color: var(--text);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease),
              backdrop-filter .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(12, 10, 20, .78);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand:hover { color: var(--text); }
.brand-logo { border-radius: 9px; }
.brand-name { font-size: 1.1rem; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav > a:not(.btn) {
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 500;
  position: relative;
  padding-block: .4rem;
}
.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--brand-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--text); }
.nav > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { margin-left: .35rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(3.5rem, 8vw, 7rem) var(--section-y); }

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.hero-copy .lead {
  color: var(--text-muted);
  font-size: var(--step-1);
  max-width: 52ch;
  margin-top: 1.5rem;
}

/* Block-level flex, not inline-flex: an *empty* inline-flex box takes its
   baseline from its bottom margin edge, which made the line taller while the
   word was erased. Block-level takes it out of inline layout entirely.
   `min-height` holds the line open at zero characters, and `nowrap` stops the
   longest word from wrapping and reflowing the whole headline. */
.rotator {
  display: flex;
  align-items: center;
  min-height: 1.15em;
  white-space: nowrap;
}
/* The gradient clip lives on the text itself — a `background-clip: text`
   ancestor swallows child backgrounds (i.e. the caret) in WebKit. */
.rotator-text {
  background: linear-gradient(100deg, var(--brand-soft) 10%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.caret {
  width: 3px;
  height: .82em;
  margin-left: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: blink 1.05s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.25rem;
}

/* --------------------------------------------------------------------------
   8. Media frames
   -------------------------------------------------------------------------- */
.frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}
.frame-glow { box-shadow: var(--shadow-md), 0 0 90px -30px rgba(var(--brand-rgb), .7); }

.frame-bar {
  display: flex;
  gap: 7px;
  padding: .7rem .9rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.frame-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}
.frame-bar span:first-child { background: rgba(240, 100, 100, .55); }
.frame-bar span:nth-child(2) { background: rgba(240, 190, 90, .5); }
.frame-bar span:nth-child(3) { background: rgba(120, 210, 140, .45); }

.frame img,
.frame-media { width: 100%; height: auto; background: var(--surface-2); }

/* --------------------------------------------------------------------------
   9. Trust strip
   -------------------------------------------------------------------------- */
.strip { padding-bottom: clamp(1rem, 3vw, 2rem); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(var(--brand-rgb), .07), rgba(255, 255, 255, .015));
  overflow: hidden;
}

.stat {
  /* Semantic order is label-then-value; the value reads first visually. */
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: .3rem;
  padding: 1.6rem 1rem;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--line); }

.stat dd {
  margin: 0;
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(140deg, #fff 15%, var(--brand-soft) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat dt {
  font-size: var(--step--1);
  color: var(--text-dim);
  letter-spacing: .01em;
}
.stat-plus { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.stat-inf { font-size: 1.25em; line-height: .8; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   10. Feature cards
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.card {
  position: relative;
  padding: 1.9rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--surface), rgba(23, 19, 40, .55));
  transition: transform .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), .7), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb), .38);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 1.15rem;
  border-radius: 13px;
  background: rgba(var(--brand-rgb), .14);
  border: 1px solid rgba(var(--brand-rgb), .28);
  color: var(--brand-soft);
}
.card-icon .icon { width: 22px; height: 22px; }

.card h3 { margin-bottom: .55rem; }
.card p { color: var(--text-muted); font-size: var(--step--1); line-height: 1.7; }

/* Premium note — a quiet warm aside under the grid, not a seventh card. */
.premium {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: 1.1rem 1.5rem;
  border: 1px solid rgba(240, 163, 60, .26);
  border-radius: var(--r-md);
  background: linear-gradient(100deg, rgba(240, 163, 60, .09), rgba(240, 163, 60, .02));
}
.premium .card-icon {
  margin: 0;
  width: 40px; height: 40px;
  background: rgba(240, 163, 60, .13);
  border-color: rgba(240, 163, 60, .3);
  color: var(--accent);
}
.premium .card-icon .icon { width: 20px; height: 20px; }
.premium p { color: var(--text-muted); font-size: var(--step--1); }
.premium strong { color: var(--text); font-weight: 600; }

/* --------------------------------------------------------------------------
   11. Split showcase
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}
/* Keep the media column the wider one in both directions. */
.split-reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.split-reverse .split-copy { order: 2; }
.split-copy p {
  color: var(--text-muted);
  font-size: var(--step-1);
  margin-top: 1.1rem;
  max-width: 42ch;
}

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
}
.faq details + details { border-top: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 10px; height: 10px;
  flex: none;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .28s var(--ease), border-color .2s var(--ease);
}
.faq summary:hover { background: rgba(255, 255, 255, .03); }
.faq details[open] summary { color: var(--brand-soft); }
.faq details[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
  border-color: var(--brand-soft);
}
.faq details p {
  padding: 0 1.4rem 1.35rem;
  color: var(--text-muted);
  font-size: var(--step--1);
  max-width: 70ch;
}

/* --------------------------------------------------------------------------
   13. CTA
   -------------------------------------------------------------------------- */
.cta { padding-block: var(--section-y); }
.cta-inner {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.5rem) var(--gutter);
  text-align: center;
  border: 1px solid rgba(var(--brand-rgb), .3);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 70% 130% at 50% 0%, rgba(var(--brand-rgb), .28), transparent 70%),
    var(--surface);
  overflow: hidden;
}
.cta-inner p {
  color: var(--text-muted);
  font-size: var(--step-1);
  margin: 1rem auto 0;
  max-width: 48ch;
}
.cta-inner .hero-actions { justify-content: center; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  font-size: var(--step--1);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  padding-bottom: 3rem;
}
.footer-brand p { color: var(--text-dim); margin-top: 1rem; max-width: 32ch; }

.footer-col h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: var(--step--1);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--brand-soft); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   15. Back to top
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(23, 19, 40, .85);
  backdrop-filter: blur(10px);
  color: var(--text-muted);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              visibility .3s, border-color .2s var(--ease), color .2s var(--ease);
}
.to-top .icon { transform: rotate(-90deg); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { color: var(--text); border-color: rgba(var(--brand-rgb), .6); }

/* --------------------------------------------------------------------------
   16. Scroll reveal
   -------------------------------------------------------------------------- */
/* Scoped to `.js` so the page is fully visible when scripting is off or fails —
   content must never depend on an observer having fired. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split-reverse { grid-template-columns: 1fr; }
  .hero-media { max-width: 620px; margin-inline: auto; }
  .split-reverse .split-copy { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 72px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: 1.25rem var(--gutter) 2rem;
    background: rgba(12, 10, 20, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav > a:not(.btn) {
    padding: .85rem .25rem;
    font-size: var(--step-0);
    border-bottom: 1px solid var(--line);
  }
  .nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin: 1.1rem 0 0; justify-content: center; padding-block: .9rem; }
}

@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .premium { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero-actions .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inner .hero-actions .btn { flex: 1 1 100%; }
}

/* --------------------------------------------------------------------------
   18. Motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .caret { display: none; }
}

@media print {
  .bg-decor, .site-header, .to-top, .cta { display: none; }
  body { background: #fff; color: #000; }
}
