* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f1115;
  color: #ffffff;
}

.page {
  max-width: 520px;
  margin: 0 auto;
  background: #0f1115;
}

section {
  padding: 28px 20px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.9)
  );
}

.logo {
  width: 120px;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 22px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.muted {
  color: #c9c9c9;
}

h1 {
  font-size: 34px;
  line-height: 1.04;
  margin: 16px 0;
}

h2 {
  font-size: 26px;
  margin: 0 0 18px;
}

h3 {
  margin-bottom: 8px;
}

p,
li {
  font-size: 16px;
  line-height: 1.45;
}

.lead {
  font-size: 18px;
  font-weight: 700;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.buttons a,
.doc-button {
  flex: 1;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  background: #1b1e25;
  border-radius: 16px;
  padding: 16px;
}

.stat span {
  display: block;
  color: #b5b5b5;
  font-size: 13px;
  margin-bottom: 8px;
}

.stat strong {
  font-size: 20px;
}

.gallery {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.card {
  min-width: 300px;
  background: #1b1e25;
  border-radius: 18px;
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card h3,
.card p {
  padding: 0 16px;
}

.card p {
  padding-bottom: 16px;
  color: #c9c9c9;
}

ul {
  padding-left: 20px;
}

.table {
  display: grid;
  gap: 12px;
}

.row {
  background: #1b1e25;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

@media (min-width: 700px) {
  .page {
    max-width: 700px;
  }

  .card {
    min-width: 420px;
  }
}
