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

:root {
  --bg: #050505;
  --panel: #0c0c0c;
  --panel-2: #111111;
  --line: #252525;
  --text: #f5f5f5;
  --muted: #a7a7a7;
  --lime: #b8ff00;
  --red: #e10600;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(184,255,0,.08), transparent 28%),
    radial-gradient(circle at 15% 45%, rgba(225,6,0,.08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #ddd;
}

.nav a:hover {
  color: var(--lime);
}

.whatsapp {
  border: 1px solid #4b6500;
  color: var(--lime);
  padding: 11px 15px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0 95px;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: .98;
  letter-spacing: -.055em;
}

h1 span,
h2 span {
  color: var(--lime);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 0;
  color: #c7c7c7;
  font-size: 17px;
}

.products-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 85px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 45px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  justify-self: end;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  background: linear-gradient(145deg, #111, #080808);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.product-card.red {
  border-color: rgba(225,6,0,.45);
}

.product-card.lime {
  border-color: rgba(184,255,0,.32);
}

.cover-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  background: #151515;
  overflow: hidden;
}
.cover-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.cover-wrap.no-image .cover-fallback {
  display: flex;
}

.cover-fallback {
  display: none;
  position: absolute;
  inset: 0;
  padding: 30px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.15)),
    repeating-linear-gradient(135deg, #101010 0 10px, #161616 10px 20px);
}

.cover-fallback small {
  color: var(--lime);
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 18px;
}

.cover-fallback strong {
  font-size: 34px;
  line-height: .95;
  letter-spacing: -.04em;
}

.cover-fallback span {
  margin-top: 18px;
  color: #ccc;
  font-size: 12px;
}

.product-info {
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-tag {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.product-info h3 {
  font-size: 31px;
  line-height: 1.05;
  margin-bottom: 17px;
  letter-spacing: -.04em;
}

.product-info > p:not(.product-tag) {
  color: #b9b9b9;
  font-size: 14px;
}

.product-bottom {
  margin-top: auto;
  padding-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.product-bottom strong {
  font-size: 23px;
}

.product-bottom a {
  padding: 12px 14px;
  border: 1px solid #3a3a3a;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.product-card.red .product-bottom a:hover {
  background: var(--red);
  border-color: var(--red);
}

.product-card.lime .product-bottom a:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #050505;
}

.philosophy {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #090909;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.philosophy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.philosophy > p {
  margin: 0;
  align-self: end;
  color: var(--muted);
  max-width: 500px;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 40px;
  color: #888;
  font-size: 12px;
}

.footer .brand {
  color: var(--text);
}

.footer p {
  max-width: 260px;
  margin: 15px 0 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-copy {
  align-self: end;
  text-align: right;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .section-heading,
  .philosophy {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    justify-self: start;
  }

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

@media (max-width: 620px) {
  .site-header,
  .hero,
  .products-section,
  .philosophy,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 75px 0;
  }

  h1 {
    font-size: 48px;
  }

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

  .cover-wrap {
    min-height: 390px;
  }

  .product-info {
    padding: 28px 24px;
    min-height: 330px;
  }

  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .philosophy {
    padding: 30px 25px;
  }

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

  .footer-copy {
    text-align: left;
  }
}
