/* -------------------------------------------------------
   $WAGYU - Single-section pixel landing page
   ------------------------------------------------------- */

:root {
  --bg: #fae9b9;
  --bg-2: #fff1c8;
  --cream: #fff7de;
  --ink: #141619;
  --muted: #493d2d;
  --red: #d83b3f;
  --red-dark: #9d1f25;
  --red-light: #ef5a5b;
  --gold: #f2b94b;
  --gold-2: #f8d47a;
  --line: rgba(210, 146, 39, 0.55);
  --shadow: rgba(92, 50, 8, 0.18);
  --pixel: "Press Start 2P", monospace;
  --soft-pixel: "Pixelify Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--soft-pixel);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding: 14px 16px 76px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.82) 0 6%, rgba(255, 240, 181, 0.55) 22%, transparent 52%),
    linear-gradient(180deg, #fff1c8 0%, #fbe9b1 58%, #f7d983 100%);
}

.sunburst {
  position: absolute;
  inset: 70px -15vw 20%;
  z-index: -4;
  opacity: 0.16;
  background:
    repeating-conic-gradient(
      from -4deg at 50% 35%,
      rgba(255, 255, 255, 0.85) 0deg 9deg,
      transparent 9deg 22deg
    );
  -webkit-mask-image: radial-gradient(circle at 50% 36%, #000 0 52%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 36%, #000 0 52%, transparent 78%);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(90deg, #000 1px, transparent 1px),
    linear-gradient(#000 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

/* Header ------------------------------------------------ */

.site-header {
  position: relative;
  z-index: 20;
  width: min(1140px, 100%);
  min-height: 80px;
  margin: 0 auto;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 244, 207, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 14px 35px rgba(155, 105, 18, 0.05);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--pixel);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-shadow: 0 3px 0 #fff;
}

.brand img {
  width: 40px;
  height: 34px;
  object-fit: cover;
  object-position: center;
  image-rendering: pixelated;
  transform: rotate(-8deg);
  filter: drop-shadow(0 3px 1px rgba(95, 32, 9, .28));
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 38px);
}

.nav a {
  position: relative;
  padding: 9px 0;
  font-family: var(--pixel);
  font-size: clamp(.49rem, .65vw, .62rem);
  white-space: nowrap;
  transition: transform .18s ease, color .18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width .18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--red);
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.copy-button,
.community-button,
.primary-cta {
  position: relative;
  overflow: hidden;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: #191b1f;
  color: #fff;
  box-shadow: 0 4px 0 rgba(0,0,0,.14);
  transition: transform .16s ease, box-shadow .16s ease;
}

.icon-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 rgba(0,0,0,.11);
}

.icon-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(0,0,0,.13);
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.telegram-button {
  background: #15171a;
}

.copy-button {
  min-height: 46px;
  border: 1px solid rgba(110, 16, 16, .16);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--red-light), var(--red));
  color: #fff;
  font-family: var(--pixel);
  font-size: .66rem;
  letter-spacing: .03em;
  box-shadow:
    inset 0 -3px 0 rgba(108, 17, 21, .25),
    0 4px 0 rgba(121, 53, 22, .12);
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease;
}

.copy-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.copy-button:active {
  transform: translateY(1px);
}

.header-copy {
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.header-copy svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 0;
  border-radius: 9px;
  background: #17191c;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  z-index: 19;
  top: 84px;
  right: 16px;
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 245, 215, .96);
  box-shadow: 0 24px 60px rgba(78, 45, 7, .18);
  backdrop-filter: blur(14px);
}

.mobile-panel.open {
  display: flex;
}

.mobile-panel > a {
  padding: 12px 8px;
  border-bottom: 1px dashed rgba(120, 72, 12, .2);
  font-family: var(--pixel);
  font-size: .68rem;
}

.mobile-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 8px;
}

.mobile-socials a,
.mobile-socials button {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #17191c;
  color: #fff;
  font-family: var(--pixel);
  font-size: .55rem;
}

.mobile-socials button {
  grid-column: 1 / -1;
  background: var(--red);
}

/* Hero content ----------------------------------------- */

.hero-content {
  position: relative;
  z-index: 3;
  width: min(840px, 100%);
  margin: 18px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mini-steak-wrap {
  position: relative;
  width: 170px;
  height: 88px;
  display: grid;
  place-items: center;
}

.mini-steak {
  width: 86px;
  height: auto;
  image-rendering: pixelated;
  transform: rotate(8deg);
  animation: miniFloat 3.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 8px rgba(100, 35, 7, .16));
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #e99d22;
  transform: rotate(45deg);
  animation: twinkle 1.7s ease-in-out infinite alternate;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  inset: 3px -7px;
  background: inherit;
}

.sparkle::after {
  inset: -7px 3px;
}

.sparkle-a {
  left: 24px;
  top: 36px;
}

.sparkle-b {
  right: 18px;
  top: 30px;
  animation-delay: .6s;
}

.hero-title {
  margin: -2px 0 0;
  font-family: var(--pixel);
  font-size: clamp(3.7rem, 9vw, 7.4rem);
  line-height: .95;
  letter-spacing: .03em;
  color: #111316;
  text-shadow:
    -5px -5px 0 #fff,
     5px -5px 0 #fff,
    -5px  5px 0 #fff,
     5px  5px 0 #fff,
     0 9px 0 #e9c16b,
     0 13px 18px rgba(108, 67, 17, .12);
}

.ticker {
  margin-top: 16px;
  padding: 8px 16px 7px;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  font-family: var(--pixel);
  font-size: clamp(.7rem, 1.6vw, 1rem);
  letter-spacing: .03em;
  box-shadow: inset 0 -3px 0 rgba(126, 22, 28, .26);
}

.hero-copy {
  margin: 16px 0 0;
  color: #171719;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 600;
  line-height: 1.23;
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

.hero-copy strong {
  font-weight: 700;
}

.steak-emoji {
  font-size: .8em;
}

/* Steak stage ------------------------------------------ */

.steak-stage {
  position: relative;
  width: 100%;
  height: 370px;
  margin-top: 8px;
}

.platform {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: min(560px, 84vw);
  height: 190px;
  transform: translateX(-50%);
  border-radius: 50% 50% 24% 24% / 44% 44% 18% 18%;
  background:
    linear-gradient(180deg, #ffe89c 0 10%, #f0b844 11% 19%, #f9d67e 20% 100%);
  box-shadow:
    0 18px 40px rgba(143, 87, 10, .12),
    inset 0 4px 0 rgba(255,255,255,.45);
}

.platform::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 24px;
  height: 90px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 35%, #fff7d2 0%, #f9dc8e 54%, #e9ac36 100%);
  box-shadow:
    inset 0 6px 16px rgba(255,255,255,.58),
    0 9px 0 #e7a827;
}

.hero-steak {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 75px;
  width: min(430px, 70vw);
  height: auto;
  transform: translateX(-50%) rotate(1deg);
  image-rendering: pixelated;
  filter:
    drop-shadow(0 22px 10px rgba(115, 47, 10, .19))
    drop-shadow(0 5px 0 rgba(117, 26, 19, .07));
  animation: steakFloat 4.2s ease-in-out infinite;
}

.reward-callout {
  position: absolute;
  z-index: 4;
  right: 1.5%;
  top: 58px;
  min-width: 220px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(227, 165, 58, .56);
  border-radius: 18px;
  background: rgba(255, 247, 220, .76);
  box-shadow:
    inset 0 1px 0 #fff,
    0 14px 32px rgba(118, 71, 9, .07);
  backdrop-filter: blur(4px);
  text-align: left;
}

.reward-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 0 rgba(117, 62, 4, .2));
}

.reward-callout strong,
.reward-callout span {
  display: block;
  font-family: var(--pixel);
  font-size: .63rem;
  line-height: 1.65;
}

.stage-spark {
  position: absolute;
  z-index: 4;
  color: white;
  font-size: 2rem;
  text-shadow: 0 0 18px #fff;
  animation: starPulse 1.6s ease-in-out infinite alternate;
}

.s1 { left: 13%; top: 85px; }
.s2 { left: 24%; top: 220px; animation-delay: .5s; }
.s3 { right: 18%; top: 150px; animation-delay: .2s; }
.s4 { right: 25%; top: 250px; animation-delay: .8s; }

/* Feature cards ---------------------------------------- */

.feature-grid {
  width: min(720px, 94vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -2px;
  position: relative;
  z-index: 5;
}

.feature-card {
  min-height: 175px;
  padding: 24px 16px 18px;
  border: 2px solid rgba(224, 163, 56, .46);
  border-radius: 18px;
  background: rgba(255, 247, 222, .74);
  box-shadow:
    inset 0 1px 0 #fff,
    0 12px 24px rgba(135, 83, 16, .06);
  backdrop-filter: blur(5px);
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 #fff,
    0 20px 38px rgba(135, 83, 16, .11);
}

.feature-icon {
  display: block;
  height: 43px;
  font-size: 2.3rem;
  line-height: 1;
}

.chart-icon {
  color: #0e714b;
  font-size: 3rem;
  font-family: sans-serif;
  font-weight: 900;
}

.feature-card h2 {
  margin: 10px 0 7px;
  font-family: var(--pixel);
  font-size: .68rem;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  font-family: var(--soft-pixel);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

/* CTA --------------------------------------------------- */

.primary-cta {
  width: min(420px, 90vw);
  min-height: 68px;
  margin-top: 20px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 4px solid #201a18;
  border-radius: 8px;
  background: linear-gradient(180deg, #ea5355 0%, #cf3438 100%);
  color: #fff;
  font-family: var(--pixel);
  font-size: clamp(.72rem, 1.5vw, .95rem);
  letter-spacing: .01em;
  box-shadow:
    0 7px 0 #74181b,
    0 13px 18px rgba(83, 28, 12, .15),
    inset 0 2px 0 rgba(255,255,255,.28);
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-20deg);
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transition: transform .45s ease;
}

.primary-cta:hover {
  transform: translateY(-3px);
  filter: saturate(1.06);
  box-shadow:
    0 10px 0 #74181b,
    0 18px 26px rgba(83, 28, 12, .16),
    inset 0 2px 0 rgba(255,255,255,.28);
}

.primary-cta:hover::before {
  transform: translateX(250%) skewX(-20deg);
}

.primary-cta:active {
  transform: translateY(5px);
  box-shadow:
    0 2px 0 #74181b,
    0 7px 12px rgba(83, 28, 12, .13),
    inset 0 2px 0 rgba(255,255,255,.28);
}

.cta-spark {
  color: #ffd36d;
  font-size: 1.4rem;
  animation: starPulse 1s ease-in-out infinite alternate;
}

.join-copy {
  margin: 18px 0 14px;
  font-family: var(--pixel);
  font-size: clamp(.58rem, 1.3vw, .72rem);
  line-height: 1.7;
}

.join-copy strong {
  color: var(--red);
  font-size: 1.05em;
}

/* Contract card ---------------------------------------- */

.contract-card {
  position: relative;
  z-index: 5;
  width: min(650px, 94vw);
  padding: 22px;
  border: 2px solid rgba(220, 155, 48, .58);
  border-radius: 20px;
  background: rgba(255, 247, 220, .84);
  box-shadow:
    inset 0 1px 0 #fff,
    0 22px 50px rgba(122, 75, 10, .09);
  backdrop-filter: blur(6px);
}

.contract-label {
  margin: 0 0 12px;
  font-family: var(--pixel);
  font-size: .64rem;
}

.contract-row {
  width: min(460px, 100%);
  height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 55px;
  overflow: hidden;
  border: 2px solid rgba(223, 165, 69, .26);
  border-radius: 10px;
  background: rgba(250, 226, 169, .63);
}

.contract-address {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 12px;
  color: #211d18;
  background: transparent;
  font-family: var(--soft-pixel);
  font-size: clamp(.9rem, 2vw, 1.08rem);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-copy {
  min-width: 55px;
  border-radius: 0;
  box-shadow: none;
}

.contract-copy svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.community-actions {
  width: min(470px, 100%);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.community-button {
  min-height: 47px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  color: #fff;
  font-family: var(--pixel);
  font-size: .57rem;
  box-shadow: 0 5px 0 rgba(0,0,0,.1);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.community-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(0,0,0,.08);
  filter: brightness(1.05);
}

.community-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(0,0,0,.09);
}

.community-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.x-community {
  background: #181a1e;
}

.telegram-community {
  background: #2589e8;
}

/* Pixel background footer -------------------------------- */

.pixel-ground {
  position: absolute;
  z-index: -1;
  bottom: -10px;
  width: 44vw;
  height: 270px;
  opacity: .98;
  background:
    linear-gradient(135deg, transparent 0 23%, #fff5ce 23% 31%, transparent 31%) 0 0 / 120px 120px,
    linear-gradient(45deg, transparent 0 28%, #fff0b8 28% 38%, transparent 38%) 28px 18px / 115px 115px,
    linear-gradient(180deg, transparent 0 35%, #f6c14f 35% 49%, #eda529 49% 100%);
  image-rendering: pixelated;
  clip-path: polygon(0 42%, 8% 35%, 15% 42%, 22% 30%, 31% 40%, 40% 24%, 50% 38%, 59% 27%, 68% 43%, 76% 32%, 84% 45%, 92% 38%, 100% 48%, 100% 100%, 0 100%);
}

.pixel-ground-left {
  left: -8vw;
}

.pixel-ground-right {
  right: -8vw;
  transform: scaleX(-1);
}

/* Toast -------------------------------------------------- */

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  padding: 12px 16px;
  border: 2px solid #211b18;
  border-radius: 8px;
  background: #1b1d20;
  color: #fff;
  font-family: var(--pixel);
  font-size: .6rem;
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 0 rgba(0,0,0,.16);
  transition: transform .22s ease, opacity .22s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Animations --------------------------------------------- */

@keyframes miniFloat {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-7px) rotate(6deg); }
}

@keyframes steakFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(1deg); }
  50% { transform: translateX(-50%) translateY(-8px) rotate(-1deg); }
}

@keyframes twinkle {
  from { opacity: .45; transform: rotate(45deg) scale(.75); }
  to { opacity: 1; transform: rotate(45deg) scale(1.1); }
}

@keyframes starPulse {
  from { opacity: .45; transform: scale(.72) rotate(-5deg); }
  to { opacity: 1; transform: scale(1.08) rotate(5deg); }
}

/* Responsive --------------------------------------------- */

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .brand {
    font-size: 1.15rem;
  }

  .hero-content {
    margin-top: 10px;
  }

  .reward-callout {
    right: 0;
    min-width: 190px;
    padding: 14px 15px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-inline: 10px;
    padding-bottom: 54px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .brand img {
    width: 34px;
    height: 30px;
  }

  .hero-title {
    font-size: clamp(3.25rem, 16vw, 5.7rem);
    text-shadow:
      -3px -3px 0 #fff,
       3px -3px 0 #fff,
      -3px  3px 0 #fff,
       3px  3px 0 #fff,
       0 7px 0 #e9c16b,
       0 10px 14px rgba(108, 67, 17, .1);
  }

  .hero-copy {
    width: min(92vw, 580px);
    line-height: 1.26;
  }

  .desktop-break {
    display: none;
  }

  .steak-stage {
    height: 320px;
  }

  .platform {
    width: min(500px, 90vw);
    height: 160px;
  }

  .hero-steak {
    width: min(390px, 82vw);
    bottom: 65px;
  }

  .reward-callout {
    top: 35px;
    right: 1%;
    min-width: 150px;
    padding: 11px 12px;
    gap: 8px;
    border-radius: 13px;
  }

  .reward-icon {
    font-size: 1.6rem;
  }

  .reward-callout strong,
  .reward-callout span {
    font-size: .48rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    width: min(460px, 94vw);
  }

  .feature-card {
    min-height: 130px;
    padding: 18px;
  }

  .feature-icon {
    height: 34px;
    font-size: 1.9rem;
  }

  .feature-card h2 {
    margin-top: 7px;
  }

  .primary-cta {
    min-height: 62px;
    margin-top: 18px;
  }

  .community-actions {
    grid-template-columns: 1fr;
  }

  .pixel-ground {
    width: 65vw;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-inline: 8px;
  }

  .brand {
    gap: 8px;
    font-size: .9rem;
  }

  .brand img {
    width: 30px;
    height: 27px;
  }

  .mini-steak-wrap {
    height: 72px;
  }

  .mini-steak {
    width: 70px;
  }

  .ticker {
    margin-top: 12px;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .steak-stage {
    height: 275px;
    margin-top: 3px;
  }

  .platform {
    height: 142px;
  }

  .platform::after {
    top: 19px;
    height: 72px;
  }

  .hero-steak {
    width: min(340px, 88vw);
    bottom: 59px;
  }

  .reward-callout {
    top: 22px;
    right: 2px;
    min-width: 132px;
    padding: 9px;
  }

  .reward-callout strong,
  .reward-callout span {
    font-size: .41rem;
  }

  .s1 { left: 5%; }
  .s3 { right: 6%; }

  .feature-card p {
    font-size: .94rem;
  }

  .contract-card {
    padding: 18px 12px;
  }

  .contract-row {
    grid-template-columns: minmax(0, 1fr) 50px;
    height: 49px;
  }

  .contract-address {
    justify-content: flex-start;
    font-size: .9rem;
  }

  .primary-cta {
    width: min(390px, 94vw);
    padding-inline: 17px;
  }
}

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


/* -------------------------------------------------------
   V2 refinements requested by user
   - remove floating top steak
   - remove bottom abstract ground
   - reduce overlap around hero steak
   - replace CTA with contract-copy button
   ------------------------------------------------------- */

.hero-content {
  margin-top: 26px;
}

.hero-title {
  margin-top: 10px;
}

.hero-copy {
  position: relative;
  z-index: 6;
  margin-top: 18px;
  max-width: 720px;
}

.steak-stage {
  height: 455px;
  margin-top: 26px;
}

.platform {
  width: min(520px, 82vw);
  height: 170px;
  bottom: 8px;
}

.platform::after {
  top: 20px;
  height: 76px;
}

.hero-steak {
  width: min(355px, 62vw);
  bottom: 64px;
  transform: translateX(-50%) rotate(-1deg);
}

.reward-callout {
  top: 122px;
  right: 3%;
  min-width: 200px;
}

.primary-cta {
  margin-top: 22px;
  width: min(470px, 92vw);
}

.hero-copy-ca-button {
  display: inline-flex;
  border: 4px solid #201a18;
  cursor: pointer;
}

.hero-copy-ca-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.join-copy {
  margin-top: 16px;
}

.pixel-ground,
.pixel-ground-left,
.pixel-ground-right {
  display: none !important;
}

@media (max-width: 980px) {
  .steak-stage {
    height: 430px;
  }

  .hero-steak {
    width: min(335px, 68vw);
    bottom: 66px;
  }

  .reward-callout {
    top: 116px;
    right: 2%;
  }
}

@media (max-width: 720px) {
  .hero-content {
    margin-top: 18px;
  }

  .hero-title {
    margin-top: 0;
  }

  .hero-copy {
    max-width: 92vw;
  }

  .steak-stage {
    height: 360px;
    margin-top: 18px;
  }

  .platform {
    width: min(440px, 88vw);
    height: 145px;
  }

  .platform::after {
    top: 18px;
    height: 64px;
  }

  .hero-steak {
    width: min(290px, 70vw);
    bottom: 54px;
  }

  .reward-callout {
    top: 22px;
    right: 6px;
    min-width: 144px;
    padding: 10px 12px;
  }

  .reward-callout strong,
  .reward-callout span {
    font-size: .42rem;
  }

  .primary-cta {
    min-height: 62px;
    font-size: clamp(.64rem, 2.3vw, .82rem);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .steak-stage {
    height: 320px;
  }

  .platform {
    height: 132px;
  }

  .hero-steak {
    width: min(255px, 72vw);
    bottom: 50px;
  }

  .reward-callout {
    top: 12px;
    right: 0;
    min-width: 124px;
    padding: 8px 9px;
  }

  .reward-icon {
    font-size: 1.2rem;
  }

  .reward-callout strong,
  .reward-callout span {
    font-size: .36rem;
  }

  .hero-copy-ca-button svg {
    width: 19px;
    height: 19px;
  }
}
