@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@300;400;500;600&display=swap");
:root {
    color-scheme: dark;
    --bg: #07080b;
    --panel: #0f1217;
    --text: #eef3ff;
    --muted: #a2adbe;
    --accent: #2f8cff;
    --accent-2: #46f0c8;
    --border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #0b1220 0%, #07080b 55%, #050608 100%);
    color: var(--text);
    min-height: 100vh;
}

.landing {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 48px 20px;
}

.hero {
  position: relative;
  width: min(960px, 100%);
  padding: 72px 56px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(10, 14, 22, 0.92), rgba(7, 9, 14, 0.92));
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  position: relative;
  z-index: 1;
}

.hero-glow {
    position: absolute;
    inset: -40% auto auto -30%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(47, 140, 255, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.brand {
    display: flex;
    align-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
}

.brand img {
    height: 42px;
    width: auto;
}

.brand .accent {
    color: var(--accent);
}

h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.1;
}

p {
    color: var(--muted);
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #1f6fe0);
    color: #f7fbff;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

@media (max-width: 700px) {
    .hero {
        padding: 56px 24px;
    }
    .hero-actions {
        width: 100%;
    }
    .btn {
        width: 100%;
    }
}
