:root {
  --primary: #3b82f6;
  --primary-dark: #1d4ed8;
  --accent: #8b5cf6;
  --bg: #020617;
  --bg-soft: #0b1120;
  --card: #020617;
  --border: #1f2937;
  --text: #e5e7eb;
  --muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 60%);
  color: var(--text);
  line-height: 1.7;
}

/* LINKS & BUTTONS */

a {
  color: inherit;
  text-decoration: none;
}

.btn-primary {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
  filter: brightness(1.05);
}

.btn-large {
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
}

.full-width {
  width: 100%;
  margin-top: 0.75rem;
}

/* LAYOUT */

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  position: relative;
}

.nav-links a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transition: width 0.2s ease;
}

.nav-links a:not(.btn-primary):hover::after {
  width: 100%;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.hero-content {
  max-width: 36rem;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.gradient {
  background: linear-gradient(120deg, #60a5fa, #a855f7, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.7rem;
}

.hero-cta {
  margin-bottom: 1.4rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  max-width: 28rem;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.9);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

/* HERO SIDE CARD */

.hero-card {
  background: radial-gradient(circle at top left, #1e293b, #020617 45%);
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.7);
}

.hero-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.hero-list li::before {
  content: "✓";
  font-size: 0.85rem;
  color: #4ade80;
  margin-top: 0.15rem;
}

.hero-card-text {
  font-size: 0.9rem;
  color: var(--muted);
}

/* SECTIONS */

.section {
  margin-top: 3.5rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 1.8rem;
}

/* WHO I HELP */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.25rem;
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.7);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.card-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 0;
}

.card-list li::before {
  content: "• ";
  color: var(--accent);
}

/* HOW IT WORKS */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.25rem;
  padding: 1.4rem 1.25rem 1.2rem;
  border: 1px solid var(--border);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

.center-cta {
  text-align: center;
  margin-top: 2rem;
}

.center-cta-note {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 30rem;
  margin: 0.75rem auto 0;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.75rem;
}

.contact-box {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.25rem;
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--border);
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  background: var(--bg);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3,
  .steps,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
