@charset "UTF-8";
:root {
  --green: #006b56;
  --deep: #123d32;
  --ink: #182c2a;
  --muted: #52635d;
  --paper: #fbfcf8;
  --line: #dce4dc;
  --lime: #d8ef97;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b57b00;
  outline-offset: 6px;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1220px, calc(100% - 96px));
  margin-inline: auto;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 110px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.7px;
  white-space: nowrap;
}
.brand-light {
  font-weight: 400;
}
.header nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.header nav a:hover,
.sign-in:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 15px 25px;
  border-radius: 7px;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 16px;
  min-height: 54px;
  transition: background 0.15s;
}
.button:hover {
  background: #004c3d;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button.small {
  min-height: 46px;
  padding: 10px 19px;
  gap: 20px;
  font-size: 14px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-block: 48px 100px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 24px;
}
.hero h1 {
  font-size: clamp(46px, 5.1vw, 72px);
  line-height: 1.035;
  letter-spacing: -3.3px;
  font-weight: 500;
  margin: 0 0 27px;
}
.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -3px;
}
.lead {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 27px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.text-link {
  font-size: 15px;
  font-weight: 700;
}
.text-link span {
  margin-left: 9px;
}
.micro {
  font-size: 13px;
  max-width: 385px;
  color: var(--muted);
  margin-top: 19px;
}
#supportContact[href] {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-visual {
  position: relative;
  min-width: 0;
  padding-bottom: 74px;
}
.property-photo {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.photo-label {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 4px;
  background: #ffffffed;
  font-size: 12px;
  font-weight: 700;
}
.activity-card {
  position: absolute;
  bottom: 0;
  left: -28px;
  width: min(390px, 95%);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px #153b3014;
  border-radius: 10px;
  padding: 23px;
}
.activity-top {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #edf0ea;
  padding-bottom: 17px;
}
.activity-top strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}
.activity-top div > span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.mini-icon {
  display: grid;
  place-items: center;
  background: #edf5df;
  color: var(--green);
  width: 37px;
  height: 37px;
  border-radius: 50%;
  font-size: 19px;
}
.activity-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  margin-top: 14px;
}
.activity-row b {
  font-size: 11px;
  white-space: nowrap;
  font-weight: 500;
  color: var(--muted);
}
.activity-row b.attention {
  color: #755100;
  background: #fff4d8;
  border-radius: 4px;
  padding: 1px 6px;
}
.audiences {
  border-top: 1px solid var(--line);
  padding-block: 32px 64px;
}
.audiences > .eyebrow {
  color: var(--muted);
  margin-bottom: 25px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.audience-grid > div {
  position: relative;
  padding-left: 38px;
}
.number {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 12px;
  color: #607468;
}
.audience-grid h2 {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin: 0 0 6px;
  font-weight: 500;
}
.audience-grid p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 290px;
}
.clarity {
  background: var(--deep);
  color: white;
  padding-block: 78px 82px;
}
.section-heading h2,
.workflow h2,
.faq h2,
.closing h2 {
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.14;
  letter-spacing: -1.8px;
  font-weight: 500;
  margin: 0 0 22px;
}
.section-heading > p:last-child {
  color: var(--muted);
  max-width: 520px;
}
.clarity .eyebrow {
  color: var(--lime);
}
.clarity .section-heading > p:last-child {
  color: #c6d9d0;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 48px;
}
.benefits article {
  border-top: 1px solid #557369;
  padding-top: 22px;
}
.feature-number {
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.7px;
}
.benefits h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin: 19px 0 12px;
}
.benefits p {
  font-size: 16px;
  color: #cfdfd7;
  line-height: 1.75;
  margin: 0;
}
.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-block: 100px;
}
.workflow-intro > p:not(.eyebrow) {
  color: var(--muted);
}
.voice-note {
  display: flex;
  gap: 17px;
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.voice-symbol {
  color: var(--green);
  font-size: 31px;
  line-height: 1.3;
}
.voice-note h3 {
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 8px;
  font-weight: 600;
}
.voice-note p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 30px;
}
.steps li {
  display: flex;
  gap: 22px;
}
.steps li > span {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #b9ccc0;
  border-radius: 50%;
  color: var(--green);
  font-size: 16px;
}
.steps h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0 0 9px;
}
.steps p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}
.plans {
  border-top: 1px solid var(--line);
  padding-block: 76px 90px;
}
.plans .section-heading {
  text-align: center;
}
.plans .section-heading > p:last-child {
  margin-inline: auto;
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 920px;
  margin: 40px auto 0;
}
.plan-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 35px 36px;
  background: white;
}
.plan-grid article.free-plan {
  border-color: var(--green);
  box-shadow: inset 0 4px var(--green);
}
.plan-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.plan-heading h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 500;
}
.pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ecf5db;
  color: #365b10;
  padding: 5px 9px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}
.pill.neutral {
  background: #e9ede7;
  color: #59655a;
}
.price {
  font-size: 54px;
  letter-spacing: -2px;
  line-height: 1.2;
  margin: 27px 0 15px;
}
.price span {
  font-size: 14px;
  letter-spacing: 0;
  color: var(--muted);
}
.plan-grid article > p:not(.price) {
  color: var(--muted);
  font-size: 15px;
}
.plan-grid ul {
  list-style: none;
  padding: 15px 0;
  margin: 0 0 16px;
  font-size: 15px;
}
.plan-grid li {
  position: relative;
  padding: 7px 0 7px 24px;
}
.plan-grid li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}
.free-plan .button {
  display: flex;
}
.plan-grid article > p.plan-note {
  font-size: 12px;
  text-align: center;
  margin: 13px 0 0;
}
.plan-grid article.future-plan {
  background: #f1f4ed;
}
.future-plan h4 {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 50px 0 20px;
}
.future-plan .future-note {
  border-top: 1px solid #d5ded1;
  padding-top: 23px;
  margin-top: 35px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-block: 76px 90px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.faq details:first-child {
  padding-top: 0;
}
.faq summary {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 28px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  font-size: 23px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 16px;
  color: var(--muted);
  margin: 16px 25px 0 0;
}
.closing {
  background: var(--deep);
  color: white;
  padding-block: 62px;
}
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.closing .eyebrow {
  color: var(--lime);
}
.closing h2 {
  margin: 0;
  font-size: 40px;
}
.button.light {
  background: var(--lime);
  color: var(--deep);
  min-width: 190px;
}
.button.light:hover {
  background: #c9e67e;
}
.closing-inner > div:last-child > p {
  font-size: 13px;
  color: #c9dbd2;
  max-width: 250px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 33px;
}
.footer .brand {
  font-size: 17px;
}
.footer p {
  font-size: 12px;
  color: var(--muted);
}
.footer > a:last-child {
  font-size: 13px;
  font-weight: 700;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: white;
  padding: 15px;
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
@media (min-width: 1500px) {
  .hero {
    gap: 90px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .header nav {
    gap: 18px;
  }
  .hero {
    gap: 35px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .property-photo {
    height: 520px;
  }
  .workflow {
    gap: 55px;
  }
  .brand {
    font-size: 18px;
  }
  .header {
    gap: 15px;
  }
  .header-actions {
    gap: 18px;
  }
  .header nav {
    font-size: 13px;
  }
  .activity-card {
    left: -12px;
  }
  .footer {
    gap: 20px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    min-height: 86px;
    gap: 12px;
  }
  .header nav {
    display: none;
  }
  .brand {
    font-size: 17px;
    gap: 8px;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .header-actions {
    gap: 15px;
  }
  .header-actions .button {
    display: none;
  }
  .sign-in {
    font-size: 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 28px 52px;
  }
  .hero h1 {
    font-size: clamp(47px, 10vw, 65px);
    letter-spacing: -2.4px;
  }
  .hero h1 em {
    letter-spacing: -2px;
  }
  .hero h1 br:nth-of-type(3) {
    display: none;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.25px;
  }
  .lead {
    font-size: 17px;
    max-width: 550px;
  }
  .actions {
    gap: 20px;
  }
  .text-link {
    font-size: 14px;
  }
  .micro {
    font-size: 12px;
    max-width: 300px;
  }
  .property-photo {
    height: 410px;
  }
  .hero-visual {
    padding-bottom: 80px;
  }
  .activity-card {
    left: 14px;
    width: calc(100% - 28px);
    max-width: 390px;
    padding: 21px;
  }
  .photo-label {
    font-size: 11px;
    left: 14px;
    right: 14px;
    top: 14px;
  }
  .audiences {
    padding-block: 28px 44px;
  }
  .audiences > .eyebrow {
    font-size: 10px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .audience-grid p {
    max-width: none;
    font-size: 15px;
  }
  .clarity {
    padding-block: 50px;
  }
  .section-heading h2,
  .workflow h2,
  .faq h2 {
    font-size: 35px;
    letter-spacing: -1.3px;
  }
  .benefits {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }
  .benefits h3 {
    margin-top: 10px;
  }
  .benefits p {
    max-width: 520px;
  }
  .workflow {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 54px;
  }
  .steps {
    gap: 25px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .plans {
    padding-block: 50px;
  }
  .plans .section-heading {
    text-align: left;
  }
  .plans .section-heading > p:last-child {
    margin-inline: 0;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .plan-grid article {
    padding: 28px 24px;
  }
  .future-plan h4 {
    margin-top: 28px;
    font-size: 35px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 50px;
  }
  .faq h2 br {
    display: none;
  }
  .faq summary {
    font-size: 16px;
    min-height: 40px;
    align-items: center;
  }
  .closing {
    padding-block: 45px;
  }
  .closing-inner {
    display: block;
  }
  .closing h2 {
    font-size: 34px;
  }
  .closing-inner > div:last-child {
    margin-top: 26px;
  }
  .closing-inner > div:last-child > p {
    max-width: none;
  }
  .footer {
    flex-wrap: wrap;
    gap: 14px;
    padding-block: 27px;
  }
  .footer .brand {
    flex-basis: 100%;
  }
  .footer p {
    margin: 0;
    flex-basis: 100%;
  }
  .footer > a:last-child {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

.property-photo {
  object-position: 43% center;
}
