:root {
  --bg: #0b0b0b;
  --ink: #f3eee6;
  --muted: #a9a197;
  --accent: #e23b2f;
  --accent-2: #ff6a3d;
  --line: rgba(243, 238, 230, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

  .hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px 132px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11,11,11,.18) 0%, rgba(11,11,11,.42) 38%, rgba(11,11,11,.92) 78%, #0b0b0b 100%),
    url("../images/hero.png") center 20% / cover no-repeat;
  animation: fadeIn .7s ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  animation: rise .65s .08s ease both;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}
.brand strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.15rem;
  letter-spacing: .04em;
}
.brand span {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 8.5vw, 3.2rem);
  line-height: 1.02;
  max-width: 11ch;
  margin-bottom: 12px;
  animation: rise .65s .16s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
  max-width: 30ch;
  margin-bottom: 16px;
  animation: rise .65s .24s ease both;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: rise .65s .3s ease both;
}
.tag {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .78rem;
  font-weight: 700;
}

.section {
  padding: 28px 20px 40px;
}
.section h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.section p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.45;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.card-look {
  border-radius: 16px;
  overflow: hidden;
  background: #151515;
  border: 1px solid var(--line);
  animation: rise .7s ease both;
}
.card-look img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.card-look figcaption {
  padding: 12px;
  font-size: .85rem;
  font-weight: 700;
}
.card-look small {
  display: block;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 800;
}

.steps {
  display: grid;
  gap: 10px;
}
.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #121212;
}
.step b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: .9rem;
}
.step strong { display: block; margin-bottom: 2px; }
.step span { color: var(--muted); font-size: .9rem; }

.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(11,11,11,.9) 28%, #0b0b0b);
}
.cta {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
  border: 0;
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(226, 59, 47, .35);
  animation: pulse 2.4s ease-in-out infinite;
}
.cta small {
  display: block;
  margin-top: 2px;
  font-size: .75rem;
  font-weight: 600;
  opacity: .92;
}
.cta:active { transform: scale(.97); }
.legal {
  margin-top: 8px;
  text-align: center;
  color: var(--muted);
  font-size: .7rem;
}

.footer-space { height: 110px; }

@keyframes fadeIn {
  from { opacity: .65; }
  to { opacity: 1; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@media (min-width: 900px) {
  .hero {
    padding: 48px 64px 140px;
    background-position: center 15%;
  }
  .section {
    max-width: 920px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  .grid { gap: 18px; }
}
