:root {
  color: #171717;
  background: #f4f4f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f4f4f4;
}

a {
  color: inherit;
}

.page {
  width: min(100% - 32px, 768px);
  margin: 0 auto;
  padding: 48px 0 32px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 52px;
  color: #676767;
  font-size: 14px;
  text-decoration: none;
}

.back:hover {
  color: #171717;
}

.identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  padding: 6px;
  border: 1px solid #dedede;
  border-radius: 16px;
  background: white;
  object-fit: contain;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}

.eyebrow {
  margin: 0 0 4px;
  color: #686868;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.lead {
  max-width: 672px;
  margin: 0 0 40px;
  color: #676767;
  font-size: 20px;
  line-height: 1.45;
}

.hero {
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid #dedede;
  border-radius: 16px;
  background: white;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}

.hero-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

.brand-card {
  padding: 32px;
}

.brand-visual {
  display: flex;
  height: 176px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbeafe, #ffffff 50%, #e0f2fe);
}

.brand-visual img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand-visual span {
  color: #0f172a;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 9px;
  background: #171717;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.stat {
  padding: 20px;
  border: 1px solid #dedede;
  border-radius: 12px;
  background: white;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.stat span,
.copy p,
footer {
  color: #676767;
}

.stat span {
  font-size: 14px;
}

.copy {
  max-width: 672px;
}

.copy section {
  margin-bottom: 36px;
}

.copy h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.copy a {
  color: #171717;
  font-weight: 700;
  text-underline-offset: 4px;
}

footer {
  margin-top: 56px;
  padding: 24px 0 8px;
  border-top: 1px solid #dedede;
  font-size: 14px;
}

@media (max-width: 600px) {
  .page {
    width: min(100% - 32px, 768px);
    padding-top: 28px;
  }

  .back {
    margin-bottom: 52px;
  }

  .lead {
    font-size: 19px;
  }

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

  .stat {
    padding: 20px;
  }

  .brand-card {
    padding: 20px;
  }

  .brand-visual {
    gap: 14px;
  }

  .brand-visual img {
    width: 64px;
    height: 64px;
  }

  .brand-visual span {
    font-size: 34px;
  }
}
