/* Mercury Horizon — liquid silver under an endless sunrise */

:root {
  --silver: #c5ccd6;
  --silver-deep: #9aa3b0;
  --peach: #f4c9a8;
  --peach-soft: #f7dcc8;
  --gold: #c9a86c;
  --gold-soft: #e2c99a;
  --graphite: #2c3038;
  --graphite-mid: #3a3f4a;
  --ink: #23262d;
  --ink-muted: #5c6470;
  --surface: rgba(255, 252, 248, 0.72);
  --line: rgba(44, 48, 56, 0.14);
  --radius: 1.15rem;
  --font-display: "Outfit", "Gill Sans", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.65;
  background:
    radial-gradient(ellipse 70% 45% at 12% 8%, rgba(244, 201, 168, 0.55), transparent 55%),
    radial-gradient(ellipse 55% 40% at 88% 0%, rgba(201, 168, 108, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 35% at 50% 100%, rgba(154, 163, 176, 0.28), transparent 55%),
    linear-gradient(168deg, #f7f3ee 0%, #ebe7e1 42%, #d9dee6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 18px,
      rgba(197, 204, 214, 0.12) 18px,
      rgba(197, 204, 214, 0.12) 19px
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  animation: light-bands 18s ease-in-out infinite alternate;
}

main,
.site-header,
.site-footer,
.cookie-banner {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--graphite-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */

.site-header {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  background: rgba(255, 252, 248, 0.58);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, var(--peach), transparent 42%),
    radial-gradient(circle at 70% 60%, var(--gold), transparent 48%),
    linear-gradient(135deg, var(--silver), var(--graphite-mid));
  box-shadow: 0 0 20px rgba(201, 168, 108, 0.35);
  animation: mercury-breathe 6.5s ease-in-out infinite;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 2px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 252, 248, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.4rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    gap: 0.9rem;
  }
  .site-header { position: relative; }
}

/* Buttons — liquid depression */

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.btn-primary {
  color: #fff8f2;
  background:
    linear-gradient(145deg, var(--graphite-mid), var(--graphite) 40%, #4a5160 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 28px rgba(44, 48, 56, 0.22);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 30% 40%, rgba(244, 201, 168, 0.45), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(201, 168, 108, 0.35), transparent 42%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.45s ease;
  pointer-events: none;
}

.btn-primary:hover {
  transform: scale(0.965);
  filter: brightness(1.05);
  box-shadow:
    inset 0 8px 18px rgba(0, 0, 0, 0.28),
    0 4px 12px rgba(44, 48, 56, 0.18);
  color: #fff8f2;
}

.btn-primary:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.94);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 252, 248, 0.55);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  transform: scale(0.97);
  border-color: var(--gold);
  box-shadow:
    inset 0 6px 14px rgba(44, 48, 56, 0.08),
    0 0 0 4px rgba(201, 168, 108, 0.12);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Sections */

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

.section-head p,
.lede {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
  font-weight: 700;
}

.price-line {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  font-weight: 700;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--graphite-mid);
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--gold);
}

/* Hero — side rail composition */

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  overflow: hidden;
  color: #fff8f2;
}

.hero--rail {
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .hero--rail {
    grid-template-columns: minmax(320px, 0.92fr) 1.08fr;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

@media (min-width: 960px) {
  .hero-media {
    left: 38%;
  }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.92);
  animation: horizon-drift 28s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 48, 56, 0.92) 0%, rgba(44, 48, 56, 0.55) 42%, rgba(44, 48, 56, 0.25) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(244, 201, 168, 0.35), transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 168, 108, 0.25), transparent 40%);
}

.hero-rail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 14vh, 8rem) clamp(1.5rem, 5vw, 3.5rem) 3.5rem;
  background:
    linear-gradient(165deg, rgba(58, 63, 74, 0.72), rgba(44, 48, 56, 0.88)),
    linear-gradient(120deg, rgba(197, 204, 214, 0.18), transparent 55%);
  border-right: 1px solid rgba(244, 201, 168, 0.22);
  backdrop-filter: blur(4px);
  box-shadow: inset -40px 0 80px rgba(197, 204, 214, 0.08);
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1.35rem;
  max-width: 10ch;
  background: linear-gradient(120deg, #fff8f2 10%, var(--peach) 45%, var(--gold-soft) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise-in 0.9s ease both;
}

.hero-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  margin: 0 0 0.9rem;
  max-width: 18ch;
  color: var(--peach-soft);
  animation: rise-in 0.9s ease 0.1s both;
}

.hero-support {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 248, 242, 0.86);
  animation: rise-in 0.9s ease 0.2s both;
}

.hero .btn-row {
  animation: rise-in 0.9s ease 0.3s both;
}

.hero .btn-ghost {
  color: #fff8f2;
  border-color: rgba(255, 248, 242, 0.35);
  background: transparent;
}

/* Primary offer split */

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: calc(var(--radius) + 0.35rem);
  box-shadow: 0 24px 60px rgba(44, 48, 56, 0.14);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  filter: saturate(0.9);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(201, 168, 108, 0.4), transparent);
  pointer-events: none;
}

.split-copy h2 {
  max-width: 14ch;
}

.split-copy p {
  color: var(--ink-muted);
}

.mercury {
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.55), rgba(197, 204, 214, 0.18));
  border-block: 1px solid var(--line);
}

/* Offer list */

.offer-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-item a {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

@media (min-width: 800px) {
  .offer-item a {
    grid-template-columns: 1.2fr 1.6fr auto;
    align-items: baseline;
    gap: 1.5rem;
  }
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.offer-item p {
  margin: 0;
  color: var(--ink-muted);
}

.offer-item:hover h3 {
  color: var(--gold);
}

/* Evidence */

.evidence {
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ev;
}

@media (min-width: 800px) {
  .evidence {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.evidence li {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  counter-increment: ev;
}

.evidence li::before {
  content: counter(ev, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.evidence h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

.evidence p {
  margin: 0;
  color: var(--ink-muted);
}

.quote {
  margin: 0;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  margin: 0 0 1rem;
  max-width: 40rem;
}

.quote footer {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
}

/* Inner pages */

.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.detail-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  max-width: 16ch;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-muted);
}

.detail-hero {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 1rem;
}

@media (min-width: 900px) {
  .detail-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin: 1.25rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  font-weight: 700;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  margin: 2.5rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
}

.checklist li:last-child {
  border-bottom: 1px solid var(--line);
}

/* Tiles */

.tile-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .tile-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tile {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
  transition: transform 0.35s ease;
}

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

.tile-media {
  overflow: hidden;
  margin-bottom: 1.1rem;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tile:hover .tile-media img {
  transform: scale(1.04);
}

.tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.tile p {
  margin: 0;
  color: var(--ink-muted);
}

.tile-meta {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  font-weight: 700;
}

/* Service rows */

.service-row {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 800px) {
  .service-row {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.service-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-row h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
}

.service-row h2 a {
  text-decoration: none;
  color: inherit;
}

.service-row h2 a:hover {
  color: var(--gold);
}

.service-row p {
  color: var(--ink-muted);
}

/* Pipeline steps */

.steps {
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  counter-increment: step;
}

@media (min-width: 800px) {
  .step {
    grid-template-columns: 5rem 1fr;
  }
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}

.step h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 42rem;
}

.playbook-hero {
  display: grid;
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .playbook-hero {
    grid-template-columns: 1fr 1.1fr;
    align-items: end;
  }
}

.playbook-hero img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
  }
}

.form {
  max-width: 34rem;
  display: grid;
  gap: 1.1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 0.35rem);
  padding: 0.85rem 0.95rem;
  width: 100%;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(201, 168, 108, 0.45);
  outline-offset: 1px;
}

.field-error {
  color: #8a3a2f;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 0.35rem);
  background: rgba(201, 168, 108, 0.16);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(180, 70, 70, 0.12);
  border-color: rgba(180, 70, 70, 0.3);
}

/* Footer */

.site-footer {
  margin-top: 3rem;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(44, 48, 56, 0.04);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1.2fr 0.8fr 0.8fr;
  }
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.footer-tag {
  color: var(--ink-muted);
  margin: 0;
  max-width: 22rem;
}

.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-muted);
}

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

.footer-base {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* Cookie */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 1rem 0;
  background:
    linear-gradient(120deg, rgba(255, 248, 242, 0.96), rgba(229, 233, 239, 0.96));
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(44, 48, 56, 0.12);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  max-width: 42rem;
  color: var(--ink-muted);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.island-error {
  margin: 0.5rem auto 0;
  width: var(--shell);
  color: #8a3a2f;
  font-size: 0.9rem;
}

/* 404 */

.error-page {
  min-height: 60vh;
  display: grid;
  align-content: center;
  padding: 4rem 0;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  background: linear-gradient(100deg, var(--graphite), var(--gold), var(--peach));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.tag-row li {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-weight: 700;
}

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

@keyframes mercury-breathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.1); }
}

@keyframes horizon-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, 1%, 0); }
}

@keyframes light-bands {
  from { opacity: 0.22; }
  to { opacity: 0.34; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
