:root {
  --bg: #081426;
  --bg-soft: #0f2747;
  --card: #153158;
  --text: #edf4ff;
  --muted: #b7cbe6;
  --accent: #f28c28;
  --accent-2: #66b7ff;
  --border: rgba(255,255,255,0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #060d18 0%, #0a1526 100%);
  line-height: 1.55;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 16, 29, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 1.1rem;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}
.nav a:hover { color: #fff; }

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6,17,32,0.74), rgba(9,26,50,0.88)),
    radial-gradient(1000px 500px at 75% 8%, rgba(242,140,40,0.22), transparent 65%),
    url('./assets/CE080D67-4E46-4C79-8FEE-26F9F42727A2_1_102_o.jpeg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,20,0.2), rgba(5,11,20,0.68));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 6.5rem;
  max-width: 860px;
}

.kicker {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.lead {
  color: #d4e3f8;
  max-width: 70ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.68rem 1.05rem;
  border-radius: 0.7rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #3f84ff);
  color: #fff;
  font-weight: 600;
  transition: 0.18s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
}
.btn-small { padding: 0.5rem 0.88rem; font-size: 0.92rem; }

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to bottom right, transparent 49%, #09172b 50%);
  opacity: 0.55;
}

.section {
  padding: 5rem 0;
}
.section-dark {
  background: linear-gradient(180deg, #09172b 0%, #0c1f38 100%);
}

.section-lead {
  color: var(--muted);
  max-width: 75ch;
  margin-bottom: 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.25rem;
}

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

.media-hero {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  overflow: hidden;
  margin: 1.1rem 0 1.4rem;
}

.media-hero img,
.image-grid img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.image-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0.8rem 0 1.2rem;
}

.image-grid img {
  border-radius: 12px;
  border: 1px solid var(--border);
  min-height: 220px;
  max-height: 300px;
}

.card {
  background: linear-gradient(180deg, rgba(20,44,78,0.88), rgba(15,35,62,0.95));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.card p, .card li { color: #c8d8ef; }
.card ul { margin: 0.45rem 0 0; padding-left: 1.1rem; }

.highlight {
  border-color: rgba(121,216,255,0.44);
  background: linear-gradient(180deg, rgba(36,70,119,0.88), rgba(20,44,78,0.95));
}

.num {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 1.4px;
  font-weight: 700;
}

a { color: #9fdbff; }
a:hover { color: #c8edff; }

.footer-contact { border-top: 1px solid rgba(255,255,255,0.12); }

@media (max-width: 920px) {
  .nav { display: none; }
  .two-col, .cards-3, .cards-2, .image-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 4.4rem 0 5rem; }
  .brand img { height: 30px; }
}
