:root {
  color-scheme: light;
  --bg: #07111f;
  --panel: #0f2138;
  --panel-soft: #132c46;
  --text: #f5f7fb;
  --muted: #a3b3c6;
  --accent: #4cc9f0;
  --accent-strong: #3a86ff;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg), #10253b 55%, #182f4d);
  color: var(--text);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
.site-footer,
.hero,
.page-intro,
.card-grid,
.contact-card {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 4rem 0 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero h1,
.page-intro h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  margin: 0 0 1rem;
}

.subheading,
.page-intro p,
.contact-card p,
.hero-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: white;
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card,
.info-card,
.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.hero-card h2,
.info-card h2,
.contact-card h2 {
  margin-top: 0;
}

.page-intro {
  padding-top: 2.8rem;
  padding-bottom: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-bottom: 3rem;
}

.info-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact-card {
  max-width: 700px;
  margin: 1.25rem auto 3rem;
}

.site-footer {
  padding: 0 0 2rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {
  .hero,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    gap: 0.8rem;
  }
}
