@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@500;700;900&display=swap');

:root {
  --red: #e10600;
  --red-dark: #7b0200;
  --hot: #ff3b2f;
  --cream: #fff0d8;
  --paper: #fff8ea;
  --ink: #0c0505;
  --muted: #6f5a52;
  --card: rgba(255, 248, 234, 0.82);
  --line: rgba(12, 5, 5, 0.14);
  --shadow: 0 24px 90px rgba(64, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 59, 47, 0.44), transparent 24rem),
    radial-gradient(circle at 88% 6%, rgba(255, 206, 76, 0.52), transparent 22rem),
    radial-gradient(circle at 76% 82%, rgba(225, 6, 0, 0.34), transparent 22rem),
    linear-gradient(135deg, #fff4df 0%, #ffd8ca 42%, #fff8ea 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 280 280' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(18px);
  background: rgba(255, 240, 216, 0.74);
  border-bottom: 1px solid rgba(12, 5, 5, 0.10);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--red) url("./assets/roar-icon.png?v=2") center / cover no-repeat;
  box-shadow: 0 10px 25px rgba(225, 6, 0, .28);
}
.nav nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav nav a:hover { color: var(--ink); }
.nav-actions { display: inline-flex; align-items: center; gap: 10px; }
.nav-social {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #ffd447;
  box-shadow: 4px 4px 0 rgba(12, 5, 5, .22);
}
.nav-social svg { display: block; width: 21px; height: 21px; transform: translate(-1px, 1px); }
.nav-cta {
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.section { padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 76px); }
.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}
h1, h2, h3 { margin: 0; line-height: .92; letter-spacing: -0.06em; }
h1, h2 { font-family: Anton, Impact, sans-serif; font-weight: 400; text-transform: uppercase; }
h1 { font-size: clamp(58px, 9.5vw, 132px); max-width: 11ch; }
h2 { font-size: clamp(44px, 7vw, 92px); }
h3 { font-size: 28px; }
.lead {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.38;
  color: #2c1915;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  font-weight: 900;
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translate(-2px, -2px); }
.primary { background: var(--red); color: white; box-shadow: 7px 7px 0 var(--ink); }
.secondary { background: var(--paper); box-shadow: 7px 7px 0 rgba(12, 5, 5, .24); }
.ghost { background: rgba(255, 248, 234, .42); box-shadow: 7px 7px 0 rgba(12, 5, 5, .16); }
.wide { width: fit-content; }
.contract-card {
  display: grid;
  gap: 8px;
  max-width: 650px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 248, 234, .68);
  box-shadow: 0 12px 40px rgba(64,0,0,.08);
}
.contract-card > span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.contract-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.contract-card code { overflow-wrap: anywhere; font-size: 14px; }
.contract-card b { padding: 9px 12px; border-radius: 12px; background: var(--ink); color: white; }

.hero-art { position: relative; min-height: 560px; display: grid; place-items: center; }
.moon { position: absolute; border-radius: 50%; filter: blur(1px); }
.moon-one { width: 290px; height: 290px; background: var(--red); right: 2%; top: 5%; opacity: .24; }
.moon-two { width: 200px; height: 200px; background: #ffd447; left: 0; bottom: 8%; opacity: .72; }
.mascot-card {
  position: relative;
  width: min(430px, 88vw);
  height: 520px;
  border: 3px solid var(--ink);
  border-radius: 44px;
  background: linear-gradient(180deg, #fffdfa, #ffdacf);
  box-shadow: 18px 18px 0 var(--ink), var(--shadow);
  overflow: hidden;
  transform: rotate(2deg);
}
.ticker {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffd447;
  font-weight: 900;
}
.caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 248, 234, .78);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mascot {
  position: absolute;
  inset: 76px 24px 92px;
  width: calc(100% - 48px);
  height: calc(100% - 168px);
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: white;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}

.marquee { border-block: 3px solid var(--ink); background: var(--ink); color: #ffd447; overflow: hidden; }
.marquee div { display: flex; width: max-content; animation: scroll 22s linear infinite; }
.marquee span { padding: 18px 30px; font-family: Anton, Impact, sans-serif; font-size: 34px; letter-spacing: .02em; }
@keyframes scroll { to { transform: translateX(-50%); } }

.lore-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.lore-card, .buy-panel, .disclaimer, .cards article, .quote-strip {
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: var(--card);
  box-shadow: 10px 10px 0 rgba(12, 5, 5, .16);
}
.lore-card { padding: clamp(24px, 4vw, 44px); font-size: clamp(18px, 2vw, 25px); line-height: 1.4; }
.lore-card p:first-child { margin-top: 0; }
.lore-card p:last-child { margin-bottom: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 0; }
.cards article { padding: 28px; }
.cards span { display: inline-flex; margin-bottom: 34px; color: var(--red); font-weight: 900; }
.cards p { color: var(--muted); line-height: 1.5; }

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  margin-inline: clamp(18px, 5vw, 76px);
  margin-bottom: clamp(42px, 6vw, 78px);
  padding: clamp(26px, 5vw, 52px);
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(12,5,5,.96), rgba(123,2,0,.90));
  color: var(--paper);
  box-shadow: 12px 12px 0 rgba(12, 5, 5, .20);
}
.proof-panel .eyebrow { color: #ffd447; }
.proof-panel h2 { color: #fff8ea; margin-bottom: 20px; }
.proof-copy { font-size: clamp(18px, 2vw, 23px); line-height: 1.42; }
.proof-copy p:last-child { margin-bottom: 0; }
.video-proof { display: grid; gap: 18px; justify-items: center; padding-bottom: 18px; }
.video-frame {
  width: min(100%, 325px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: #050303;
  box-shadow: 10px 10px 0 rgba(255, 212, 71, .18);
}
.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050303;
}
.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 212, 71, .12);
  color: #ffd447;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.signal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: clamp(20px, 4vw, 48px);
  padding-top: 0;
}
.signal-item {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: rgba(255, 248, 234, .78);
  box-shadow: 8px 8px 0 rgba(12, 5, 5, .14);
}
.signal-item strong { font-size: 21px; letter-spacing: -.035em; }
.signal-item span { color: var(--muted); line-height: 1.4; }

.buy-panel { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: center; margin-inline: clamp(18px, 5vw, 76px); padding: clamp(26px, 5vw, 52px); background: linear-gradient(135deg, rgba(255,248,234,.88), rgba(225,6,0,.16)); }
.buy-panel ol { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.buy-panel li { display: grid; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.56); }
.buy-panel li span { color: var(--muted); }
.buy-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.quote-strip { margin-inline: clamp(18px, 5vw, 76px); padding: clamp(28px, 5vw, 54px); text-align: center; background: var(--ink); color: #ffd447; }
.quote-strip p { margin: 0; font-family: Anton, Impact, sans-serif; font-size: clamp(34px, 6vw, 82px); line-height: .98; text-transform: uppercase; }
.disclaimer { margin-inline: clamp(18px, 5vw, 76px); padding: 24px; color: #604f48; line-height: 1.45; }
footer { display: flex; justify-content: space-between; gap: 16px; padding: 28px clamp(18px, 5vw, 76px); color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
  .nav nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-art { min-height: 500px; }
  .lore-grid, .buy-panel, .cards, .proof-panel, .signal-list, .signal-item { grid-template-columns: 1fr; }
  .buy-panel, .proof-panel, .disclaimer, .quote-strip { margin-inline: 18px; }
  .proof-panel { margin-bottom: 44px; }
  .signal-list { margin-top: 18px; }
}

@media (max-width: 560px) {
  .nav { padding: 14px 16px; }
  .brand span:last-child { display: none; }
  .nav-actions { gap: 8px; }
  .nav-social { width: 38px; height: 38px; }
  .nav-social svg { width: 19px; height: 19px; }
  .nav-cta { padding: 9px 12px; font-size: 13px; }
  h1 { font-size: 58px; }
  .section { padding-inline: 18px; }
  .mascot-card { height: 470px; border-radius: 34px; box-shadow: 10px 10px 0 var(--ink), var(--shadow); }
  .mascot { inset: 70px 18px 88px; width: calc(100% - 36px); height: calc(100% - 158px); }
  .contract-card button { align-items: flex-start; flex-direction: column; }
  .signal-item { gap: 8px; padding: 20px; }
  footer { flex-direction: column; }
}
