/* Minimal fallback rules for every class in the shared contract.
 *
 * Always prepended to the model-generated stylesheet, which overrides it via the normal
 * later-wins cascade. This exists because the stylesheet and the pages are generated by
 * separate model calls, so the stylesheet can omit a contract class -- which used to fail
 * the whole build (a real business, find-dog, died on a missing `btn-primary`). With this
 * in place a missed rule degrades to plain-but-styled instead of destroying the build.
 *
 * Keep these deliberately neutral and low-specificity: they are a safety net, not a design.
 */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; line-height: 1.6; }
img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

/* Owner-uploaded pictures. Without explicit sizing an <img> renders at its natural size,
 * so a phone photo used as a logo would fill the whole header. */
.logo-mark { height: 2.5rem; width: auto; object-fit: contain; }
.hero-image { width: 100%; max-height: 420px; object-fit: cover; border-radius: .5rem; }
.gallery-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: .5rem; }
.about-image { width: 100%; max-width: 420px; border-radius: .5rem; }

.site-header { padding: 1rem 0; }
.header-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 700; }
.logo-text { font-weight: 700; }
.main-nav { display: block; }
.nav-list { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.nav-link { text-decoration: none; }
.nav-link:hover, .nav-link:focus { text-decoration: underline; }
.is-current { font-weight: 700; }

.hero, .page-hero { padding: 3rem 0; }

/* A photo sitting BEHIND the hero text instead of above it. The picture itself is set as
 * an inline `background-image` on the element, because it is per-business data the
 * stylesheet cannot know; these rules supply the darkening overlay and the stacking that
 * keep the heading readable over any photo, light or dark.
 *
 * Exists because an owner asked twice for exactly this and there was no way to express
 * it -- the only picture vocabulary was `.hero-image`, an <img> in the normal page flow. */
.hero-bg { position: relative; background-size: cover; background-position: center;
  padding: 5rem 0; overflow: hidden; }
.hero-bg::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.hero-bg > * { position: relative; z-index: 1; }
.hero-bg .hero-title, .hero-bg .hero-subtitle { color: #fff; }
.hero-inner { display: flex; flex-direction: column; gap: 1rem; }
.hero-title { margin: 0; font-size: clamp(1.75rem, 4vw, 3rem); line-height: 1.15; }
.hero-subtitle { margin: 0; font-size: 1.125rem; }

.section { padding: 3rem 0; }
.section-alt { padding: 3rem 0; }
.section-title { margin: 0 0 1rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.section-intro { margin: 0 0 1.5rem; max-width: 60ch; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card { padding: 1.25rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.card-title { margin: 0 0 .5rem; font-size: 1.125rem; }
.card-text { margin: 0; }

.steps { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-number { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid currentColor; font-weight: 700; }
.step-title { margin: 0 0 .25rem; font-size: 1.05rem; }
.step-text { margin: 0; }

/* FAQ items are <details>/<summary>: they expand on click with no JavaScript. */
html { scroll-behavior: smooth; }
.faq-list { display: grid; gap: 1rem; margin: 0; padding: 0; }
.faq-item { padding: 1rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.faq-question { margin: 0; font-size: 1.05rem; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "+"; font-weight: 700; flex: 0 0 auto; }
details[open] > .faq-question::after { content: "\2212"; }
.faq-answer { margin: .75rem 0 0; }

.cta-band { padding: 3rem 0; text-align: center; }
.cta-title { margin: 0 0 .5rem; font-size: clamp(1.3rem, 3vw, 1.9rem); }
.cta-text { margin: 0 0 1.25rem; }

.btn { display: inline-block; padding: .7rem 1.4rem; border-radius: .4rem; text-decoration: none;
  border: 1px solid currentColor; cursor: pointer; }
.btn:hover, .btn:focus { opacity: .85; }
.btn-primary { font-weight: 600; }
.btn-secondary { font-weight: 500; background: transparent; }

.contact-list { display: grid; gap: .75rem; list-style: none; margin: 0; padding: 0; }
.contact-item { display: flex; flex-wrap: wrap; gap: .5rem; }
.contact-label { font-weight: 600; }
.contact-value { }

.site-footer { padding: 2rem 0; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.footer-col { }
.footer-title { margin: 0 0 .5rem; font-size: 1rem; }
.footer-note { margin: 0; font-size: .9rem; }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .step { flex-direction: column; }
}

/* ---- generated ---- */
:root {
  --font-display: "Unbounded", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --color-bg: #0a0e12;
  --color-surface: #121921;
  --color-ink: #e8f2ec;
  --color-muted: #848b8a;
  --color-border: #2b3033;
  --color-accent: #00ff88;
  --color-accent-ink: #111111;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-ink);
}

h1, h2, h3,
.hero-title, .section-title, .card-title, .cta-title, .step-title, .footer-title, .logo-text {
  font-family: var(--font-display);
}

/* ==========================================================================
   5-Minute Site Bot — shared stylesheet
   Dark developer-console world. Every heading reads like terminal output.
   ========================================================================== */

:root {
  /* palette — decided */
  --bg: #0a0e12;
  --surface: #121921;
  --text: #e8f2ec;
  --text-dim: #848b8a;
  --border: #2b3033;
  --accent: #00ff88;
  --accent-ink: #111111;

  /* type */
  --font-display: "Unbounded", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;

  /* spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 9rem;

  /* shape — deliberately sharp, like a console window */
  --radius: 0;
  --radius-sm: 2px;

  /* shadows — a faint green terminal glow, never grey mush */
  --shadow-rest: 0 0 0 1px var(--border);
  --shadow-lift: 0 12px 32px rgba(0, 255, 136, 0.08), 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px rgba(0, 255, 136, 0.25);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 200ms;

  scroll-behavior: smooth;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0 0 var(--space-3);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}

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

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

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* console-flavoured scrollbar where supported */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #1f2a33;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  width: min(100% - 3rem, 1160px);
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding: var(--space-3) 0;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* the bot's own caret, parked next to its name */
.logo::before {
  content: "";
  display: inline-block;
  width: 0.55em;
  height: 1.05em;
  background: var(--accent);
  align-self: center;
}

.main-nav {
  display: block;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-dim);
  padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.is-current {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* state hook: if a page's script toggles the nav open, keep it usable */
.main-nav.is-open .nav-list {
  display: flex;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(43, 48, 51, 0.35) 0 1px,
      transparent 1px 80px
    ),
    radial-gradient(
      ellipse 80% 60% at 20% 0%,
      rgba(0, 255, 136, 0.07),
      transparent 65%
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-8) 0 var(--space-7);
  max-width: 46rem; /* asymmetric: text holds the left, air holds the right */
}

.page-hero .hero-inner {
  padding: var(--space-7) 0 var(--space-6);
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-dim);
  max-width: 38rem;
  margin: 0 0 var(--space-5);
}

/* photo-behind-text variant — abstract neural network / AI technology visual.
   !important so it overrides any leftover inline background-image from the page. */
.hero.hero-bg {
  background-image:
    url("https://images.unsplash.com/photo-1620712943543-bcc4688e7485?q=80&w=1920&auto=format&fit=crop") !important; /* abstract neural network / glowing circuit */
  background-size: cover;
  background-position: center;
}

.hero.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 14, 18, 0.96) 0%,
    rgba(10, 14, 18, 0.82) 55%,
    rgba(10, 14, 18, 0.55) 100%
  );
}

/* centred hero on desktop screens */
@media (min-width: 900px) {
  .hero-inner {
    align-items: center;
    margin-inline: auto;
  }

  .hero-inner > * {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   THE SIGNATURE DEVICE — terminal prompt on every major heading
   "~/" plus a static green cursor block
   -------------------------------------------------------------------------- */

.section-title::before,
.hero-title::before,
.cta-title::before,
.footer-title::before {
  content: "~/ ";
  color: var(--accent);
  font-weight: 800;
}

.section-title::after,
.hero-title::after,
.cta-title::after {
  content: "";
  display: inline-block;
  width: 0.45em;
  height: 0.85em;
  margin-left: 0.18em;
  background: var(--accent);
  vertical-align: baseline;
}

/* smaller headings get the shell dollar sign instead */
.card-title::before {
  content: "$ ";
  color: var(--accent);
}

.step-title::before {
  content: "> ";
  color: var(--accent);
}

.faq-question::before {
  content: "? ";
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: var(--space-7) 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.section-intro {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 62ch;
  margin: 0 0 var(--space-6);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: var(--space-4);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: var(--space-5) var(--space-4);
  box-shadow: var(--shadow-rest);
  transition: transform var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent);
  box-shadow: var(--shadow-lift);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.card-text {
  color: var(--text-dim);
  margin: 0;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  counter-reset: steps;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: var(--space-4);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 3.5rem;
  min-height: 3.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

@supports not (-webkit-text-stroke: 2px var(--accent)) {
  .step-number {
    color: var(--accent);
  }
}

.step-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.step-text {
  color: var(--text-dim);
  margin: 0;
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   FAQ — native <details>, dressed up
   -------------------------------------------------------------------------- */

.faq-list {
  max-width: 52rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  margin-bottom: var(--space-3);
  transition: border-color var(--speed) var(--ease);
}

.faq-item[open] {
  border-left-color: var(--accent);
}

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-question {
  display: block;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: var(--space-4);
  color: var(--text);
  transition: color var(--speed) var(--ease);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::marker {
  content: "";
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 400;
  transition: transform var(--speed) var(--ease);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-4) var(--space-4);
  color: var(--text-dim);
  border-top: 1px dashed var(--border);
  padding-top: var(--space-3);
  margin: 0 var(--space-0, 0);
}

/* --------------------------------------------------------------------------
   CTA band — full-bleed electric green, black type
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--accent);
  color: var(--accent-ink);
  padding: var(--space-7) 0;
  text-align: left;
}

.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--accent-ink);
  margin-bottom: var(--space-2);
}

.cta-band .cta-title::before {
  color: var(--accent-ink);
}

.cta-band .cta-title::after {
  background: var(--accent-ink);
}

.cta-text {
  color: var(--accent-ink);
  opacity: 0.82;
  font-size: 1.1rem;
  max-width: 44ch;
  margin: 0;
}

.cta-band .btn {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.85em 1.7em;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background var(--speed) var(--ease),
              color var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              transform var(--speed) var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* buttons sitting on the green band invert cleanly */
.cta-band .btn-primary {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: var(--accent);
}

.cta-band .btn-primary:hover {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--accent);
}

.cta-band .btn-secondary {
  color: var(--accent-ink);
  border-color: var(--accent-ink);
}

.cta-band .btn-secondary:hover {
  background: var(--accent-ink);
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Contact details
   -------------------------------------------------------------------------- */

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: var(--space-3);
  align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--border);
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}

.contact-value a {
  color: var(--accent);
}

.contact-value a:hover {
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: #06090c;
  border-top: 1px solid var(--border);
  padding: var(--space-6) 0 var(--space-5);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-5);
}

.footer-col {
  min-width: 0;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: var(--space-3);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: var(--space-2);
}

.footer-note {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.88rem;
}

.footer-note::before {
  content: "// ";
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Scroll-reveal state hooks — added BY SCRIPT ONLY.
   Without JavaScript these classes never exist, so content is never hidden.
   -------------------------------------------------------------------------- */

.is-visible {
  animation: rise-in 400ms var(--ease) both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* tab / carousel dot state hooks */
.is-active {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-inner {
    max-width: 42rem;
  }

  .footer-inner {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --space-7: 4.5rem;
    --space-8: 6rem;
  }

  .header-inner {
    justify-content: center;
    text-align: center;
  }

  .main-nav {
    width: 100%;
  }

  .nav-list {
    justify-content: center;
  }

  .hero-inner {
    max-width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    width: 100%;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: var(--space-1);
    padding: var(--space-3) 0;
  }

  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --space-6: 3rem;
    --space-7: 3.5rem;
  }

  body {
    font-size: 1rem;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
  }

  .nav-link {
    display: block;
    padding: var(--space-1) var(--space-3);
  }

  .step {
    padding: var(--space-4);
  }

  .btn {
    width: 100%;
  }

  .faq-question::after {
    float: none;
    display: inline-block;
    margin-left: var(--space-2);
  }
}

/* --------------------------------------------------------------------------
   Reduced motion — cut everything
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .is-visible {
    animation: none;
  }

  .card:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}