:root {
  --cov-bg: #0b0d0f;
  --cov-bg-2: #14181c;
  --cov-card: #1b2126;
  --cov-border: #2a3142;
  --cov-text: #ffffff;
  --cov-muted: #a5abb6;
  --cov-muted-2: #8a91a3;
  --cov-yellow: #d4af37;
  --cov-yellow-2: #f7e286;
  --cov-container: 1280px;
  --cov-section-pad: 40px;
  --cov-font:
    "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--cov-font);
  background: var(--cov-bg);
  color: var(--cov-text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.cov-no-scroll {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--cov-font);
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

.cov-container {
  width: 100%;
  max-width: var(--cov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.cov-section {
  padding: var(--cov-section-pad) 0;
}

.cov-section-title {
  font-size: clamp(30px, 4vw, 42px);
  color: #fff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cov-section-subtitle {
  color: #fff;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.cov-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 32px;
  background: var(--cov-yellow);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.cov-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.cov-btn:active {
  transform: translateY(0);
}

.cov-btn .cov-btn-arrow {
  display: inline-flex;
  font-size: 16px;
  line-height: 1;
}

.cov-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cov-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  :root {
    --cov-section-pad: 32px;
  }
}

@media (max-width: 768px) {
  .cov-container {
    padding: 0 18px;
  }
  .cov-section-subtitle {
    margin-bottom: 36px;
  }
  .cov-btn {
    padding: 14px 26px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --cov-section-pad: 24px;
  }
}
