:root {
  --bg: #020617;
  --bg-elevated: #020617;
  --bg-card: #020617;
  --accent: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --accent-gold: #fbbf24;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
  --shadow-soft-card: 0 16px 40px rgba(15, 23, 42, 0.75);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #111827 0%, #020617 40%, #000000 80%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout */

.site-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

@media (min-width: 1024px) {
  .site-wrapper {
    padding: 2rem 0 4rem;
  }
}

/* Glassmorphism Shell */

.shell {
  border-radius: 2.25rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
              radial-gradient(circle at 100% 0%, rgba(234, 179, 8, 0.12), transparent 60%),
              linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.99));
  box-shadow: 0 30px 120px rgba(15, 23, 42, 0.9);
  padding: 1.25rem 1.25rem 1.75rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shell {
    padding: 1.5rem 1.75rem 2.25rem;
  }
}

/* Accent Halo */

.shell::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.10), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(234, 179, 8, 0.10), transparent 55%);
  opacity: 0.85;
  pointer-events: none;
}

/* Content must sit above halo */

.shell-inner {
  position: relative;
  z-index: 1;
}

/* Top Glow Line */

.shell-topline {
  height: 1px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(148, 163, 184, 0.2) 12%,
      rgba(59, 130, 246, 0.45) 30%,
      rgba(234, 179, 8, 0.55) 55%,
      rgba(59, 130, 246, 0.45) 75%,
      rgba(148, 163, 184, 0.2) 90%,
      transparent 100%);
  box-shadow:
    0 0 30px rgba(59, 130, 246, 0.55),
    0 0 60px rgba(234, 179, 8, 0.45);
}

/* Header */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background:
    radial-gradient(circle at 30% 0%, rgba(56, 189, 248, 0.45), transparent 60%),
    radial-gradient(circle at 70% 100%, rgba(234, 179, 8, 0.55), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.85));
  box-shadow:
    0 0 25px rgba(56, 189, 248, 0.55),
    0 0 35px rgba(234, 179, 8, 0.45);
  position: relative;
  overflow: hidden;
}

.logo-core {
  width: 30px;
  height: 30px;
  border-radius: 1rem;
  border: 1px solid rgba(248, 250, 252, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 0%, rgba(248, 250, 252, 0.15), transparent 55%),
    radial-gradient(circle at 70% 100%, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  box-shadow:
    0 0 30px rgba(15, 23, 42, 1),
    inset 0 0 15px rgba(15, 23, 42, 0.85);
}

.logo-core span {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f9fafb;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-main {
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e5e7eb;
}

.brand-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

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

.nav-link {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  color: rgba(209, 213, 219, 0.88);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.45), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(234, 179, 8, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 160ms ease-out;
}

.nav-link span {
  position: relative;
  z-index: 1;
}

.nav-link:hover::before {
  opacity: 0.25;
}

.nav-link-active {
  border-color: rgba(59, 130, 246, 0.65);
  box-shadow:
    0 0 20px rgba(59, 130, 246, 0.45),
    0 0 30px rgba(234, 179, 8, 0.4);
}

.nav-link.nav-cta {
  border-color: rgba(234, 179, 8, 0.7);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(234, 179, 8, 0.95));
  color: #020617;
  font-weight: 600;
  box-shadow:
    0 15px 35px rgba(37, 99, 235, 0.6),
    0 10px 30px rgba(234, 179, 8, 0.55);
}

.nav-link.nav-cta::before {
  display: none;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.35rem 0.6rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-open .nav {
    display: flex;
    position: absolute;
    top: 58px;
    right: 1.5rem;
    padding: 0.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
    flex-direction: column;
    gap: 0.3rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
    z-index: 50;
  }
}

/* Hero / Page Headline */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.8fr);
  gap: 1.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.2), transparent 60%);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.95);
  margin-bottom: 0.75rem;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #166534);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.hero-title {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  color: #f9fafb;
}

.hero-title span {
  background: linear-gradient(135deg, #60a5fa, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 140ms ease-out, box-shadow 140ms ease-out, border-color 140ms ease-out, background 140ms ease-out;
}

.btn-primary {
  background:
    linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.75),
    0 10px 24px rgba(17, 24, 39, 0.95);
  color: #eff6ff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.9),
    0 12px 28px rgba(17, 24, 39, 0.96);
}

.btn-secondary {
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
  border-color: rgba(148, 163, 184, 0.6);
  color: rgba(209, 213, 219, 0.95);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
}

.btn-secondary:hover {
  border-color: rgba(234, 179, 8, 0.8);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.95),
    0 0 24px rgba(234, 179, 8, 0.65);
}

/* Hero Right – Grid Card */

.hero-panel {
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(234, 179, 8, 0.24), transparent 60%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft-card);
  padding: 1.1rem 1.15rem;
  position: relative;
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.hero-panel-title {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
}

.hero-panel-pill {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.5);
  color: #a7f3d0;
  background: radial-gradient(circle at 0 0, rgba(16, 185, 129, 0.25), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.hero-grid-card {
  border-radius: 1.1rem;
  padding: 0.6rem 0.6rem 0.7rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.95);
}

.hero-grid-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.35rem;
}

.hero-grid-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.15rem;
}

.hero-grid-meta {
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.9);
}

.hero-mesh {
  position: absolute;
  inset: 40% -25% -40% -25%;
  background:
    radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.35), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(234, 179, 8, 0.4), transparent 70%);
  opacity: 0.45;
  filter: blur(32px);
  pointer-events: none;
}

/* Status line */

.hero-status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.95);
}

.hero-status-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-status-pill {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #166534);
  box-shadow: 0 0 14px rgba(34, 197, 94, 1);
}

/* Sections */

.section {
  border-radius: 1.75rem;
  padding: 1.4rem 1.25rem 1.55rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 1));
  box-shadow: var(--shadow-soft-card);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .section {
    padding: 1.5rem 1.5rem 1.75rem;
  }
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.96);
}

.section-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.9);
}

.section-body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Home: three columns / cards */

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: 1.35rem;
  padding: 0.95rem 0.9rem 1.1rem;
  border: 1px solid rgba(75, 85, 99, 0.8);
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 1));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.95);
}

.card-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.35rem;
}

.card-title {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.badge {
  font-size: 0.66rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: rgba(156, 163, 175, 0.96);
}

/* About layout */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-highlight {
  border-radius: 1.4rem;
  border: 1px solid rgba(59, 130, 246, 0.6);
  background:
    radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.25), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(234, 179, 8, 0.3), transparent 60%),
    rgba(15, 23, 42, 0.96);
  padding: 0.95rem 1rem 1.05rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.98);
}

.about-highlight-title {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.95);
  margin-bottom: 0.4rem;
}

.about-highlight-number {
  font-size: 1.9rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.2rem;
}

.about-highlight-text {
  font-size: 0.8rem;
  color: rgba(209, 213, 219, 0.96);
}

/* Contact layout */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.form-row-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (max-width: 640px) {
  .form-row-inline {
    grid-template-columns: minmax(0, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.form-input,
.form-textarea {
  border-radius: 1rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.96);
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
  color: #e5e7eb;
  outline: none;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.95);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.55),
    0 16px 36px rgba(15, 23, 42, 0.98);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-helper {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.95);
}

/* Contact info */

.contact-card {
  border-radius: 1.4rem;
  border: 1px solid rgba(75, 85, 99, 0.85);
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.98);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.15rem;
}

.contact-item-value {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.contact-item-value a {
  color: #bfdbfe;
  text-decoration: none;
}

.contact-item-value a:hover {
  text-decoration: underline;
}

/* Legal content */

.legal-block {
  margin-bottom: 1rem;
}

.legal-block h2 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.95);
  margin: 0 0 0.5rem;
}

.legal-block p {
  margin: 0 0 0.3rem;
  font-size: 0.85rem;
  color: rgba(156, 163, 175, 0.98);
}

.legal-block ul {
  margin: 0.2rem 0 0.6rem 1.1rem;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(156, 163, 175, 0.98);
}

/* Footer */

.footer {
  margin-top: auto;
  padding: 1.5rem 1.5rem 2.5rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.95);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding-top: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer a {
  color: rgba(191, 219, 254, 0.95);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
