:root {
  color-scheme: dark;
  --bg: #101820;
  --panel: rgba(16, 24, 32, 0.78);
  --text: #f7fbff;
  --muted: #bac8d5;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #29d3a6;
  --accent-2: #ffcd5a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.94) 0%, rgba(16, 24, 32, 0.72) 48%, rgba(16, 24, 32, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.74) 0%, rgba(16, 24, 32, 0.08) 42%, rgba(16, 24, 32, 0.3) 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 64px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.copy {
  align-self: center;
  max-width: 680px;
}

.copy h1 {
  margin: 0 0 18px;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
}

.copy p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 750;
}

.button--primary {
  color: #071411;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 16px 42px rgba(41, 211, 166, 0.26);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.stats {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats div {
  min-width: 0;
  padding: 18px;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.stats dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.stats dd {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
}

.strip {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.strip div {
  min-width: 0;
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 17px;
}

.strip span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
  }

  .hero__media::after {
    background:
      linear-gradient(0deg, rgba(16, 24, 32, 0.96) 0%, rgba(16, 24, 32, 0.62) 62%, rgba(16, 24, 32, 0.24) 100%),
      linear-gradient(90deg, rgba(16, 24, 32, 0.86) 0%, rgba(16, 24, 32, 0.28) 100%);
  }

  .hero__content {
    width: min(100% - 28px, 1120px);
    padding: 24px 0 32px;
    gap: 24px;
  }

  .copy {
    align-self: end;
  }

  .copy h1 {
    font-size: 54px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strip {
    width: min(100% - 28px, 1120px);
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
}
