:root {
  --bg: #07111b;
  --overlay: rgba(4, 10, 18, 0.72);
  --overlay-strong: rgba(4, 10, 18, 0.88);
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --border: rgba(255, 255, 255, 0.18);
  --text-main: #f8fafc;
  --text-soft: rgba(248, 250, 252, 0.8);
  --text-muted: rgba(248, 250, 252, 0.62);
  --accent: #d8b25b;
  --accent-strong: #f5c96a;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

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

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.36) 0%, rgba(3, 8, 14, 0.7) 100%),
    url("../assets/cookies-bg.jpg") center center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(216, 178, 91, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(5, 10, 18, 0.82), rgba(3, 8, 14, 0.62));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 5rem 1.25rem 10.5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero__lede {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.hero__highlights {
  display: grid;
  gap: 0.95rem;
  margin-top: 2rem;
}

.highlight-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1rem 1.05rem;
  backdrop-filter: blur(12px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.highlight-card__value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
}

.highlight-card__label {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero__features span {
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.88rem;
  backdrop-filter: blur(10px);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: grid;
  gap: 1rem;
  margin: 0.85rem;
  padding: 1rem;
  background: var(--overlay-strong);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.cookie-banner__actions {
  display: grid;
  gap: 0.7rem;
}

.cookie-banner__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #081019;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(216, 178, 91, 0.35);
}

.cookie-banner__link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  overflow-wrap: anywhere;
}

@media (min-width: 700px) {
  .hero__content {
    padding: 6rem 2rem 11rem;
  }

  .hero__highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cookie-banner {
    grid-template-columns: minmax(0, 1.7fr) auto;
    align-items: center;
    gap: 1.25rem;
    margin: 1.2rem;
    padding: 1.15rem 1.2rem;
  }

  .cookie-banner__actions {
    justify-items: end;
    min-width: 16rem;
  }

  .cookie-banner__button {
    min-width: 12rem;
  }

  .cookie-banner__link {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding-top: 7rem;
  }

  .hero__lede {
    font-size: 1.08rem;
  }

  .highlight-card {
    padding: 1.2rem 1.15rem 1.25rem;
  }
}
