:root {
  --bg-main: #020617;
  --bg-alt: #020314;
  --card-bg: #020617;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #f97316;
  --border-subtle: rgba(148, 163, 184, 0.24);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.95);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, #1f2937 0, transparent 50%),
    radial-gradient(circle at 100% 0%, #0f172a 0, transparent 55%),
    linear-gradient(to bottom, #020617 0, #020617 45%, #000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.6);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background:
    conic-gradient(from 180deg, #2563eb, #f97316, #38bdf8, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fafb;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text .name {
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-text .tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0.2rem;
  color: var(--text-muted);
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transition: width 0.18s ease;
}

.nav-links a:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.52rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #f97316);
  color: #f9fafb !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
  cursor: pointer;
}

.nav-cta span.chevron {
  font-size: 1rem;
  margin-top: 1px;
}

/* Hero */

.hero {
  position: relative;
  padding: 3.5rem 0 3.25rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.75;
  z-index: -1;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.55), transparent 72%);
}

.hero::after {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.45), transparent 72%);
}

.hero-small {
  padding: 2.6rem 0 2.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.5), rgba(15, 23, 42, 0.95));
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-title {
  font-size: clamp(2.3rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(to right, #60a5fa, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-title-small {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
}

.hero-title span.accent {
  background: linear-gradient(to right, #f97316, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.btn-primary {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--accent));
  color: #f9fafb;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.85);
}

.btn-primary span.chevron {
  font-size: 1.15rem;
  margin-top: 1px;
}

.btn-ghost {
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  color: var(--text-main);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: rgba(248, 250, 252, 0.8);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta strong {
  display: block;
  color: var(--text-main);
  font-size: 0.9rem;
}

/* Hero card */

.hero-card {
  background: radial-gradient(circle at top, #020617, #020617 65%, #000 100%);
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.18), transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-card-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.hero-metric-main {
  font-size: 1.9rem;
  font-weight: 600;
}

.hero-metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-card-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(148, 163, 184, 0.5), transparent);
  margin: 1.2rem 0 1.4rem;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-card-pill {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  background: radial-gradient(circle at left, rgba(34, 197, 94, 0.22), transparent);
}

.hero-card-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

/* Sections */

.section {
  padding: 2.75rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.4rem;
  margin: 0;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 30rem;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: radial-gradient(circle at top, #020617, #020617 70%, #000 100%);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.2rem 1.35rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
  border-color: rgba(248, 250, 252, 0.28);
}

.card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.card-title {
  font-size: 0.98rem;
  margin: 0 0 0.4rem;
}

.card-body {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-meta {
  margin-top: 0.9rem;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Two-column content */

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.list li::before {
  content: "▹";
  margin-top: 0.12rem;
  font-size: 0.7rem;
  color: var(--accent);
}

.aside-card {
  background: radial-gradient(circle at top, #020617, #020617 70%, #000 100%);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.3rem;
  border: 1px dashed rgba(148, 163, 184, 0.55);
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-form {
  background: radial-gradient(circle at top, #020617, #020617 70%, #000 100%);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem 1.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  color: var(--text-main);
  font-size: 0.88rem;
  font-family: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

.contact-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
}

/* Footer */

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.2rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* no stretching */
}

.footer-copy {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  white-space: nowrap;
}

/* Optional future links */
.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
}

/* Utility */

.muted {
  color: var(--text-muted);
  font-size: 0.86rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .contact-layout,
  .content-grid,
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding: 2.8rem 0 2.4rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
