:root {
  --bg: #0b0a14;
  --panel: #121022;
  --panel-soft: #16152a;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #9c5cff;
  --accent-strong: #7c3aed;
  --border: #1f1d35;
  --glow: rgba(156, 92, 255, 0.22);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at 20% 20%, rgba(91, 76, 189, 0.18), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(107, 33, 168, 0.22), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 10, 20, 0.8);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(156, 92, 255, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(156, 92, 255, 0.3);
  box-shadow: 0 10px 40px rgba(156, 92, 255, 0.2);
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(156, 92, 255, 0.12), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.18), transparent 35%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 0 3rem;
}

.hero-text h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1.2;
}

.hero .lede {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #0b0a14;
  box-shadow: 0 15px 45px rgba(124, 58, 237, 0.35);
}

.button.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.button.full {
  width: 100%;
}

.button:hover {
  transform: translateY(-1px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.pill {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  position: relative;
}

.glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(156, 92, 255, 0.18), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}

.stat-card {
  position: relative;
  z-index: 1;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 0.25rem;
  letter-spacing: 0.08em;
}

.stat-value {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}

.stat-note {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 3.25rem 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.info-card,
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.info-card h3,
.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.info-card ul,
.card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.card p,
.info-card p {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.steps {
  margin: 0.5rem 0 0;
  color: var(--muted);
  padding-left: 1.1rem;
}

.steps li {
  margin-bottom: 0.6rem;
}

dl {
  margin: 0;
}

dl div {
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed var(--border);
}

dl dt {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

dl dd {
  margin: 0.2rem 0 0;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.label {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 0.2rem;
}

.contact a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel-soft);
  color: var(--text);
  font-family: var(--font);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(156, 92, 255, 0.25);
}

.field textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  font-weight: 600;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #f87171;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem 0;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.small {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero-inner {
    padding: 3rem 0 2.5rem;
  }
}
