/* ==========
   Base & Reset
   ========== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #f5f7ff;
  background: #050815;
  line-height: 1.6;
}

/* Color system */

:root {
  --color-bg: #050815;
  --color-header: #050815;
  --color-surface: #0b1020;
  --color-surface-soft: #10152b;
  --color-primary: #2f80ed;
  --color-primary-soft: rgba(47, 128, 237, 0.1);
  --color-accent: #f2994a;
  --color-text: #f5f7ff;
  --color-muted: #9da5c0;
  --color-border: #1f2640;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --radius-lg: 18px;
  --radius-xl: 26px;
}

/* Layout */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 8, 21, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #ffffff;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--color-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(140deg, var(--color-primary), #4c6fff);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  filter: brightness(1.03);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Hero */

.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(47, 128, 237, 0.12), transparent 55%),
    radial-gradient(circle at top right, rgba(242, 153, 74, 0.16), transparent 60%),
    linear-gradient(to bottom, #050815, #050815);
  color: var(--color-text);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 16, 38, 0.7);
  color: var(--color-muted);
  margin-bottom: 0.9rem;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-accent);
}

.hero h1 {
  font-size: clamp(2.1rem, 3.1vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.9rem;
  letter-spacing: -0.03em;
}

.hero h1 span.highlight {
  background: linear-gradient(120deg, #fefefe, #a7c5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.hero-meta-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
}

.hero-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(47, 128, 237, 0.25), #050815);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  opacity: 0.96;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: rgba(9, 14, 35, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.76rem;
  color: var(--color-muted);
  max-width: 280px;
}

.hero-badge strong {
  color: #ffffff;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: linear-gradient(to bottom, #050815, #050815);
}

.section-surface {
  background: radial-gradient(circle at top, rgba(47, 128, 237, 0.12), #050815);
}

.section-header {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 0.98rem;
  color: var(--color-muted);
  margin: 0;
}

/* Cards & grids */

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

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

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

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.card-soft {
  background: var(--color-surface-soft);
}

.card h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0;
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.card-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.card-list li + li {
  margin-top: 0.35rem;
}

/* Lists */

.bullet-list {
  margin: 0.4rem 0 0.5rem;
  padding-left: 1.1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.bullet-list li + li {
  margin-top: 0.25rem;
}

/* Two-column content */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split-layout > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Simple typography */

h2 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1rem;
}

p {
  margin: 0 0 0.7rem;
}

/* Badges / labels */

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-muted);
}

/* Layout helpers */

.stack {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.stack-lg {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0 2.5rem;
  background: #050815;
  font-size: 0.82rem;
  color: var(--color-muted);
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--color-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-meta {
  text-align: right;
}

/* Contact / forms */

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

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: var(--color-muted);
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
