:root {
  --ink: #171717;
  --paper: #f7f7f4;
  --muted: #5b5b55;
  --line: #d9d5c9;
  --accent: #f6c313;
  --accent-dark: #6d5600;
  --signal: #0f7f5f;
  --panel: #ffffff;
  --warning: #231f20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.wrap {
  width: min(1120px, 92vw);
  margin: auto;
}

.hazard {
  height: 10px;
  background: repeating-linear-gradient(45deg, var(--accent) 0 14px, #111 14px 28px);
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  font-weight: 900;
  text-decoration: none;
}

.brand span {
  color: var(--accent-dark);
}

.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.links a {
  color: #31312d;
  font-size: 0.94rem;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.hero {
  background: #161616;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: 40px;
  align-items: center;
  min-height: 640px;
  padding: 72px 0 52px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.lead {
  max-width: 730px;
  margin: 0;
  color: #ecece5;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-media {
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 8px;
  background: #242424;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
}

.btn.primary {
  background: var(--accent);
  color: #111;
}

.btn.secondary {
  border-color: #777;
  color: #fff;
}

.btn.dark {
  background: var(--ink);
  color: #fff;
}

.btn.light {
  border-color: #222;
  color: #111;
}

.strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.metric {
  padding: 18px;
  background: #fff;
}

.metric strong {
  display: block;
  font-size: 1.28rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 62px 0;
}

.band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.sub {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.sku-card {
  border-top: 8px solid var(--accent);
}

.sku-card.signal {
  border-top-color: var(--signal);
}

.sku-meta {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 3px 8px;
  border-radius: 3px;
  background: #efead8;
  color: #2a271e;
  font-size: 0.82rem;
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f0ede4;
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: 0;
}

.cta {
  background: #171717;
  color: #fff;
  padding: 46px 0;
}

.cta p {
  max-width: 720px;
  color: #e9e9df;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
}

.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #aaa;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font: inherit;
}

textarea {
  min-height: 130px;
}

button.btn {
  cursor: pointer;
}

.footer {
  padding: 34px 0;
  background: #111;
  color: #eee;
}

.footgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}

.footer a {
  color: #fff;
}

.small {
  color: #bbb;
  font-size: 0.92rem;
}

.sticky-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.2s;
}

.sticky-wa:hover {
  transform: scale(1.07);
}

.sticky-wa svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.sticky-pill {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  padding: 10px 16px;
  border-radius: 24px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 920px) {
  .hero-grid,
  .grid,
  .grid.two,
  .metrics,
  .footgrid,
  form {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 56px 0 44px;
  }

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

  .section {
    padding: 46px 0;
  }

  .full {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  .hero-media {
    margin-top: 8px;
  }

  table {
    min-width: 0;
  }

  th,
  td {
    padding: 10px;
    font-size: 0.84rem;
  }

  .sticky-pill {
    display: none;
  }
}
