:root {
  --bg: #f5f5f7;
  --card: #ffffff;
  --ink: #1d1d1f;
  --sub: #6e6e73;
  --accent: #0071e3;
  --accent-ink: #ffffff;
  --line: #d2d2d7;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000; --card: #1c1c1e; --ink: #f5f5f7; --sub: #98989d;
    --line: #38383c; --shadow: 0 4px 24px rgba(0,0,0,0.5);
  }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.5;
  padding: 6vh 20px;
}
.wrap { max-width: 980px; margin: 0 auto; }
.hero { text-align: center; margin-bottom: 56px; }
.mark {
  font-weight: 600; letter-spacing: -0.02em; font-size: 15px;
  color: var(--accent); text-transform: none; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 18px;
}
.sub { font-size: clamp(17px, 2.2vw, 21px); color: var(--sub); max-width: 620px; margin: 0 auto; }
.offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card.featured { border-color: var(--accent); border-width: 2px; }
.tier { font-size: 13px; font-weight: 600; color: var(--sub); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.card.featured .tier { color: var(--accent); }
.card h2 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.price { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.card ul { list-style: none; margin-bottom: 28px; flex: 1; }
.card li { padding: 8px 0; border-top: 1px solid var(--line); color: var(--sub); font-size: 15px; }
.card li:first-child { border-top: none; }
.buy {
  display: block; text-align: center; text-decoration: none;
  background: var(--accent); color: var(--accent-ink);
  padding: 14px; border-radius: 980px; font-weight: 500; font-size: 17px;
  transition: opacity 0.2s, transform 0.1s;
}
.buy:hover { opacity: 0.88; }
.buy:active { transform: scale(0.98); }
.buy[aria-disabled="true"] { background: var(--sub); cursor: pointer; }
.proof { text-align: center; margin-top: 40px; }
.proof p { color: var(--sub); font-size: 15px; max-width: 620px; margin: 0 auto; font-style: italic; }
.foot { text-align: center; margin-top: 40px; color: var(--sub); font-size: 14px; }
.foot a { color: var(--accent); text-decoration: none; }
.fine { margin-top: 8px; font-size: 12px; opacity: 0.7; }

/* ---- CTA button in hero ---- */
.cta {
  display: inline-block; margin-top: 30px; text-decoration: none;
  background: var(--accent); color: var(--accent-ink);
  padding: 14px 30px; border-radius: 980px; font-weight: 500; font-size: 17px;
  transition: opacity 0.2s;
}
.cta:hover { opacity: 0.88; }

/* ---- content blocks ---- */
.block { margin: 72px auto 0; max-width: 900px; }
.block.alt {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 48px 40px; box-shadow: var(--shadow);
}
.block-title {
  font-size: clamp(24px, 3.4vw, 34px); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 20px; text-align: center;
}
.block-title.center { margin-bottom: 32px; }
.lead { font-size: 17px; color: var(--sub); max-width: 720px; margin: 0 auto 20px; text-align: center; line-height: 1.6; }
.lead strong { color: var(--ink); }

/* what-you-get quick grid */
.whatgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; margin: 28px 0; }
.whatitem { text-align: center; padding: 20px 12px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.block.alt .whatitem { background: var(--bg); }
.wi-k { display: block; font-size: 34px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.wi-v { display: block; font-size: 14px; color: var(--sub); margin-top: 4px; }

/* stacks grid */
.stacks { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 18px; margin-top: 28px; }
.stack { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 24px; position: relative; }
.block.alt .stack { background: var(--bg); }
.stack-badge {
  width: 38px; height: 38px; border-radius: 10px; background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.stack.ghost .stack-badge { background: var(--sub); }
.stack h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.stack .repl { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 10px; }
.stack p:not(.repl) { font-size: 14px; color: var(--sub); line-height: 1.55; }

/* who it's for */
.forgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; margin-top: 24px; }
.forcol { padding: 28px; border-radius: 16px; border: 1px solid var(--line); background: var(--card); }
.forcol h3 { font-size: 18px; margin-bottom: 14px; }
.forcol.yes h3 { color: #34c759; }
.forcol.no h3 { color: #ff3b30; }
.forcol ul { list-style: none; }
.forcol li { padding: 8px 0; border-top: 1px solid var(--line); color: var(--sub); font-size: 15px; }
.forcol li:first-child { border-top: none; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; margin-top: 28px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-n {
  flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.step p { font-size: 15px; color: var(--sub); line-height: 1.5; }
.step strong { color: var(--ink); }
.step code { background: var(--bg); padding: 2px 6px; border-radius: 6px; font-size: 13px; }

/* pricing cards wrapper */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
#pricing { margin-top: 72px; scroll-margin-top: 20px; display: block; }
#pricing .block-title { display: block; width: 100%; }

/* faq */
.faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; margin-top: 24px; }
.qa h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.qa p { font-size: 14px; color: var(--sub); line-height: 1.55; }

/* ---- requirements / level-setting ---- */
.reqgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 18px; margin-top: 28px; }
.reqitem { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.req-ico { font-size: 30px; margin-bottom: 10px; line-height: 1; }
.reqitem h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.reqitem p { font-size: 14px; color: var(--sub); line-height: 1.55; }
.reqitem a { color: var(--accent); text-decoration: none; font-weight: 500; }
.reqitem a:hover { text-decoration: underline; }

/* ---- no server? / affiliate hosts ---- */
.getserver .hosts { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 18px; margin-top: 28px; }
.host {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; transition: transform 0.12s, border-color 0.2s;
}
.host:hover { transform: translateY(-3px); border-color: var(--accent); }
.host h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px; }
.host-tag { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 10px; }
.host p:not(.host-tag) { font-size: 14px; color: var(--sub); line-height: 1.55; flex: 1; }
.host-cta { display: inline-block; margin-top: 14px; font-weight: 500; font-size: 15px; color: var(--accent); }
.aff-note { font-size: 12.5px; color: var(--sub); text-align: center; max-width: 640px; margin: 24px auto 0; line-height: 1.5; opacity: 0.85; }
