:root {
  --ink: #070807;
  --ink-2: #101411;
  --paper: #f6efe4;
  --paper-2: #e7dac8;
  --text: #fbf4ea;
  --muted: rgba(251, 244, 234, 0.7);
  --body: #2d261e;
  --body-soft: rgba(45, 38, 30, 0.72);
  --wine: #812f38;
  --gold: #d7ad5d;
  --gold-2: #f0ce7a;
  --green: #14352f;
  --green-2: #0f2924;
  --line-dark: rgba(251, 244, 234, 0.14);
  --line-light: rgba(45, 38, 30, 0.14);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  margin: 0;
  min-width: 320px;
}

body::selection {
  background: var(--gold-2);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

h1 span {
  display: block;
}

.mobile-title {
  display: none;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.topbar {
  align-items: center;
  background: rgba(7, 8, 7, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  left: 0;
  padding: 12px 14px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 40;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--gold-2), #a87b32);
  border-radius: var(--radius);
  color: #16110b;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Georgia, serif;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.95rem;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 3px;
}

.nav-links {
  display: none;
}

.topbar-action {
  border: 1px solid rgba(215, 173, 93, 0.48);
  border-radius: var(--radius);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 11px;
  white-space: nowrap;
}

.hero {
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: 22px 14px 26px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--wine);
}

.hero-lede {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 12px;
}

.audience-line {
  color: rgba(251, 244, 234, 0.86);
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0;
}

.hero-actions,
.review-actions,
.step-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.primary-action,
.secondary-action,
.ghost-action,
.summary-bar button {
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 52px;
  padding: 13px 16px;
  text-align: center;
}

.primary-action {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #16110b;
}

.secondary-action,
.ghost-action {
  background: rgba(251, 244, 234, 0.06);
  border: 1px solid rgba(251, 244, 234, 0.22);
  color: var(--text);
}

.ghost-action:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.safety-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.safety-strip span,
.summary-chips span {
  background: rgba(251, 244, 234, 0.08);
  border: 1px solid rgba(251, 244, 234, 0.12);
  border-radius: 999px;
  color: rgba(251, 244, 234, 0.78);
  font-size: 0.76rem;
  padding: 6px 9px;
}

.hero-media {
  border-radius: 0 0 var(--radius) var(--radius);
  height: 320px;
  margin: 0 -14px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.02), rgba(7, 8, 7, 0.56) 76%, var(--ink) 100%),
    linear-gradient(90deg, var(--ink), rgba(7, 8, 7, 0.1) 78%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  width: 100%;
}

.paper-note {
  background: rgba(246, 239, 228, 0.95);
  border: 1px solid rgba(215, 173, 93, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--body);
  padding: 12px;
  position: absolute;
  z-index: 2;
}

.paper-note span,
.paper-note strong {
  display: block;
}

.paper-note span {
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.paper-note strong {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1;
  margin-top: 5px;
}

.note-one {
  right: 14px;
  top: 18px;
  transform: rotate(-3deg);
}

.note-two {
  bottom: 20px;
  left: 18px;
  right: auto;
  top: auto;
  transform: rotate(3deg);
}

.note-three {
  display: none;
}

.role-entry,
.method,
.consult,
.about,
.faq,
.material-section {
  background: var(--paper);
  color: var(--body);
  padding: 34px 14px;
}

.section-kicker {
  margin: 0 auto 22px;
  max-width: 840px;
}

.section-kicker p:not(.eyebrow) {
  color: var(--body-soft);
  margin-bottom: 0;
}

.role-strip {
  display: grid;
  gap: 10px;
  grid-auto-columns: minmax(226px, 76vw);
  grid-auto-flow: column;
  margin: 0 -14px;
  overflow-x: auto;
  padding: 0 14px 8px;
  scroll-snap-type: x mandatory;
}

.role-pill {
  background: #fffaf1;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--body);
  cursor: pointer;
  display: grid;
  min-height: 124px;
  padding: 16px;
  scroll-snap-align: start;
  text-align: left;
}

.role-pill.is-selected {
  background: var(--body);
  color: var(--text);
}

.role-pill strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.role-pill span {
  align-self: end;
  color: inherit;
  font-size: 0.9rem;
  opacity: 0.74;
}

.role-alert.is-selected {
  background: var(--wine);
}

.role-choice-grid {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.role-choice-grid button {
  background: rgba(251, 244, 234, 0.1);
  border: 1px solid rgba(251, 244, 234, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 13px;
  text-align: left;
}

.role-choice-grid button.is-selected {
  background: var(--gold-2);
  color: #16110b;
}

.role-choice-grid strong,
.role-choice-grid span {
  display: block;
}

.role-choice-grid strong {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.05;
}

.role-choice-grid span {
  font-size: 0.82rem;
  opacity: 0.78;
}

.builder {
  background:
    linear-gradient(180deg, rgba(20, 53, 47, 0.96), rgba(7, 8, 7, 0.98)),
    var(--green);
  color: var(--text);
  display: grid;
  gap: 22px;
  padding: 36px 14px;
}

.builder-copy p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}

.result-preview {
  background: rgba(251, 244, 234, 0.08);
  border: 1px solid rgba(251, 244, 234, 0.14);
  border-radius: var(--radius);
  margin-top: 20px;
  padding: 16px;
}

.result-preview > span {
  color: var(--gold-2);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.result-preview dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.result-preview div {
  border-bottom: 1px solid rgba(251, 244, 234, 0.1);
  padding-bottom: 8px;
}

.result-preview div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.result-preview dt {
  color: rgba(251, 244, 234, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-preview dd {
  color: var(--text);
  font-weight: 850;
  margin: 2px 0 0;
}

.builder-shell {
  min-width: 0;
}

.progress {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 14px;
}

.progress span {
  background: rgba(251, 244, 234, 0.18);
  border-radius: 999px;
  height: 5px;
}

.progress span.is-current,
.progress span.is-done {
  background: var(--gold-2);
}

.progress-copy,
.step-feedback {
  margin: 0 0 10px;
}

.progress-copy {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-feedback {
  background: rgba(251, 244, 234, 0.08);
  border-left: 3px solid var(--gold);
  color: rgba(251, 244, 234, 0.82);
  font-size: 0.92rem;
  padding: 10px 12px;
}

.stepper {
  display: grid;
  gap: 12px;
}

.step-card {
  background: rgba(251, 244, 234, 0.08);
  border: 1px solid rgba(251, 244, 234, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  min-height: 360px;
  padding: 20px;
}

.step-card.is-active {
  display: block;
}

.step-kicker,
.field span,
.summary-label {
  color: var(--gold-2);
  display: block;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-card p {
  color: var(--muted);
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

input,
select {
  background: rgba(251, 244, 234, 0.98);
  border: 1px solid rgba(251, 244, 234, 0.24);
  border-radius: var(--radius);
  color: var(--body);
  min-height: 54px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

input:focus,
select:focus {
  box-shadow: 0 0 0 4px rgba(215, 173, 93, 0.18);
}

input.is-invalid {
  border-color: #e17b62;
  box-shadow: 0 0 0 4px rgba(225, 123, 98, 0.18);
}

.field-note {
  border-left: 3px solid var(--gold);
  color: rgba(251, 244, 234, 0.74);
  font-size: 0.9rem;
  margin: 16px 0 0;
  padding-left: 12px;
}

.mini-trust {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.mini-trust span {
  background: rgba(251, 244, 234, 0.08);
  border: 1px solid rgba(251, 244, 234, 0.12);
  border-radius: var(--radius);
  color: rgba(251, 244, 234, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 12px;
}

.choice-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.choice-grid button {
  background: rgba(251, 244, 234, 0.1);
  border: 1px solid rgba(251, 244, 234, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
  min-height: 66px;
  padding: 11px;
  text-align: left;
}

.choice-grid button.is-selected {
  background: var(--gold-2);
  color: #16110b;
}

.choice-grid button.is-suggested:not(.is-selected) {
  border-color: rgba(240, 206, 122, 0.5);
  box-shadow: inset 0 0 0 1px rgba(240, 206, 122, 0.12);
}

.choice-grid button.is-suggested:not(.is-selected)::after {
  color: var(--gold-2);
  content: "sugestão";
  display: block;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-transform: uppercase;
}

.step-actions {
  grid-template-columns: 0.72fr 1fr;
  margin-top: 0;
}

.step-actions.has-skip {
  grid-template-columns: 1fr;
}

#skipStep {
  display: none;
}

#skipStep.is-visible {
  display: inline-flex;
}

.step-actions.is-final {
  grid-template-columns: 1fr;
}

.step-actions.is-final #nextStep,
.step-actions.is-final #skipStep {
  display: none;
}

.review-card {
  background: rgba(7, 8, 7, 0.36);
  border: 1px solid rgba(251, 244, 234, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  display: grid;
  gap: 12px;
  margin: 20px 0 14px;
  padding: 16px;
}

.review-row {
  border-bottom: 1px solid rgba(251, 244, 234, 0.11);
  padding-bottom: 10px;
}

.review-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.review-row span {
  color: var(--gold-2);
  display: block;
  font-size: 0.72rem;
  font-weight: 950;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.review-row strong {
  display: block;
  font-weight: 800;
}

.review-actions {
  grid-template-columns: 1fr;
}

.trust-band {
  background: #0b0d0a;
  color: var(--text);
  display: grid;
  gap: 1px;
  padding: 0;
}

.trust-band div {
  background: rgba(251, 244, 234, 0.06);
  border-bottom: 1px solid rgba(251, 244, 234, 0.08);
  padding: 18px 14px;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 0.98rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 4px;
}

.method-grid,
.faq-grid {
  display: grid;
  gap: 10px;
}

.method-grid article,
.faq-grid article,
.consult-box {
  background: #fffaf1;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--body);
  padding: 18px;
}

.method-grid article span {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: #16110b;
  display: inline-flex;
  font-weight: 950;
  height: 32px;
  justify-content: center;
  margin-bottom: 16px;
  width: 32px;
}

.method-grid article p,
.faq-grid article p,
.about p,
.consult-copy p {
  color: var(--body-soft);
  margin-bottom: 0;
}

.scam {
  background: var(--ink);
  color: var(--text);
  display: grid;
  gap: 26px;
  padding: 36px 14px;
}

.scam-copy p:not(.eyebrow) {
  color: var(--muted);
}

.official-note {
  color: rgba(251, 244, 234, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
}

.scam-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.phone-card {
  background: #111b18;
  border: 1px solid rgba(251, 244, 234, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  padding: 22px 14px 18px;
}

.chat-bubble {
  border-radius: var(--radius);
  padding: 14px;
}

.chat-bubble.danger {
  background: #f4e6d5;
  color: #281e17;
  margin-right: 24px;
}

.chat-bubble.safe {
  background: #d9e4da;
  color: #102420;
  margin-left: 24px;
}

.risk-list {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.risk-list span {
  background: rgba(251, 244, 234, 0.08);
  border: 1px solid rgba(251, 244, 234, 0.1);
  border-radius: var(--radius);
  color: rgba(251, 244, 234, 0.86);
  min-height: 54px;
  padding: 12px;
}

.materials-hero {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.26), rgba(7, 8, 7, 0.98)),
    url("assets/generated/joao-office-triage-real.jpg") center 26% / cover;
  color: var(--text);
  display: grid;
  gap: 22px;
  min-height: 78svh;
  padding: 44px 14px;
}

.materials-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 760px;
}

.materials-note {
  align-self: end;
  background: rgba(7, 8, 7, 0.72);
  border: 1px solid rgba(251, 244, 234, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.materials-note strong,
.materials-note span {
  display: block;
}

.materials-note strong {
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.materials-note span {
  color: rgba(251, 244, 234, 0.78);
  font-size: 0.94rem;
}

.material-copy {
  margin: 0 auto 22px;
  max-width: 860px;
}

.material-copy p:not(.eyebrow) {
  color: var(--body-soft);
  margin-bottom: 0;
}

.material-section-dark {
  background:
    linear-gradient(180deg, rgba(20, 53, 47, 0.98), rgba(7, 8, 7, 0.98)),
    var(--green);
  color: var(--text);
}

.material-section-dark .material-copy p:not(.eyebrow) {
  color: var(--muted);
}

.material-card-grid {
  display: grid;
  gap: 10px;
}

.material-card {
  background: #fffaf1;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--body);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.material-card span {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-card p {
  color: var(--body-soft);
  margin-bottom: 0;
}

.material-card a {
  align-self: end;
  margin-top: 6px;
}

.material-card .secondary-action {
  border-color: rgba(45, 38, 30, 0.2);
  color: var(--body);
}

.material-card-dark {
  background: rgba(251, 244, 234, 0.08);
  border-color: rgba(251, 244, 234, 0.16);
  color: var(--text);
}

.material-card-dark span {
  color: var(--gold-2);
}

.material-card-dark p {
  color: var(--muted);
}

.material-card-dark .secondary-action {
  border-color: rgba(251, 244, 234, 0.24);
  color: var(--text);
}

.material-card-cta {
  border-color: rgba(215, 173, 93, 0.48);
}

.consult {
  display: grid;
  gap: 22px;
}

.consult-box label {
  color: rgba(45, 38, 30, 0.62);
  display: block;
  font-size: 0.76rem;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.process-row {
  display: grid;
  gap: 10px;
}

.consult-box .primary-action {
  width: 100%;
}

.consult-box .secondary-action {
  border-color: rgba(45, 38, 30, 0.2);
  color: var(--body);
}

#processHelp {
  color: rgba(45, 38, 30, 0.64);
  font-size: 0.9rem;
  margin: 12px 0 0;
}

.process-result {
  background: rgba(20, 53, 47, 0.08);
  border-left: 4px solid var(--gold);
  color: var(--body);
  margin: 16px 0;
  padding: 14px;
}

.about {
  background: var(--paper-2);
  display: grid;
  gap: 18px;
}

.about img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(45, 38, 30, 0.18);
  height: auto;
  object-fit: cover;
  object-position: 50% 24%;
  width: 100%;
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.64), rgba(7, 8, 7, 0.98)),
    url("assets/hero-office.png") center / cover;
  color: var(--text);
  padding: 42px 14px;
  text-align: center;
}

.final-cta p:not(.eyebrow) {
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.summary-bar {
  align-items: center;
  background: rgba(7, 8, 7, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(251, 244, 234, 0.14);
  border-radius: var(--radius) var(--radius) 0 0;
  bottom: 0;
  box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.38);
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr auto;
  left: 0;
  opacity: 0;
  padding: 10px 14px 12px;
  pointer-events: none;
  position: fixed;
  right: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 35;
}

.summary-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.summary-bar strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.1;
}

.summary-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  grid-column: 1 / -1;
  overflow-x: auto;
  padding-bottom: 2px;
}

.summary-bar button {
  background: var(--gold-2);
  color: #16110b;
  font-size: 0.86rem;
  grid-column: 2;
  grid-row: 1;
  min-height: 42px;
  padding: 10px 12px;
}

.site-footer {
  align-items: start;
  background: #050604;
  border-top: 1px solid rgba(251, 244, 234, 0.08);
  color: rgba(251, 244, 234, 0.68);
  display: grid;
  gap: 12px;
  padding: 24px 14px 110px;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--gold-2);
  font-weight: 850;
}

@media (min-width: 720px) {
  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero,
  .builder,
  .scam,
  .consult,
  .about {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .hero {
    align-items: start;
    min-height: 88svh;
    padding: 74px 28px 54px;
  }

  .hero-actions,
  .review-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    height: min(680px, 76vh);
    margin: 0;
  }

  .note-three {
    bottom: 12%;
    display: block;
    right: 18%;
    transform: rotate(-2deg);
  }

  .role-entry,
  .method,
  .consult,
  .about,
  .faq,
  .material-section {
    padding: 60px 28px;
  }

  .role-strip {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .builder {
    align-items: start;
    padding: 70px 28px;
  }

  .builder-copy {
    position: sticky;
    top: 96px;
  }

  .role-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-actions.has-skip {
    grid-template-columns: 0.62fr 0.92fr 1fr;
  }

  .trust-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-band div {
    border-bottom: 0;
    border-right: 1px solid rgba(251, 244, 234, 0.08);
    padding: 22px 28px;
  }

  .method-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1120px;
  }

  .consult {
    align-items: center;
  }

  .process-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .consult-box .primary-action {
    width: auto;
  }

  .about {
    align-items: center;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  }

  .materials-hero {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    padding: 76px 28px 64px;
  }

  .material-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1120px;
  }

  .material-card-grid:has(.material-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about img {
    max-height: 600px;
  }

  .final-cta {
    padding: 86px 28px;
  }

  .summary-bar {
    border-radius: var(--radius);
    bottom: 22px;
    left: auto;
    max-width: 390px;
    right: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 24px 28px;
  }
}

@media (min-width: 1100px) {
  .topbar {
    grid-template-columns: minmax(240px, 1fr) auto auto;
    padding-left: max(42px, calc((100vw - 1180px) / 2));
    padding-right: max(42px, calc((100vw - 1180px) / 2));
  }

  .nav-links {
    align-items: center;
    display: flex;
    gap: 24px;
  }

  .nav-links a {
    color: rgba(251, 244, 234, 0.76);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .nav-links a:hover {
    color: var(--gold-2);
  }

  .hero,
  .builder,
  .scam,
  .consult,
  .about,
  .materials-hero,
  .role-entry,
  .method,
  .faq,
  .material-section,
  .final-cta {
    padding-left: max(42px, calc((100vw - 1180px) / 2));
    padding-right: max(42px, calc((100vw - 1180px) / 2));
  }

  .hero {
    gap: 54px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  }

  h1 {
    font-size: 5.1rem;
  }

  h2 {
    font-size: 4rem;
  }

  .hero-lede {
    font-size: 1.15rem;
    max-width: 690px;
  }

  .method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .topbar-action {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  .hero-copy,
  .hero-lede,
  .audience-line,
  .hero-actions {
    max-width: calc(100vw - 28px);
  }

  .hero-media img {
    object-position: 50% 0%;
  }

  .note-one {
    left: 16px;
    right: auto;
  }

  h1 {
    font-size: 1.78rem;
    line-height: 1.03;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 1.72rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
