:root {
  --black: #10100f;
  --black-2: #181815;
  --cream: #f3eee3;
  --cream-2: #fff9ef;
  --green: #60764d;
  --green-dark: #3f4e31;
  --orange: #ff7417;
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 116, 23, 0.08), transparent 24rem),
    radial-gradient(circle at 78% 74%, rgba(96, 118, 77, 0.18), transparent 28rem),
    var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-board {
  width: min(100%, 1536px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 61.46% 38.54%;
  grid-template-rows: 60% 30.3% 9.7%;
  aspect-ratio: 3 / 2;
  background:
    radial-gradient(circle at 40% 40%, rgba(96, 118, 77, 0.1), transparent 36rem),
    linear-gradient(135deg, #10100f 0%, #1b1a17 52%, #10100f 100%);
}

.hero,
.side-top,
.products,
.launch,
.footer-main {
  min-width: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 40%, rgba(96, 118, 77, 0.36), transparent 24rem),
    radial-gradient(circle at 18% 78%, rgba(255, 116, 23, 0.08), transparent 18rem),
    linear-gradient(135deg, #11110f 0%, #191916 54%, #0d0d0c 100%);
  border-right: 4px solid rgba(255, 250, 240, 0.9);
}

.hero-nav {
  position: absolute;
  inset: 3.6% 6.7% auto 3.2%;
  z-index: 4;
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: min(100%, 214px);
}

.socials a:hover {
  color: var(--orange);
}

.hero-copy {
  position: absolute;
  left: 6.3%;
  top: 23.4%;
  z-index: 3;
  width: 42%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.3rem;
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.25rem, 3.35vw, 4rem);
  font-style: normal;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.88),
    0 10px 24px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

h1 span {
  display: inline-block;
  color: var(--green);
  font-size: 1.1em;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.88),
    0 0 18px rgba(96, 118, 77, 0.44);
}

h1::after {
  content: "";
  display: block;
  width: 95%;
  height: 5px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: skewX(-18deg);
}

.hero-copy p {
  width: 85%;
  color: var(--white);
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  line-height: 1.55;
}

.button,
button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 0.78rem 1.35rem;
  font: inherit;
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.primary,
button {
  border-color: var(--orange);
  color: var(--black);
  background: var(--orange);
}

.secondary {
  color: var(--white);
  background: transparent;
}

.dark {
  border-color: var(--green-dark);
  color: var(--white);
  background: var(--green-dark);
}

.hero-shirt {
  position: absolute;
  right: 2.5%;
  top: 12.4%;
  z-index: 2;
  width: 55%;
  filter: drop-shadow(0 26px 20px rgba(0, 0, 0, 0.45));
}

.hero-shirt-base {
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(0.42) contrast(1.24);
}

.hero-shirt-design {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 52%;
  height: auto;
  transform: translate(-50%, -49%) perspective(900px) rotateX(3deg) rotateZ(-0.5deg);
  filter:
    contrast(1.08)
    saturate(1.05)
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.28));
  opacity: 0.93;
}

.side-top {
  display: grid;
  grid-template-rows: 62.4% 37.6%;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 43%;
  align-items: center;
  overflow: hidden;
  padding: 7% 5.8%;
  background:
    radial-gradient(circle at 79% 44%, rgba(255, 116, 23, 0.18), transparent 10rem),
    radial-gradient(circle at 8% 18%, rgba(96, 118, 77, 0.1), transparent 16rem),
    linear-gradient(135deg, #fffaf0 0%, #f4efe4 63%, #ebe3d5 100%);
}

.about h2,
.section-heading h2,
.launch h2 {
  margin-bottom: 0.6rem;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.about h2 {
  white-space: nowrap;
}

.brush-line {
  display: block;
  width: 84%;
  height: 6px;
  margin: 0.25rem 0 1.45rem;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: skewX(-18deg);
}

.about p {
  max-width: 310px;
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  line-height: 1.7;
}

.mascot {
  width: min(100%, 300px);
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 14px 18px rgba(16, 16, 15, 0.16));
}

.proof {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 10%, rgba(96, 118, 77, 0.16), transparent 16rem),
    linear-gradient(180deg, #10100f 0%, #151512 100%);
  text-align: center;
  padding: 6.5% 7% 4%;
}

.proof::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 24px;
  background: linear-gradient(90deg, #fffaf0, #f4efe4);
  clip-path: polygon(0 0, 5% 76%, 11% 38%, 18% 88%, 28% 44%, 38% 78%, 50% 39%, 62% 86%, 74% 42%, 86% 80%, 95% 36%, 100% 72%, 100% 0);
}

.proof h2 {
  color: var(--green);
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.proof-icon {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--green);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
}

.proof-icon svg,
.bolt svg,
.socials svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon svg {
  width: clamp(1.6rem, 2.3vw, 2.1rem);
  height: clamp(1.6rem, 2.3vw, 2.1rem);
  margin: 0 auto;
  stroke-width: 1.75;
}

.proof h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: clamp(0.58rem, 0.82vw, 0.75rem);
  text-transform: uppercase;
}

.proof p {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(0.52rem, 0.75vw, 0.68rem);
  line-height: 1.45;
}

.products {
  padding: 2% 3.6% 1.6%;
  background:
    radial-gradient(circle at 50% -8%, rgba(96, 118, 77, 0.22), transparent 20rem),
    radial-gradient(circle at 12% 110%, rgba(255, 116, 23, 0.1), transparent 18rem),
    linear-gradient(180deg, #f4efe4 0%, #eee6d8 100%);
  border-top: 4px solid rgba(255, 250, 240, 0.9);
  border-right: 4px solid rgba(255, 250, 240, 0.9);
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0.2rem;
  color: var(--black);
}

.section-heading p {
  color: var(--green);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-style: italic;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.35rem;
}

.product-card {
  overflow: hidden;
  border-radius: 4px;
  background: #fffdf7;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.product-card:hover {
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.17;
  object-fit: contain;
  padding: 0.65rem 0.6rem 0.25rem;
}

.product-card span {
  display: block;
  padding: 0.52rem 0.3rem;
  color: var(--white);
  background: var(--green);
  font-size: clamp(0.58rem, 0.85vw, 0.75rem);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.product-card:nth-child(even) span {
  color: var(--black);
  background: var(--orange);
}

.launch {
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 50%, rgba(96, 118, 77, 0.9), transparent 19rem),
    radial-gradient(circle at 85% 90%, rgba(255, 116, 23, 0.08), transparent 16rem),
    linear-gradient(180deg, #12120f 0%, #0f100e 100%);
  border-top: 4px solid rgba(255, 250, 240, 0.9);
  text-align: center;
}

.launch-inner {
  width: 80%;
}

.launch h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.launch p {
  color: var(--white);
  font-size: clamp(0.78rem, 1vw, 1rem);
  line-height: 1.55;
}

.launch-form {
  display: grid;
  grid-template-columns: 1fr 112px;
  margin-top: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.launch-form input {
  min-width: 0;
  min-height: 52px;
  border: 0;
  padding: 0 1rem;
  background: var(--cream-2);
  font: inherit;
}

.launch-form button {
  min-height: 52px;
  border: 0;
  border-radius: 0;
}

.launch small {
  display: block;
  margin-top: 1rem;
  color: var(--white);
  font-size: clamp(0.58rem, 0.85vw, 0.75rem);
}

.bolt {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0.8rem auto 0;
  color: var(--white);
  transform: rotate(10deg);
}

.bolt svg {
  width: 100%;
  height: 100%;
  stroke-width: 3;
}

.footer-main {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 116, 23, 0.08), transparent 14rem),
    linear-gradient(180deg, #10100f 0%, #0c0c0b 100%);
  border-top: 4px solid rgba(255, 250, 240, 0.9);
}

.footer-main {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 1.3% 6%;
}

.footer-logo img {
  width: min(210px, 100%);
}

.socials strong {
  text-transform: uppercase;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green);
}

.socials strong {
  color: var(--white);
  font-size: clamp(0.55rem, 0.8vw, 0.75rem);
}

.socials a {
  color: var(--green);
  text-decoration: none;
}

.socials svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 2;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 35%, rgba(96, 118, 77, 0.36), transparent 28rem),
    radial-gradient(circle at 20% 15%, rgba(255, 116, 23, 0.13), transparent 20rem),
    var(--black);
}

.success-card {
  width: min(100%, 560px);
  text-align: center;
}

.success-card .brand {
  display: inline-block;
  margin-bottom: 2rem;
}

.success-card .brand img {
  width: min(260px, 72vw);
}

.success-card h1 {
  margin-bottom: 1rem;
}

.success-card p {
  max-width: 440px;
  margin: 0 auto 1.8rem;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

.hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-board {
    display: block;
    aspect-ratio: auto;
  }

  .hero,
  .products,
  .footer-main {
    border-right: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-nav {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 1.1rem;
  }

  .brand img {
    width: 214px;
  }

  .hero-copy,
  .hero-shirt {
    position: relative;
    inset: auto;
  }

  .hero-copy {
    width: auto;
    padding: 2rem 1.3rem 0;
  }

  .hero-copy p {
    width: auto;
  }

  .hero-shirt {
    width: min(92%, 520px);
    margin: 1.8rem auto 0;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .mascot {
    max-width: 320px;
    margin: 1.5rem auto 0;
  }

  .proof-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .products,
  .launch {
    padding: 3rem 1.2rem;
  }

  .launch-inner {
    width: 100%;
  }

  .launch-form {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem;
  }

  .socials {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
