:root {
  --bg: #eef0f4;
  --bg-elev: #ffffff;
  --bg-soft: #e2e5ec;
  --ink: #141820;
  --muted: #5a6170;
  --line: #d0d4dc;
  --accent: #0f5c4c;
  --accent-soft: #e4f1ed;
  --accent-ink: #ffffff;
  --danger: #b42318;
  --ok: #0f5c4c;
  --hero: #12161e;
  --radius: 6px;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --max: 1100px;
  --pad: clamp(1.25rem, 4vw, 2rem);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background:
    linear-gradient(180deg, #f5f6f8 0%, var(--bg) 28%, var(--bg) 100%);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
a:hover { color: color-mix(in srgb, var(--accent) 80%, black); }

.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* === top bar === */
.topbar {
  background: color-mix(in srgb, var(--bg-elev) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: 64px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.brand {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.brand a { color: inherit; text-decoration: none; }
.tagline { color: var(--muted); margin-top: 0.35rem; max-width: 48ch; font-size: 0.95rem; }
.nav { display: flex; gap: 0.1rem; flex-wrap: wrap; align-items: center; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a.nav-cta {
  margin-left: 0.35rem;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.5rem 0.95rem;
}
.nav a.nav-cta:hover {
  background: color-mix(in srgb, var(--accent) 88%, black);
  color: var(--accent-ink);
}

/* === hero === */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero);
  color: #f2f3f5;
}
.hero-plane {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, #1a3d36 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, #1a2433 0%, transparent 50%),
    linear-gradient(165deg, #12161e 0%, #171c26 100%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  min-height: min(86vh, 680px);
  align-items: center;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}
.hero-copy { max-width: 34rem; }
.hero-brand {
  font-family: var(--display);
  font-size: clamp(2.15rem, 5.5vw, 3.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.035em;
  line-height: 1;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  color: #c9d0db;
  max-width: 22ch;
}
.hero-lead {
  color: #9aa3b2;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 40ch;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.hero-note {
  color: #7d8696;
  font-size: 0.86rem;
  font-weight: 500;
}
.hero a.primary.btn-link {
  background: #f2f4f7;
  color: var(--hero);
  border: none;
}
.hero a.primary.btn-link:hover {
  background: #fff;
  color: var(--hero);
}
.hero a.ghost.btn-link {
  border-color: #3a4254;
  color: #e8e9ed;
  background: transparent;
}
.hero a.ghost.btn-link:hover {
  border-color: #8b93a3;
  color: #fff;
}

.hero-product {
  background: #f7f8fa;
  color: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 24px 60px rgba(0, 0, 0, 0.45);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  animation: product-settle 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero-product-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: #e8eaef;
  border-bottom: 1px solid #d5d8e0;
}
.hero-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #c5cad3;
}
.hero-dot:nth-child(1) { background: #e8a0a0; }
.hero-dot:nth-child(2) { background: #e0c48a; }
.hero-dot:nth-child(3) { background: #9dcaa8; }
.hero-url {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-product-body { padding: 1.25rem 1.35rem 1.4rem; }
.hero-product-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.hero-product-title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: none;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.hero-product-meta {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.hero-product-excerpt {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.hero-product-thread { display: grid; gap: 0.5rem; }
.hero-msg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  display: grid;
  gap: 0.15rem;
}
.hero-msg.reply { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 25%, var(--line)); }
.hero-msg strong { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); }

@keyframes product-settle {
  from { opacity: 0; transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(20px); }
  to { opacity: 1; transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-rise {
  opacity: 0;
  animation: rise-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }
  .hero-product {
    transform: none;
    max-width: 32rem;
  }
  @keyframes product-settle {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* === page === */
main.page {
  padding-top: 2.75rem;
  padding-bottom: 1rem;
}
section { margin-top: 3.75rem; }
section:first-child { margin-top: 0; }

.trust-strip {
  margin-top: 0;
  padding: 1.35rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
.trust-strip p {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 46ch;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 24ch;
  line-height: 1.15;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.section-head .section-sub { margin-bottom: 0; }
.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1.35rem;
  max-width: 54ch;
  line-height: 1.55;
}
.section-sub a { color: var(--ink); font-weight: 600; }

.writing-sample {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.writing-sample-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.5rem;
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
}
.writing-sample-head h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
  max-width: 28ch;
  line-height: 1.2;
}
.writing-sample-meta {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 28ch;
  align-self: end;
}
.writing-sample-body {
  padding: 1.6rem 1.5rem 1.8rem;
  max-width: 68ch;
}
.writing-sample-body p {
  margin-bottom: 1.05rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--ink) 92%, var(--muted));
}
.writing-sample-body h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.4rem 0 0.65rem;
}
.writing-sample-body ul {
  margin: 0 0 1.05rem 1.2rem;
  color: var(--muted);
}
.writing-sample-body li { margin-bottom: 0.35rem; line-height: 1.5; }

.catalog {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  overflow: hidden;
}
.catalog-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.catalog-item:last-child { border-bottom: none; }
.catalog-item:hover { background: var(--accent-soft); color: inherit; }
.catalog-item .price {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.catalog-item .price small {
  display: block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.catalog-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.catalog-item p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 52ch;
  line-height: 1.5;
}
.catalog-item .order-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .catalog-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

.include-list {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  display: grid;
  gap: 0.35rem;
  max-width: 52ch;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 0.5rem;
}
@media (max-width: 800px) {
  .flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .flow { grid-template-columns: 1fr; }
}
.flow-step { display: grid; gap: 0.35rem; }
.flow-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.flow-step h3 { font-size: 1.05rem; font-weight: 700; }
.flow-step p { color: var(--muted); font-size: 0.9rem; }

.honest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 720px) {
  .honest-grid { grid-template-columns: 1fr; }
}
.honest {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.honest h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.honest-note p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}
.honest-note strong { color: var(--ink); }

.sample-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.plain-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.plain-list li { margin-bottom: 0.45rem; line-height: 1.45; }

.brief-form { margin-top: 0.25rem; }
.closing {
  border-top: 1px solid var(--line);
  padding-top: 2.75rem;
  margin-top: 3.5rem;
}
.closing h2 { max-width: 20ch; }

/* === shared UI === */
.panel, .card {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.panel { display: grid; gap: 0.85rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}
.card h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.card p { color: var(--muted); font-size: 0.9rem; }

label {
  font-size: 0.8rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}
input, textarea, select {
  width: 100%;
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-weight: 400;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elev);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
textarea { min-height: 140px; resize: vertical; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 640px) { .row { grid-template-columns: 1fr; } }

.actions { display: flex; gap: 0.65rem; flex-wrap: wrap; align-items: center; }
button.primary, button.ghost {
  border-radius: var(--radius);
  padding: 0.72rem 1.2rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
button.primary {
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
}
button.primary:hover { background: color-mix(in srgb, var(--accent) 88%, black); }
button.ghost {
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--line);
}
button.ghost:hover { background: var(--bg-soft); }
button:disabled { opacity: 0.45; cursor: not-allowed; }

.hint { color: var(--muted); font-size: 0.8rem; }
.output {
  min-height: 72px;
  white-space: pre-wrap;
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.output.ready {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ok) 40%, var(--line));
  background: var(--accent-soft);
}
.output.error { color: var(--danger); }
.output a { color: var(--accent); font-weight: 700; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
th, td {
  text-align: left;
  padding: 0.6rem 0.45rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { color: var(--muted); font-weight: 600; }

.badge {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  background: var(--bg);
}
.badge.review, .badge.queued {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  color: var(--accent);
  background: var(--accent-soft);
}
.badge.failed { border-color: var(--danger); color: var(--danger); }
.badge.delivered {
  color: var(--ok);
  border-color: color-mix(in srgb, var(--ok) 35%, var(--line));
  background: var(--accent-soft);
}
.badge.running, .badge.claimed { color: var(--ink); }

footer.site-footer {
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  margin-top: 3.5rem;
  padding: 2rem 0 2.75rem;
  background: var(--bg-elev);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: start;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--ink); }

.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.8rem; }

.btn-link {
  display: inline-block;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.72rem 1.2rem;
  font-weight: 700;
}
a.primary.btn-link {
  background: var(--accent);
  color: var(--accent-ink);
}
a.primary.btn-link:hover {
  background: color-mix(in srgb, var(--accent) 88%, black);
  color: var(--accent-ink);
}
a.ghost.btn-link, button.ghost.btn-link {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--bg-elev);
}
a.ghost.btn-link:hover {
  color: var(--ink);
  background: var(--bg-soft);
}

.filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.95rem; }
.filter.active {
  border-color: var(--accent);
  color: var(--accent-ink);
  background: var(--accent);
}
.gig-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.45rem;
}
.price-tag {
  font-family: var(--display);
  color: var(--accent);
  font-size: 1.3rem;
  white-space: nowrap;
}
.gig-meta { display: flex; gap: 0.65rem; align-items: center; margin-top: 0.85rem; flex-wrap: wrap; }
.empty-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-elev);
}
.empty-board p { color: var(--muted); margin-bottom: 0.65rem; }
.empty-board strong { color: var(--ink); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}
.stat {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
}
.stat .val {
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--accent);
  line-height: 1;
}
.stat .lbl { color: var(--muted); font-size: 0.8rem; margin-top: 0.35rem; }

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0.5rem 0 1rem;
}
.tl-step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.tl-step.done { color: var(--ink); }
.tl-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--line);
}
.tl-step.done .tl-dot { background: var(--accent); }

.thread { display: grid; gap: 0.65rem; }
.msg {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  background: var(--bg-elev);
}
.msg-meta { color: var(--muted); font-size: 0.75rem; margin-bottom: 0.3rem; }
.msg.system { opacity: 0.85; }

.codeblock {
  background: #12161e;
  border: 1px solid #2a3040;
  border-radius: var(--radius);
  padding: 1.1rem;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  white-space: pre-wrap;
  color: #e8e9ed;
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85em;
  background: var(--bg-soft);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.seats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  margin-top: 2.75rem;
}
@media (max-width: 640px) {
  .seats { grid-template-columns: 1fr; }
}
.seat h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.seat p { color: var(--muted); font-size: 0.9rem; }
.seat .seat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* work / jobs / ops pages without .page wrapper */
body > .site-header {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  max-width: none;
  margin: 0;
  padding-left: max(var(--pad), calc(50% - var(--max) / 2));
  padding-right: max(var(--pad), calc(50% - var(--max) / 2));
}
body > main:not(.page),
body > footer:not(.site-footer) {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
body > main:not(.page) { padding-top: 1.75rem; padding-bottom: 1rem; }
body > footer:not(.site-footer) {
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .anim-rise, .hero-product { animation: none; opacity: 1; transform: none; }
}
