:root {
  --black: #020302;
  --black-soft: #080c07;
  --yellow: #fdcd07;
  --green: #4caf50;
  --green-deep: #053b24;
  --white: #fff8d6;
  --muted: rgba(253, 205, 7, 0.72);
  --line: rgba(76, 175, 80, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--black);
  color: var(--yellow);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, system-ui, sans-serif;
}

a {
  color: inherit;
}

.home-page {
  overflow-x: hidden;
}

.roast-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 760px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 74px);
  min-height: 100svh;
  padding: clamp(120px, 15vw, 168px) clamp(18px, 6vw, 94px) 82px;
  overflow: hidden;
  isolation: isolate;
}

.toxic-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58) 70%, rgba(0, 0, 0, 0.98)),
    linear-gradient(90deg, rgba(0, 23, 9, 0.7), rgba(3, 57, 24, 0.38)),
    url("assets/lab-background-green.png") center / cover no-repeat,
    #020302;
}

.toxic-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 58, 20, 0.5);
  mix-blend-mode: multiply;
}

.toxic-bg span {
  position: absolute;
  display: block;
  border: 2px solid rgba(76, 175, 80, 0.4);
  border-radius: 999px;
  filter: blur(0.2px);
}

.toxic-bg span:nth-child(1) {
  width: 44vw;
  height: 44vw;
  right: -12vw;
  top: -10vw;
}

.toxic-bg span:nth-child(2) {
  width: 34vw;
  height: 34vw;
  left: -9vw;
  bottom: -12vw;
}

.toxic-bg span:nth-child(3) {
  width: 20vw;
  height: 20vw;
  right: 36vw;
  bottom: 16vh;
}

.bb-logo {
  position: absolute;
  top: clamp(22px, 5vw, 64px);
  left: clamp(18px, 12vw, 244px);
  display: block;
  grid-template-columns: 58px 148px;
  grid-template-rows: 54px 54px;
  align-items: center;
  width: 210px;
  text-decoration: none;
  transform: skew(-8deg);
}

.image-logo {
  width: min(330px, 45vw);
  transform: rotate(-7deg);
}

.image-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.85));
}

.logo-cube {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 3px solid var(--yellow);
  background: var(--green);
  color: var(--black);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.95);
}

.logo-cube.bottom {
  margin-left: 62px;
}

.logo-word {
  color: var(--yellow);
  font-size: 2.45rem;
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
  text-shadow: 3px 3px 0 #000;
}

.logo-word.brand {
  margin-left: 62px;
}

.roast-panel {
  width: min(100%, 760px);
  margin-inline: auto;
  padding: clamp(38px, 6vw, 64px) clamp(18px, 5vw, 70px);
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: none;
  text-align: center;
}

.roast-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: clamp(0.9rem, 1.8vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.roast-panel h1,
.roast-panel h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(3rem, 6vw, 4.95rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.8);
}

.roast-panel h2 {
  margin-top: 6px;
}

.roast-copy {
  max-width: 620px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  font-weight: 300;
  line-height: 1.25;
}

.roast-form {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.roast-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.roast-form input {
  width: 100%;
  min-height: 70px;
  padding: 18px 24px;
  border: 3px solid var(--green);
  border-radius: 12px;
  outline: 0;
  background: #000;
  color: var(--yellow);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(253, 205, 7, 0.12);
}

.roast-form input::placeholder {
  color: rgba(253, 205, 7, 0.48);
}

.roast-form input:focus {
  border-color: var(--yellow);
}

.roast-form button,
.paid-report {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  color: #000;
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  font-style: italic;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.roast-form button {
  background: rgba(76, 175, 80, 0.56);
}

.paid-report {
  background: var(--yellow);
}

.roast-form button:hover,
.paid-report:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: #000;
}

.paid-report:hover {
  background: var(--green);
  color: #fff;
}

.secondary-link {
  background: #111;
  color: var(--yellow);
  border: 2px solid var(--green);
}

.simple-page {
  display: grid;
  grid-template-columns: minmax(280px, 700px);
  justify-content: center;
  padding-top: clamp(54px, 12vw, 120px);
}

.hazmat-card {
  position: absolute;
  right: clamp(-16px, 2.5vw, 56px);
  bottom: 0;
  z-index: -1;
  display: grid;
  place-items: end center;
  min-height: min(760px, 84svh);
  pointer-events: none;
}

.hazmat-card img {
  display: block;
  width: clamp(310px, 30vw, 460px);
  max-height: 90svh;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.84));
}

.hazmat-figure {
  position: relative;
  width: min(430px, 72vw);
  height: min(690px, 78svh);
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.84));
}

.hat {
  position: absolute;
  top: 6%;
  left: 18%;
  width: 64%;
  height: 16%;
  border: 5px solid #050505;
  border-radius: 4px 4px 34px 34px;
  background: #111;
  transform: rotate(-4deg);
}

.hat::before {
  content: "";
  position: absolute;
  left: -16%;
  right: -16%;
  bottom: -24px;
  height: 28px;
  border-radius: 999px;
  background: #0a0a0a;
}

.face {
  position: absolute;
  top: 18%;
  left: 29%;
  width: 42%;
  height: 20%;
  border: 5px solid #050505;
  border-radius: 46% 46% 42% 42%;
  background: #d8a15c;
}

.glasses {
  position: absolute;
  top: 38%;
  width: 34%;
  height: 22%;
  border: 5px solid #050505;
  border-radius: 999px;
  background: rgba(253, 205, 7, 0.2);
}

.glasses.left {
  left: 10%;
}

.glasses.right {
  right: 10%;
}

.glasses.left::after {
  content: "";
  position: absolute;
  top: 36%;
  left: 100%;
  width: 30%;
  height: 5px;
  background: #050505;
}

.goatee {
  position: absolute;
  left: 35%;
  bottom: -18%;
  width: 30%;
  height: 30%;
  border-radius: 0 0 999px 999px;
  background: #2a160d;
}

.suit {
  position: absolute;
  left: 8%;
  bottom: 0;
  width: 84%;
  height: 62%;
  border: 6px solid #050505;
  border-radius: 44% 44% 12px 12px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(0, 0, 0, 0.5) 49% 51%, transparent 52%),
    linear-gradient(145deg, #f0b400, #fdcd07 42%, #9d7c00);
}

.suit::before,
.suit::after {
  content: "";
  position: absolute;
  top: 20%;
  width: 36%;
  height: 30%;
  border: 6px solid #050505;
  border-radius: 999px;
  background: #fdcd07;
}

.suit::before {
  left: -19%;
  transform: rotate(28deg);
}

.suit::after {
  right: -19%;
  transform: rotate(-28deg);
}

.zip {
  position: absolute;
  top: 8%;
  left: calc(50% - 3px);
  width: 6px;
  height: 82%;
  background: #050505;
}

.badge {
  position: absolute;
  right: 24%;
  top: 22%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 4px solid #050505;
  border-radius: 999px;
  background: var(--green);
  color: #000;
  font-weight: 900;
}

.home-footer {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  left: clamp(18px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--yellow);
  font-size: 0.95rem;
  text-align: center;
}

.home-footer a {
  text-underline-offset: 4px;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: #050505;
  color: var(--yellow);
  border-bottom: 1px solid rgba(76, 175, 80, 0.35);
}

.site-footer {
  border-top: 1px solid rgba(76, 175, 80, 0.35);
  border-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 22px;
  font-weight: 900;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 4vw, 40px);
  color: var(--yellow);
}

.legal-page .eyebrow {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  font-style: italic;
  line-height: 0.95;
}

.legal-page h2 {
  margin-top: 38px;
  color: var(--green);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-page p,
.legal-page li {
  color: rgba(255, 248, 214, 0.78);
  font-size: 1.08rem;
}

@media (max-width: 940px) {
  .roast-hero {
    grid-template-columns: 1fr;
    padding-top: 154px;
  }

  .bb-logo {
    left: 50%;
    transform: translateX(-50%) skew(-8deg) scale(0.9);
  }

  .hazmat-card {
    position: absolute;
    right: -74px;
    bottom: 0;
    z-index: -1;
    opacity: 0.44;
    pointer-events: none;
  }

  .hazmat-card img {
    width: min(340px, 58vw);
  }
}

@media (max-width: 620px) {
  .roast-hero {
    padding-inline: 14px;
  }

  .roast-panel {
    padding: 26px 16px;
  }

  .home-footer,
  .site-header,
  .site-footer {
    align-items: center;
    flex-direction: column;
  }

  .home-footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 30px;
  }
}
