*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #f25656;
  --accent-dark: #d94141;
  --border: rgba(255, 255, 255, 0.1);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --text: #fff;
  --text-2: rgba(255, 255, 255, 0.79);
  --text-3: rgba(255, 255, 255, 0.58);
  --green: #79d895;
  --amber: #f3c86d;
  --container: 1200px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  background: #080808;
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.article-hero {
  padding: 140px 0 68px;
  border-bottom: 1px solid rgba(242, 86, 86, 0.3);
  background-color: #0d0606;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(ellipse 78% 100% at 0 55%, rgba(242, 86, 86, 0.29), rgba(242, 86, 86, 0.05) 48%, transparent 72%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
}

.article-hero .container,
.article-body .container { max-width: 880px; }

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
  color: var(--text-3);
  font-size: 13px;
}

.article-breadcrumb a:hover { color: var(--accent); }

.article-category {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(242, 86, 86, 0.12);
  color: var(--accent);
  font: 800 11px "Nunito", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 820px;
  margin-bottom: 15px;
  font: 900 clamp(31px, 5vw, 50px) / 1.12 "Nunito", sans-serif;
  text-wrap: balance;
}

.article-deck {
  max-width: 730px;
  margin: 0 0 22px;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  color: var(--text-3);
  font-size: 13px;
}

.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-3); }

.article-body { padding: 54px 0 100px; }
.back-to-blog { display: inline-flex; margin-bottom: 37px; color: var(--text-3); font-size: 14px; }
.back-to-blog:hover { color: #fff; }

.article-content { color: rgba(255, 255, 255, 0.89); font-size: 17px; line-height: 1.75; }
.article-content h2 { margin: 54px 0 17px; color: #fff; font: 900 29px / 1.2 "Nunito", sans-serif; text-wrap: balance; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin: 0 0 7px; color: #fff; font: 800 18px / 1.35 "Nunito", sans-serif; }
.article-content p { margin-bottom: 19px; }
.article-content ul { margin: 0 0 25px 22px; }
.article-content li { margin-bottom: 8px; padding-left: 3px; }
.article-content a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content strong { color: #fff; font-weight: 700; }

.quick-answer {
  margin-bottom: 29px;
  padding: 25px 26px;
  border: 1px solid rgba(242, 86, 86, 0.34);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(242, 86, 86, 0.14), rgba(255, 255, 255, 0.025));
}

.quick-answer span { display: block; margin-bottom: 8px; color: var(--accent); font: 900 11px "Nunito", sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
.quick-answer p { margin: 0; color: #fff; font: 700 19px / 1.55 "Nunito", sans-serif; }

.legal-note {
  margin: 25px 0 34px;
  padding: 21px 22px;
  border: 1px solid rgba(243, 200, 109, 0.34);
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  background: rgba(243, 200, 109, 0.075);
}

.legal-note strong { display: block; margin-bottom: 5px; font: 900 16px "Nunito", sans-serif; }
.legal-note p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.6; }

.anchor-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 36px; }
.anchor-row a { padding: 8px 13px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); color: var(--text-2); font: 700 12px "Nunito", sans-serif; text-decoration: none; }
.anchor-row a:hover { border-color: rgba(242, 86, 86, 0.42); color: #fff; }

.deal-path { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; margin: 25px 0 40px; }
.path-step { position: relative; min-width: 0; padding: 18px 9px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface); text-align: center; }
.path-step:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 50%; right: -9px; color: var(--accent); transform: translate(50%, -50%); font-weight: 900; }
.path-step b { display: grid; place-items: center; width: 30px; height: 30px; margin: 0 auto 9px; border-radius: 9px; background: var(--accent); color: #090909; font: 900 13px "Nunito", sans-serif; }
.path-step strong { display: block; margin-bottom: 4px; font: 800 13px "Nunito", sans-serif; }
.path-step span { display: block; color: var(--text-3); font-size: 11px; line-height: 1.35; }

.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 24px 0 35px; }
.plain-card { min-width: 0; padding: 21px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.plain-card > strong { display: block; margin-bottom: 8px; font: 800 17px "Nunito", sans-serif; }
.plain-card p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.55; }

.question-list { display: grid; gap: 11px; margin: 24px 0 35px; }
.question-row { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface); }
.question-row b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(242, 86, 86, 0.14); color: var(--accent); font: 900 14px "Nunito", sans-serif; }
.question-row strong { display: block; margin-bottom: 4px; font: 800 16px "Nunito", sans-serif; }
.question-row p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.55; }

.value-rule { margin: 25px 0 35px; padding: 21px 22px; border-left: 4px solid var(--accent); border-radius: 0 12px 12px 0; background: rgba(242, 86, 86, 0.08); }
.value-rule strong { display: block; margin-bottom: 5px; font: 900 16px "Nunito", sans-serif; }
.value-rule p { margin: 0; color: var(--text-2); font-size: 15px; }

.signal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 24px 0 35px; }
.signal-card { min-width: 0; padding: 21px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.signal-tag { display: inline-block; margin-bottom: 10px; padding: 4px 9px; border-radius: 100px; background: rgba(243, 200, 109, 0.1); color: var(--amber); font: 900 10px "Nunito", sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.signal-card h3 { margin-bottom: 7px; }
.signal-card p { margin: 0 0 12px; color: var(--text-2); font-size: 14px; line-height: 1.55; }
.signal-card p:last-child { margin-bottom: 0; }
.signal-card .ask { padding-top: 11px; border-top: 1px solid var(--border); color: #fff; }

.review-tool { margin: 30px 0 44px; padding: 28px; border: 1px solid rgba(242, 86, 86, 0.34); border-radius: 18px; background: #0d0d0d; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24); }
.tool-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.tool-head h3 { margin: 0 0 4px; font-size: 23px; }
.tool-head p { margin: 0; color: var(--text-3); font-size: 13px; }
.local-badge { flex: 0 0 auto; padding: 6px 10px; border: 1px solid rgba(121, 216, 149, 0.3); border-radius: 100px; background: rgba(121, 216, 149, 0.08); color: #bfeccb; font: 800 11px "Nunito", sans-serif; }
.tool-progress { margin-bottom: 22px; }
.progress-label { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 8px; color: var(--text-3); font-size: 12px; }
.progress-track { height: 7px; overflow: hidden; border-radius: 100px; background: rgba(255, 255, 255, 0.08); }
.progress-bar { width: 0; height: 100%; border-radius: inherit; background: var(--accent); transition: width 180ms ease; }
.review-list { display: grid; gap: 13px; }
.review-item { min-width: 0; padding: 18px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface); }
.review-item legend { width: 100%; padding: 0; color: #fff; font: 900 16px "Nunito", sans-serif; }
.review-prompt { margin: 6px 0 13px; color: var(--text-2); font-size: 13px; line-height: 1.55; }
.choice-group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.choice-group input { position: absolute; opacity: 0; pointer-events: none; }
.choice { display: flex; align-items: center; justify-content: center; min-width: 0; min-height: 43px; padding: 9px 10px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 10px; background: #090909; color: var(--text-2); font: 800 12px / 1.25 "Nunito", sans-serif; text-align: center; cursor: pointer; overflow-wrap: anywhere; }
.choice-group input:focus-visible + .choice { outline: 3px solid rgba(242, 86, 86, 0.32); outline-offset: 2px; }
.choice-group input:checked + .choice { border-color: var(--accent); background: rgba(242, 86, 86, 0.15); color: #fff; }
.choice-group input[value="clear"]:checked + .choice { border-color: rgba(121, 216, 149, 0.65); background: rgba(121, 216, 149, 0.1); }

.notes-field { margin-top: 18px; }
.notes-field label { display: block; margin-bottom: 7px; color: #fff; font: 800 13px "Nunito", sans-serif; }
.notes-field textarea { width: 100%; min-height: 100px; padding: 12px 13px; resize: vertical; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 11px; background: #080808; color: #fff; line-height: 1.5; outline: none; }
.notes-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(242, 86, 86, 0.14); }

.tool-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 18px; }
.summary-stat { min-width: 0; padding: 13px 8px; border: 1px solid var(--border); border-radius: 11px; background: rgba(255, 255, 255, 0.025); text-align: center; }
.summary-stat strong { display: block; color: #fff; font: 900 21px "Nunito", sans-serif; }
.summary-stat span { display: block; color: var(--text-3); font-size: 11px; line-height: 1.3; overflow-wrap: anywhere; }
.next-step { margin-top: 14px; padding: 17px; border: 1px solid rgba(242, 86, 86, 0.22); border-radius: 12px; background: rgba(242, 86, 86, 0.07); }
.next-step strong { display: block; margin-bottom: 3px; font: 900 16px "Nunito", sans-serif; }
.next-step p { margin: 0; color: var(--text-2); font-size: 13px; }
.privacy-note { margin: 15px 0 0; color: var(--text-3); font-size: 12px; }
.tool-controls { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 14px; }
.tool-button { width: 100%; min-width: 0; min-height: 46px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255, 255, 255, 0.055); color: #fff; font: 800 13px / 1.2 "Nunito", sans-serif; cursor: pointer; white-space: normal; overflow-wrap: anywhere; transition: transform 140ms var(--ease-out), border-color 180ms ease, background-color 180ms ease; }
.tool-button.primary { border-color: var(--accent); background: var(--accent); color: #090909; }
.tool-button:active { transform: scale(0.97); }
.tool-button:disabled { opacity: 0.42; cursor: not-allowed; transform: none; }
.tool-status { min-height: 21px; margin-top: 10px; color: var(--text-3); font-size: 13px; }

.source-card { margin: 25px 0 35px; padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.source-card > strong { display: block; margin-bottom: 7px; font: 900 17px "Nunito", sans-serif; }
.source-card p { margin: 0 0 12px; color: var(--text-2); font-size: 14px; }
.source-links { display: flex; flex-wrap: wrap; gap: 9px; }
.source-links a { padding: 8px 11px; border: 1px solid rgba(242, 86, 86, 0.26); border-radius: 9px; background: rgba(242, 86, 86, 0.07); color: #fff; font: 700 12px "Nunito", sans-serif; text-decoration: none; }
.source-date { display: block; margin-top: 13px; color: var(--text-3); font-size: 11px; }

.article-faqs,
.related-articles { margin-top: 56px; padding-top: 46px; border-top: 1px solid var(--border); }
.article-faqs > h2,
.related-articles > h2 { margin-bottom: 29px; color: #fff; font: 900 28px "Nunito", sans-serif; }
.faq-item { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.faq-q { margin-bottom: 8px; font: 800 18px / 1.4 "Nunito", sans-serif; }
.faq-a { margin: 0; color: var(--text-2); font-size: 16px; line-height: 1.65; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.related-card { display: flex; flex-direction: column; gap: 9px; min-width: 0; padding: 19px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); transition: transform 180ms var(--ease-out), border-color 180ms ease; }
.related-title { flex: 1; overflow-wrap: anywhere; font: 800 15px / 1.4 "Nunito", sans-serif; }
.related-arrow { color: var(--text-3); font: 700 12px "Nunito", sans-serif; }

.article-cta { margin-top: 58px; padding: 34px; border: 1px solid rgba(242, 86, 86, 0.25); border-radius: 17px; background: rgba(242, 86, 86, 0.07); text-align: center; }
.cta-eyebrow { display: inline-block; margin-bottom: 9px; color: var(--accent); font: 900 11px "Nunito", sans-serif; letter-spacing: 0.11em; text-transform: uppercase; }
.article-cta h3 { margin-bottom: 10px; font: 900 25px / 1.3 "Nunito", sans-serif; }
.article-cta > p { max-width: 600px; margin: 0 auto 22px; color: var(--text-2); font-size: 15px; }
.cta-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; max-width: 560px; margin: 0 auto; }
.btn-primary,
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; max-width: 100%; min-height: 48px; padding: 12px 18px; border-radius: 100px; font: 800 14px / 1.25 "Nunito", sans-serif; overflow-wrap: anywhere; transition: transform 150ms var(--ease-out), border-color 180ms ease, background-color 180ms ease; }
.btn-primary { border: 1px solid var(--accent); background: var(--accent); color: #090909; }
.btn-secondary { border: 1px solid rgba(255, 255, 255, 0.17); background: rgba(255, 255, 255, 0.04); color: #fff; }

@media (hover: hover) and (pointer: fine) {
  .tool-button:not(:disabled):hover { border-color: rgba(242, 86, 86, 0.58); background-color: rgba(242, 86, 86, 0.09); }
  .tool-button.primary:hover { background-color: var(--accent-dark); }
  .related-card:hover { border-color: rgba(242, 86, 86, 0.35); transform: translateY(-2px); }
  .btn-primary:hover,
  .btn-secondary:hover { transform: translateY(-2px); }
}

@media (max-width: 768px) {
  .article-hero { padding: 118px 0 48px; }
  .article-content { font-size: 16px; }
  .deal-path { grid-template-columns: 1fr; }
  .path-step:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -9px; transform: translate(50%, 50%); }
  .card-grid,
  .signal-grid,
  .related-grid,
  .cta-actions { grid-template-columns: 1fr; }
  .tool-head { flex-direction: column; gap: 9px; }
  .article-cta { padding: 27px 20px; }
}

@media (max-width: 480px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .article-hero h1 { font-size: 33px; }
  .article-deck { font-size: 16px; }
  .quick-answer,
  .review-tool { padding: 20px; }
  .quick-answer p { font-size: 17px; }
  .question-row { grid-template-columns: 32px minmax(0, 1fr); gap: 11px; padding: 15px; }
  .question-row b { width: 32px; height: 32px; }
  .review-item { padding: 15px; }
  .choice-group { grid-template-columns: 1fr; }
  .tool-summary { gap: 6px; }
  .summary-stat { padding: 11px 5px; }
  .summary-stat strong { font-size: 19px; }
  .tool-controls { grid-template-columns: 1fr; }
}

@media print {
  body { background: #fff; color: #111; }
  #site-nav,
  #site-footer,
  .article-hero,
  .back-to-blog,
  .anchor-row,
  .article-cta,
  .related-articles,
  .tool-controls,
  .privacy-note,
  noscript { display: none !important; }
  .article-body { padding: 0; }
  .article-content,
  .article-content h2,
  .article-content h3,
  .review-item legend,
  .choice,
  .next-step strong,
  .summary-stat strong { color: #111; }
  .review-tool,
  .review-item,
  .next-step,
  .summary-stat { background: #fff; border-color: #bbb; box-shadow: none; break-inside: avoid; }
  .review-tool { margin: 0; }
  .choice-group input:checked + .choice { border: 2px solid #111; background: #eee; color: #111; }
  .choice-group input:not(:checked) + .choice { display: none; }
  .notes-field textarea { border-color: #bbb; background: #fff; color: #111; }
}
