@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --bond: #f2f1ed;
  --panel: #fffefb;
  --ink: #171614;
  --mute: #5f5b54;
  --rule: #c9c4ba;
  --wine: #6f2430;
  --wine-deep: #4c1520;
  --wine-soft: #f4e8ea;
  --gold: #8f7848;
  --footer: #141311;
  --footer-mute: #b7b2a8;
  --focus: #6f2430;
  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 3.25rem);
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bond);
  min-height: 100vh;
  border-left: 5px solid var(--wine);
  position: relative;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

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

a {
  color: var(--wine);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--wine-deep);
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--wine);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

/* Header */
.mast {
  background: rgba(255, 254, 251, 0.86);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mast-legal {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--mute);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--rule);
}

.mast-legal .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.mast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}

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

.brand img {
  width: 42px;
  height: 42px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand-name span {
  font-size: 0.72rem;
  color: var(--mute);
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  font-size: 0.85rem;
  border: 1px solid var(--rule);
  padding: 0.4rem 0.7rem;
  background: var(--panel);
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--wine);
}

/* Hero */
.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 3rem;
  align-items: center;
}

.stamp {
  position: relative;
  width: 240px;
  height: 240px;
  margin-left: auto;
  flex-shrink: 0;
}

.stamp svg {
  width: 100%;
  height: 100%;
  animation: stamp-spin 28s linear infinite;
}

.stamp-ring {
  fill: none;
  stroke: var(--wine);
  stroke-width: 1.25;
}

.stamp-ring.inner {
  stroke-width: 0.75;
}

.stamp-text {
  fill: var(--wine);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
}

.stamp-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--wine);
  letter-spacing: -0.03em;
  pointer-events: none;
}

@keyframes stamp-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.2vw, 4.1rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 0 1.25rem;
  animation: title-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero .lede {
  max-width: 46rem;
  font-size: 1.18rem;
  color: var(--mute);
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--wine);
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--sans);
  cursor: pointer;
  background: var(--wine);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  background: var(--wine-deep);
  color: #fff;
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}

.btn.ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* Ledger */
.ledger {
  background: var(--panel);
  border: 1px solid var(--rule);
  margin: 0 0 4rem;
}

.ledger-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.85rem;
  color: var(--mute);
}

.ledger-head b {
  color: var(--ink);
  font-weight: 600;
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ledger-grid div {
  padding: 1.15rem 1.25rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.ledger-grid div:nth-child(3n) {
  border-right: none;
}

.ledger-grid dt {
  font-size: 0.78rem;
  color: var(--mute);
  margin: 0 0 0.25rem;
}

.ledger-grid dd {
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
}

/* Sections */
.section {
  padding: 0 0 4.25rem;
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.section .intro {
  max-width: 42rem;
  color: var(--mute);
  margin: 0 0 1.75rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.kicker {
  color: var(--wine);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0 0 0.4rem;
}

/* Solutions */
.solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.solutions article {
  padding: 1.5rem 1.4rem 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.solutions article:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--rule);
}

.solutions article:nth-child(even) {
  padding-left: 2rem;
}

.solutions h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 0 0.45rem;
}

.solutions p {
  margin: 0;
  color: var(--mute);
}

/* Brands */
.brand-row {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
}

.brand-row:last-of-type {
  border-bottom: 1px solid var(--rule);
}

.brand-plate {
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem 1.15rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.55rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, letter-spacing 0.45s ease;
}

.brand-plate:hover {
  transform: scale(1.03);
  letter-spacing: 0.04em;
}

.brand-plate.punk {
  background: #1a1a1a;
}

.brand-plate.freelex {
  background: #3f4a3a;
}

.brand-plate.cardo {
  background: #243044;
}

.brand-copy h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.brand-copy p {
  margin: 0;
  color: var(--mute);
}

.more-stores {
  margin-top: 1.5rem;
  padding: 1.25rem 0 0;
  color: var(--mute);
}

/* Presence */
.presence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.presence div {
  background: var(--panel);
  padding: 1.15rem 1.1rem;
}

.presence strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.1;
}

.presence span {
  color: var(--mute);
  font-size: 0.9rem;
}

/* Legal extract */
.extract {
  background: var(--panel);
  border: 1px solid var(--rule);
}

.extract-banner {
  background: var(--wine);
  color: #fff;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.extract table {
  width: 100%;
  border-collapse: collapse;
}

.extract th,
.extract td {
  text-align: left;
  vertical-align: top;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.extract th {
  width: 32%;
  font-weight: 600;
  color: var(--mute);
  font-size: 0.88rem;
}

.extract td {
  font-weight: 500;
}

.note {
  font-size: 0.92rem;
  color: var(--mute);
  margin: 1rem 0 0;
}

.callout {
  background: var(--wine-soft);
  border-left: 3px solid var(--wine);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
}

.callout p {
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}

.addr h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.addr p {
  margin: 0 0 1.25rem;
  color: var(--mute);
}

.addr a {
  color: var(--ink);
}

form {
  display: grid;
  gap: 0.85rem;
  background: var(--panel);
  border: 1px solid var(--rule);
  padding: 1.25rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-status {
  display: none;
  padding: 0.75rem 0.85rem;
  background: var(--wine-soft);
  border: 1px solid var(--wine);
}

.form-status.show {
  display: block;
}

/* Policy pages */
.policy {
  padding: 3.5rem 0 4.5rem;
}

.policy h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 0.4rem;
}

.policy .meta {
  color: var(--mute);
  margin: 0 0 2rem;
}

.policy h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 2rem 0 0.6rem;
}

.policy h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.4rem;
}

.policy ul,
.policy ol {
  padding-left: 1.2rem;
}

.policy li {
  margin: 0.3rem 0;
}

/* Footer */
.foot {
  background: var(--footer);
  color: #eceae4;
  padding: 2.5rem 0 1.5rem;
  margin-top: 1rem;
}

.foot a {
  color: #eceae4;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2c2a27;
}

.foot h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.foot p,
.foot li {
  color: var(--footer-mute);
  font-size: 0.92rem;
}

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

.foot li {
  margin: 0.25rem 0;
}

.foot h3 {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.6rem;
  color: #fff;
  font-weight: 600;
}

.foot-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--footer-mute);
}

.foot-mark {
  margin: 2.4rem 0 0.4rem;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 14vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #eceae4;
  overflow: hidden;
  white-space: nowrap;
}

.curtain {
  display: none;
}

html.await-intro,
html.await-intro body {
  overflow: hidden;
}

html.await-intro .curtain {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #141311;
  color: #f6f1ea;
  text-align: center;
}

.curtain p {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
  animation: title-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.curtain span {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d7b4ba;
  animation: title-in 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.intro-out .curtain {
  transform: translateY(-100%);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}

@media print {
  .curtain,
  .mast,
  .marquee,
  .scroll-progress,
  .cursor,
  .cursor-dot,
  .click-pop,
  .nav-burger,
  .hero-actions,
  .cta-band,
  .foot-grid,
  .foot-mark,
  .skip {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    border-left: none;
    font-size: 11pt;
  }

  .extract {
    border: 1px solid #000;
  }

  .extract-banner {
    background: #000 !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .page-hero h1 {
    font-size: 22pt;
  }

  .foot-legal {
    color: #000;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}

.page-hero {
  padding: 3.25rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.75rem;
  max-width: 18ch;
}

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

.cta-band {
  background: var(--panel);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2.4rem 0;
  margin-bottom: 0;
}

.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.3rem;
}

.cta-band p {
  margin: 0;
  color: var(--mute);
}

@media (max-width: 900px) {
  .ledger-grid,
  .split,
  .solutions,
  .presence,
  .contact-grid,
  .foot-grid,
  .brand-row,
  .cta-band .wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .solutions article:nth-child(odd),
  .solutions article:nth-child(even) {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-burger {
    display: inline-block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 5px;
    right: 0;
    top: 108px;
    background: var(--panel);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem var(--pad) 1.2rem;
    z-index: 20;
    gap: 0.85rem;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .mast-row {
    position: relative;
  }

  .ledger-grid div:nth-child(3n) {
    border-right: none;
  }

  .ledger-grid div {
    border-right: none;
  }
}

.statement {
  background: var(--footer);
  color: #f6f1ea;
  margin: 0;
  padding: 5.5rem 0;
}

.statement .kicker {
  color: #d7b4ba;
}

.statement-inner {
  position: relative;
  z-index: 1;
}

.statement blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
  max-width: 18ch;
  margin: 0;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.steps li {
  padding: 1.5rem 1.3rem 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  padding-right: 1.5rem;
  border-right: 1px solid var(--rule);
}

.steps li:last-child {
  border-right: none;
}

.steps b {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--wine);
  margin-bottom: 0.55rem;
}

.steps p {
  margin: 0;
  color: var(--mute);
}

.atlas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.atlas article {
  background: var(--panel);
  padding: 1.6rem 1.3rem 1.7rem;
  min-height: 11rem;
}

.atlas h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0 0 0.45rem;
}

.atlas p {
  margin: 0;
  color: var(--mute);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.timeline li {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
}

.timeline time {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.timeline p {
  margin: 0;
  color: var(--mute);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s ease, transform 0.85s ease;
}

@media (max-width: 900px) {
  .hero-grid,
  .steps,
  .atlas,
  .timeline li {
    grid-template-columns: 1fr;
  }

  .stamp {
    margin: 1.5rem auto 0;
    width: 180px;
    height: 180px;
  }

  .stamp-core {
    font-size: 2rem;
  }

  .steps li {
    border-right: none;
    padding-right: 0;
  }
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--panel);
  padding: 0.85rem 0;
  margin: 0 0 3.5rem;
}

.marquee-rev {
  background: var(--footer);
  border-color: #2c2a27;
  color: #eceae4;
}

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

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: ticker 32s linear infinite;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.marquee-rev .marquee-track {
  animation-name: ticker-rev;
  animation-duration: 38s;
}

.marquee-track span::after {
  content: " · ";
  color: var(--wine);
  padding-left: 2.4rem;
}

.marquee-rev .marquee-track span::after {
  color: #d7b4ba;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 5px;
  height: 0%;
  background: var(--gold);
  z-index: 90;
  pointer-events: none;
}

.cursor,
.cursor-dot {
  display: none;
}

@media (pointer: fine) {
  html.has-cursor,
  html.has-cursor body,
  html.has-cursor a,
  html.has-cursor button,
  html.has-cursor label {
    cursor: none;
  }

  html.has-cursor input,
  html.has-cursor textarea,
  html.has-cursor select {
    cursor: text;
  }

  .cursor,
  .cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cursor {
    width: 36px;
    height: 36px;
    border: 1px solid var(--wine);
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .cursor.on {
    width: 56px;
    height: 56px;
    background: rgba(111, 36, 48, 0.12);
  }

  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--wine);
  }
}

.click-pop {
  position: fixed;
  width: 12px;
  height: 12px;
  border: 1px solid var(--wine);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  transform: translate(-50%, -50%) scale(0.4);
  animation: pop 0.55s ease-out forwards;
}

body.leaving {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.ledger-grid div {
  transition: background 0.3s ease, transform 0.3s ease;
}

.ledger-grid div:hover {
  background: var(--wine-soft);
  transform: translateY(-2px);
}

.solutions article,
.atlas article,
.steps li,
.timeline li {
  transition: transform 0.35s ease, background 0.35s ease;
}

.solutions article:hover,
.atlas article:hover,
.steps li:hover {
  transform: translateY(-4px);
}

@keyframes title-in {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

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

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

@keyframes pop {
  to {
    transform: translate(-50%, -50%) scale(6);
    opacity: 0;
  }
}

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

  .reveal,
  .hero h1,
  .marquee-track,
  .stamp svg {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .brand-plate:hover,
  .ledger-grid div:hover,
  .solutions article:hover,
  .atlas article:hover,
  .steps li:hover {
    transform: none;
  }

  .cursor,
  .cursor-dot,
  .click-pop,
  .curtain {
    display: none !important;
  }

  html.await-intro,
  html.await-intro body {
    overflow: auto;
  }

  body.leaving {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
