:root {
  --paper: #f6f6ef;
  --ink: #172d26;
  --muted: #53665d;
  --green: #15765c;
  --line: #dce2d7;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  font-size: 17px;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:hover {
  color: var(--green);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #ba650f;
  outline-offset: 5px;
}
.skip {
  position: absolute;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 8px;
}
.wrap {
  max-width: 1180px;
  margin: auto;
  padding: 0 32px;
}
.header {
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.6px;
}
.brand img {
  width: 42px;
  border-radius: 12px;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}
.links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.links a {
  white-space: nowrap;
  text-decoration: none;
  padding: 12px 0;
}
.links [aria-current="page"] {
  color: var(--green);
  text-decoration: underline;
}
.eyebrow {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 65px;
  align-items: center;
  padding: 74px 0 72px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -3.5px;
  margin-bottom: 28px;
}
h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--green);
}
.intro {
  font-size: 19px;
  max-width: 490px;
  color: var(--muted);
  line-height: 1.75;
}
.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 30px 0 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 600;
  min-height: 48px;
}
.button:hover {
  background: var(--green);
  color: white;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
}
.availability {
  font-size: 13px;
  color: var(--muted);
}
.availability span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
}
.stage {
  background: #e4ebdf;
  border-radius: 180px 180px 28px 28px;
  position: relative;
  padding: 32px 45px 28px;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.phone {
  width: 268px;
  border: 7px solid #23352e;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 24px 44px #243a2526;
  background: #f3f6ed;
  flex-shrink: 0;
}
.phone img {
  width: 100%;
  height: auto;
}
.stage-note {
  position: absolute;
  bottom: 63px;
  left: -38px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 20px;
  box-shadow: 0 8px 20px #2035270a;
  font-size: 12px;
}
.stage-note strong {
  display: block;
  font-size: 19px;
  font-weight: 500;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.benefits {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.benefits b {
  color: var(--green);
  margin-right: 9px;
}
.section {
  padding: 92px 0;
}
.section-title {
  max-width: 650px;
  margin-bottom: 42px;
}
h2 {
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}
h3 {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 550;
  letter-spacing: -0.6px;
  margin-bottom: 13px;
}
.muted,
.card p {
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 0;
}
.card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}
@supports (grid-template-rows: subgrid) {
  .card {
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
}
.card p {
  font-size: 15px;
  margin-bottom: 0;
}
.number {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 26px;
}
.example {
  display: flex;
  align-items: center;
  background: #edf2e9;
  border-radius: 10px;
  padding: 16px;
  margin-top: 23px;
  font-size: 16px;
  font-family: ui-monospace, monospace;
  color: #19694f;
}
.gallery-section {
  background: #e9eee3;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.gallery figure {
  margin: 0;
}
.gallery .phone {
  width: 100%;
  max-width: 268px;
  margin: 0 auto 28px;
}
.gallery figcaption {
  font-size: 14px;
  color: var(--muted);
}
.gallery figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  margin-bottom: 8px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 48px;
}
.section-heading .section-title {
  margin: 0;
}
.section-heading > p {
  max-width: 280px;
  font-size: 14px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.detail {
  padding: 27px 0;
  border-top: 1px solid var(--line);
}
.detail h3 {
  font-size: 20px;
}
.detail p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}
.privacy-band {
  background: #173d30;
  color: #f4f6e9;
  border-radius: 26px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 65px;
  align-items: center;
}
.privacy-band .eyebrow {
  color: #b8d8bd;
}
.privacy-band p {
  color: #d2e0d5;
}
.privacy-band a {
  color: #f4f6e9;
}
.privacy-band h2 {
  margin-bottom: 0;
}
.last-call {
  padding: 85px 0;
  text-align: center;
}
.last-call p {
  color: var(--muted);
}
.last-call .actions {
  justify-content: center;
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.footer-inner nav {
  display: flex;
  gap: 24px;
}
.footer-inner a {
  padding: 10px 0;
}
.article-head {
  padding: 75px 0 40px;
  max-width: 780px;
}
.article-head h1 {
  font-size: 60px;
}
.article-head .intro {
  max-width: 680px;
}
.article-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 65px;
  padding-bottom: 85px;
}
.side {
  font-size: 14px;
}
.side a {
  display: block;
  padding: 10px 0;
}
.article-body {
  max-width: 780px;
}
.article-body h2 {
  font-size: 28px;
  letter-spacing: -0.8px;
  margin-top: 42px;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 16px;
}
.article-body li {
  margin-bottom: 9px;
}
.article-body ul {
  padding-left: 22px;
}
.contact-box {
  padding: 28px;
  background: #e7edde;
  border-radius: 17px;
  margin: 28px 0;
}
.contact-box a {
  overflow-wrap: anywhere;
  color: var(--green);
  font-weight: 600;
}
.contact-box p:last-child {
  margin-bottom: 0;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}
summary {
  font-size: 18px;
  font-weight: 550;
  cursor: pointer;
  padding-right: 12px;
}
details p {
  margin: 16px 0 4px;
}
.note {
  font-size: 13px !important;
}
.article-body code {
  background: #e7edde;
  padding: 3px 6px;
  border-radius: 4px;
}
.smallprint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
}
@media (max-width: 900px) {
  .hero {
    gap: 35px;
  }
  .stage {
    padding: 26px 15px;
  }
  .stage-note {
    left: -15px;
  }
  .feature-grid {
    column-gap: 14px;
  }
  .card {
    padding: 23px;
  }
  .gallery {
    gap: 25px;
  }
  .privacy-band {
    gap: 30px;
    padding: 36px;
  }
  .article-grid {
    gap: 35px;
    grid-template-columns: 180px minmax(0, 1fr);
  }
}
@media (max-width: 650px) {
  .wrap {
    padding: 0 22px;
  }
  .nav {
    flex-wrap: wrap;
    gap: 4px;
    padding: 16px 0;
  }
  .links {
    gap: 16px;
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }
  .nav .brand {
    font-size: 18px;
  }
  .links a {
    padding: 8px 0;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 44px 0;
    gap: 32px;
  }
  h1 {
    font-size: 52px;
    letter-spacing: -2.5px;
  }
  .intro {
    font-size: 17px;
  }
  .stage {
    max-width: 390px;
    width: 100%;
    margin: auto;
    padding: 30px 24px;
  }
  .stage .phone {
    width: 240px;
  }
  .stage-note {
    left: 4px;
    bottom: 50px;
  }
  .benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 12px;
    gap: 12px;
  }
  .section {
    padding: 58px 0;
  }
  .feature-grid,
  .gallery,
  .detail-grid,
  .privacy-band,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    row-gap: 14px;
  }
  .card {
    display: block;
    grid-row: auto;
  }
  .gallery {
    gap: 48px;
  }
  .gallery figure {
    max-width: 340px;
    margin: auto;
  }
  .gallery .phone {
    max-width: 245px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 20px;
  }
  .privacy-band {
    gap: 24px;
    padding: 29px;
  }
  .privacy-band h2 {
    font-size: 34px;
  }
  .last-call {
    padding: 55px 0;
  }
  .footer-inner {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .article-head {
    padding: 45px 0 22px;
  }
  .article-head h1 {
    font-size: 46px;
  }
  .article-grid {
    gap: 25px;
    padding-bottom: 50px;
  }
  .side {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .side a {
    display: inline-block;
    margin-right: 20px;
  }
  .article-body h2 {
    font-size: 27px;
  }
  .contact-box {
    padding: 22px;
  }
  .article-body {
    min-width: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
