:root {
  --bg: #f8f7f5;
  --bg-2: #f3f1ec;
  --paper: #ffffff;
  --ink: #202124;
  --text: #202124;
  --muted: #5f5f5f;
  --line: #e4e4e4;
  --orange: #ff6900;
  --orange-deep: #e55e00;
  --orange-soft: #ff8a3d;
  --orange-wash: rgba(255, 105, 0, .12);
  --ok: #009e5d;
  --danger: #df1a1a;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(32, 33, 36, .1);
  --font: "Roboto", Helvetica, Arial, sans-serif;
  --display: "IBM Plex Sans", "Roboto", sans-serif;
  --signup: "https://www.skool.com/signup?ref=b82046b9c045422f8b02e3a1ea61dcb2";
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  overflow-wrap: break-word;
}
a { color: var(--orange-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 100%;
  min-width: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: var(--ink); padding: .75rem 1rem; z-index: 50;
}
.skip:focus { left: 1rem; top: 1rem; }

.strip {
  background: var(--orange);
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  overflow: hidden;
}
.strip .wrap {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: .55rem 1rem; min-width: 0;
}
.strip span { min-width: 0; }
.strip strong { font-weight: 700; }

header.site {
  position: sticky; top: 0; z-index: 30;
  background: rgba(248, 247, 245, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0; min-width: 0;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--ink);
  font-family: var(--display); font-weight: 700;
  letter-spacing: -.02em; font-size: 1.05rem;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--orange);
  display: grid; place-items: center;
  color: var(--ink); font-weight: 800; font-size: 1.05rem;
  font-family: var(--display);
}
.nav-links { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.nav-links a:not(.btn) {
  color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); font-weight: 700; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border: none; cursor: pointer; border-radius: 999px;
  padding: .88rem 1.4rem; font: 700 .82rem/1.1 var(--display);
  letter-spacing: .04em; text-decoration: none; max-width: 100%;
  transition: transform .2s, background .2s, box-shadow .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-pink {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 24px rgba(255, 105, 0, .32);
}
.btn-pink:hover { background: var(--orange-deep); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--orange); background: var(--orange-wash); color: var(--ink); }
.nav .btn { padding: .55rem .95rem; font-size: .8rem; white-space: nowrap; flex-shrink: 0; }

.kicker {
  font-family: var(--display);
  font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 600;
}
h1 {
  margin-top: .55rem; color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.12; letter-spacing: -.03em; font-weight: 700;
  text-wrap: balance;
}
h2 {
  margin: 2.1rem 0 .7rem; color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  letter-spacing: -.02em; line-height: 1.25; font-weight: 700;
}
h3 {
  margin: 1.4rem 0 .45rem;
  font-family: var(--display);
  font-size: 1.05rem; color: var(--ink);
}
p { color: var(--muted); }
p + p { margin-top: .8rem; }
p strong, li strong { color: var(--ink); }
ul, ol { margin: .75rem 0 0 1.15rem; color: var(--muted); }
li + li { margin-top: .4rem; }

.crumbs {
  display: flex; flex-wrap: wrap; gap: .35rem .55rem;
  font-size: .82rem; color: var(--muted); margin-bottom: 1.35rem;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--line); }

.article { width: min(48rem, 100%); margin: 0 auto; padding: 2.4rem 0 4rem; }

.answer {
  margin: 1.15rem 0 1.6rem;
  padding: 1.1rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  color: var(--ink);
  font-size: 1.05rem;
}
.answer strong { color: var(--ink); }
.meta {
  margin-top: .85rem; font-size: .82rem; color: var(--muted);
}

.data-wrap {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  background: var(--paper);
}
table.data {
  width: 100%; border-collapse: collapse; min-width: 32rem; font-size: .92rem;
}
table.data th, table.data td {
  padding: .7rem .9rem; text-align: left; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data th {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); background: var(--bg-2); font-weight: 700;
}
table.data tr:last-child td { border-bottom: 0; }
table.data .num { font-weight: 700; color: var(--ink); white-space: nowrap; }
table.data .win { color: var(--ok); font-weight: 700; }
table.data .tie { color: var(--orange-deep); font-weight: 700; }
.price-note { margin-top: .85rem; color: var(--muted); font-size: .85rem; }

.steps {
  margin-top: 1.2rem;
  display: grid; gap: .85rem;
  counter-reset: step;
}
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.05rem 1.1rem 1.1rem;
}
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--display); font-weight: 700; font-size: .78rem;
  color: #fff; background: var(--orange);
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: .65rem;
}
.step h3 { margin: 0 0 .35rem; }
.step p { font-size: .94rem; }

.callout {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid #b7e8cb;
  background: #e8f8ef;
  color: var(--muted);
  font-size: .92rem;
}
.callout.warn {
  border-color: #f3d2a4;
  background: #fff6e8;
}
.callout strong { color: var(--ink); }

.faq-list { margin-top: 1.2rem; display: grid; gap: .65rem; }
details {
  border: 1px solid var(--line); border-radius: 12px; background: var(--paper);
  padding: 0 1rem;
}
summary {
  cursor: pointer; list-style: none; padding: 1rem 0;
  color: var(--ink); font-weight: 700;
  display: grid; grid-template-columns: 1fr auto; gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary .chev { color: var(--orange); font-weight: 700; }
details[open] summary .chev { transform: rotate(45deg); }
details p { color: var(--muted); padding: 0 0 1rem; font-size: .95rem; }

.related { margin-top: 2.4rem; display: grid; gap: .85rem; }
@media (min-width: 720px) { .related { grid-template-columns: repeat(3, 1fr); } }
.related a {
  display: block; text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
}
.related a:hover { border-color: var(--orange); }
.related .tag {
  font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin-bottom: .4rem;
}
.related h3 { margin: 0 0 .35rem; font-size: 1rem; }
.related p { font-size: .88rem; }

.cta-band {
  margin-top: 2.4rem;
  padding: 1.35rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}
.cta-band h2 { margin: 0 0 .45rem; color: #fff; }
.cta-band p { color: #cfcfcf; }
.cta-band .btn { margin-top: 1rem; }

footer.site {
  background: #0f0f0f; border-top: 1px solid #0f0f0f;
  padding: 3rem 0 1.75rem; margin-top: 1rem; color: #b8b8b8;
}
.foot-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr 1fr; } }
.foot-brand { color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.foot-tag {
  margin-top: .7rem; color: #fff; font-weight: 700; font-size: 1.15rem;
  line-height: 1.4; max-width: 28rem;
}
.foot-note { margin-top: .9rem; color: #9a9a9a; font-size: .88rem; }
.foot-note + .foot-note { margin-top: .55rem; }
footer a { color: var(--orange-soft); }
footer nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.5rem; align-content: start;
}
footer nav a { color: #9a9a9a; text-decoration: none; font-size: .92rem; }
footer nav a:hover { color: #fff; }
.foot-bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid #2a2a2a;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  color: #777; font-size: .78rem;
}
.foot-bottom a { color: #777; }
.foot-bottom a:hover { color: #fff; }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 560px) {
  .strip .wrap span:last-child { display: none; }
  .strip .wrap { justify-content: center; text-align: center; }
  table.data { min-width: 0; font-size: .86rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
