/*
Theme Name: ELV Brand
Theme URI: https://michaeleendoucleff.com
Author: ELV
Description: Minimal modern landing theme
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: elv-brand
*/

:root {
  --bg: #0f1419;
  --card: #1a2332;
  --accent: #3b82f6;
  --accent2: #06b6d4;
  --text: #e2e8f0;
  --muted: #94a3b8;
}

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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.25), transparent),
    var(--bg);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 720px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.125rem;
  text-align: center;
  max-width: 540px;
}

.cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta a {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta .primary {
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.cta .secondary {
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text);
}

.cta a:hover { transform: translateY(-2px); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  width: 100%;
  margin-top: 3.5rem;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.5rem;
}

.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

footer {
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.875rem;
}
