:root {
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #17262a;
  background: #f5f3ed;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
main,
.page-loading {
  max-width: 960px;
  margin: auto;
  padding: 28px 28px 64px;
}
header,
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header {
  margin-bottom: 64px;
}
header a {
  font-size: 20px;
  font-weight: 750;
  text-decoration: none;
  color: inherit;
}
.eyebrow {
  letter-spacing: 0.15em;
  font-size: 12px;
  color: #546963;
}
h1 {
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.04em;
  margin: 14px 0;
}
h2 {
  font-size: 20px;
  margin-top: 0;
}
.intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 28px;
}
.panel,
.quote {
  border: 1px solid #d7ded6;
  background: #fffefa;
  border-radius: 18px;
  padding: 24px;
  margin: 18px 0;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 18px;
}
.quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price {
  font-size: 34px;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.quote p {
  margin: 0;
  line-height: 1.65;
}
.muted {
  color: #526263;
  font-size: 14px;
  line-height: 1.7;
}
.row input {
  min-width: 0;
  flex: 1;
}
label {
  display: block;
  margin: 12px 0 8px;
}
input,
select,
button {
  font: inherit;
}
input:not([type="checkbox"]),
select {
  border: 1px solid #94a8a2;
  border-radius: 9px;
  padding: 12px;
  background: white;
  color: inherit;
}
select {
  width: 100%;
}
button {
  border: 1px solid #1d6258;
  background: #1d6258;
  color: white;
  padding: 12px 18px;
  border-radius: 9px;
  cursor: pointer;
  white-space: normal;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.is-busy button,
.is-busy input,
.is-busy select {
  cursor: progress;
}
.quiet,
#language {
  background: transparent;
  color: #1d6258;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.7;
  margin: 20px 0;
}
.check input {
  margin-top: 7px;
}
#notice {
  padding: 15px 18px;
  border-radius: 12px;
  background: #e2ede6;
  line-height: 1.7;
}
#notice.error {
  background: #f8e5df;
  color: #83371f;
}
#access {
  line-height: 1.8;
  margin-top: 15px;
}
#account-email {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid #be7627;
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
@media (max-width: 580px) {
  main {
    padding: 20px 16px 48px;
  }
  header {
    margin-bottom: 36px;
  }
  .row {
    align-items: stretch;
    flex-direction: column;
  }
  .panel {
    padding: 20px;
  }
  .row button {
    width: 100%;
  }
}
