@import url("/fonts.css");

:root {
  --page: #fbfcfe;
  --ink: #17212d;
  --secondary: #536171;
  --blue: #0866db;
  --line: #e1e6ec;
  --soft: #eef3fa;
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font:
    16px / 1.5 "Geist",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 550;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.05;
}
h2 {
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.12;
}
h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.shell {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
.skip {
  position: absolute;
  top: -80px;
  padding: 12px;
  background: var(--page);
  z-index: 10;
}
.skip:focus {
  top: 0;
}
header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1.4px;
  text-decoration: none;
}
.brand span {
  color: var(--blue);
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
nav a {
  text-decoration: none;
}
nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-link {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 10px 18px;
}
.hero {
  padding: 65px 0 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 66px;
  align-items: center;
}
.eyebrow {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 22px;
}
.lead {
  color: var(--secondary);
  font-size: 19px;
  line-height: 1.55;
  margin: 25px 0 28px;
  max-width: 440px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 25px;
  border-radius: 30px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  transition: background 0.15s;
}
.button:hover {
  background: #0655b7;
}
.button:active,
.preview-switch button:active {
  transform: scale(0.98);
}
.under-cta {
  margin-top: 12px;
  font-size: 13px;
  color: var(--secondary);
}
.preview {
  background: var(--soft);
  border-radius: 28px;
  padding: 28px;
  min-width: 0;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 24px;
}
.preview-heading span {
  color: var(--secondary);
  font-size: 12px;
}
.preview-content {
  background: #fff;
  border: 1px solid #e4eaf2;
  border-radius: var(--radius);
  overflow: hidden;
}
.thread-head {
  padding: 20px;
  display: flex;
  gap: 11px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.initial {
  width: 36px;
  height: 36px;
  background: #e8f1fd;
  color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 650;
  flex-shrink: 0;
}
.thread-head strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.thread-head small {
  display: block;
  font-size: 11px;
  color: var(--secondary);
  margin-top: 2px;
}
.thread {
  padding: 22px 18px 24px;
  min-height: 266px;
}
.event {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #677485;
  font-size: 11px;
  margin-bottom: 19px;
}
.event svg {
  width: 14px;
  height: 14px;
}
.message {
  font-size: 13px;
  line-height: 1.5;
  padding: 13px 15px;
  background: #eff2f6;
  border-radius: 17px 17px 17px 5px;
  width: fit-content;
  max-width: 95%;
}
.message small {
  display: block;
  font-size: 10px;
  color: var(--secondary);
  margin-top: 8px;
}
.message.answer {
  margin: 12px 0 0 auto;
  background: var(--blue);
  color: #fff;
  border-radius: 17px 17px 5px 17px;
}
.alert-label {
  font-size: 11px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.owner-message {
  font-size: 14px;
  line-height: 1.6;
}
.owner-message strong {
  font-weight: 600;
  display: block;
  margin: 13px 0 4px;
}
.owner-message small {
  font-size: 11px;
  color: var(--secondary);
  display: block;
  margin-top: 18px;
}
.preview-switch {
  display: flex;
  border-radius: 30px;
  padding: 4px;
  background: #e2e9f2;
  margin: 20px 0 0;
}
.preview-switch button {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--secondary);
  border-radius: 24px;
  padding: 10px 8px;
  font-size: 12px;
  flex: 1;
  min-height: 42px;
}
.preview-switch button[aria-pressed="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px #17212d12;
}
.sample-caption {
  font-size: 10px;
  color: var(--secondary);
  margin-top: 13px;
  text-align: center;
}
[hidden] {
  display: none !important;
}
.context {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
  font-size: 13px;
}
.context p {
  margin-right: auto;
  color: var(--secondary);
}
.context span {
  font-weight: 500;
}
.how {
  padding: 75px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 90px;
}
.how h2 {
  max-width: 320px;
}
.how-intro {
  color: var(--secondary);
  margin-top: 19px;
  max-width: 310px;
  font-size: 15px;
}
.how ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
.how li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.how li:first-child {
  padding-top: 0;
}
.step {
  color: #728095;
  font-size: 13px;
  padding-top: 3px;
}
.how li p {
  color: var(--secondary);
  margin-top: 8px;
  font-size: 15px;
  max-width: 470px;
}
.pricing {
  background: #eef3fa;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 48px;
  gap: 80px;
}
.pricing-intro p {
  color: var(--secondary);
  font-size: 15px;
  max-width: 360px;
  margin-top: 18px;
}
.pricing-intro ul {
  margin: 27px 0 0;
  list-style: none;
  padding: 0;
}
.pricing-intro li {
  font-size: 14px;
  margin-top: 12px;
  display: flex;
  gap: 10px;
}
.pricing-intro li:before {
  content: "✓";
  color: var(--blue);
}
.price-block {
  align-self: center;
}
.price {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 22px;
}
.price strong {
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}
.price span {
  color: var(--secondary);
  font-size: 13px;
}
.price-block .button {
  width: 100%;
}
.fine {
  color: var(--secondary);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 17px;
}
.faq {
  padding: 76px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 90px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 30px 20px 0;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 17px;
  font-size: 21px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--secondary);
  padding: 0 26px 20px 0;
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer-inner {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--secondary);
}
.footer-inner a {
  text-underline-offset: 4px;
}
@media (max-width: 850px) {
  .hero {
    gap: 32px;
    padding: 45px 0 55px;
  }
  h1 {
    font-size: 50px;
  }
  .preview {
    padding: 19px;
  }
  .how,
  .faq {
    gap: 45px;
  }
  .pricing {
    gap: 35px;
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .shell {
    width: calc(100% - 40px);
  }
  header {
    min-height: 72px;
  }
  .brand {
    font-size: 24px;
  }
  nav {
    gap: 16px;
    font-size: 13px;
  }
  nav .how-link {
    display: none;
  }
  .contact-link {
    padding: 8px 14px;
  }
  .hero {
    display: block;
    padding: 29px 0 32px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 16px;
  }
  h1 {
    font-size: clamp(38px, 10.2vw, 52px);
    letter-spacing: -0.052em;
    line-height: 1.07;
  }
  .lead {
    font-size: 16px;
    line-height: 1.5;
    margin: 19px 0 21px;
    max-width: 360px;
  }
  .hero-copy .button {
    min-height: 50px;
    padding: 13px 23px;
    font-size: 14px;
  }
  .under-cta {
    font-size: 13px;
    margin-top: 10px;
  }
  .preview {
    margin-top: 30px;
    padding: 18px;
    border-radius: 22px;
  }
  .preview-heading {
    margin-bottom: 15px;
    font-size: 12px;
  }
  .thread-head {
    padding: 15px;
  }
  .thread {
    padding: 17px 14px;
    min-height: 253px;
  }
  .message {
    font-size: 12px;
    padding: 12px 13px;
  }
  .preview-switch {
    margin-top: 15px;
  }
  .context {
    padding: 20px 0;
    gap: 10px 22px;
    font-size: 12px;
  }
  .context p {
    flex-basis: 100%;
  }
  .how,
  .faq {
    display: block;
    padding: 44px 0;
  }
  h2 {
    font-size: 30px;
  }
  .how-intro {
    margin-top: 13px;
    max-width: 360px;
    font-size: 14px;
  }
  .how ol {
    margin-top: 29px;
  }
  .how li {
    padding: 20px 0;
    gap: 10px;
    grid-template-columns: 24px 1fr;
  }
  h3 {
    font-size: 18px;
  }
  .how li p {
    font-size: 14px;
  }
  .pricing {
    display: block;
    padding: 27px 23px;
    border-radius: 22px;
  }
  .pricing-intro p {
    font-size: 14px;
    margin-top: 13px;
  }
  .pricing-intro ul {
    margin-top: 21px;
  }
  .pricing-intro li {
    font-size: 13px;
  }
  .price-block {
    border-top: 1px solid #d5dfeb;
    margin-top: 25px;
    padding-top: 25px;
  }
  .price strong {
    font-size: 49px;
  }
  .price {
    margin-bottom: 20px;
  }
  .fine {
    font-size: 13px;
  }
  .faq h2 {
    margin-bottom: 23px;
  }
  summary {
    font-size: 14px;
    padding-block: 18px;
  }
  .footer-inner {
    flex-wrap: wrap;
    gap: 16px;
    display: block;
    line-height: 1.8;
  }
  .footer-inner a {
    display: inline-block;
    padding: 10px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

header,
main,
footer {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
.hero > *,
.how > *,
.pricing > *,
.faq > * {
  min-width: 0;
}
.brand span {
  color: var(--blue);
}
.hero h1 {
  max-width: 580px;
}
.faq-intro p {
  font-size: 14px;
  color: var(--secondary);
  margin-top: 18px;
}
.pricing-intro .eyebrow {
  margin-bottom: 18px;
}
.founding {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 18px;
}
.price-includes {
  color: var(--secondary);
  font-size: 14px;
  margin: 0 0 22px;
}
.launch-note {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 15px;
  color: var(--secondary);
}
.status-change {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-size: 16px;
}
.status-before {
  color: var(--secondary);
}
.status-after {
  color: var(--blue);
  font-weight: 600;
}
.status-change svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}
.permit-number {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.owner-message .status-after {
  display: inline;
  margin: 0;
}
.thread {
  min-height: 240px;
}
.footer-inner > div:last-child {
  text-align: right;
}
footer p {
  margin-top: 6px;
}
footer .fine {
  margin-top: 8px;
}
.legal,
.onboarding {
  max-width: 680px;
  margin: auto;
  padding: 52px 0 72px;
}
.legal h1,
.onboarding h1 {
  font-size: 46px;
  margin-bottom: 24px;
}
.legal h2 {
  font-size: 24px;
  margin: 32px 0 12px;
  letter-spacing: -0.025em;
}
.legal p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--secondary);
  margin: 12px 0;
}
.onboarding .intro {
  color: var(--secondary);
  margin: 0 0 22px;
}
.notice {
  background: var(--soft);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--secondary);
}
form {
  margin-top: 28px;
}
form > label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 22px;
}
input:not([type="checkbox"]),
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  margin-top: 8px;
  padding: 11px;
  border: 1px solid #aab7c7;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
textarea {
  resize: vertical;
}
.hint {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--secondary);
  margin-top: 8px;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}
.consent input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 3px 0 0;
  accent-color: var(--blue);
}
.honeypot {
  position: absolute;
  left: -10000px;
}
form .button {
  margin-top: 22px;
}
.button {
  border: 0;
  cursor: pointer;
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
}
#form-result {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.fine {
  line-height: 1.6;
}
@media (max-width: 767px) {
  header,
  main,
  footer {
    width: calc(100% - 40px);
  }
  .brand {
    font-size: 23px;
    letter-spacing: -1.2px;
  }
  nav a:first-child {
    display: none;
  }
  nav {
    gap: 15px;
    font-size: 13px;
  }
  .hero h1 {
    max-width: 430px;
  }
  .faq-intro {
    margin-bottom: 28px;
  }
  .faq-intro h2 {
    margin-bottom: 0;
  }
  .footer-inner > div:last-child {
    text-align: left;
    margin-top: 14px;
  }
  .legal,
  .onboarding {
    padding: 30px 0 48px;
  }
  .legal h1,
  .onboarding h1 {
    font-size: 36px;
  }
  form .button {
    width: 100%;
  }
  .thread {
    min-height: 0;
  }
}
@media (max-width: 360px) {
  .brand {
    font-size: 21px;
  }
  nav {
    gap: 12px;
    font-size: 12px;
  }
}
