/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050714;
  --bg-soft: #0c0f1f;
  --card-bg: #101426;
  --accent: #4bd0ff;
  --accent-soft: rgba(75, 208, 255, 0.12);
  --text-main: #f7f9ff;
  --text-muted: #b5bed8;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --radius-lg: 18px;
  --radius-xl: 26px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a2340 0, #050714 55%, #020309 100%);
  color: var(--text-main);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  display: flex;
  flex-direction: column;
}

/* Header / Logo */

.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5, 7, 20, 0.7);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff 0, #4bd0ff 25%, #7f5dff 60%, #050714 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #020308;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
}

.tagline-small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Main / Hero */

.main {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero {
  width: 100%;
  padding: 24px 18px 32px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(75, 208, 255, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(127, 93, 255, 0.16), transparent 55%),
              rgba(5, 7, 20, 0.92);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero .accent {
  color: var(--accent);
}

.subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 22px;
}

/* Highlights */

.highlights {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.2fr;
  gap: 14px;
  margin-bottom: 22px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 14px 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.card h2 {
  font-size: 15px;
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* CTA */

.cta {
  margin-top: 4px;
}

.cta-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(75, 208, 255, 0.8);
  background: radial-gradient(circle at top left, rgba(75, 208, 255, 0.25), rgba(127, 93, 255, 0.2));
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75);
  background: radial-gradient(circle at top left, rgba(75, 208, 255, 0.35), rgba(127, 93, 255, 0.3));
}

/* Footer */

.footer {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: var(--text-muted);
}

.footer-note {
  margin-top: 4px;
}

/* Responsive */

@media (max-width: 800px) {
  .page {
    padding: 18px 14px 28px;
  }

  .hero {
    padding: 20px 16px 24px;
  }

  .highlights {
    grid-template-columns: 1fr;
  }
}
