:root {
  --bg: #0f1115;
  --bg-2: #16191f;
  --bg-3: #1d222b;
  --card: #1b1f26;
  --card-2: #20252e;
  --text: #e6e8ef;
  --muted: #9aa3b2;
  --accent: #ff4d4d;
  --pill: #2a303a;
  --border: #2a2f39;
  --shadow: none;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top left, #151922, var(--bg));
  color: var(--text);
  min-height: 100vh;
  padding: 28px 24px 64px;
  cursor: none;
}

a,
button {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav a {
  display: inline-block;
  transition: transform 0.18s ease, color 0.18s ease;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 44px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.6px;
  color: #fff;
}

.hero-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: none;
  cursor: none;
}

.btn.secondary {
  background: var(--card-2);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 77, 77, 0.4);
}

.hero-card {
  background: linear-gradient(145deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.hero-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 77, 77, 0.35);
}

.pill {
  background: var(--pill);
  color: #7ce2ff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.stat h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  margin: 50px 0;
}

.section-title {
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  background: linear-gradient(145deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 77, 77, 0.35);
}

.feature-card h4 {
  color: #fff;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cta-band {
  background: linear-gradient(145deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
}

.cta-band h3 {
  color: #fff;
  font-size: 20px;
}

.footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.2s ease, width 0.18s ease, height 0.18s ease, border-radius 0.18s ease, box-shadow 0.18s ease;
  z-index: 9999;
}

.custom-cursor.button-hover {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.6);
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }

  .custom-cursor {
    display: none;
  }

  .btn {
    cursor: pointer;
  }
}

@media (max-width: 680px) {
  body {
    padding: 20px 16px 40px;
  }
}
