:root {
  --ink: #050505;
  --ink-soft: #111111;
  --lime: #d8ff00;
  --lime-bright: #e7ff3a;
  --pink: #f15aa8;
  --blue: #9bbdca;
  --blue-dark: #5d8594;
  --paper: #f2ebdc;
  --white: #fffef8;
  --line: rgba(5, 5, 5, 0.18);
  --shadow: 8px 8px 0 #050505;
  --display: 'Archivo Black', Impact, sans-serif;
  --roadmap: 'Knewave', 'Bangers', cursive;
  --comic: 'Bangers', Impact, sans-serif;
  --body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--pink); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: var(--lime);
  transition: opacity .55s ease, visibility .55s ease;
}
.loader img {
  width: min(42vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  clip-path: circle(49.8% at 50% 50%);
  animation: loader-bob .9s ease-in-out infinite alternate;
}
.loader span { font-family: var(--comic); font-size: clamp(24px, 4vw, 42px); letter-spacing: .08em; }
.loader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes loader-bob { to { transform: translateY(-12px) rotate(-2deg); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(5, 5, 5, .94);
  border-bottom: 2px solid var(--lime);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); letter-spacing: -.04em; }
.brand img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--lime); object-fit: cover; }
.brand span { font-size: 20px; }
.nav-links { display: flex; justify-content: center; gap: clamp(18px, 3vw, 44px); }
.nav-links a { position: relative; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 3px; background: var(--pink); transition: right .25s ease; }
.nav-links a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.social-link { display: grid; place-items: center; width: 39px; height: 39px; border: 2px solid var(--white); border-radius: 50%; font-size: 12px; font-weight: 900; }
.social-link:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); transform: rotate(-6deg); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 28px; height: 3px; margin: 5px 0; background: var(--white); }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translate(4px, 4px) rotate(-1deg); box-shadow: 2px 2px 0 var(--ink); }
.button-small { min-height: 42px; padding: 0 17px; color: var(--ink); background: var(--lime); box-shadow: none; border-width: 2px; }
.button-black { color: var(--white); background: var(--ink); box-shadow: 6px 6px 0 var(--pink); }
.button-black:hover { box-shadow: 2px 2px 0 var(--pink); }
.button-ghost { background: rgba(255,255,255,.28); }
.button-lime { background: var(--lime); }
.button-pink { background: var(--pink); }
.button-wide { width: 100%; }

.hero {
  position: relative;
  min-height: 940px;
  padding: 150px clamp(22px, 5vw, 76px) 385px;
  overflow: hidden;
  background: var(--lime);
  border-bottom: 6px solid var(--ink);
}
.hero::before { content: ''; position: absolute; inset: 0; opacity: .12; background: radial-gradient(circle at 20% 25%, #fff 0 1px, transparent 2px), radial-gradient(circle at 77% 18%, #000 0 1px, transparent 2px); background-size: 23px 23px, 29px 29px; }
.hero-glow { position: absolute; width: 55vw; height: 55vw; right: -15vw; top: -22vw; border-radius: 50%; background: rgba(255,255,255,.32); filter: blur(20px); }
.hero-copy { position: relative; z-index: 3; max-width: 940px; }
.eyebrow { margin: 0 0 22px; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.hero h1 { display: grid; margin: 0; line-height: .78; text-transform: uppercase; }
.hero-kicker { font-family: var(--comic); font-size: clamp(42px, 6vw, 88px); letter-spacing: .04em; transform: rotate(-2deg); }
.hero-main { font-family: var(--display); font-size: clamp(116px, 20vw, 270px); letter-spacing: -.09em; color: var(--pink); -webkit-text-stroke: clamp(3px, .55vw, 8px) var(--ink); text-shadow: 11px 12px 0 var(--blue); }
.hero-side { justify-self: end; margin-top: 12px; font-family: var(--comic); font-size: clamp(38px, 5vw, 74px); transform: rotate(2deg); }
.hero-subtitle { max-width: 610px; margin: 36px 0 0; font-size: clamp(18px, 2vw, 25px); font-weight: 700; line-height: 1.4; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.contract-bar { display: flex; align-items: center; gap: 12px; max-width: 670px; margin-top: 26px; }
.contract-bar > span { font-family: var(--display); font-size: 13px; }
.contract-copy { flex: 1; min-width: 0; display: flex; justify-content: space-between; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,.52); border: 2px solid var(--ink); cursor: pointer; }
.contract-copy code { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 800; }
.contract-copy strong { font-size: 12px; }
.hero-stamp { position: absolute; z-index: 4; top: 155px; right: clamp(24px, 6vw, 88px); width: 172px; height: 172px; display: grid; place-content: center; text-align: center; border: 4px solid var(--ink); border-radius: 50%; transform: rotate(9deg); background: var(--white); box-shadow: 8px 8px 0 var(--ink); }
.hero-stamp::before, .hero-stamp::after { content: '✦'; position: absolute; top: 50%; transform: translateY(-50%); }
.hero-stamp::before { left: 14px; }
.hero-stamp::after { right: 14px; }
.hero-stamp span { font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.hero-stamp strong { font-family: var(--comic); font-size: 26px; line-height: .9; margin: 5px 0; }
.hero-art { position: absolute; z-index: 2; left: 50%; bottom: -2px; width: min(1550px, 116vw); transform: translateX(-50%); }
.hero-art img { width: 100%; filter: drop-shadow(0 -8px 0 rgba(5,5,5,.12)); }

.marquee { overflow: hidden; color: var(--white); background: var(--ink); border-bottom: 5px solid var(--pink); }
.marquee-track { display: flex; width: max-content; gap: 28px; padding: 16px 0; font-family: var(--comic); font-size: 28px; letter-spacing: .06em; animation: marquee 28s linear infinite; }
.marquee-track i { color: var(--lime); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

section { position: relative; }
.section-dark { color: var(--white); background: var(--ink); }
.section-heading { max-width: 900px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { margin: 0 0 10px; font-size: 12px; font-weight: 900; letter-spacing: .24em; }
.section-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(54px, 8vw, 118px); line-height: .89; letter-spacing: -.075em; text-transform: uppercase; }
.section-heading h2 em { color: var(--pink); font-style: normal; -webkit-text-stroke: 2px currentColor; }
.section-index { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border: 2px solid currentColor; border-radius: 50%; font-family: var(--display); }

.lore { padding: 130px clamp(22px, 6vw, 92px); }
.lore-grid { display: grid; grid-template-columns: minmax(340px, .8fr) 1.1fr; align-items: center; gap: clamp(40px, 8vw, 130px); max-width: 1380px; margin: 70px auto 0; }
.lore-portrait { position: relative; min-height: 590px; display: grid; place-items: center; }
.portrait-ring { position: absolute; width: min(42vw, 530px); aspect-ratio: 1; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 14px var(--pink), 0 0 0 28px var(--blue); }
.lore-portrait img { position: relative; z-index: 1; width: min(44vw, 590px); filter: drop-shadow(18px 18px 0 rgba(0,0,0,.65)); transform: rotate(-3deg); }
.portrait-label { position: absolute; z-index: 2; right: 0; bottom: 28px; padding: 14px 20px; color: var(--ink); background: var(--pink); border: 3px solid var(--white); font-family: var(--comic); font-size: 24px; transform: rotate(3deg); }
.lore-copy { max-width: 720px; }
.lore-copy p { font-size: clamp(17px, 1.7vw, 22px); line-height: 1.68; color: rgba(255,255,255,.78); }
.lore-copy .lead { font-size: clamp(27px, 3vw, 43px); line-height: 1.28; font-weight: 800; color: var(--white); }
.truth-note { margin-top: 34px; padding: 24px; color: var(--ink); background: var(--lime); border: 3px solid var(--white); box-shadow: 8px 8px 0 var(--pink); transform: rotate(-1deg); }
.truth-note strong { display: block; margin-bottom: 9px; font-family: var(--display); }
.truth-note span { font-size: 14px; line-height: 1.55; font-weight: 700; }

.origin { padding: 130px clamp(22px, 6vw, 92px); background: var(--paper); }
.origin-top { display: flex; justify-content: space-between; align-items: end; gap: 50px; max-width: 1450px; margin: 0 auto 70px; }
.origin-intro { max-width: 480px; margin: 0 0 7px; font-size: 18px; font-weight: 600; line-height: 1.65; }
.proof-feature { display: grid; grid-template-columns: 1.2fr .8fr; max-width: 1450px; margin: 0 auto; border: 4px solid var(--ink); background: var(--white); box-shadow: 14px 14px 0 var(--ink); }
.proof-visual { position: relative; min-height: 540px; overflow: hidden; background: var(--lime); border-right: 4px solid var(--ink); }
.proof-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.proof-badge { position: absolute; top: 24px; left: 24px; padding: 11px 15px; color: var(--white); background: var(--ink); border: 2px solid var(--lime); font-family: var(--display); font-size: 12px; }
.proof-copy { padding: clamp(32px, 5vw, 72px); align-self: center; }
.proof-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0 0 15px; font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.proof-meta span:first-child { color: #4c6fff; }
.proof-copy h3, .card-body h3, .history-card h3 { margin: 0; font-family: var(--display); font-size: clamp(30px, 4vw, 58px); line-height: .95; letter-spacing: -.05em; }
.proof-copy > p { font-size: 18px; line-height: 1.65; }
.proof-copy blockquote { margin: 28px 0; padding: 20px 0 20px 24px; border-left: 8px solid var(--pink); font-family: var(--roadmap); font-size: clamp(21px, 2.3vw, 31px); line-height: 1.25; }
.source-button { display: inline-block; padding-bottom: 5px; border-bottom: 4px solid var(--ink); font-family: var(--display); font-size: 13px; }

.facebook-embed-wrap { display: grid; grid-template-columns: .7fr 1fr; align-items: center; gap: 40px; max-width: 1120px; margin: 90px auto; }
.embed-heading span { display: inline-block; padding: 8px 12px; color: var(--white); background: #1877f2; font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.embed-heading p { font-family: var(--roadmap); font-size: clamp(28px, 4vw, 47px); line-height: 1.15; }
.facebook-frame { min-height: 520px; display: grid; place-items: center; padding: 24px; border: 4px solid var(--ink); background: var(--white); box-shadow: 10px 10px 0 var(--blue); overflow: hidden; }
.facebook-frame iframe { max-width: 100%; }

.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1450px; margin: 0 auto; }
.proof-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 4px solid var(--ink); background: var(--white); box-shadow: 10px 10px 0 var(--ink); transition: transform .25s ease, box-shadow .25s ease; }
.proof-card:hover { transform: translate(5px, 5px) rotate(-.5deg); box-shadow: 5px 5px 0 var(--ink); }
.card-number { position: absolute; z-index: 2; top: 15px; left: 15px; padding: 7px 10px; color: var(--white); background: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.card-art { min-height: 390px; overflow: hidden; border-right: 4px solid var(--ink); background: var(--lime); }
.card-art img { width: 100%; height: 100%; object-fit: cover; }
.card-art-cat img { object-position: center; }
.card-art-mural img { object-position: 45% center; transform: scale(1.45); }
.card-body { align-self: center; padding: clamp(24px, 4vw, 50px); }
.card-body h3 { font-size: clamp(30px, 3vw, 48px); }
.card-body p { font-size: 16px; line-height: 1.6; }
.card-body strong { font-size: 12px; border-bottom: 3px solid var(--pink); }

.history-break { display: flex; align-items: center; gap: 22px; max-width: 1450px; margin: 110px auto 44px; font-family: var(--display); }
.history-break span { color: var(--pink); }
.history-break div { flex: 1; border-top: 4px dashed var(--ink); }
.history-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1450px; margin: 0 auto; }
.history-card { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: clamp(28px, 4vw, 54px); border: 3px solid var(--ink); background: rgba(255,255,255,.5); }
.history-icon { display: grid; place-items: center; width: 62px; height: 62px; color: var(--white); background: var(--ink); border-radius: 50%; font-family: var(--display); }
.history-card h3 { font-size: clamp(28px, 3vw, 44px); }
.history-card p { line-height: 1.62; }
.history-card .clarifier { padding: 12px 14px; background: var(--lime); border-left: 5px solid var(--ink); font-weight: 800; }
.history-card a { font-family: var(--display); font-size: 12px; border-bottom: 3px solid var(--ink); }

.roadmap { padding: 130px clamp(22px, 6vw, 92px) 150px; overflow: hidden; }
.roadmap::before { content: ''; position: absolute; inset: 0; opacity: .12; background: repeating-linear-gradient(110deg, transparent 0 45px, var(--lime) 46px 48px); }
.roadmap-path { position: relative; max-width: 1050px; margin: 90px auto 0; }
.roadmap-path::before { content: ''; position: absolute; top: 0; bottom: 0; left: 66px; border-left: 5px dashed var(--lime); }
.roadmap-step { position: relative; display: grid; grid-template-columns: 134px 1fr; align-items: center; gap: 36px; min-height: 215px; }
.roadmap-step:nth-child(even) { transform: translateX(8%); }
.paw { position: relative; z-index: 1; display: grid; place-items: center; width: 134px; height: 134px; color: var(--ink); background: var(--lime); border: 5px solid var(--white); border-radius: 50% 50% 46% 46%; box-shadow: 8px 8px 0 var(--pink); font-family: var(--roadmap); font-size: 39px; transform: rotate(-7deg); }
.roadmap-step small { color: var(--pink); font-weight: 900; letter-spacing: .2em; }
.roadmap-step h3 { margin: 8px 0 10px; font-family: var(--roadmap); font-size: clamp(34px, 5vw, 64px); line-height: 1; font-weight: 400; }
.roadmap-step p { max-width: 720px; margin: 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.55; }

.how-to-buy { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 900px; background: var(--lime); border-top: 6px solid var(--ink); border-bottom: 6px solid var(--ink); }
.buy-cat { position: relative; display: grid; place-items: end center; overflow: hidden; background: var(--blue); border-right: 6px solid var(--ink); }
.buy-cat::before { content: ''; position: absolute; width: 74%; aspect-ratio: 1; top: 13%; border: 12px solid var(--pink); border-radius: 50%; background: var(--lime); }
.buy-cat img { position: relative; z-index: 1; width: min(740px, 92%); filter: drop-shadow(16px 15px 0 rgba(5,5,5,.35)); }
.buy-copy { align-self: center; padding: 100px clamp(28px, 6vw, 100px); }
.buy-steps { list-style: none; padding: 0; margin: 55px 0 34px; }
.buy-steps li { display: grid; grid-template-columns: 78px 1fr; gap: 20px; padding: 22px 0; border-top: 3px solid var(--ink); }
.buy-steps li:last-child { border-bottom: 3px solid var(--ink); }
.buy-steps li > span { font-family: var(--comic); font-size: 44px; }
.buy-steps strong { font-family: var(--display); font-size: 20px; }
.buy-steps p { margin: 7px 0 0; line-height: 1.55; font-weight: 600; }

.final-banner { position: relative; min-height: 690px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--ink); }
.final-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.33) saturate(1.2); }
.final-overlay { position: relative; z-index: 1; max-width: 1100px; padding: 60px 24px; text-align: center; }
.final-overlay p { font-weight: 900; letter-spacing: .24em; }
.final-overlay h2 { margin: 0; font-family: var(--display); font-size: clamp(70px, 14vw, 190px); line-height: .85; letter-spacing: -.08em; color: var(--lime); -webkit-text-stroke: 4px var(--ink); text-shadow: 10px 10px 0 var(--pink); }
.final-overlay .hero-buttons { justify-content: center; margin-top: 45px; }

footer { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 42px; padding: 54px clamp(22px, 6vw, 92px); color: rgba(255,255,255,.65); background: var(--ink); border-top: 2px solid var(--lime); }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--white); font-family: var(--display); }
.footer-brand img { width: 54px; height: 54px; border-radius: 50%; }
footer > p { max-width: 870px; margin: 0; font-size: 12px; line-height: 1.65; }
.footer-links { display: grid; gap: 12px; text-align: right; font-size: 11px; font-weight: 800; }

.toast { position: fixed; z-index: 500; right: 25px; bottom: 25px; padding: 13px 20px; color: var(--ink); background: var(--lime); border: 3px solid var(--ink); box-shadow: 5px 5px 0 var(--pink); font-family: var(--display); transform: translateY(120px); transition: transform .25s ease; }
.toast.show { transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.cursor-dot { position: fixed; z-index: 1500; left: 0; top: 0; width: 18px; height: 18px; pointer-events: none; border: 2px solid var(--ink); border-radius: 50%; background: var(--pink); mix-blend-mode: difference; transform: translate(-50%, -50%); opacity: 0; }

@media (max-width: 1100px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; display: grid; justify-items: center; gap: 28px; padding: 35px; background: var(--ink); border-bottom: 3px solid var(--lime); transform: translateY(-140%); transition: transform .25s ease; }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; justify-self: end; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-actions .social-link { display: none; }
  .hero-stamp { top: 142px; right: 25px; width: 135px; height: 135px; }
  .hero-stamp strong { font-size: 20px; }
  .origin-top { display: block; }
  .origin-intro { margin-top: 30px; }
  .proof-card { grid-template-columns: 1fr; }
  .card-art { min-height: 300px; border-right: 0; border-bottom: 4px solid var(--ink); }
  .roadmap-step:nth-child(even) { transform: none; }
}

@media (max-width: 820px) {
  .site-header { height: 68px; padding: 8px 15px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: 16px; }
  .button-small { display: none; }
  .nav-links { top: 68px; }
  .hero { min-height: 820px; padding: 120px 20px 300px; }
  .hero-main { font-size: clamp(90px, 31vw, 152px); text-shadow: 7px 8px 0 var(--blue); }
  .hero-side { justify-self: start; }
  .hero-stamp { display: none; }
  .hero-art { width: 145vw; }
  .hero-subtitle { max-width: 94%; }
  .contract-bar { display: block; }
  .contract-bar > span { display: block; margin-bottom: 8px; }
  .lore, .origin, .roadmap { padding: 90px 20px; }
  .lore-grid, .proof-feature, .facebook-embed-wrap, .proof-grid, .history-grid, .how-to-buy { grid-template-columns: 1fr; }
  .lore-grid { margin-top: 20px; }
  .lore-portrait { min-height: 440px; }
  .portrait-ring { width: 78vw; }
  .lore-portrait img { width: 90vw; }
  .proof-visual { min-height: 340px; border-right: 0; border-bottom: 4px solid var(--ink); }
  .facebook-embed-wrap { margin: 65px auto; }
  .facebook-frame { min-height: 420px; padding: 8px; }
  .history-break { align-items: flex-start; flex-wrap: wrap; }
  .history-break div { order: 3; flex-basis: 100%; }
  .roadmap-path::before { left: 44px; }
  .roadmap-step { grid-template-columns: 88px 1fr; gap: 20px; min-height: 230px; }
  .paw { width: 88px; height: 88px; font-size: 27px; border-width: 3px; box-shadow: 5px 5px 0 var(--pink); }
  .buy-cat { min-height: 520px; border-right: 0; border-bottom: 6px solid var(--ink); }
  .buy-copy { padding: 85px 20px; }
  footer { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { text-align: left; }
  .cursor-dot { display: none; }
}

@media (max-width: 520px) {
  .hero-buttons .button { width: 100%; }
  .hero { min-height: 790px; padding-bottom: 250px; }
  .hero-art { width: 165vw; }
  .section-heading h2 { font-size: 49px; }
  .proof-feature, .proof-card { box-shadow: 7px 7px 0 var(--ink); }
  .history-card { grid-template-columns: 1fr; }
  .history-icon { width: 52px; height: 52px; }
  .final-overlay h2 { font-size: 70px; }
  .final-overlay .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Transparent intro cat */
.loader img {
  aspect-ratio: auto;
  border-radius: 0;
  clip-path: none;
  background: transparent;
  object-fit: contain;
}

/* HERO DARK BAND START */
.hero-art {
  isolation: isolate;
}

.hero-art img {
  position: relative;
  z-index: 1;
}

.hero-art::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, .30) 0%,
    rgba(5, 5, 5, .20) 38%,
    rgba(5, 5, 5, .08) 72%,
    transparent 100%
  );
}

@media (max-width: 820px) {
  .hero-art::after {
    height: 42%;
  }
}
/* HERO DARK BAND END */

/* HERO PERFECT ALIGNMENT START */

/* Desktop */
@media (min-width: 821px) {
  .hero {
    min-height: 940px;
    padding:
      112px
      clamp(28px, 4.4vw, 72px)
      375px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: minmax(520px, 640px) minmax(0, 1fr);
    grid-template-areas:
      "eyebrow eyebrow"
      "title title"
      "subtitle empty"
      "buttons empty"
      "contract empty";

    column-gap: clamp(40px, 6vw, 100px);

    width: min(100%, 1400px);
    max-width: none;
    margin: 0 auto;

    text-align: center;
  }

  .hero-copy > .eyebrow {
    grid-area: eyebrow;
    justify-self: center;

    margin: 0 0 13px;

    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }

  .hero-copy > h1 {
    grid-area: title;
    justify-items: center;

    width: 100%;
    margin: 0;

    line-height: .81;
    text-align: center;
  }

  .hero-kicker {
    justify-self: center;

    font-size: clamp(38px, 4.4vw, 64px);
    letter-spacing: .035em;
    transform: rotate(-1.5deg);
  }

  .hero-main {
    justify-self: center;

    font-size: clamp(125px, 15vw, 230px);
    letter-spacing: -.065em;

    text-shadow:
      9px 10px 0 var(--blue);
  }

  .hero-side {
    justify-self: center;

    margin-top: 10px;

    font-size: clamp(40px, 4.5vw, 66px);
    transform: rotate(1.5deg);
  }

  .hero-subtitle {
    grid-area: subtitle;
    justify-self: center;

    box-sizing: border-box;
    width: min(100%, 610px);
    max-width: none;
    margin: 27px 0 0;
    padding: 13px 19px;

    color: var(--white);
    background: rgba(5, 5, 5, .82);
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 var(--pink);

    font-size: clamp(17px, 1.55vw, 22px);
    line-height: 1.35;
    text-align: center;
    text-wrap: balance;
  }

  .hero-buttons {
    grid-area: buttons;
    justify-content: center;

    margin-top: 25px;
  }

  .contract-bar {
    grid-area: contract;
    justify-self: center;

    width: min(100%, 610px);
    max-width: none;
    margin-top: 24px;

    text-align: left;
  }

  .hero-stamp {
    top: 124px;
    right: clamp(25px, 4vw, 60px);
  }
}

/* Tablettes */
@media (min-width: 821px) and (max-width: 1100px) {
  .hero {
    padding-top: 108px;
  }

  .hero-copy {
    grid-template-columns: minmax(470px, 560px) minmax(0, 1fr);
    column-gap: 30px;
  }

  .hero-main {
    font-size: clamp(120px, 18vw, 190px);
  }

  .hero-stamp {
    display: none;
  }
}

/* Mobile */
@media (max-width: 820px) {
  .hero {
    min-height: 840px;
    padding:
      100px
      18px
      285px;
  }

  .hero-copy {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;

    text-align: center;
  }

  .hero-copy > .eyebrow {
    max-width: 330px;
    margin: 0 auto 14px;

    font-size: 10px;
    line-height: 1.5;
    text-align: center;
  }

  .hero h1 {
    justify-items: center;
    width: 100%;

    line-height: .83;
    text-align: center;
  }

  .hero-kicker {
    justify-self: center;

    font-size: clamp(31px, 9vw, 48px);
  }

  .hero-main {
    justify-self: center;

    font-size: clamp(88px, 29vw, 148px);
    letter-spacing: -.065em;

    text-shadow:
      6px 7px 0 var(--blue);
  }

  .hero-side {
    justify-self: center;

    margin-top: 9px;

    font-size: clamp(31px, 9vw, 46px);
  }

  .hero-subtitle {
    box-sizing: border-box;
    width: min(100%, 540px);
    max-width: none;
    margin: 24px auto 0;
    padding: 12px 15px;

    color: var(--white);
    background: rgba(5, 5, 5, .82);
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0 var(--pink);

    font-size: 17px;
    line-height: 1.4;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 23px;
  }

  .contract-bar {
    width: min(100%, 540px);
    margin: 22px auto 0;

    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 800px;
    padding-top: 94px;
    padding-bottom: 255px;
  }

  .hero-main {
    font-size: clamp(82px, 28vw, 128px);
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* HERO PERFECT ALIGNMENT END */

/* ORIGINAL SOURCE IMAGES START */

.proof-visual {
  background: #0a0a0a;
}

.proof-visual img {
  object-position: center 55%;
}

.original-source-strip {
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
  align-items: stretch;
  max-width: 1450px;
  margin: 82px auto;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 #1877f2;
  transition: transform .22s ease, box-shadow .22s ease;
}

.original-source-strip:hover {
  transform: translate(4px, 4px);
  box-shadow: 6px 6px 0 #1877f2;
}

.source-strip-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 58px);
}

.source-strip-copy > span {
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: var(--white);
  background: #1877f2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.source-strip-copy > strong {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -.04em;
}

.source-strip-copy > p {
  max-width: 520px;
  margin: 22px 0;
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 1.55;
}

.source-strip-copy > em {
  width: fit-content;
  border-bottom: 3px solid var(--pink);
  font-family: var(--display);
  font-size: 12px;
  font-style: normal;
}

.source-strip-photo {
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  border-left: 4px solid var(--white);
}

.source-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-art-cat img,
.card-art-mural img {
  transform: none;
  object-position: center;
}

.history-card.history-card-image {
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
}

.history-media {
  position: relative;
  min-height: 390px;
  display: block;
  overflow: hidden;
  background: #0a0a0a;
  border-right: 3px solid var(--ink);
}

.history-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-media-detail img {
  object-position: center 45%;
}

.history-media span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--lime);
  font-family: var(--display);
  font-size: 11px;
}

.history-content {
  align-self: center;
  padding: clamp(26px, 3.5vw, 48px);
}

.history-content > a {
  display: inline-block;
}

@media (max-width: 1100px) {
  .original-source-strip {
    grid-template-columns: 1fr;
  }

  .source-strip-photo {
    min-height: 250px;
    border-left: 0;
    border-top: 4px solid var(--white);
  }

  .history-card.history-card-image {
    grid-template-columns: 1fr;
  }

  .history-media {
    min-height: 300px;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }
}

@media (max-width: 820px) {
  .original-source-strip {
    margin: 60px auto;
    box-shadow: 7px 7px 0 #1877f2;
  }

  .source-strip-photo {
    min-height: 190px;
  }

  .history-media {
    min-height: 270px;
  }
}

/* ORIGINAL SOURCE IMAGES END */

/* CAST GALLERY START */
.cast-universe {
  position: relative;
  overflow: hidden;
  padding: 125px clamp(22px, 6vw, 92px) 145px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.72) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 31%, rgba(5,5,5,.08) 0 2px, transparent 3px),
    #f5f0e5;
  background-size: 28px 28px, 34px 34px, auto;
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
}

.cast-universe::before {
  content: 'CASTCAT';
  position: absolute;
  top: 38px;
  right: -18px;
  color: rgba(5,5,5,.045);
  font-family: var(--display);
  font-size: clamp(110px, 18vw, 280px);
  line-height: .8;
  letter-spacing: -.08em;
  pointer-events: none;
}

.cast-universe-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto 68px;
  text-align: center;
}

.cast-universe-heading > p {
  width: fit-content;
  margin: 0 auto 17px;
  padding: 8px 13px;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
}

.cast-universe-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 10vw, 142px);
  line-height: .78;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.cast-universe-heading h2 em {
  color: var(--pink);
  font-style: normal;
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 7px 7px 0 var(--blue);
}

.cast-universe-heading > span {
  display: block;
  max-width: 620px;
  margin: 30px auto 0;
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 750;
  line-height: 1.5;
}

.cast-universe-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
  grid-template-rows: repeat(2, minmax(330px, 1fr));
  gap: 30px;
  max-width: 1450px;
  margin: 0 auto;
}

.cast-universe-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: 11px 11px 0 var(--pink);
  isolation: isolate;
}

.cast-universe-card::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(5,5,5,.88));
  pointer-events: none;
}

.cast-universe-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.75,.2,1);
}

.cast-universe-card:hover img {
  transform: scale(1.035);
}

.cast-universe-main {
  grid-row: 1 / span 2;
  min-height: 790px;
}

.cast-universe-main img {
  object-position: center 45%;
}

.cast-universe-light {
  min-height: 370px;
  background: #fff;
  box-shadow: 11px 11px 0 var(--blue);
}

.cast-universe-light img {
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.cast-universe-caption {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3vw, 42px);
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(20px, 3vw, 38px);
  color: var(--white);
}

.cast-universe-caption small {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
}

.cast-universe-caption h3 {
  max-width: 720px;
  margin: 0;
  font-family: var(--roadmap);
  font-size: clamp(34px, 4vw, 66px);
  font-weight: 400;
  line-height: .94;
  text-shadow: 3px 3px 0 rgba(5,5,5,.45);
}

.cast-universe-light .cast-universe-caption h3 {
  font-size: clamp(28px, 3vw, 47px);
}

@media (max-width: 1000px) {
  .cast-universe-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cast-universe-main {
    grid-row: auto;
    min-height: 690px;
  }

  .cast-universe-light {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .cast-universe {
    padding: 90px 20px 105px;
  }

  .cast-universe-heading {
    margin-bottom: 50px;
  }

  .cast-universe-heading h2 em {
    -webkit-text-stroke-width: 2px;
    text-shadow: 5px 5px 0 var(--blue);
  }

  .cast-universe-grid {
    gap: 22px;
  }

  .cast-universe-main {
    min-height: 590px;
  }

  .cast-universe-light {
    min-height: 470px;
  }

  .cast-universe-card {
    box-shadow: 7px 7px 0 var(--pink);
  }

  .cast-universe-light {
    box-shadow: 7px 7px 0 var(--blue);
  }
}

@media (max-width: 520px) {
  .cast-universe-main {
    min-height: 520px;
  }

  .cast-universe-light {
    min-height: 410px;
  }

  .cast-universe-light img {
    padding: 8px;
  }

  .cast-universe-caption h3,
  .cast-universe-light .cast-universe-caption h3 {
    font-size: 31px;
  }
}
/* CAST GALLERY END */

/* HOW TO BUY PERFECT IMAGE START */

.buy-cat {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(35px, 4vw, 65px);
}

/* Cercle parfaitement centré */
.buy-cat::before {
  width: min(76%, 520px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Chat transparent, sans carré noir */
.buy-cat img {
  position: relative;
  z-index: 1;
  width: min(72%, 490px);
  height: auto;
  max-height: 74%;
  object-fit: contain;
  object-position: center;
  transform: translateY(8px);
  filter: drop-shadow(13px 14px 0 rgba(5,5,5,.27));
}

/* Tablette et mobile */
@media (max-width: 820px) {
  .buy-cat {
    min-height: 520px;
    padding: 35px 20px;
  }

  .buy-cat::before {
    width: min(72vw, 400px);
    border-width: 9px;
  }

  .buy-cat img {
    width: min(68vw, 375px);
    max-height: 78%;
    transform: translateY(6px);
    filter: drop-shadow(9px 10px 0 rgba(5,5,5,.25));
  }
}

@media (max-width: 520px) {
  .buy-cat {
    min-height: 455px;
  }

  .buy-cat::before {
    width: min(78vw, 355px);
  }

  .buy-cat img {
    width: min(73vw, 330px);
  }
}

/* HOW TO BUY PERFECT IMAGE END */

/* LORE PORTRAIT PERFECT START */

/* Évite que le titre passe sous la navbar lors d’un clic sur LORE */
.lore {
  scroll-margin-top: 86px;
}

@media (min-width: 821px) {
  .lore-grid {
    grid-template-columns:
      minmax(420px, .88fr)
      minmax(0, 1.12fr);
    gap: clamp(55px, 7vw, 115px);
  }

  .lore-portrait {
    min-height: 610px;
    padding: 40px 22px 55px;
    isolation: isolate;
  }

  .portrait-ring {
    width: min(34vw, 470px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -51%);
  }

  .lore-portrait img {
    width: min(37vw, 510px);
    height: auto;
    max-height: 525px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    transform: translateY(-5px) rotate(-2deg);
    filter: drop-shadow(11px 13px 0 rgba(0,0,0,.42));
  }

  .portrait-label {
    left: 50%;
    right: auto;
    bottom: 23px;
    white-space: nowrap;
    transform: translateX(-50%) rotate(-2deg);
  }
}

@media (max-width: 820px) {
  .lore {
    scroll-margin-top: 76px;
  }

  .lore-grid {
    margin-top: 36px;
    gap: 42px;
  }

  .lore-portrait {
    min-height: 510px;
    padding: 30px 10px 60px;
    isolation: isolate;
  }

  .portrait-ring {
    width: min(72vw, 390px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -53%);
  }

  .lore-portrait img {
    width: min(79vw, 425px);
    height: auto;
    max-height: 440px;
    object-fit: contain;
    background: transparent;
    transform: translateY(-8px) rotate(-2deg);
    filter: drop-shadow(8px 10px 0 rgba(0,0,0,.4));
  }

  .portrait-label {
    left: 50%;
    right: auto;
    bottom: 17px;
    padding: 11px 15px;
    white-space: nowrap;
    font-size: 19px;
    transform: translateX(-50%) rotate(-2deg);
  }
}

@media (max-width: 520px) {
  .lore-portrait {
    min-height: 445px;
    padding-bottom: 55px;
  }

  .portrait-ring {
    width: min(69vw, 325px);
    box-shadow:
      0 0 0 9px var(--pink),
      0 0 0 18px var(--blue);
  }

  .lore-portrait img {
    width: min(76vw, 355px);
    max-height: 370px;
  }

  .portrait-label {
    bottom: 12px;
    padding: 9px 12px;
    font-size: 16px;
  }
}

/* LORE PORTRAIT PERFECT END */

/* HERO COPY MICRO FIX START */
.hero-buttons .js-buy-link {
  gap: .5em;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: .035em;
}

@media (max-width: 520px) {
  .hero-buttons .js-buy-link {
    gap: .42em;
  }
}
/* HERO COPY MICRO FIX END */

/* HERO FINAL COMPOSITION START */

/*
  Keeps the title centered across the page,
  but compacts the subtitle / buttons / CA into a clean left column
  so they no longer collide with the mural cat.
*/

@media (min-width: 1101px) {
  .hero {
    padding-top: 104px;
    padding-inline: clamp(34px, 4.4vw, 72px);
    padding-bottom: 365px;
  }

  .hero-copy {
    grid-template-columns: minmax(420px, 470px) minmax(0, 1fr);
    column-gap: clamp(72px, 8vw, 138px);
    width: min(100%, 1420px);
  }

  .hero-subtitle,
  .hero-buttons,
  .contract-bar {
    justify-self: start;
    width: 100%;
    max-width: 470px;
  }

  .hero-subtitle {
    box-sizing: border-box;
    margin-top: 22px;
    padding: 12px 18px;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.25;
    letter-spacing: .025em;
    box-shadow: 5px 5px 0 var(--pink);
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 20px;
  }

  .hero-buttons .button {
    width: 100%;
    min-width: 0;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .contract-bar {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-top: 21px;
  }

  .contract-copy {
    width: 100%;
    box-sizing: border-box;
  }
}

/* MacBook / compact desktop */
@media (min-width: 821px) and (max-width: 1100px) {
  .hero {
    padding-top: 102px;
    padding-inline: 42px;
    padding-bottom: 350px;
  }

  .hero-copy {
    grid-template-columns: minmax(380px, 420px) minmax(0, 1fr);
    column-gap: 34px;
    width: 100%;
  }

  .hero-subtitle,
  .hero-buttons,
  .contract-bar {
    justify-self: start;
    width: 100%;
    max-width: 420px;
  }

  .hero-subtitle {
    box-sizing: border-box;
    margin-top: 20px;
    padding: 11px 15px;
    font-size: 16px;
    line-height: 1.23;
    letter-spacing: .02em;
    box-shadow: 5px 5px 0 var(--pink);
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 18px;
  }

  .hero-buttons .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 13px;
    font-size: 12px;
    white-space: nowrap;
  }

  .contract-bar {
    display: grid;
    grid-template-columns: 31px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    margin-top: 19px;
  }

  .contract-copy {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
  }

  .contract-copy code {
    font-size: 12px;
  }
}

/* Mobile stays centered and gets a tighter card */
@media (max-width: 820px) {
  .hero-subtitle {
    width: min(100%, 460px);
    padding: 11px 14px;
    font-size: 15px;
    line-height: 1.28;
  }

  .hero-buttons {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .contract-bar {
    width: min(100%, 460px);
  }
}

@media (max-width: 520px) {
  .hero-subtitle {
    font-size: 14px;
    letter-spacing: .02em;
  }
}



  /* HERO CTA GROUP OFFSET START */
  /*
    Move only the subtitle + contract + buttons lower into the mural.
    The main title, badge and mural image do not move.
  */
  @media (min-width: 1101px) {
    .hero-subtitle,
    .contract-bar.contract-premium,
    .hero-buttons {
      transform: translateY(30px);
    }
  }

  @media (min-width: 821px) and (max-width: 1100px) {
    .hero-subtitle,
    .contract-bar.contract-premium,
    .hero-buttons {
      transform: translateY(24px);
    }
  }

  @media (max-width: 820px) {
    .hero-subtitle,
    .contract-bar.contract-premium,
    .hero-buttons {
      transform: none;
    }
  }
  /* HERO CTA GROUP OFFSET END */

/* HERO FINAL COMPOSITION END */

/* CONTRACT CLEAN REBUILD START */

/*
  One clean component only:
  - floating label
  - single horizontal contract row
  - fixed COPY button
  - no stacked green header
*/

.contract-bar.contract-premium {
  position: relative;
  display: block;
  grid-template-columns: none;
  align-items: initial;
  gap: 0;
  justify-self: start;

  width: 100%;
  max-width: 470px;
  box-sizing: border-box;
  margin: 24px 0 0;
  padding: 0;

  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.contract-bar.contract-premium .contract-label {
  position: absolute;
  z-index: 3;
  top: -11px;
  left: 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  margin: 0;
  padding: 6px 10px;

  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);

  font-family: var(--display);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .14em;
  white-space: nowrap;
}

.contract-bar.contract-premium .contract-copy {
  width: 100%;
  min-height: 68px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  align-items: stretch;
  gap: 0;

  padding: 0;
  overflow: hidden;

  color: var(--ink);
  background: rgba(255,255,255,.88);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--pink);

  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.contract-bar.contract-premium .contract-copy:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--pink);
  background: var(--white);
}

.contract-bar.contract-premium .contract-address {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 18px 16px 12px;
  text-align: left;
}

.contract-bar.contract-premium .contract-address small {
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  min-width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;

  color: var(--white);
  background: var(--ink);
  border-radius: 50%;

  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .08em;
  opacity: 1;
}

.contract-bar.contract-premium .contract-copy code {
  min-width: 0;
  overflow: hidden;

  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .01em;

  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-bar.contract-premium .contract-copy strong {
  min-width: 0;
  width: auto;

  display: grid;
  place-items: center;

  padding: 0;

  color: var(--ink);
  background: var(--pink);
  border-left: 3px solid var(--ink);

  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .03em;
}

@media (min-width: 821px) {
  .hero-copy {
    grid-template-areas:
      "eyebrow eyebrow"
      "title title"
      "subtitle empty"
      "contract empty"
      "buttons empty";
  }

  .contract-bar.contract-premium {
    grid-area: contract;
  }

  .hero-buttons {
    grid-area: buttons;
  }
}

@media (min-width: 1101px) {
  .hero-subtitle,
  .contract-bar.contract-premium,
  .hero-buttons {
    justify-self: start;
    width: 100%;
    max-width: 470px;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .hero-subtitle,
  .contract-bar.contract-premium,
  .hero-buttons {
    justify-self: start;
    width: 100%;
    max-width: 420px;
  }

  .contract-bar.contract-premium .contract-copy {
    grid-template-columns: minmax(0, 1fr) 72px;
    min-height: 64px;
  }

  .contract-bar.contract-premium .contract-address {
    gap: 10px;
    padding-inline: 13px;
  }

  .contract-bar.contract-premium .contract-copy strong {
    font-size: 10px;
  }
}

@media (max-width: 820px) {
  .contract-bar.contract-premium {
    width: min(100%, 460px);
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .contract-bar.contract-premium .contract-label {
    left: 12px;
    padding: 5px 8px;
    font-size: 8px;
  }

  .contract-bar.contract-premium .contract-copy {
    grid-template-columns: minmax(0, 1fr) 64px;
    min-height: 60px;
  }

  .contract-bar.contract-premium .contract-address {
    gap: 8px;
    padding: 16px 10px 10px;
  }

  .contract-bar.contract-premium .contract-address small {
    min-width: 27px;
    height: 27px;
    font-size: 8px;
  }

  .contract-bar.contract-premium .contract-copy code {
    font-size: 10.5px;
  }

  .contract-bar.contract-premium .contract-copy strong {
    font-size: 9px;
  }
}

/* CONTRACT CLEAN REBUILD END */

