:root {
  color-scheme: dark;
  --bg: #07121f;
  --bg-strong: #03101d;
  --text: #f3f7fb;
  --muted: #b9c6d3;
  --line: rgba(255, 255, 255, 0.14);
  --primary: #0c71c3;
  --primary-strong: #095393;
  --accent: #7cda24;
  --panel: rgba(5, 18, 31, 0.82);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg-strong);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-image:
    linear-gradient(180deg, rgba(2, 14, 26, 0.3), rgba(2, 14, 26, 0.95)),
    url("/ManaStudio/News/new-website.jpg");
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 96px 24px 48px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 18, 35, 0.28), rgba(4, 18, 35, 0.86)),
    linear-gradient(180deg, rgba(12, 113, 195, 0.42), rgba(3, 16, 29, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo {
  width: min(100%, 300px);
  display: block;
  margin: 0 auto 22px;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  max-width: 18ch;
  margin-inline: auto;
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 15ch;
}

.summary,
.preview-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

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

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
}

.preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 36px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.preview-copy {
  padding: 28px 0;
}

.preview-copy p {
  max-width: 36rem;
  margin: 18px 0 0;
}

.preview-image-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
  }

  .preview {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .preview-copy {
    order: 2;
    padding-top: 0;
  }

  .preview-image-wrap {
    order: 1;
  }

  .summary,
  .preview-copy p {
    font-size: 16px;
  }
}
