@media (min-width: 1025px) {
  .hero {
    max-width: 620px;
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 4.2rem);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.25rem;
  color: #000;
  margin-top: 1.75rem;
  max-width: 540px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-shadow:
    0.7px 0 0 var(--hero-outline),
    -0.7px 0 0 var(--hero-outline),
    0 0.7px 0 var(--hero-outline),
    0 -0.7px 0 var(--hero-outline);
}


.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.fit-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}

.fit-list li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
}

.fit-list li.fit-yes::before {
  content: "✓";
  color: #2d6a4f;
}

.fit-list li.fit-no::before {
  content: "✗";
  color: rgba(0, 0, 0, 0.45);
}

.fit-list li.fit-no {
  color: rgba(0, 0, 0, 0.55);
}

.payout-block {
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  background-color: #abadb3eb;
}

.payout-block p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.payout-block p:last-child {
  margin-bottom: 0;
}

.payout-block strong {
  font-weight: 500;
}

.testimonials { display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial { padding: 1.5rem; border-left: 2px solid var(--line); background-color: #abadb3eb; }
.testimonial-body { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.testimonial-content { min-width: 0; }
.testimonial p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; font-style: italic; }
.testimonial cite { font-family: var(--mono); font-size: 11px; color: var(--faint); font-style: normal; }

.start-block {
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 2.5rem;
  background-color: #abadb3eb;
}

.start-block h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-style: italic;
}

.start-block p {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border: 0.5px solid var(--border-strong);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  background: #c59965;
  text-decoration: none;
  transition: background 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: #b48857;
}

.btn-secondary {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border: 0.5px solid var(--border-strong);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: background 0.15s;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
}

footer {
  border-top: 0.5px solid var(--line);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-copy,
.footer-company {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
}

.footer-legal a {
  font-family: var(--mono);
  font-size: 11px;
  text-underline-offset: 2px;
}

.footer-legal a:hover {
  color: var(--link-text-hover, #000);
}

.site > .section {
  background: transparent;
  border: none;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 1rem 0;
}

/* Contact modal */
.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.contact-modal-overlay.is-open { display: flex; }
.contact-modal {
  background: var(--card-bg, #fafaf8);
  border: 0.5px solid var(--border-strong);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  position: relative;
}
.contact-modal h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.contact-modal p.modal-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}
.modal-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.modal-field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.modal-field input,
.modal-field textarea {
  font-family: var(--sans);
  font-size: 0.93rem;
  color: var(--ink);
  background: transparent;
  border: 0.5px solid var(--border-strong);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  width: 100%;
  outline: none;
  resize: none;
  transition: border-color 0.15s;
}
.modal-field input:focus,
.modal-field textarea:focus { border-color: #91684a; }
.modal-submit {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: #c59965;
  border: 0.5px solid var(--border-strong);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: opacity 0.15s;
}
.modal-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.modal-feedback { font-family: var(--mono); font-size: 12px; margin-top: 0.75rem; text-align: center; min-height: 1.2em; }

@media (max-width: 1024px) {
  .site { padding: 0 1.5rem; }
  .hero h1, .hero-sub { text-shadow: none; }
  .section { padding: 3.25rem 0; }
}

@media (max-width: 768px) {
  body::before {
    background: url('/img/Mobile.webp') no-repeat center calc(50% - 10px);
    background-size: cover;
  }

  .hero .hero-eyebrow {
    display: none;
  }

  nav[aria-label="Primary"] { flex-wrap: wrap; gap: 0.85rem; align-items: flex-start; }
  .nav-links { gap: 1.1rem; flex-wrap: wrap; }
  .payout-block,
  .testimonial,
  .start-block {
    background-color: rgba(237, 237, 237, 0.92);
  }
  .testimonial-body { gap: 0.75rem; }
  .testimonial-avatar { width: 48px; height: 48px; }
  .start-block { padding: 1.6rem; }
}

@media (max-width: 480px) {
  .cover-title {
    top: 12vh;
    line-height: 1.08;
  }

  .site { padding: 0 1rem; }
  nav[aria-label="Primary"] { padding: 1rem 0; }
  .hero { padding: 2rem 0 2rem; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-sub { font-size: 1.1rem; margin-top: 1.1rem; }
  .section { padding: 2.25rem 0; }
  .section-label { margin-bottom: 1.35rem; }
  .start-block { padding: 1.2rem; }
  .cta-row .btn-primary,
  .cta-row .btn-secondary { width: 100%; text-align: center; }
  .footer-primary { flex-direction: column; align-items: flex-start; }
  .site > .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
