:root {
  --bg: #0b1020;
  --surface: #111933;
  --surface-alt: #0d1429;
  --text: #e7ebf6;
  --muted: #a8b3cf;
  --primary: #5b8cff;
  --primary-hover: #7ea4ff;
  --border: #263252;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #1a2550 0%, var(--bg) 55%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  padding: 28px 0 80px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 70px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.top-nav__links {
  display: flex;
  gap: 20px;
}

.top-nav__links a {
  color: var(--muted);
  font-size: 14px;
}

.top-nav__links a:hover {
  color: var(--text);
}

.hero__content {
  max-width: 760px;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.hero__media img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-block;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.button--primary {
  background: var(--primary);
  color: #fff;
}

.button--primary:hover {
  background: var(--primary-hover);
}

.button--ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 70px 0;
}

.section--alt {
  background: rgba(3, 8, 20, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}

.section__intro {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 28px;
}

.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-alt));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.card__meta {
  color: #9db0df;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.card li + li {
  margin-top: 6px;
}

.featured-press {
  margin: 6px 0 14px;
}

.featured-press img {
  width: 120px;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px;
}

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

.link-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: #3d4f7f;
}

.link-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.link-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: 250px 1fr;
}

.about-grid img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.about-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 36px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer a {
  color: #b8c8ee;
}

@media (max-width: 860px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: -1;
  }

  .hero__media img {
    max-height: 420px;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 44px;
  }

  .top-nav__links {
    flex-wrap: wrap;
  }
}
