  :root {
    --green: #34403A;
    --green-dark: #2b352f;
    --green-deep: #232b26;
    --line-dark: #42504a;
    --amber: #F9B335;
    --amber-hover: #e79f16;
    --cream: #FFFAEE;
    --sand: #F0EBDF;
    --sand-line: #e4e0d3;
    --muted: #c9c8bc;
    --grey: #55605a;
    --wrap: 1140px;
    --pad: 22px;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0
  }

  html {
    scroll-behavior: smooth
  }

  body {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--green-dark);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
  }

  img {
    display: block;
    max-width: 100%
  }

  a {
    color: var(--amber);
    text-decoration: none
  }

  a:hover {
    color: var(--amber-hover)
  }

  .wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--pad)
  }

  section {
    padding: clamp(58px, 9vw, 106px) 0
  }

  .eyebrow {
    display: inline-block;
    font-weight: 800;
    font-style: italic;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px
  }

  h1,
  h2,
  h3 {
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.04;
    text-wrap: pretty
  }

  h1 {
    font-size: clamp(2.2rem, 5.2vw, 4.1rem)
  }

  h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.9rem)
  }

  h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -.01em
  }

  .am {
    color: var(--amber)
  }

  .lede {
    font-size: clamp(1.08rem, 1.6vw, 1.3rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--grey);
    text-wrap: pretty
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    font-family: inherit;
    font-weight: 800;
    font-size: 1.12rem;
    color: var(--green);
    background: var(--amber);
    padding: 19px 36px;
    border: 0;
    cursor: pointer;
    line-height: 1;
    transition: transform .15s ease, background .15s ease
  }

  .btn:hover {
    background: var(--amber-hover);
    color: var(--green);
    transform: translateY(-2px)
  }

  .btn--sm {
    font-size: .9rem;
    padding: 11px 20px
  }

  /* header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(52, 64, 58, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-dark)
  }

  .site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px
  }

  .logo img {
    height: 100px;
    width: auto
  }

  /* hero */
  .hero {
   background: var(--bg);
    color: var(--cream)
  }

  .hero h1 {
    color: #fff;
    margin: 6px 0 20px
  }

  .hero .lede {
    color: var(--muted);
    max-width: 34ch;
    font-weight: 400
  }

  .hero-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start
  }

  .hero .wrap>div {
    max-width: 640px
  }

  .proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: .86rem;
    color: var(--muted);
    align-items: center
  }

  .proof b {
    color: #fff;
    font-weight: 700
  }

  .proof span {
    display: flex;
    align-items: center;
    gap: 12px
  }

  .dot {
    width: 5px;
    height: 5px;
    background: var(--amber);
    display: inline-block
  }

  /* problem */
  .problem .wrap>div {
    max-width: 740px
  }

  .problem .lede {
    margin-top: 20px
  }

  /* steps */
  .steps {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--bg);
    color: var(--cream)
  }

  .steps .caption {
    position: absolute;
    right: 12px;
    bottom: 9px;
    z-index: 2;
    font-size: .68rem;
    font-style: italic;
    color: rgba(255, 250, 238, .5)
  }

  .steps .wrap {
    position: relative;
    z-index: 2
  }

  .section-head {
    max-width: 640px;
    margin-bottom: clamp(30px, 5vw, 52px)
  }

  .on-dark h2 {
    color: #fff
  }

  .on-dark .section-head p {
    margin-top: 14px;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.12rem)
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px
  }

  .step {
    background: rgba(35, 43, 38, .7);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(3px);
    padding: 26px 24px
  }

  .step-no {
    font-weight: 800;
    font-style: italic;
    font-size: .82rem;
    letter-spacing: .08em;
    color: var(--amber)
  }

  .step h3 {
    color: #fff;
    margin: 12px 0 8px
  }

  .step p {
    color: var(--muted);
    font-size: 1rem
  }

  .bar {
    height: 5px;
    background: rgba(255, 255, 255, .12);
    margin-top: 18px;
    overflow: hidden
  }

  .bar i {
    display: block;
    height: 100%;
    background: var(--amber)
  }

  .after-cta {
    margin-top: 34px
  }

  /* reviews */
  .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px
  }

  .badge {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--sand);
    border: 1px solid var(--sand-line);
    padding: 10px 16px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--green-dark)
  }

  .badge b {
    font-weight: 800
  }

  .review {
    background: #fff;
    border: 1px solid var(--sand-line);
    padding: 26px;
    box-shadow: 0 18px 34px -22px rgba(43, 53, 47, .45)
  }

  .stars {
    color: var(--amber);
    letter-spacing: .04em;
    font-size: 1rem;
    display: block;
    margin-bottom: 12px
  }

  .review p {
    font-size: 1rem
  }

  .who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--grey)
  }

  .who b {
    color: var(--green-dark);
    font-weight: 800
  }

  .avatar {
    width: 48px;
    height: 48px;
    flex: none;
    border: 1px solid var(--sand-line);
    background: linear-gradient(160deg, #5a6760, var(--green));
    position: relative
  }

  .avatar span {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 9px;
    height: 9px;
    background: var(--amber)
  }

  .note {
    font-size: .78rem;
    font-style: italic;
    color: var(--grey);
    margin-top: 16px
  }

  /* offers */
  .offers {
    background: var(--sand)
  }

  .offers .section-head {
    max-width: 660px
  }

  .offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px
  }

  .offer {
    background: #fff;
    border: 1px solid var(--sand-line);
    overflow: hidden;
    display: flex;
    flex-direction: column
  }

  .offer--featured {
    border: 2px solid var(--amber)
  }

  .offer figure {
    aspect-ratio: 16/9;
    border-bottom: 1px solid var(--sand-line);
    overflow: hidden;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0 12px, transparent 12px 24px), linear-gradient(160deg, #46554d 0%, var(--green-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px
  }

  .offer figure b {
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .1em;
    color: var(--amber)
  }

  .offer figure span {
    font-size: .85rem;
    font-weight: 300;
    max-width: 28ch;
    line-height: 1.4;
    color: var(--cream);
    font-family: ui-monospace, Menlo, monospace
  }

  .offer-body {
    padding: 24px
  }

  .tag {
    display: inline-block;
    font-weight: 800;
    font-style: italic;
    font-size: .66rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--amber);
    padding: 5px 11px;
    margin-bottom: 12px
  }

  .offer h3 {
    margin-bottom: 8px
  }

  .offer p {
    color: var(--grey);
    font-size: 1rem;
    text-wrap: pretty
  }

  .pills {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
  }

  .pills li {
    font-size: .82rem;
    font-weight: 700;
    color: var(--green);
    background: var(--sand);
    border: 1px solid var(--sand-line);
    padding: 6px 13px
  }

  .offers-foot {
    margin-top: 22px;
    text-align: center;
    font-size: .98rem;
    color: var(--grey)
  }

  .offers-foot b {
    color: var(--green-dark);
    font-weight: 700
  }

  .center-cta {
    text-align: center;
    margin-top: 26px
  }

  /* faq */
  .faq-list {
    display: grid;
    gap: 12px;
    max-width: 780px
  }

  details {
    background: #fff;
    border: 1px solid var(--sand-line);
    overflow: hidden
  }

  summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px
  }

  summary::-webkit-details-marker {
    display: none
  }

  summary::after {
    content: "+";
    color: var(--amber);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    flex: none
  }

  details div {
    padding: 0 22px 20px;
    color: var(--grey);
    font-size: 1rem
  }

  /* form */
  .signup {
    background: radial-gradient(120% 100% at 12% 0%, #3e4c44 0%, var(--green) 60%);
    color: var(--cream)
  }

  .signup .wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 56px;
    align-items: start
  }

  .signup h2 {
    color: #fff;
    max-width: 16ch
  }

  .signup .lede {
    color: var(--muted);
    margin-top: 16px;
    max-width: 42ch
  }

  .ticks {
    list-style: none;
    margin-top: 26px;
    display: grid;
    gap: 12px
  }

  .ticks li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--cream)
  }

  .ticks li::before {
    content: "✓";
    color: var(--amber);
    font-weight: 800;
    flex: none
  }

  .card-form {
    background: var(--cream);
    padding: clamp(24px, 4vw, 34px);
    box-shadow: 0 34px 60px -30px rgba(0, 0, 0, .55);
    color: var(--green-dark)
  }

  .card-form h3 {
    font-size: 1.4rem;
    margin-bottom: 4px
  }

  .card-form .sub {
    font-size: .9rem;
    color: var(--grey);
    margin-bottom: 22px
  }

  .field {
    margin-bottom: 16px
  }

  label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 7px
  }

  input[type=text],
  input[type=email],
  input[type=tel] {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    color: var(--green-dark);
    padding: 14px 16px;
    border: 1.5px solid #D8D7CC;
    background: #fff;
    transition: border .15s, box-shadow .15s
  }

  input:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(249, 179, 53, .25)
  }

  .consent {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 6px 0 20px;
    font-size: .82rem;
    color: var(--grey);
    line-height: 1.4;
    font-weight: 400
  }

  .consent input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex: none;
    accent-color: var(--amber)
  }

  .card-form .btn {
    width: 100%
  }

  .form-foot {
    text-align: center;
    font-size: .78rem;
    color: var(--grey);
    margin-top: 14px;
    font-weight: 500
  }

  .thanks {
    text-align: center;
    padding: 22px 8px
  }

  .thanks strong {
    display: block;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 8px
  }

  .thanks p {
    color: var(--grey);
    font-size: .95rem
  }

  /* footer */
  footer {
    background: var(--green-deep);
    color: var(--muted);
    padding: 56px 0
  }

  footer .wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px
  }

  .f-brand {
    grid-column: span 2
  }

  .f-brand img {
    height: 100px;
    width: auto;
    margin-bottom: 14px
  }

  .f-brand p {
    font-size: .95rem;
    max-width: 36ch;
    font-weight: 300
  }

  footer h4 {
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .1em;
    color: var(--amber);
    margin-bottom: 12px
  }

  footer p {
    font-size: .95rem
  }

  .f-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start
  }

  .f-contact a {
    font-size: .95rem;
    color: var(--muted)
  }

  .f-contact a:hover {
    color: #fff
  }

  .legal {
    max-width: var(--wrap);
    margin: 38px auto 0;
    padding: 20px var(--pad) 0;
    border-top: 1px solid var(--line-dark);
    font-size: .8rem;
    color: #8a978f;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    justify-content: space-between
  }

  /* sticky mobile cta */
  .sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(43, 53, 47, .97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line-dark);
    padding: 12px var(--pad);
    display: none;
    gap: 12px;
    align-items: center;
    justify-content: space-between
  }

  .sticky.on {
    display: flex
  }

  .sticky div {
    font-size: .82rem;
    color: var(--muted)
  }

  .sticky b {
    color: #fff;
    font-weight: 800;
    display: block;
    font-size: .92rem
  }

  @media(min-width:900px) {
    .sticky {
      display: none !important
    }
  }

  @media(max-width:560px) {
    .btn {
      width: 100%
    }

    .hero-actions {
      align-items: stretch
    }
  }

  @media(prefers-reduced-motion:reduce) {
    html {
      scroll-behavior: auto
    }

    * {
      transition: none !important
    }
  }