@charset "UTF-8";
:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #233345;
  background: #f7f8f6;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
header,
main,
footer {
  width: min(1080px, calc(100% - 64px));
  margin: auto;
}
header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfe4e2;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font:
    27px Georgia,
    serif;
  letter-spacing: -1px;
}
.brand img {
  width: 30px;
  height: 30px;
}
.environment,
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 650;
}
.environment {
  color: #61716d;
}
main {
  max-width: 950px;
  padding: 76px 0 64px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #547063;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #789882;
}
h1 {
  font:
    400 clamp(48px, 6.5vw, 78px)/1.08 Georgia,
    serif;
  letter-spacing: -3px;
  margin: 28px 0;
}
h1 em {
  font-weight: 400;
  color: #537069;
}
.intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 625px;
  color: #596771;
  margin-bottom: 38px;
}
.access {
  display: flex;
  gap: 22px;
  background: #eef2f0;
  border: 1px solid #d8e1db;
  border-radius: 18px;
  padding: 32px;
}
.lock {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e1e9e3;
  font:
    26px Georgia,
    serif;
}
h2 {
  margin: 0 0 10px;
  font:
    24px/1.25 Georgia,
    serif;
}
.access p {
  line-height: 1.65;
  max-width: 690px;
  margin: 0 0 12px;
  color: #4b5c63;
}
.access .small {
  font-size: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  background: #25384a;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}
.button:hover {
  background: #3c5668;
}
a:focus-visible {
  outline: 3px solid #987244;
  outline-offset: 5px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 52px;
}
.principles span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #657b70;
  margin-bottom: 16px;
}
.principles h2 {
  font-size: 23px;
}
.principles p {
  margin: 0;
  color: #596771;
  line-height: 1.65;
  font-size: 14px;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid #dfe4e2;
  color: #5d6c6d;
  font-size: 12px;
}
@media (max-width: 600px) {
  header,
  main,
  footer {
    width: calc(100% - 36px);
  }
  header {
    min-height: 80px;
  }
  .brand {
    font-size: 23px;
  }
  .environment {
    font-size: 9px;
    letter-spacing: 1px;
  }
  main {
    padding: 45px 0;
  }
  h1 {
    letter-spacing: -1.8px;
  }
  .intro {
    font-size: 16px;
  }
  .access {
    padding: 22px;
    gap: 0;
  }
  .lock {
    display: none;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
  }
  .principles span {
    margin-bottom: 8px;
  }
  footer {
    flex-direction: column;
  }
}
