@import url("https://fonts.googleapis.com/css2?family=Silkscreen&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #111827;
  --secondary-color: #374151;
  --accent-color: #888888;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --background: #121212;
  --background-alt: #374151;
  --border-color: #444444;
  --nav-height: 72px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
}

.main-content {
  margin-top: var(--nav-height);
}

.hero-section {
  padding: clamp(60px, 12vw, 120px) clamp(16px, 4vw, 32px);
  text-align: center;
  background: var(--background);
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-description {
  font-size: clamp(16px, 3vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.hero-btn.primary {
  background: var(--accent-color);
  color: #ffffff;
}

.hero-btn.primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hero-btn.secondary {
  background: var(--background-alt);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.hero-btn.secondary:hover {
  background: var(--accent-color);
}

.content-section {
  padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 32px);
}

.content-container {
  max-width: 1800px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(24px, 4vw, 32px);
}

.feature-card {
  background: var(--background);
  backdrop-filter: blur(22px) saturate(147%);
  -webkit-backdrop-filter: blur(22px) saturate(147%);
  background-color: rgba(55, 65, 81, 0.58);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: clamp(24px, 4vw, 32px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--background-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-color);
  stroke-width: 2;
}

.feature-title {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

#special-you {
  font-family: "Silkscreen", sans-serif;
  color: var(--accent-color);
  text-shadow: 0 0 18px white;
  position: relative;
  color: white;
}
#special-you::after,
#special-you::before {
  content: attr(data-text);
  position: absolute;
  left: 3px;
  text-shadow: none;
  background-clip: text;
  color: transparent;
  mix-blend-mode: lighten;
  pointer-events: none;
}
#special-you::before {
  left: -3px;
  mix-blend-mode: lighten;
}
