:root {
  --bg: #0b1020;
  --bg-soft: #121a33;
  --panel: #ffffff;
  --text: #111827;
  --text-soft: #4b5563;
  --white: #ffffff;
  --primary: #1d4ed8;
  --primary-hover: #1e40af;
  --accent: #0ea5e9;
  --border: #e5e7eb;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 20px 50px rgba(17, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #f8fafc;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-top {
  background: var(--bg-soft);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top p {
  margin: 0;
  text-align: center;
}

.header-top .credentials {
  display: block;
  margin-top: 0.2rem;
  color: #93c5fd;
  font-weight: 500;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 34px;
  padding: 0 0.4rem;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(120deg, var(--primary), var(--accent));
  font-size: 0.72rem;
  letter-spacing: 0.4px;
}

.brand-text {
  line-height: 1.2;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}

.site-nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1f2937;
  margin: 5px auto;
}

.hero {
  position: relative;
  color: var(--white);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 16, 32, 0.92) 0%, rgba(11, 16, 32, 0.75) 55%, rgba(29, 78, 216, 0.45) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero {
  position: relative;
  padding: 4rem 0 3rem;
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 16, 32, 0.9), rgba(29, 78, 216, 0.55));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 18ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  font-size: 0.75rem;
  color: #60a5fa;
  margin-bottom: 0.4rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}

.lead {
  color: #e5e7eb;
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-sm {
  height: 38px;
  padding: 0 0.85rem;
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 1.4rem;
  backdrop-filter: blur(6px);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.hero-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: #e5e7eb;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #eef2ff;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 720px;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.section-intro {
  color: var(--text-soft);
  margin-top: 0.75rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split-reverse .split-image {
  order: -1;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.card-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.card-link:hover {
  text-decoration: underline;
}

.feature-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e3a8a;
  background: #dbeafe;
}

.content-block h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.content-block ul {
  color: var(--text-soft);
  padding-left: 1.2rem;
}

.content-block p {
  color: var(--text-soft);
}

.cta {
  background: var(--bg-soft);
  color: var(--white);
}

.cta .eyebrow {
  color: #93c5fd;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta p {
  color: #cbd5e1;
  margin: 0.5rem 0 0;
  max-width: 55ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  color: var(--text-soft);
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.contact-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.pro-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.pro-card h3 {
  margin: 0 0 0.25rem;
}

.pro-card .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: #f1f5f9;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .split-reverse .split-image {
    order: 0;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: rgba(248, 250, 252, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-top .credentials {
    font-size: 0.75rem;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cards,
  .two-col-list {
    grid-template-columns: 1fr;
  }

  .cta-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
