:root {
  color-scheme: light;
  --ink: #111111;
  --paper: #ffffff;
  --soft: #f7f6f3;
  --muted: #6f6b66;
  --line: rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

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

.site-header,
.site-footer,
main {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 20px;
}

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

.brand img {
  display: block;
  border-radius: 9px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.top-links a:hover,
.social-card:hover {
  color: var(--ink);
}

.hero {
  min-height: auto;
  display: block;
  padding: 78px 0 64px;
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.statement {
  margin: 34px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--line);
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.35;
  font-weight: 650;
}

.statement.en {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-size: 15px;
  font-weight: 700;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.social-section {
  padding: 42px 0 58px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 58px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
}

@media (max-width: 880px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    align-items: flex-start;
    padding: 24px 0 12px;
  }

  .top-links {
    gap: 12px;
  }

  .hero {
    padding: 58px 0 50px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .social-section {
    padding: 38px 0 48px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .statement {
    font-size: 25px;
  }

  .statement.en {
    font-size: 21px;
  }

  .button {
    width: 100%;
  }
}
