:root {
  --ink: #17313c;
  --muted: #6d7d80;
  --paper: #f6f2e9;
  --card: #fffdf8;
  --coral: #ef603f;
  --aqua: #4faaa8;
  --line: rgba(23, 49, 60, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
body {
  margin: 0;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(79, 170, 168, 0.14),
      transparent 34rem
    ),
    var(--paper);
}
header {
  height: 78px;
  padding: 12px clamp(22px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(246, 242, 233, 0.9);
  backdrop-filter: blur(12px);
  z-index: 5;
}
.logo {
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.logo-wordmark {
  display: block;
  font-weight: 950;
  line-height: 0.88;
  font-size: 18px;
  letter-spacing: 0.035em;
}
.logo-wordmark > span {
  color: var(--coral);
}
.nav-cta,
.primary {
  background: var(--coral);
  color: white;
  text-decoration: none;
  border: 0;
  border-radius: 13px;
  padding: 15px 20px;
  font-weight: 900;
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.nav-cta {
  padding: 11px 15px;
  font-size: 13px;
}
main {
  overflow: hidden;
}
.hero {
  padding: clamp(78px, 12vw, 150px) clamp(22px, 8vw, 120px);
  max-width: 1200px;
  margin: auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.19em;
  color: var(--aqua);
  font-weight: 900;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(58px, 10vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.06em;
  margin: 20px 0 32px;
}
.hero h1.mission-title {
  max-width: 1030px;
  font-size: clamp(46px, 7.2vw, 88px);
  line-height: 0.98;
}
.hero h1.mission-title em,
.hero h1.mission-title strong {
  display: block;
}
.hero h1.mission-title em {
  margin-top: 0.18em;
}
.hero h1.mission-title strong {
  margin-top: 0.22em;
  color: var(--ink);
  font-size: 0.72em;
  font-style: normal;
}
.hero h1 em,
.cta h2 em {
  color: var(--coral);
  font-weight: 400;
}
.intro {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 660px;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}
.text-link {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}
.demo {
  background: var(--ink);
  color: white;
  padding: clamp(64px, 9vw, 110px) clamp(22px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}
.phone {
  border: 8px solid white;
  border-radius: 42px;
  background: var(--paper);
  color: var(--ink);
  padding: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 4px 0 18px;
}
.phone-top strong {
  font-size: 13px;
}
.phone-top span {
  font-family: Georgia, serif;
  color: var(--muted);
}
.screen {
  padding: 35px 4px 8px;
}
.screen small {
  color: var(--aqua);
  font-weight: 900;
  letter-spacing: 0.15em;
}
.screen h2 {
  font-family: Georgia, serif;
  font-size: 38px;
  margin: 7px 0 20px;
}
.screen article {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.screen article > b {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--aqua);
  color: white;
}
.screen article div {
  display: grid;
}
.screen article span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.screen button {
  margin-top: 20px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--coral);
  color: white;
  padding: 15px;
  font-weight: 900;
}
.demo-copy h2,
.places h2,
.host h2,
.cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(43px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 17px 0 25px;
}
.demo-copy p:last-child,
.places > p:last-child,
.cta > div > p:last-child {
  font-size: 19px;
  line-height: 1.6;
  color: #bac5c6;
  max-width: 600px;
}
.three {
  max-width: 1200px;
  margin: auto;
  padding: 100px clamp(22px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.three article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.three span {
  color: var(--coral);
  font-weight: 900;
}
.three h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  margin: 22px 0 10px;
}
.three p {
  color: var(--muted);
  line-height: 1.6;
}
.places {
  text-align: center;
  padding: 80px 22px 130px;
}
.places > p:last-child {
  color: var(--muted);
  margin: auto;
}
.host {
  padding: clamp(70px, 10vw, 130px) clamp(22px, 8vw, 120px);
  background: var(--aqua);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.host .eyebrow {
  color: white;
}
.host ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.host li {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.host li b {
  font-size: 18px;
}
.host li span {
  margin-top: 5px;
  color: #e6f2ef;
  line-height: 1.45;
}
.cta {
  padding: clamp(75px, 10vw, 130px) clamp(22px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  gap: 80px;
}
.cta > div > p:last-child {
  color: var(--muted);
}
form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(23, 49, 60, 0.1);
}
label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 15px;
}
input,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px;
  font: inherit;
  background: white;
  color: var(--ink);
}
form .primary {
  width: 100%;
}
.hide {
  display: none;
}
footer {
  padding: 30px clamp(22px, 5vw, 70px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
footer a {
  color: var(--ink);
}
.thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 800px;
  margin: auto;
  padding: 40px;
}
.thanks h1 {
  font-family: Georgia, serif;
  font-size: clamp(60px, 10vw, 100px);
  margin: 15px 0;
}
.thanks p {
  color: var(--muted);
  font-size: 20px;
}
.thanks .text-link {
  margin-top: 25px;
}
@media (max-width: 760px) {
  header {
    height: 68px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .demo,
  .host,
  .cta {
    grid-template-columns: 1fr;
  }
  .demo {
    gap: 70px;
  }
  .phone {
    max-width: 440px;
  }
  .three {
    grid-template-columns: 1fr;
  }
  .host,
  .cta {
    gap: 35px;
  }
  footer {
    flex-direction: column;
    gap: 10px;
  }
}

.pricing {
  padding: clamp(75px, 10vw, 130px) clamp(22px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px) minmax(260px, 340px);
  gap: 22px;
  align-items: center;
  background: #efe9dd;
}
.pricing-intro {
  padding-right: 35px;
}
.pricing h2 {
  font-family: Georgia, serif;
  font-size: clamp(43px, 5vw, 69px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 17px 0 25px;
}
.pricing h2 em {
  color: var(--coral);
  font-weight: 400;
}
.pricing-intro > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 50px rgba(23, 49, 60, 0.08);
}
.price-card.featured {
  border: 2px solid var(--coral);
  transform: translateY(-8px);
}
.flag {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: var(--coral);
}
.price {
  display: flex;
  align-items: end;
  gap: 6px;
}
.price strong {
  font-family: Georgia, serif;
  font-size: 61px;
  line-height: 1;
}
.price span {
  color: var(--muted);
  padding-bottom: 7px;
}
.setup {
  color: var(--aqua);
  font-weight: 850;
}
.price-card ul {
  padding: 15px 0 15px 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}
.price-card .primary {
  width: 100%;
}
.purchase-consent {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 500;
  line-height: 1.45;
  margin: 5px 0 0;
}
.purchase-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--coral);
}
.purchase-consent a,
.legal a {
  color: var(--ink);
  font-weight: 850;
}
.checkout-button:disabled {
  opacity: 0.65;
}
.hidden {
  display: none !important;
}
.success-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1050px;
  margin: auto;
  padding: 40px;
}
.success-page h1 {
  font-family: Georgia, serif;
  font-size: clamp(55px, 8vw, 90px);
  line-height: 0.95;
  margin: 15px 0;
}
.success-page > section > p:last-child {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 950px) {
  .pricing {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-intro {
    grid-column: 1 / -1;
  }
  .price-card.featured {
    transform: none;
  }
  .purchase-consent {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .pricing,
  .success-page {
    grid-template-columns: 1fr;
  }
  .pricing-intro {
    grid-column: auto;
  }
  .purchase-consent {
    grid-column: auto;
  }
}
.legal {
  max-width: 760px;
  margin: auto;
  padding: 70px 30px 100px;
}
.legal h1 {
  font-family: Georgia, serif;
  font-size: clamp(50px, 9vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 18px 0 30px;
}
.legal h2 {
  font-family: Georgia, serif;
  font-size: 27px;
  margin: 34px 0 10px;
}
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.65;
}
.legal .primary {
  width: auto;
  margin-top: 20px;
}
.affiliate-invite {
  padding: clamp(70px, 10vw, 120px) clamp(22px, 8vw, 120px);
  background: var(--ink);
  color: white;
}
.affiliate-invite h2 {
  max-width: 850px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.affiliate-invite > p:not(.eyebrow) {
  color: #bdc8c9;
  font-size: 19px;
}
.affiliate-invite .primary {
  width: fit-content;
  margin-top: 20px;
}
.affiliate-page,
.dashboard {
  max-width: 1050px;
  margin: auto;
  padding: clamp(60px, 9vw, 110px) 30px;
}
.affiliate-page {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 70px;
  align-items: start;
}
.affiliate-page h1,
.dashboard h1 {
  font-family: Georgia, serif;
  font-size: clamp(55px, 8vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.05em;
  margin: 16px 0 28px;
}
.affiliate-page h1 em {
  color: var(--coral);
  font-weight: 400;
}
.rule-line {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: var(--aqua);
}
.result-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
  margin: 24px 0;
}
.result-card input {
  font-size: 12px;
}
.dashboard {
  min-height: 80vh;
}
.dashboard h2 {
  font-family: Georgia, serif;
  font-size: 36px;
  margin-top: 50px;
}
.status-list {
  display: grid;
  gap: 10px;
}
.status-list article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.status-list article div {
  display: grid;
  gap: 5px;
}
.status-list article span {
  color: var(--muted);
  font-size: 13px;
}
.status {
  border-radius: 99px;
  padding: 7px 10px;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}
.status.in_progress {
  background: #e8eeea;
  color: var(--ink);
}
.status.eligible {
  background: #d9f1e9;
  color: #176648;
}
.status.paid {
  background: var(--aqua);
  color: white;
}
.status.cancelled_early {
  background: #f6ded6;
  color: #8b3925;
}
.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.admin-summary article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: grid;
}
.admin-summary strong {
  font-family: Georgia, serif;
  font-size: 42px;
}
.admin-summary span {
  color: var(--muted);
}
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px;
  background: white;
  color: var(--ink);
}
@media (max-width: 760px) {
  .affiliate-page {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .status-list article {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-summary {
    grid-template-columns: 1fr;
  }
}
