:root{
  --teal:#1B4950;
  --sand:#C4AA89;
  --stone:#D7D5CC;
  --red:#C7443D;
  --off:#F4F3F1;

  /* theme */
  --bg: var(--red);
  --card: var(--off);
  --text: var(--teal);
  --textOn: rgba(244,243,241,.92);

  --line: rgba(27,73,80,.16);
  --lineDark: rgba(255,255,255,.28);
  --shadow: 0 18px 55px rgba(0,0,0,.22);

  --r:18px;
  --r2:24px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--textOn);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.page{
  max-width:1080px;
  margin:0 auto;
  padding:18px 16px 28px;
}

/* TOP */
.top{
  border:1px solid var(--lineDark);
  border-radius: var(--r2);
  padding:14px 14px 16px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  display:grid;
  gap:14px;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(244,243,241,.75);
  border: 1px solid rgba(244,243,241,.70);
  color: var(--teal);
}
.brand__name{ font-weight:800; letter-spacing:.4px; }
.brand__tag{ font-size:12px; color: rgba(244,243,241,.88); }

.eyebrow{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color: rgba(244,243,241,.90);
  border-left:2px solid rgba(244,243,241,.70);
  padding-left:10px;
  display:inline-block;
}

.h1{
  margin:8px 0 0;
  font-size: clamp(22px, 4.4vw, 38px);
  line-height:1.05;
}
.h1__soft{
  display:block;
  margin-top:6px;
  font-size:.56em;
  color: rgba(244,243,241,.90);
  font-weight:600;
}

.quickfacts{ display:flex; flex-wrap:wrap; gap:10px; }
.qf{
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  border-radius:999px;
  padding:8px 10px;
  display:flex;
  gap:8px;
  align-items:baseline;
}
.qf span{
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color: rgba(244,243,241,.88);
}
.qf strong{ font-weight:800; }

/* BOARD */
.board{
  margin-top:16px;
  display:grid;
  grid-template-columns:44px 1fr;
  gap:12px;
  align-items:start;
}

.swatches{ display:flex; flex-direction:column; gap:10px; padding-top:6px; }
.sw{
  width:40px;
  aspect-ratio:1/1;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
}
.sw--bg{ background: var(--bg); }
.sw--teal{ background: var(--teal); }
.sw--sand{ background: var(--sand); border-color: rgba(0,0,0,.12); }
.sw--stone{ background: var(--stone); border-color: rgba(0,0,0,.12); }
.sw--off{ background: var(--off); border-color: rgba(27,73,80,.18); }

.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

/* CARDS */
.card{
  background: var(--card);
  color: var(--text);
  border-radius: var(--r2);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:14px;
  overflow:hidden;
}

.card--wide{ grid-column:1 / -1; }

.card--hero{
  border-color: rgba(196,170,137,.75);
  background:
    radial-gradient(720px 460px at 0% 0%, rgba(196,170,137,.62), transparent 62%),
    var(--card);
}

.cap{
  font-size:11px;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color: rgba(27,73,80,.62);
}
.title{
  margin-top:6px;
  font-size:16px;
  font-weight:800;
  letter-spacing:.2px;
}
.text{
  margin-top:8px;
  color: rgba(27,73,80,.84);
  line-height:1.45;
}
.text--tight{ margin-top:6px; }

.divider{
  height:1px;
  margin:12px 0;
  background: rgba(27,73,80,.12);
}

/* chips */
.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.chip{
  border:1px solid rgba(27,73,80,.18);
  background: rgba(255,255,255,.72);
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  font-weight:700;
}

/* lists */
.list{
  margin:10px 0 0;
  padding-left:18px;
  line-height:1.5;
  color: rgba(27,73,80,.84);
}
.list li{ margin:4px 0; }
.list strong{ color: rgba(27,73,80,.96); }
.list--tight li{ margin:3px 0; }

/* note */
.note{
  margin-top:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(27,73,80,.14);
  background: rgba(27,73,80,.06);
  color: rgba(27,73,80,.82);
  font-weight:700;
}

/* pricing */
.pricing{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:10px;
}
.price{
  border-radius:16px;
  border:1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.66);
  padding:12px;
}
.price__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}
.price__t{ font-weight:800; }
.price__p{
  font-size:28px;
  line-height:1;
  font-weight:900;
  color: var(--teal);
}
.price__s{
  margin-top:6px;
  font-size:12px;
  color: rgba(27,73,80,.66);
}

/* steps */
.steps{
  margin:10px 0 0;
  padding-left:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.steps li{
  border-radius:16px;
  border:1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.66);
  padding:10px;
  display:grid;
  gap:6px;
}
.steps span{
  font-size:11px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color: rgba(27,73,80,.62);
}
.steps strong{ color: rgba(27,73,80,.96); }

/* metrics */
.metrics{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:10px;
}
.metric{
  border-radius:16px;
  border:1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.66);
  padding:12px;
}
.metric__n{ font-weight:900; font-size:26px; line-height:1; color: var(--teal); }
.metric__t{ margin-top:6px; font-weight:800; }
.metric__s{ margin-top:4px; font-size:12px; color: rgba(27,73,80,.66); }

/* CTA */
.cta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.btn{
  appearance:none;
  border-radius:999px;
  padding:10px 12px;
  border:1px solid rgba(199,68,61,.65);
  background: rgba(199,68,61,.12);
  color: var(--teal);
  font-weight:900;
  cursor:pointer;
}
.btn--ghost{
  border-color: rgba(27,73,80,.18);
  background: rgba(255,255,255,.74);
}
.btn:hover{ border-color: rgba(199,68,61,.92); text-decoration:none; }

/* pilot link */
.pilot-link{
  font-weight:800;
  color: var(--teal);
  border-bottom:1px solid rgba(27,73,80,.35);
  text-decoration:none;
}
.pilot-link:hover{ border-bottom-color: rgba(27,73,80,.85); text-decoration:none; }

/* contact */
.contact{
  margin-top:10px;
  border-radius:16px;
  border:1px solid rgba(27,73,80,.14);
  background: rgba(255,255,255,.66);
  padding:10px;
}
.contact__line{
  display:grid;
  grid-template-columns:74px 1fr;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(27,73,80,.12);
}
.contact__line:last-child{ border-bottom:none; }
.contact__k{
  font-size:11px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color: rgba(27,73,80,.62);
}
.dot{ opacity:.55; padding:0 6px; }

/* signature */
.sig{ margin-top:10px; padding-top:10px; border-top:1px solid rgba(27,73,80,.12); }
.sig__small{ font-weight:700; color: rgba(27,73,80,.82); }
.sig__name{
  font-family:"Allura", cursive;
  font-size:36px;
  line-height:1;
  margin-top:6px;
  color: var(--teal);
}

/* footer */
.footer{
  margin-top:16px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.30);
  color: rgba(244,243,241,.88);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer__brand{ font-weight:900; color: var(--off); }
.footer__tag{ font-size:12px; }
.footer__right{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.footer__right a{ font-size:13px; color: rgba(244,243,241,.88); }
.footer__right a:hover{ color: rgba(244,243,241,.98); }

/* desktop */
@media (min-width: 860px){
  .grid{ grid-template-columns: 1.12fr .88fr; align-items:start; }
  .card--wide{ grid-column: 1 / -1; }
  .pricing{ grid-template-columns: repeat(3, 1fr); }
  .metrics{ grid-template-columns: repeat(2, 1fr); }
  .footer{
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-end;
  }
}

/* print */
@media print{
  body{ background:#fff; color:#111; }
  .swatches{ display:none; }
  .top{ background:#fff; border-color:#ddd; }
  .card{ box-shadow:none; }
  .cta{ display:none; }
  .footer{ color:#333; border-color:#ddd; }
}
