:root {
  color-scheme: dark;
  --green: #00ff37;
  --green-soft: rgba(0, 255, 55, .18);
  --bg: #090909;
  --text: #ffffff;
  --muted: #c6c6c6;
  --border: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; margin: 0; }
body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 72px) 20px 120px;
  isolation: isolate;
  background-image: url("assets/background-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, rgba(0,0,0,.45), rgba(0,0,0,.18) 45%, rgba(0,0,0,.60));
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 30%, rgba(0,255,55,.12), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(0,255,55,.08), transparent 30%);
}

.card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(16,16,16,.88), rgba(8,8,8,.70));
  box-shadow: 0 30px 90px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
  animation: reveal .75s ease both;
}
.brand {
  display: block;
  width: min(310px, 72vw);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 15px 28px rgba(0,0,0,.34));
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}
h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.lead {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}
.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  min-width: 155px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green); color: #050505; }
.button--ghost { border-color: var(--border); background: rgba(255,255,255,.04); color: #fff; }
.phone { margin: 22px 0 0; color: #a8a8a8; font-size: .95rem; }
.footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: flex;
  justify-content: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  color: #a0a0a0;
  font-size: .78rem;
  text-align: center;
}

.cookie {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(1040px, calc(100% - 28px));
  transform: translate(-50%, 140%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(10,10,10,.94);
  box-shadow: 0 18px 60px rgba(0,0,0,.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.cookie.is-visible { transform: translate(-50%, 0); opacity: 1; }
.cookie__text { display: grid; gap: 5px; }
.cookie__text strong { color: var(--green); }
.cookie__text span { color: #d0d0d0; line-height: 1.45; }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__button {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.cookie__button--secondary { background: transparent; color: #fff; }
.cookie__button--primary { background: var(--green); color: #050505; border-color: var(--green); }

@keyframes reveal {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 700px) {
  .hero {
    padding: 24px 16px 170px;
    background-image: url("assets/background-mobile.jpg");
    background-position: center;
  }
  .card { border-radius: 24px; padding: 30px 20px; }
  .brand { width: min(260px, 78vw); }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .cookie { align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie__actions { width: 100%; }
  .cookie__button { flex: 1; }
  .footer { bottom: 18px; font-size: .72rem; }
}

@media (max-width: 430px) {
  .cookie__actions { flex-direction: column; }
  .hero { padding-bottom: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
