@font-face {
  font-family: Nimbus;
  src: url("assets/sans.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
:root {
  font-family: Nimbus, Arial, sans-serif;
  color: #101010;
  background: #fafafa;
  font-synthesis: none;
  --ink: #080808;
  --muted: #646464;
  --line: #e1e1e1;
  --focus: #00636b;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.65;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.button:hover {
  text-decoration: none;
  background: #292929;
}
.button:active {
  transform: translateY(1px);
}
.page {
  width: 96%;
  margin: auto;
  border-inline: 1px solid var(--line);
}
.header {
  height: 100px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header nav,
.account {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 18px;
}
.header a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.account {
  justify-content: flex-end;
}
.brand {
  gap: 12px;
  font-size: 32px;
  white-space: nowrap;
}
.brand svg {
  width: 31px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  overflow: visible;
}
.button {
  border: 0;
  border-radius: 99px;
  padding: 15px 22px;
  background: var(--ink);
  color: white;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition:
    background-color 0.15s,
    transform 0.15s;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(96vw / 1.645);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #356f70;
  overflow: hidden;
}
.forest {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    transparent 37%,
    rgb(15 47 45 / 25%) 68%,
    rgb(24 45 42 / 39%)
  );
}
.hero-content {
  width: 100%;
  text-align: center;
  color: white;
  padding: 40px 20px 26px;
}
h1 {
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}
.intro {
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.5;
  margin: 0 auto 28px;
  max-width: 760px;
}
#trial-form {
  display: flex;
  justify-content: center;
  gap: 12px;
}
input {
  border: 1px solid transparent;
  background: white;
  color: #151515;
  border-radius: 99px;
  padding: 17px 24px;
  width: 300px;
  min-height: 60px;
}
input::placeholder {
  color: #626262;
}
#trial-form .button {
  font-size: 20px;
  padding: 16px 22px;
}
.no-script {
  font-size: 14px;
}
.brands {
  padding: 26px 28px;
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brands p {
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  flex-shrink: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  color: #707070;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.logo span {
  font:
    30px Georgia,
    serif;
}
.heavy {
  letter-spacing: -0.06em;
}
.utility {
  border-top: 1px solid var(--line);
  padding: 15px 28px;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.utility a {
  display: flex;
  min-height: 44px;
  align-items: center;
  text-decoration: underline;
}
.art-error {
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  color: white;
  font-size: 14px;
}
.art-error[hidden] {
  display: none;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafafa;
  color: #151515;
  width: min(550px, calc(100% - 32px));
  padding: 40px;
  max-height: calc(100dvh - 40px);
  overflow: auto;
}
dialog:target {
  display: block;
  position: relative;
  margin: 32px auto;
}
dialog::backdrop {
  background: rgb(10 30 27 / 60%);
}
dialog h2 {
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 14px 0 24px;
}
dialog p,
dialog li {
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.55;
}
dialog ol {
  padding-left: 22px;
}
dialog li {
  padding-left: 4px;
  margin-block: 10px;
}
.eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin: 0;
}
.close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 28px;
}
.close:hover {
  text-decoration: none;
  background: #e7edeb;
  border-radius: 50%;
}
.muted {
  color: var(--muted);
  font-size: 14px !important;
}
dialog label {
  display: block;
  line-height: 1.5;
  margin-bottom: 10px;
}
textarea {
  width: 100%;
  border: 1px solid #8a9691;
  border-radius: 8px;
  padding: 14px;
  resize: vertical;
  line-height: 1.45;
  min-height: 120px;
}
#brief-status {
  font-size: 14px;
  min-height: 22px;
  margin-bottom: 0;
}
#brief-status.error {
  color: #a52020;
}
.sr-only,
.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip:focus {
  width: auto;
  height: auto;
  clip-path: none;
  top: 8px;
  left: 12px;
  background: white;
  color: #111;
  padding: 16px;
  z-index: 10;
}
@media (min-width: 1800px) {
  .header {
    height: 7vw;
  }
  .hero-content {
    padding-bottom: 2vw;
  }
  .intro {
    margin-bottom: 2vw;
  }
}
@media (max-width: 1100px) {
  .header {
    padding: 0 20px;
    gap: 16px;
  }
  .header nav,
  .account {
    font-size: 15px;
    gap: 15px;
  }
  .brand {
    font-size: 28px;
  }
  .brands {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 32px;
  }
  .brands p {
    margin-right: 12px;
  }
  .logo {
    font-size: 18px;
  }
  .hero {
    min-height: 720px;
  }
}
@media (max-width: 650px) {
  .page {
    width: calc(100% - 20px);
  }
  .header {
    height: auto;
    min-height: 132px;
    grid-template-columns: 1fr auto;
    gap: 4px 8px;
    padding: 12px 16px;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    font-size: 26px;
    gap: 8px;
  }
  .brand svg {
    width: 26px;
  }
  .account {
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
    font-size: 14px;
  }
  .account .button {
    padding: 11px 14px;
  }
  .header nav {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: space-between;
    font-size: 15px;
    gap: 12px;
  }
  .hero {
    min-height: 650px;
  }
  .forest {
    object-position: 50% center;
  }
  .hero:after {
    background: linear-gradient(
      transparent 25%,
      rgb(13 49 45 / 42%) 62%,
      rgb(22 47 43 / 62%)
    );
  }
  .hero-content {
    padding: 200px 18px 22px;
  }
  h1 {
    font-size: 38px;
    line-height: 1.03;
    margin-bottom: 18px;
  }
  h1 br {
    display: none;
  }
  .intro {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .desktop-break {
    display: none;
  }
  #trial-form {
    flex-direction: column;
    gap: 10px;
  }
  input {
    width: 100%;
    min-height: 54px;
  }
  #trial-form .button {
    min-height: 54px;
    font-size: 18px;
  }
  .brands {
    padding: 24px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }
  .brands p {
    grid-column: 1/-1;
    text-align: center;
    margin: 0;
    font-size: 15px;
  }
  .logo {
    font-size: 18px;
    justify-content: center;
  }
  .utility {
    padding: 10px 14px;
    flex-wrap: wrap;
    gap: 0;
  }
  dialog {
    padding: 38px 24px 26px;
  }
  dialog h2 {
    font-size: 32px;
  }
}
@media (max-width: 350px) {
  .header {
    padding-inline: 12px;
  }
  .brand {
    font-size: 23px;
  }
  .account {
    gap: 4px;
    font-size: 13px;
  }
  .account .button {
    padding-inline: 10px;
  }
  h1 {
    font-size: 35px;
  }
  .hero-content {
    padding-inline: 16px;
  }
  .logo {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
  .button:active {
    transform: none;
  }
}
