@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #0f2a22;
  --green-mid: #1f4a40;
  --lime: #7ed957;
  --ink: #0e0e0e;
  --text: #3a3a3a;
  --muted: #6b6b6b;
  --sand: #f7f5f2;
  --line: #e0ddd8;
  --line-strong: #cbc7c0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: var(--sand);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.76;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--green-mid);
  font-weight: 600;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

#pagewidth {
  width: 100%;
}

.center,
.header-shell {
  width: min(980px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

#header {
  padding: 38px 0 90px;
}

#logo {
  display: inline-block;
  margin-bottom: 80px;
}

#logo img {
  display: block;
  width: auto;
  height: 36px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 70px;
  align-items: center;
}

.header-text {
  min-width: 0;
}

.title {
  margin-bottom: 38px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.subtitle {
  margin-bottom: 13px;
  color: var(--text);
  font-size: clamp(17px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.72;
}

.portrait {
  width: 190px;
  margin: 0;
}

.portrait img {
  display: block;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
}

#content {
  width: 100%;
}

#questions {
  width: 100%;
  padding: 48px 0 110px;
  border-top: 1px solid var(--line);
}

.heading {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.04em;
}

h1.heading {
  margin-bottom: 38px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
}

h2.heading {
  margin-bottom: 70px;
  font-size: clamp(21px, 2.4vw, 29px);
  line-height: 1.28;
}

h2.heading::after {
  content: "";
  display: block;
  width: 42px;
  margin-top: 24px;
  border-bottom: 3px solid var(--lime);
}

.answers h3 {
  margin: 60px 0 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.answers h3:first-child {
  margin-top: 0;
}

.answers p,
.answers li {
  color: var(--text);
  font-size: clamp(17px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.78;
}

.answers p {
  margin-bottom: 26px;
}

.answers ul {
  margin: 4px 0 30px;
  padding-left: 0;
  list-style: none;
}

.answers li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 24px;
}

.answers li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 1px;
  width: 7px;
  height: 7px;
  background: var(--lime);
  transform: translateY(-50%);
}

.answers .action {
  display: inline-block;
  margin: 4px 0 8px;
  padding: 13px 20px;
  border: 1px solid var(--lime);
  color: var(--ink);
  background: var(--lime);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.answers .action:hover {
  background: #6bc948;
  border-color: #6bc948;
  transform: translateY(-1px);
}

.answers .action:focus-visible {
  outline-color: var(--green);
}

#identity {
  padding: 48px 0 40px;
  color: var(--white);
  background: var(--green);
}

#identity .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

#identity .half {
  min-width: 0;
}

#identity h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

#identity p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 720px) {
  #header {
    padding: 28px 0 64px;
  }

  .center,
  .header-shell {
    width: min(100% - 36px, 980px);
  }

  #logo {
    margin-bottom: 54px;
  }

  #logo img {
    height: 31px;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .header-text {
    width: 100%;
  }

  .title {
    margin-bottom: 30px;
  }

  .portrait {
    width: 148px;
  }

  .portrait img {
    width: 148px;
    height: 148px;
  }

  #questions {
    padding: 42px 0 84px;
  }

  h2.heading {
    margin-bottom: 60px;
  }

  .answers h3 {
    margin-top: 50px;
    padding-top: 24px;
  }

  #identity .columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .answers .action {
    transition: none;
  }
}

@media (max-width: 420px) {
  #logo img {
    height: 28px;
  }

  .title {
    font-size: 30px;
  }
}
