:root {
  /* Theme */
  --bg: #0b0f17;
  --overlay: rgba(0, 0, 0, 0.5);
  --text: rgba(240, 255, 249, 0.9);
  --muted: rgba(240, 255, 249, 0.8);
  --line: rgba(240, 255, 249, 0.12);
  --shadow: 0 5px 10px rgba(0, 0, 0, 0.25);

  /* Layout */
  --max: 1000px;
  --gap: 2rem;
  --radius: 18px;

  /* Typography */
  --headingsFontFamily: "DM Sans";
}

/* =========================
   Base / Reset
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font: 16px / 1.55 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: deepskyblue;
}

a {
  color: inherit;
}

/* Typography */
h1,
h2 {
  font-family: var(--headingsFontFamily);
}

h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.3px;
}

h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

p {
  margin: 0;
  color: var(--muted);
}

ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

li {
  margin: 6px 0;
}

/* =========================
   Layout
   ========================= */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 56px;
  position: relative;
  z-index: 1;
}

header {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--headingsFontFamily);
}

section {
  margin-top: var(--gap);
}

/* =========================
   Components
   ========================= */

/* Card */
.card {
  background: var(--overlay);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.padded {
  padding: 18px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap);
  align-items: stretch;
  margin-top: 6px;
}

.heroText {
  padding: 22px 22px 18px;
}

.lead {
  margin: 0 0 16px;
  color: var(--muted);
}

/* Badges */
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.badge {
  font-size: 13px;
  color: rgba(232, 240, 251, 0.92);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Hero Image */
.heroImg {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 260px;
}

.imgFrame {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(106, 168, 255, 0.20), rgba(124, 240, 193, 0.12)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0 12px,
      rgba(255, 255, 255, 0.02) 12px 24px
    );
}

.imgFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--gap);
}

/* Footer */
footer {
  margin-top: var(--gap);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--overlay);
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   Utilities
   ========================= */
.hr {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.fine {
  font-size: 13px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }
}
