:root {
  color-scheme: light;
  --paper: #f9f7f3;
  --cream: #f6f2e9;
  --ink: #201e21;
  --muted: #6d686b;
  --orange: #e7703d;
  --line: #e7e1d8;
  --body-font:
    "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
  border-radius: 5px;
}

.entry-shell {
  width: min(100% - 80px, 1080px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.entry-header {
  padding: 42px 0 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 128px;
  height: 39px;
}

.brand-product {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #d8cfc4;
  font-size: 25px;
  font-weight: 450;
  letter-spacing: -1px;
  line-height: 30px;
}

main {
  flex: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 20px 0 38px;
}

.entry-card {
  width: min(100%, 536px);
  padding: 43px 43px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 50px #59452d05;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: #795842;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  background: var(--orange);
}

h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(30px, 5vw, 39px);
  font-weight: 600;
  letter-spacing: -1.65px;
  line-height: 1.14;
}

h1 > span {
  color: #b34b25;
}

.introduction {
  max-width: 335px;
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.access-instruction {
  margin: 0 0 15px;
  padding: 17px 19px;
  border-radius: 10px;
  background: var(--cream);
  color: #51463f;
  font-size: 14px;
  line-height: 1.7;
}

.primary-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 9px 11px 9px 23px;
  background: var(--orange);
  border: 1px solid transparent;
  border-radius: 30px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 150ms ease;
}

.primary-link:hover {
  background: #dc6936;
}

.primary-link:focus-visible {
  border-radius: 30px;
}

.link-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.access-help {
  margin-top: 21px;
  border-top: 1px solid var(--line);
  padding-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.access-help summary {
  min-height: 44px;
  padding: 12px 0;
  cursor: pointer;
  line-height: 1.65;
}

.access-help summary::marker {
  color: #a35a32;
}

.access-help summary:hover {
  color: var(--ink);
}

.help-content {
  padding: 0 0 3px 15px;
}

.help-content p {
  margin: 0 0 12px;
}

.help-content a {
  color: #934321;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

footer {
  padding: 18px 0 27px;
  text-align: center;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .entry-shell {
    width: calc(100% - 32px);
  }
  .entry-header {
    padding: 26px 6px 21px;
  }
  .brand img {
    width: 115px;
    height: auto;
  }
  .brand-product {
    margin-left: 16px;
    padding-left: 16px;
    font-size: 23px;
    line-height: 27px;
  }
  main {
    padding: 15px 0 22px;
  }
  .entry-card {
    padding: 31px 25px 18px;
    border-radius: 17px;
  }
  h1 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }
  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }
  .introduction {
    margin: 16px 0 25px;
    font-size: 14px;
  }
  .access-instruction {
    padding: 15px;
    font-size: 14px;
  }
  .primary-link {
    gap: 10px;
    padding-left: 18px;
    font-size: 14px;
  }
  .access-help {
    font-size: 12px;
    margin-top: 18px;
  }
  footer {
    padding: 15px 8px 23px;
  }
}

@media (max-width: 360px) {
  .entry-card {
    padding-right: 21px;
    padding-left: 21px;
  }
  h1 {
    font-size: 31px;
  }
  .primary-link {
    padding-left: 15px;
    font-size: 13px;
  }
  .link-arrow {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-link {
    transition: none;
  }
}
