@font-face {
  font-family: 'Archivo Black';
  src: url('assets/fonts/archivo-black.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-400.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-500.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-600.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/dm-sans-700.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #151512;
  --cream: #f5f0e3;
  --paper: #fffdf6;
  --red: #e3422f;
  --yellow: #f4c84a;
  --green: #6f8b5b;
  --line: rgba(21, 21, 18, 0.17);
  --display: 'Archivo Black', Impact, sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.035;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.nav {
  height: 86px;
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 19px; letter-spacing: -0.5px; }
.brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); }
.nav-links { display: flex; gap: 34px; font-size: 13px; font-weight: 700; }
.nav-links a { transition: opacity .2s; }
.nav-links a:hover { opacity: .55; }

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .18s, box-shadow .18s;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button-small { min-height: 40px; padding: 0 18px; box-shadow: none; }
.button-dark { background: var(--ink); color: white; box-shadow: 4px 4px 0 var(--red); }
.button-dark:hover { box-shadow: 2px 2px 0 var(--red); }
.button-primary { background: var(--red); color: white; }

.hero {
  min-height: 725px;
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding: 78px 0 86px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 50px;
}
.hero-copy { min-width: 0; }

.eyebrow, .section-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(111,139,91,.16); }

h1, h2 { font-family: var(--display); margin: 0; letter-spacing: -.055em; line-height: .9; }
h1 { font-size: clamp(64px, 6.3vw, 105px); }
h1 em { color: var(--red); font-style: normal; -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 var(--yellow); }
.hero-lede { max-width: 510px; font-size: 18px; line-height: 1.55; margin: 30px 0; color: #4b4a43; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { font-size: 13px; font-weight: 800; border-bottom: 1px solid var(--ink); padding: 10px 0 5px; }
.proof-row { display: flex; margin-top: 52px; border-top: 1px solid var(--line); padding-top: 20px; }
.proof-row > div { display: flex; flex-direction: column; min-width: 118px; padding-right: 22px; margin-right: 22px; border-right: 1px solid var(--line); }
.proof-row > div:last-child { border-right: 0; }
.proof-row strong { font-family: var(--display); font-size: 22px; }
.proof-row span { font-size: 10px; margin-top: 5px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: #737066; }

.hero-visual { position: relative; padding: 38px 0 32px 34px; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0 20px 0 0;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 44% 56% 44% 56% / 52% 39% 61% 48%;
  transform: rotate(-3deg);
}
.photo-frame { position: relative; border: 3px solid var(--ink); border-radius: 7px; overflow: hidden; box-shadow: 12px 12px 0 var(--ink); transform: rotate(1.5deg); }
.photo-frame img { width: 100%; height: 440px; object-fit: cover; object-position: 56% center; }
.status-pill { position: absolute; z-index: 3; top: 1px; left: 3px; background: var(--paper); border: 2px solid var(--ink); border-radius: 100px; padding: 10px 15px; font-size: 10px; font-weight: 800; letter-spacing: .1em; transform: rotate(-4deg); }
.status-pill span { color: var(--green); }
.temp-card { position: absolute; z-index: 4; bottom: 1px; left: 0; width: 135px; padding: 15px 18px; background: var(--paper); border: 2px solid var(--ink); border-radius: 5px; box-shadow: 5px 5px 0 var(--ink); transform: rotate(-3deg); }
.temp-card span, .temp-card small { display: block; font-size: 9px; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.temp-card strong { display: block; font-family: var(--display); font-size: 43px; line-height: 1.05; }
.chillin-sticker { position: absolute; z-index: 4; right: -10px; top: 15px; width: 130px; height: 130px; border-radius: 50%; background: var(--red); color: white; border: 3px solid var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(9deg); box-shadow: 6px 6px 0 var(--ink); text-align: center; }
.chillin-sticker span { font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.chillin-sticker strong { font-family: var(--display); font-size: 18px; margin-top: 2px; }

.ticker { overflow: hidden; background: var(--ink); color: var(--cream); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(-1deg) scale(1.02); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 31px; padding: 17px 0; animation: ticker 28s linear infinite; font-family: var(--display); font-size: 18px; }
.ticker-track b { color: var(--yellow); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker-track { animation: none; } }

.section { width: min(1240px, calc(100% - 64px)); margin: 0 auto; padding: 130px 0; }
.section-kicker { color: var(--red); margin-bottom: 24px; }
.section-kicker.light { color: var(--yellow); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 80px; margin-bottom: 58px; }
.section h2, .contract-section h2 { font-size: clamp(54px, 6.5vw, 90px); }
.section-heading p { max-width: 420px; line-height: 1.6; color: #5b594f; margin: 0 0 4px; }

.tax-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tax-card { min-height: 390px; padding: 28px; border: 2px solid var(--ink); border-radius: 7px; display: flex; flex-direction: column; position: relative; box-shadow: 7px 7px 0 var(--ink); overflow: hidden; }
.tax-card-dark { background: var(--ink); color: white; }
.tax-card-red { background: var(--red); color: white; }
.tax-card-yellow { background: var(--yellow); }
.card-label { font-size: 10px; letter-spacing: .13em; font-weight: 800; }
.tax-card > strong { font-family: var(--display); font-size: clamp(100px, 11vw, 155px); line-height: 1.2; letter-spacing: -.08em; margin-top: 17px; }
.tax-card > strong span { font-size: .32em; vertical-align: top; margin-left: 5px; }
.tax-card p { max-width: 235px; margin-top: auto; font-size: 14px; line-height: 1.5; opacity: .8; }
.card-icon { width: 47px; height: 47px; border: 2px solid currentColor; border-radius: 50%; position: absolute; right: 22px; bottom: 24px; display: grid; place-items: center; font-size: 23px; }
.paw::before, .paw::after { content: ''; position: absolute; width: 9px; height: 9px; background: currentColor; border-radius: 50%; top: 7px; }
.paw::before { left: 8px; }.paw::after { right: 8px; }

.how { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; border-top: 1px solid var(--line); }
.how-image { position: relative; }
.how-image::before { content: ''; position: absolute; inset: -18px 28px 18px -18px; background: var(--green); border: 2px solid var(--ink); transform: rotate(-3deg); }
.how-image img { position: relative; width: 100%; aspect-ratio: 1/1.06; object-fit: cover; border: 2px solid var(--ink); filter: saturate(.9) contrast(1.03); }
.image-caption { position: absolute; right: -32px; bottom: 26px; background: var(--yellow); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); padding: 14px 18px; transform: rotate(-4deg); }
.image-caption span, .image-caption strong { display: block; }
.image-caption span { font-size: 8px; letter-spacing: .1em; font-weight: 800; }
.image-caption strong { font-family: var(--display); font-size: 22px; }
.how-copy h2 { margin-bottom: 46px; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.steps li > span { font-family: var(--display); color: var(--red); }
.steps strong { font-family: var(--display); font-size: 17px; }
.steps p { margin: 7px 0 0; color: #6a675e; font-size: 14px; line-height: 1.5; }

.origin { width: 100%; max-width: none; background: var(--yellow); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding-left: max(32px, calc((100vw - 1240px)/2)); padding-right: max(32px, calc((100vw - 1240px)/2)); display: grid; grid-template-columns: 1fr .75fr; align-items: center; gap: 100px; }
.origin-copy > p { font-size: 17px; line-height: 1.65; max-width: 590px; margin: 30px 0 32px; }
.tweet-card { display: block; position: relative; padding: 13px; background: var(--paper); border: 2px solid var(--ink); transform: rotate(2deg); box-shadow: 10px 10px 0 var(--ink); transition: transform .25s; }
.tweet-card:hover { transform: rotate(0); }
.tweet-card img { width: 100%; }
.tweet-open { position: absolute; right: -18px; top: -18px; width: 55px; height: 55px; display: grid; place-items: center; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; font-size: 24px; }

.contract-section { min-height: 690px; padding: 130px 32px; background: var(--ink); color: white; text-align: center; position: relative; overflow: hidden; }
.contract-section > * { position: relative; z-index: 1; }
.contract-glow { position: absolute; z-index: 0; width: 600px; height: 600px; border-radius: 50%; background: var(--red); filter: blur(100px); opacity: .18; left: 50%; top: 48%; transform: translate(-50%, -50%); }
.contract-section > p { color: #aaa89e; font-size: 16px; margin: 30px auto 36px; }
.contract-box { width: min(700px, 100%); min-height: 92px; margin: 0 auto; padding: 16px 23px; background: #272724; color: white; border: 1px solid #4a4943; border-radius: 6px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; cursor: pointer; transition: border-color .2s, transform .2s; }
.contract-box:hover { border-color: var(--yellow); transform: translateY(-2px); }
.contract-status { font-size: 9px; letter-spacing: .12em; font-weight: 800; color: #aaa89e; }
.contract-status i { display: inline-block; width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; margin-right: 6px; }
.contract-box strong { font-family: var(--body); font-size: clamp(11px, 1.7vw, 16px); letter-spacing: .015em; overflow-wrap: anywhere; }
.copy-label { font-size: 10px; font-weight: 800; color: var(--yellow); }
.social-row { display: flex; justify-content: center; gap: 42px; margin-top: 44px; font-size: 10px; letter-spacing: .1em; font-weight: 800; }
.social-row a:hover { color: var(--yellow); }

footer { background: var(--ink); color: white; border-top: 1px solid #343430; min-height: 150px; padding: 44px max(32px, calc((100vw - 1240px)/2)); display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 40px; }
.footer-brand img { border-color: white; }
footer p { color: #77766f; font-size: 10px; line-height: 1.6; max-width: 540px; text-align: center; margin: 0 auto; }
footer > span { font-size: 9px; letter-spacing: .1em; color: #77766f; text-align: right; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; transform: translate(-50%, 120px); opacity: 0; background: var(--yellow); color: var(--ink); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); padding: 13px 18px; font-size: 12px; font-weight: 800; transition: transform .3s, opacity .3s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 980px) {
  .nav { width: calc(100% - 36px); }
  .nav-links { display: none; }
  .hero { width: calc(100% - 40px); grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(800px, 100%); justify-self: center; }
  .photo-frame img { height: 430px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 28px; }
  .tax-grid { grid-template-columns: 1fr 1fr; }
  .tax-card:last-child { grid-column: span 2; min-height: 330px; }
  .how { grid-template-columns: 1fr; gap: 90px; }
  .how-image { width: min(600px, 90%); }
  .origin { grid-template-columns: 1fr; }
  .tweet-card { width: min(560px, 92%); justify-self: center; }
}

@media (max-width: 620px) {
  .nav { height: 72px; }
  .nav .button { display: none; }
  .brand img { width: 34px; height: 34px; }
  .hero { min-height: auto; padding: 52px 0 72px; gap: 55px; }
  h1 { font-size: clamp(42px, 11.5vw, 56px); }
  .hero-lede { max-width: 320px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .proof-row > div { min-width: 0; flex: 1; margin-right: 10px; padding-right: 10px; }
  .proof-row strong { font-size: 19px; }
  .proof-row span { font-size: 8px; }
  .hero-visual { padding-left: 15px; }
  .photo-frame img { height: 290px; }
  .chillin-sticker { width: 92px; height: 92px; right: -7px; }
  .chillin-sticker strong { font-size: 13px; }
  .temp-card { transform: scale(.8) rotate(-3deg); transform-origin: bottom left; }
  .status-pill { transform: scale(.85) rotate(-4deg); transform-origin: top left; }
  .section { width: calc(100% - 40px); padding: 92px 0; }
  .section h2, .contract-section h2 { font-size: clamp(46px, 14vw, 66px); }
  .section-heading { margin-bottom: 42px; }
  .tax-grid { grid-template-columns: 1fr; }
  .tax-card, .tax-card:last-child { grid-column: auto; min-height: 330px; }
  .tax-card > strong { font-size: 120px; }
  .how-image { width: calc(100% - 16px); margin-left: 10px; }
  .image-caption { right: -10px; }
  .origin { width: 100%; padding-left: 20px; padding-right: 20px; gap: 65px; }
  .tweet-card { width: 94%; }
  .contract-section { min-height: 620px; padding: 100px 20px; }
  .contract-box { grid-template-columns: 1fr; gap: 8px; }
  .contract-box strong { order: -1; }
  .social-row { flex-direction: column; gap: 20px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer p { order: 3; }
  footer > span { text-align: center; }
  .footer-brand { justify-content: center; }
}
