:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --text: #122132;
  --muted: #576b7d;
  --accent: #0d9488;
  --border: #d8e1ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 92% 2%, #d6ece8 0%, rgba(214, 236, 232, 0) 40%),
    var(--bg);
  color: var(--text);
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 18px 72px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}

.brand {
  font-size: 19px;
  font-weight: 800;
}

.toplinks {
  display: flex;
  gap: 14px;
}

.toplinks a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}

h1,
h2 {
  margin: 0 0 14px;
}

h1 {
  font-size: 44px;
  line-height: 1.15;
  max-width: 620px;
}

h2 {
  font-size: 24px;
}

p {
  line-height: 1.65;
}

.hero {
  margin-top: 6px;
  display: grid;
  gap: 12px;
}

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

.lead {
  max-width: 620px;
  font-size: 18px;
  color: #23384d;
}

.links {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
}

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

.meta {
  color: var(--muted);
  font-size: 14px;
}

.section {
  margin-top: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.section.compact p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
}

.shots {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shot {
  aspect-ratio: 9 / 19;
  border: 1px dashed #b6c4d2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbfdff 0%, #eff4f9 100%);
}

.shot span {
  color: var(--muted);
  font-size: 13px;
}

.footer {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--muted);
}

@media (max-width: 720px) {
  h1 {
    font-size: 34px;
  }

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

  .shot {
    aspect-ratio: 16 / 10;
  }
}
