:root {
  --bg: #0f0f0f;
  --card-bg: #1a1a1a;
  --surface-secondary: #151515;
  --nav-bg: #0a0a0a;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --placeholder: #888;
  --accent: #0d6efd;
  --accent-hover: #0b5ed7;
  --accent-gradient: linear-gradient(135deg, #0d6efd, #0b5ed7);
  --border: #5a5a8e;
  --scrollbar-hover: #7a7aae;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
::placeholder {
  color: var(--placeholder);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--surface-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-hover);
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section {
  padding: 4rem 0;
}
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
/* Hero Section */
#hero {
  text-align: center;
  padding-top: 6rem;
}
#hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#hero p {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-cta {
  margin-bottom: 1rem;
}
.hero-note {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}
/* Problem Section */
#problem {
  background-color: var(--surface-secondary);
}
#problem h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.problem-item {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
}
.problem-item h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.problem-item p {
  color: var(--text-muted);
}
/* Solution Section */
#solution {
  text-align: center;
}
#solution h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.solution-desc {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.125rem;
}
/* Features Section */
#features {
  background-color: var(--surface-secondary);
  text-align: center;
}
#features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.feature-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
}
.feature-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.feature-card p {
  color: var(--text-muted);
}
/* How It Works Section */
#how-it-works {
  text-align: center;
}
#how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.step {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
}
.step-number {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.step p {
  color: var(--text-muted);
}
/* CTA Section */
#cta {
  text-align: center;
  background-color: var(--surface-secondary);
}
#cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
#cta p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}
/* Footer */
footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}
footer p {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: underline;
}
/* Consent Banner */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  flex-wrap: wrap;
}

.consent-banner__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-banner__link {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}

.consent-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.consent-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.2s;
}

.consent-banner__btn:hover {
  opacity: 0.85;
}

.consent-banner__btn--accept {
  background: var(--accent);
  color: #fff;
}

.consent-banner__btn--decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.consent-banner--highlight {
  box-shadow: 0 -4px 20px rgba(13, 110, 253, 0.3);
  animation: banner-pulse 0.6s ease-in-out 2;
}

@keyframes banner-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Media Queries */
@media (min-width: 768px) {
  #hero h1 {
    font-size: 4rem;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
