:root {
  --ink: #123b3c;
  --deep: #0b3032;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --soft: #e8f0ea;
  --line: #d8ddd7;
  --muted: #627173;
  --coral: #e76f55;
  --shadow: 0 24px 70px rgba(15, 55, 55, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--deep);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow {
  max-width: 820px;
}
.site-header {
  height: 76px;
  padding: 0 max(4vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.95);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font:
    700 22px Georgia,
    serif;
}
.brand span,
.mini-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  font:
    italic 700 18px Georgia,
    serif;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-header nav > a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 15px 22px;
  font-weight: 800;
  box-shadow: 0 9px 22px rgba(231, 111, 85, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(231, 111, 85, 0.28);
}
.button-small {
  padding: 10px 16px;
}
.hero {
  min-height: 680px;
  padding: 78px 0 86px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 11px;
  font-weight: 900;
}
.light {
  color: #efaa98;
}
.hero h1 {
  font:
    500 clamp(50px, 6.2vw, 80px) / 0.98 Georgia,
    serif;
  letter-spacing: -0.045em;
  margin: 0 0 25px;
}
.hero h1 em {
  color: var(--coral);
  font-weight: 500;
}
.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 630px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.text-link {
  font-weight: 800;
  text-underline-offset: 4px;
}
.reassurance {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}
.reassurance li:before {
  content: "✓";
  color: #39826c;
  font-weight: 900;
  margin-right: 7px;
}
.product-card {
  background: #fff;
  border: 1px solid #d6e0db;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1deg);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 19px 22px;
  background: var(--deep);
  color: #fff;
}
.mock-header div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.mock-header small {
  color: #a9c0bd;
}
.mini-mark {
  width: 29px;
  height: 29px;
  font-size: 15px;
}
.status {
  margin-left: auto;
  background: #dff3e8;
  color: #24604e;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
}
.timeline {
  padding: 10px 24px;
}
.timeline article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #e8ece9;
}
.timeline article:last-child {
  border: 0;
}
.timeline time {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #83908f;
  font-weight: 900;
}
.timeline article div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.timeline b {
  margin: 7px 0 3px;
  font:
    600 17px Georgia,
    serif;
}
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.tag {
  font-size: 8px;
  letter-spacing: 0.13em;
  font-weight: 900;
  border-radius: 3px;
  padding: 3px 6px;
}
.email {
  color: #286678;
  background: #dceef2;
}
.call {
  color: #795520;
  background: #f6e9cf;
}
.file {
  color: #684e7e;
  background: #eee4f3;
}
.mock-footer {
  background: #f1f6f2;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}
.mock-footer span {
  color: #a64b37;
}
.problem-band {
  background: var(--deep);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.problem-band h2,
.section h2,
.final-cta h2 {
  font:
    500 clamp(36px, 4.5vw, 56px) / 1.08 Georgia,
    serif;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}
.problem-band p:last-child {
  color: #b8cac8;
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto;
}
.section {
  padding-top: 105px;
  padding-bottom: 105px;
}
.section-heading {
  max-width: 700px;
  margin-bottom: 45px;
}
.section-heading p:last-child {
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.steps article {
  padding: 32px 38px 25px 0;
}
.steps article + article {
  border-left: 1px solid var(--line);
  padding-left: 38px;
}
.steps span {
  font-size: 11px;
  color: var(--coral);
  font-weight: 900;
}
.steps h3 {
  font:
    500 29px Georgia,
    serif;
  margin: 14px 0 10px;
}
.steps p {
  color: var(--muted);
  font-size: 14px;
}
.soft {
  max-width: none;
  width: 100%;
  background: var(--soft);
}
.benefits {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.benefits > div > p:last-child {
  color: var(--muted);
  font-size: 16px;
}
.benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.benefits li {
  background: var(--paper);
  padding: 22px;
  border: 1px solid #d3dfd7;
  display: flex;
  flex-direction: column;
}
.benefits li b {
  font:
    600 19px Georgia,
    serif;
  margin-bottom: 5px;
}
.benefits li span {
  font-size: 12px;
  color: var(--muted);
}
.centered {
  text-align: center;
  margin-inline: auto;
}
.pricing-section {
  max-width: 900px;
}
.pricing-card {
  width: min(520px, 100%);
  margin: 0 auto;
  background: var(--deep);
  color: #fff;
  padding: 44px;
  border-radius: 10px;
  box-shadow: 18px 18px 0 var(--soft);
  text-align: center;
}
.plan-name {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: #acc1bf;
}
.price {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 9px;
  margin: 14px 0;
}
.price strong {
  font:
    500 52px Georgia,
    serif;
}
.price span {
  color: #b7c9c7;
  margin-bottom: 9px;
}
.pricing-card > p:not(.plan-name) {
  color: #c6d4d3;
  font-size: 14px;
}
.full {
  display: flex;
  margin: 26px 0 14px;
}
.pricing-card small {
  color: #9fb5b2;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 21px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
summary:after {
  content: "+";
  color: var(--coral);
  font-size: 20px;
}
details[open] summary:after {
  content: "−";
}
.faq-list p {
  color: var(--muted);
  font-size: 14px;
  max-width: 650px;
}
.final-cta {
  background: var(--coral);
  color: #fff;
  text-align: center;
  padding: 90px 0;
}
.final-cta .light {
  color: #ffe4dd;
}
.final-cta h2 {
  max-width: 730px;
  margin: 0 auto 28px;
}
.inverse {
  background: #fff;
  color: var(--deep);
  box-shadow: none;
}
.final-cta p:last-child {
  font-size: 12px;
  opacity: 0.8;
}
footer {
  padding: 40px max(4vw, 20px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
}
footer .brand {
  color: var(--deep);
}
footer div {
  display: flex;
  gap: 20px;
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
@media (max-width: 850px) {
  .site-header nav {
    gap: 12px;
  }
  .site-header nav > a:not(.button) {
    display: none;
  }
  .site-header nav > a:nth-last-child(2) {
    display: inline-flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
    gap: 50px;
  }
  .product-card {
    transform: none;
  }
  .steps,
  .benefits,
  .faq {
    grid-template-columns: 1fr;
  }
  .steps article + article {
    border-left: 0;
    padding-left: 0;
  }
  .steps article {
    border-bottom: 1px solid var(--line);
  }
  .benefits {
    gap: 35px;
  }
  .faq {
    gap: 20px;
  }
  footer {
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }
  .site-header {
    height: 68px;
    padding-inline: 14px;
  }
  .site-header nav {
    gap: 9px;
  }
  .site-header nav > a {
    font-size: 11px;
  }
  .site-header .button-small {
    padding: 10px 12px;
  }
  .brand {
    font-size: 17px;
    gap: 6px;
  }
  .brand span {
    width: 27px;
    height: 27px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: clamp(40px, 14vw, 47px);
  }
  .lede {
    font-size: 17px;
  }
  .button {
    width: 100%;
    min-height: 46px;
  }
  .site-header .button {
    width: auto;
    min-height: 40px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .reassurance {
    gap: 10px 18px;
  }
  .mock-header {
    padding: 16px;
  }
  .timeline {
    padding: 7px 16px;
  }
  .timeline article {
    grid-template-columns: 46px 1fr;
    gap: 9px;
  }
  .mock-footer {
    flex-direction: column;
    gap: 4px;
  }
  .section {
    padding: 75px 0;
  }
  .benefits ul {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 32px 22px;
    box-shadow: 10px 10px 0 var(--soft);
  }
  .price {
    align-items: center;
    flex-direction: column;
    gap: 0;
  }
  .price span {
    margin: 0;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 360px) {
  .site-header .brand {
    font-size: 0;
  }
  .site-header .brand span {
    font-size: 17px;
  }
  .site-header nav {
    gap: 7px;
  }
  .site-header .button-small {
    padding-inline: 10px;
  }
  .product-card {
    margin-inline: -4px;
  }
  .pricing-card {
    padding-inline: 18px;
  }
}
