/* ============================================================
   Kennedy Solutions — Aurora Dark design system
   Zero-build static site. Vanilla CSS.
   ============================================================ */

:root {
  --bg: #05060f;
  --bg-2: #090b1a;
  --text: #f4f6ff;
  --muted: #9aa4c2;
  --muted-dim: #6b7599;

  --violet: #8b7bff;
  --cyan: #4fd8ff;
  --magenta: #ff6ad5;
  --lime: #7ef0c5;

  --accent-grad: linear-gradient(120deg, #8b7bff 0%, #4fd8ff 55%, #7ef0c5 100%);
  --text-grad: linear-gradient(120deg, #ffffff 0%, #c7cbff 40%, #7fe6ff 75%, #a6fff0 100%);

  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);

  --radius: 22px;
  --radius-lg: 30px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --maxw: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(139, 123, 255, 0.35);
  color: #fff;
}

h1, h2, h3, .brand, .stat-num {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
}

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

/* ---------- Living aurora background ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora::before,
.aurora::after,
.aurora .blob {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.aurora::before {
  width: 55vw;
  height: 55vw;
  top: -12vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(139, 123, 255, 0.9), transparent 68%);
  animation: drift1 22s var(--ease) infinite alternate;
}

.aurora::after {
  width: 48vw;
  height: 48vw;
  top: -6vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(79, 216, 255, 0.75), transparent 66%);
  animation: drift2 26s var(--ease) infinite alternate;
}

.aurora .blob {
  width: 42vw;
  height: 42vw;
  bottom: -14vw;
  left: 28vw;
  background: radial-gradient(circle, rgba(255, 106, 213, 0.55), transparent 66%);
  animation: drift3 30s var(--ease) infinite alternate;
}

@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(8vw, 10vh) scale(1.15); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-10vw, 12vh) scale(1.2); }
}
@keyframes drift3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-6vw, -10vh) scale(1.25); }
}

/* fine grain / noise overlay for premium texture */
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor spotlight */
.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 123, 255, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transform: translate3d(-9999px, -9999px, 0);
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cyan);
}

.grad-text {
  background: var(--text-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 56ch;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6, 8, 20, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-weight: 700;
  color: #0a0b16;
  background: var(--accent-grad);
  box-shadow: 0 8px 24px rgba(79, 216, 255, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: none;
}

@media (min-width: 780px) {
  .nav-cta { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  position: relative;
  color: #070a16;
  background: var(--accent-grad);
  background-size: 180% 180%;
  box-shadow: 0 12px 34px rgba(79, 216, 255, 0.28);
  animation: sheen 6s ease infinite;
}

.btn-primary:hover {
  box-shadow: 0 18px 46px rgba(139, 123, 255, 0.45);
}

@keyframes sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-ghost {
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--glass-strong);
}

/* ---------- Glass primitive + spotlight-on-hover ---------- */
.glass {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* light that reveals near the cursor, per-card via --mx/--my */
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(139, 123, 255, 0.22),
    transparent 60%
  );
  pointer-events: none;
}

.glow-card:hover::before {
  opacity: 1;
}

/* thin gradient hairline on top */
.glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.28), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- Pills ---------- */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 15px;
  font-size: 0.86rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.pill-dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  vertical-align: middle;
}

/* ---------- Hero ---------- */
.hero {
  padding: 70px 0 40px;
}

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

@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 48px; }
  .hero { padding: 96px 0 60px; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  line-height: 1.04;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero .lead {
  font-size: 1.15rem;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

/* floating feature card */
.perspective {
  perspective: 1200px;
}

.hero-card {
  padding: 28px;
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease);
}

.hero-card .float {
  transform: translateZ(40px);
}

.mini-label {
  margin: 0 0 6px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-card h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.hero-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text);
  font-size: 0.96rem;
}

.hero-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lime);
}

.hero-card .card-meter {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-card .card-meter b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-card .card-meter span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Marquee ---------- */
.marquee {
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted-dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee-track span::after {
  content: "✦";
  color: var(--violet);
  font-size: 0.8rem;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section shell ---------- */
.section {
  padding: 80px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin: 0 0 14px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 780px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  padding: 30px 24px;
  text-align: center;
}

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (min-width: 900px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
  }
  .bento .b-wide { grid-column: span 4; }
  .bento .b-tall { grid-column: span 2; }
  .bento .b-third { grid-column: span 2; }
}

.bento-cell {
  padding: 30px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease);
}

.bento-cell:hover {
  transform: translateY(-4px);
}

.b-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(139, 123, 255, 0.14);
  border: 1px solid var(--border);
  color: var(--cyan);
  margin-bottom: 20px;
}

.bento-cell h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.bento-cell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.b-wide {
  background:
    radial-gradient(600px circle at 15% 0%, rgba(139, 123, 255, 0.16), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
}

/* ---------- Showcase (Unilearnit) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 940px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.showcase-grid h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--text);
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--lime);
}

.feature-list li span {
  color: var(--muted);
}

.feature-list li b {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
}

/* mock UI panel */
.mock {
  padding: 18px;
}

.mock-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.mock-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mock-bar i:first-child { background: #ff6a6a; }
.mock-bar i:nth-child(2) { background: #ffcf5c; }
.mock-bar i:nth-child(3) { background: var(--lime); }

.mock-screen {
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(139, 123, 255, 0.12), rgba(79, 216, 255, 0.06));
  border: 1px solid var(--border);
  padding: 22px;
}

.mock-row {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
}

.mock-row.w70 { width: 70%; }
.mock-row.w40 { width: 40%; background: var(--accent-grad); }
.mock-row.w90 { width: 90%; }

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.mock-cards div {
  height: 62px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.mock-cards div:first-child {
  background: linear-gradient(160deg, rgba(126, 240, 197, 0.25), transparent);
}

/* ---------- Projects row ---------- */
.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 680px) {
  .projects { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .projects { grid-template-columns: repeat(3, 1fr); }
}

.project-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease);
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-tag {
  align-self: flex-start;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 20px;
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
}

.project-card p {
  margin: 0 0 24px;
  color: var(--muted);
  flex-grow: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  width: fit-content;
  transition: gap 0.25s ease;
}

.project-link:hover {
  gap: 14px;
}

.project-link svg {
  color: var(--cyan);
}

/* ---------- Process timeline ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
}

@media (min-width: 780px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  padding: 32px;
}

.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #070a16;
  background: var(--accent-grad);
  margin-bottom: 20px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

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

/* ---------- Contact ---------- */
.contact-card {
  padding: clamp(30px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .contact-card { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}

.contact-card h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 0 0 14px;
  line-height: 1.1;
}

.contact-meta {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-meta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.contact-meta a svg { color: var(--cyan); }
.contact-meta a:hover { color: var(--cyan); }

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-dim);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(139, 123, 255, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form .btn {
  margin-top: 6px;
  justify-self: start;
}

.form-note {
  font-size: 0.84rem;
  color: var(--muted-dim);
  margin: 4px 0 0;
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  width: 100%;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted-dim);
  font-size: 0.86rem;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================================================
   Simple subpage (Apella Produce)
   ============================================================ */
.subpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.subpage-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 40px 0 80px;
}

.subpage-card {
  max-width: 660px;
  text-align: center;
  padding: clamp(36px, 6vw, 64px);
}

.subpage-card .badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #07120e;
  font-size: 1.8rem;
  box-shadow: 0 12px 34px rgba(126, 240, 197, 0.3);
}

.subpage-card h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin: 0 0 16px;
}

.subpage-card p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 auto 30px;
  max-width: 48ch;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 620px) {
  .nav-links { gap: 18px; }
  .nav-links .hide-sm { display: none; }
  .section { padding: 60px 0; }
  .hero-actions .btn,
  .subpage-actions .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .spotlight { display: none; }
}
