
:root {
  --sys:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui,
    sans-serif;
  --bg: #f4f6f9;
  --surface: #ffffff;
  --raise: #fafbfc;
  --border: #e4e8ee;
  --border-2: #d5dbe3;
  --control: #8a93a3;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #55606f;
  --faint: #7a8393;
  --primary: #0f172a;
  --primary-h: #1e293b;
  --ok-fg: #0b6e4f;
  --ok-bg: #e9f3ee;
  --ok-bd: #c7e4d6;
  --soon-fg: #8a5300;
  --soon-bg: #fbf0da;
  --soon-bd: #eedbb0;
  --late-fg: #a11c15;
  --late-bg: #fbe9e7;
  --late-bd: #f1ccc7;
  --ok: #0b6e4f;
  --soon: #b26b00;
  --late: #b3261e;
  --r: 6px;
  --r-sm: 4px;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 17px;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sys);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.btn.pri:focus-visible {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 5px var(--primary);
}
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 8px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 20px;
  border-radius: var(--r-sm);
  text-decoration: none;
  min-height: 48px;
  cursor: pointer;
  border: 0;
}
.btn.pri {
  background: var(--primary);
  color: #fff;
}
.btn.pri:hover {
  background: var(--primary-h);
}
.btn.sec {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--control);
}
.btn.big {
  font-size: 1.05rem;
  padding: 15px 24px;
}
.st {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 9px 3px 7px;
  border-radius: var(--r-sm);
  line-height: 1.2;
  border: 1px solid;
}
.st.ok {
  color: var(--ok-fg);
  background: var(--ok-bg);
  border-color: var(--ok-bd);
}
.st.soon {
  color: var(--soon-fg);
  background: var(--soon-bg);
  border-color: var(--soon-bd);
}
.st.late {
  color: var(--late-fg);
  background: var(--late-bg);
  border-color: var(--late-bd);
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
nav.top {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
nav.top .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand img {
  height: 34px;
  width: auto;
  display: block;
}
nav.top .links {
  display: flex;
  gap: 22px;
  margin-left: 14px;
  font-size: 0.94rem;
  color: var(--ink-2);
}
nav.top .links a {
  text-decoration: none;
}
nav.top .links a:hover {
  color: var(--ink);
}
nav.top .nav-meta {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
nav.top .nav-primary {
  order: 3;
}
nav.top .nav-phone,
nav.top .nav-signin {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
}
nav.top .nav-phone:hover,
nav.top .nav-signin:hover {
  color: var(--ink);
}
.hero {
  padding: 54px 0 40px;
  border-bottom: 1px solid var(--border);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 14px 0 16px;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 36ch;
}
.hero .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero .micro {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 14px;
}
.shot {
  border: 1px solid var(--border-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(15, 23, 42, 0.45);
  background: var(--surface);
}
.shot .bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 9px 12px;
  background: #eef1f5;
  border-bottom: 1px solid var(--border);
}
.shot .bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cdd3dd;
}
.shot .bar span {
  margin-left: 8px;
  font-size: 0.72rem;
  color: var(--muted);
}
.shot .body {
  padding: 14px;
}
.shot .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
}
.shot .row b {
  font-size: 0.98rem;
}
.legendmini {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.trust {
  background: var(--bg);
  color: var(--ink-2);
  border-bottom: 1px solid var(--border);
}
.trust .wrap {
  display: flex;
  gap: 14px 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 22px;
  font-size: 1rem;
}
.trust span {
  color: var(--ink-2);
}
.trust .i {
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust .chk {
  color: var(--ok-fg);
  font-weight: 700;
}
section {
  padding: 56px 0;
}
.center {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 34px;
}
.center h2 {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
}
.center p {
  font-size: 1.1rem;
  color: var(--ink-2);
  margin: 0;
}
.tint {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.prob {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
}
.quote p {
  font-size: 1.05rem;
  margin: 0 0 10px;
  line-height: 1.5;
}
.quote .who {
  font-size: 0.85rem;
  color: var(--muted);
}
.feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
}
.card .ic {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: #eef2f7;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--ink);
}
.card h3 {
  font-size: 1.12rem;
  margin: 0 0 6px;
}
.card p {
  font-size: 0.96rem;
  color: var(--ink-2);
  margin: 0;
}
.card .tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.step {
  padding: 4px;
}
.step .n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 1.08rem;
  margin: 0 0 5px;
}
.step p {
  font-size: 0.96rem;
  color: var(--ink-2);
  margin: 0;
}
.cmpwrap {
  overflow-x: auto;
}
table.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
table.cmp th,
table.cmp td {
  padding: 14px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.94rem;
}
table.cmp th:last-child,
table.cmp td:last-child {
  border-right: 0;
}
table.cmp thead th {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--bg);
}
table.cmp tbody td:first-child,
table.cmp thead th:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
  width: 38%;
}
table.cmp .us,
table.cmp thead .us {
  background: #0f172a;
  color: #fff;
}
table.cmp thead .us {
  font-size: 0.96rem;
}
table.cmp tbody tr:last-child td {
  border-bottom: 0;
}
.ck-ok {
  color: #12805c;
  font-weight: 800;
  font-size: 1.05rem;
}
table.cmp .us .ck-ok {
  color: #7fe0be;
}
.ck-no {
  color: #8a93a3;
  font-weight: 700;
}
.ck-part {
  color: var(--soon-fg);
  font-weight: 700;
  font-size: 0.86rem;
}
.cmplegend {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.planwrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.planlist {
  padding: 26px;
  background: var(--surface);
}
.planprices {
  padding: 26px;
  background: var(--bg);
  border-left: 1px solid var(--border);
}
.lbl2 {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.incl {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 24px;
}
.incl li {
  padding: 7px 0;
  font-size: 0.96rem;
  display: flex;
  gap: 9px;
  break-inside: avoid;
}
.incl li .c {
  color: var(--ok-fg);
  font-weight: 700;
}
.psize {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.psize b {
  font-size: 1rem;
}
.psize .s2 {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}
.psize .pp {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.psize .pp span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.fine {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 14px 0 0;
}
.founder {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.founder .ph {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #1e293b;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.founder .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}
.founder p {
  margin: 0 0 8px;
  color: #c7ceda;
  font-size: 1.02rem;
}
.founder .sig {
  color: #fff;
  font-weight: 600;
}
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.post {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  text-decoration: none;
  color: inherit;
}
.post:hover {
  border-color: var(--control);
}
.ptag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 2px 10px;
  margin-bottom: 11px;
}
.post h3 {
  font-size: 1.06rem;
  margin: 0 0 6px;
  line-height: 1.3;
}
.post p {
  font-size: 1rem;
  color: var(--ink-2);
  margin: 0 0 12px;
}
.pmeta {
  font-size: 0.82rem;
  color: var(--muted);
}
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 22px 56px;
}
.article h1 {
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 10px 0 12px;
}
.article h2 {
  font-size: 1.4rem;
  margin: 32px 0 10px;
}
.article p,
.article li {
  font-size: 1.06rem;
  color: var(--ink-2);
  line-height: 1.62;
}
.article p,
.article li,
.article td {
  overflow-wrap: anywhere;
}
.article ul {
  padding-left: 22px;
}
.article .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.article .lede {
  font-size: 1.18rem;
  color: var(--ink);
}
.callout {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--r);
  padding: 16px 18px;
  margin: 22px 0;
}
.callout p:last-child {
  margin-bottom: 0;
}
.backlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.backlink:hover {
  text-decoration: underline;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  max-width: 520px;
}
.form-card label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-2);
  margin: 12px 0 5px;
}
.form-card label:first-child {
  margin-top: 0;
}
.form-card input,
.form-card select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  font-size: 1rem;
  font-family: var(--sys);
  border: 1px solid var(--control);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
}
.form-card select,
select.select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%2355606F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.money-input {
  position: relative;
  display: block;
}
.money-input .cur {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem;
  pointer-events: none;
}
.money-input input {
  padding-left: 27px;
}
.form-card .hint {
  margin: 6px 0 2px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}
.result {
  background: var(--ok-bg);
  border: 1px solid var(--ok-bd);
  color: var(--ok-fg);
  border-radius: var(--r);
  padding: 16px 18px;
  font-weight: 500;
}
.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 940px;
  margin: 30px auto 0;
  text-align: left;
  align-items: start;
}
.value-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.value-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.value-list li .c {
  color: var(--ok-fg);
  font-weight: 700;
  flex-shrink: 0;
}
.value-panel .next {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.value-panel .next p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.waitlist-grid .form-card {
  max-width: none;
}
.gs {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 22px 64px;
}
.gs-brand {
  display: inline-flex;
  margin-bottom: 30px;
}
.gs-h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.gs-lead {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 30px;
  line-height: 1.55;
}
.gs-grid {
  margin: 0;
  max-width: none;
}
.gs-foot {
  margin: 26px 0 0;
  font-size: 1rem;
  color: var(--muted);
}
.gs-foot a {
  color: var(--ink-2);
  font-weight: 600;
}
@media (max-width: 820px) {
  .gs {
    padding: 28px 18px 48px;
  }
  .gs-h1 {
    font-size: 1.85rem;
  }
}
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 34px 0;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: auto;
}
footer .wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer a {
  color: var(--ink-2);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .brand img {
  height: 24px;
}
@media (max-width: 820px) {
  .hero .wrap,
  .prob,
  .feat,
  .steps,
  .planwrap,
  .posts,
  .waitlist-grid {
    grid-template-columns: 1fr;
  }
  .planprices {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .incl {
    columns: 1;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero .ctas .btn.sec.big {
    font-size: 1rem;
    padding: 12px 18px;
    min-height: 44px;
  }
  .hero .ctas .btn.sec.big:last-child {
    background: transparent;
    border: 0;
    color: var(--ink-2);
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 10px 8px;
    min-height: 44px;
  }
  .founder {
    grid-template-columns: 1fr;
    text-align: center;
  }
  nav.top .links {
    display: none;
  }
  nav.top .wrap {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 16px;
  }
  .brand {
    font-size: 1.12rem;
    white-space: nowrap;
  }
  nav.top .brand {
    flex-shrink: 0;
  }
  .brand img {
    height: 28px;
  }
  nav.top .nav-primary {
    order: 1;
    margin-left: auto;
    padding: 11px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  nav.top .nav-meta {
    order: 2;
    flex-basis: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: 12px;
  }
  footer a {
    display: inline-block;
    padding: 9px 0;
  }
  table.cmp th,
  table.cmp td {
    padding: 12px 10px;
  }
  .founder {
    padding: 26px 22px;
  }
  .article table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
  }
  .article th,
  .article td {
    border: 1px solid var(--border);
    padding: 8px 10px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.45;
    vertical-align: top;
  }
  .article thead th {
    background: var(--bg);
    color: var(--ink);
  }
}
@media (max-width: 560px) {
  .cmpwrap {
    overflow-x: visible;
  }
  table.cmp {
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  table.cmp thead {
    display: none;
  }
  table.cmp tbody,
  table.cmp tr,
  table.cmp td {
    display: block;
  }
  table.cmp tr {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
  }
  table.cmp td {
    text-align: left;
    border-right: 0;
    border-bottom: 0;
    padding: 12px 16px;
  }
  table.cmp tbody td:first-child {
    width: auto;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--ink);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  table.cmp tbody td:not(:first-child) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  table.cmp tbody td:not(:first-child)::before {
    content: attr(data-label);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--ink-2);
  }
  table.cmp tbody td:not(:first-child) + td {
    border-top: 1px solid var(--border);
  }
  table.cmp tbody td.us {
    background: var(--primary);
    color: #fff;
  }
  table.cmp tbody td.us::before {
    color: #fff;
  }
}
@media (max-width: 360px) {
  nav.top .brand span {
    display: none;
  }
  nav.top .wrap {
    padding: 10px 12px;
  }
  nav.top .nav-primary {
    padding: 11px 13px;
  }
}
