:root {
  --background: #000000;
  --foreground: #ffffff;

  --surface: #0b0b0b;
  --surface-hover: #121212;

  --border: rgba(255, 255, 255, 0.12);

  --muted: rgba(255, 255, 255, 0.72);

  --max-width: 1200px;
  --md-sys-color-primary: #ffffff;

  --md-sys-color-on-primary: #000000;

  --md-sys-color-surface: #0b0b0b;

  --md-sys-color-on-surface: #ffffff;

  --md-sys-color-background: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);

  font-family: "Jost", sans-serif;

  min-height: 100vh;
}

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

.page-content {
  width: 100%;
}

.hero-section {
  position: relative;

  padding: 10rem 2rem 8rem;

  overflow: hidden;
}

.hero-section::before {
  content: "";

  position: absolute;

  top: -300px;
  left: 50%;

  transform: translateX(-50%);

  width: 900px;
  height: 900px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );

  pointer-events: none;
}

.hero-content {
  position: relative;

  max-width: 900px;

  margin: auto;

  text-align: center;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  padding: 0.65rem 1rem;

  border-radius: 999px;

  border: 1px solid var(--border);

  background: rgba(255, 255, 255, 0.04);

  font-size: 0.9rem;

  margin-bottom: 2rem;
}

.hero-content h1 {
  font-size: clamp(4rem, 10vw, 8rem);

  font-weight: 700;

  line-height: 0.9;

  letter-spacing: -0.07em;

  margin-bottom: 1.75rem;
}

.hero-content p {
  max-width: 700px;

  margin: auto;

  color: var(--muted);

  font-size: 1.15rem;

  line-height: 1.9;
}

.hero-actions {
  margin-top: 2.5rem;

  display: flex;

  justify-content: center;

  gap: 1rem;

  flex-wrap: wrap;
}

.features-section {
  width: 100%;

  padding: 0 2rem 8rem;
}

.features-grid {
  max-width: var(--max-width);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 32px;

  padding: 2rem;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
/* 
.feature-card:hover {
  transform: translateY(-4px);

  background: var(--surface-hover);

  border-color: rgba(255, 255, 255, 0.2);
} */

.feature-card h3 {
  font-size: 1.4rem;

  font-weight: 600;

  margin-bottom: 1rem;

  letter-spacing: -0.03em;
}

.feature-card p {
  color: var(--muted);

  line-height: 1.8;
}

.mega-footer {
  border-top: 1px solid var(--border);

  margin-top: 4rem;
}

.footer-container {
  max-width: var(--max-width);

  margin: auto;

  padding: 4rem 2rem;

  display: flex;

  justify-content: space-between;

  gap: 4rem;

  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 1.75rem;

  font-weight: 600;

  margin-bottom: 1rem;
}

.footer-description {
  color: var(--muted);

  line-height: 1.8;
}

.footer-links {
  display: flex;

  gap: 4rem;

  flex-wrap: wrap;
}

.footer-col {
  display: flex;

  flex-direction: column;

  gap: 0.85rem;
}

.footer-col h4 {
  margin-bottom: 0.75rem;

  font-size: 1rem;

  font-weight: 600;
}

.footer-col a {
  color: var(--muted);

  transition: 0.2s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--border);

  text-align: center;

  padding: 1.5rem;

  color: var(--muted);

  font-size: 0.95rem;
}

md-filled-button {
  --md-filled-button-container-height: 52px;

  --md-filled-button-container-shape: 18px;

  --md-filled-button-label-text-font: "Jost";

  --md-filled-button-label-text-size: 15px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #1a1a1a;

  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #252525;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 8rem 1.5rem 5rem;
  }

  .hero-content h1 {
    line-height: 1;
  }

  .features-section {
    padding: 0 1.5rem 5rem;
  }

  .footer-container {
    padding: 3rem 1.5rem;

    flex-direction: column;

    gap: 3rem;
  }

  .footer-links {
    gap: 2rem;
  }
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo img {
  width: 180px;
  height: 180px;

  display: block;

  margin: 0 auto;

  border-radius: 32px;
}
.hero-actions md-filled-button {
  width: auto;
  --md-filled-button-container-height: 56px;

  --md-filled-button-container-shape: 18px;

  --md-filled-button-label-text-size: 15px;

  --md-filled-button-label-text-weight: 600;
}
