:root {
  --bg: #ffffff;
  --text: #17212b;
  --muted: #657181;
  --line: #e5e9ef;
  --soft: #f6f8fb;
  --soft-red: #fff1ef;
  --red: #e13d2f;
  --red-dark: #b82e23;
  --green: #12805c;
  --green-soft: #e8f6ef;
  --amber: #b7791f;
  --amber-soft: #fff7df;
  --shadow: 0 18px 50px rgba(23, 33, 43, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body,
button,
input {
  font: 500 16px/1.45 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

button,
a.button {
  cursor: pointer;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 19px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(225, 61, 47, 0.2);
}

.brand-symbol {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.button {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
  white-space: normal;
  text-align: center;
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(225, 61, 47, 0.21);
}

.button-primary:hover {
  background: var(--red-dark);
}

a.button[href^="https://wa.me/"] {
  background: #16883f;
  color: #fff;
  border-color: #16883f;
  box-shadow: 0 12px 26px rgba(22, 136, 63, 0.22);
}

a.button[href^="https://wa.me/"]:hover {
  background: #0f6f33;
  border-color: #0f6f33;
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.button-light {
  background: #fff;
  color: var(--red-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(36px, 6vw, 84px) clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(90deg, rgba(255, 241, 239, 0.8), rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 90% 12%, rgba(18, 128, 92, 0.11), transparent 28%),
    #fff;
}

.hero-copy {
  display: grid;
  gap: 28px;
}

.hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.upsell-actions,
.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.product-panel,
.calculator-form,
.result-panel,
.history-panel,
.diagnosis,
.upsell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-panel {
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  gap: 14px;
}

.panel-title {
  display: grid;
  gap: 4px;
}

.panel-title h2 {
  font-size: 24px;
}

.panel-title p,
.muted {
  color: var(--muted);
}

label {
  display: grid;
  gap: 7px;
  color: #3b4654;
  font-size: 13px;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--text);
}

input:focus {
  outline: 3px solid rgba(225, 61, 47, 0.14);
  border-color: var(--red);
}

.result-box {
  display: none;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: var(--amber-soft);
  color: #4a3410;
}

.result-box:not(:empty) {
  display: grid;
}

.result-box span {
  color: var(--amber);
  font-weight: 900;
}

.problem-band,
.section-grid,
.video-section,
.examples,
.lead-section,
.faq {
  padding: clamp(36px, 6vw, 80px) clamp(18px, 5vw, 72px);
}

.problem-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--red);
  color: #fff;
}

.problem-band p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading p,
.video-section p,
.faq p,
.examples p {
  color: var(--muted);
}

.benefit-grid,
.examples,
.diagnosis-grid,
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid article,
.examples article,
.diagnosis-grid article,
.calc-card,
#history-list article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.benefit-grid strong,
.benefit-grid span,
.calc-card strong,
.calc-card span,
#history-list strong,
#history-list span {
  display: block;
}

.benefit-grid span,
.calc-card span,
#history-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 36px;
  align-items: center;
  background: var(--soft);
}

.video-section > div:last-child {
  display: grid;
  gap: 18px;
}

.video-placeholder {
  min-height: 320px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(rgba(23, 33, 43, 0.22), rgba(23, 33, 43, 0.42)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.examples {
  background: #fff;
}

.examples article {
  min-height: 150px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.48fr);
  gap: 32px;
  align-items: center;
  background: var(--text);
  color: #fff;
}

.lead-section p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  box-shadow: none;
}

.form-message {
  min-height: 22px;
  color: var(--muted) !important;
  font-size: 14px;
  font-weight: 800;
}

.faq {
  max-width: 960px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-top: 10px;
}

.tool-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: calc(100vh - 76px);
  background: var(--soft);
  max-width: 100vw;
}

.app-mode > .site-header {
  display: none;
}

.app-mode .tool-shell {
  min-height: 100vh;
}

.app-mode .tool-sidebar {
  top: 0;
  height: 100vh;
}

.tool-sidebar {
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.tool-nav {
  display: grid;
  gap: 6px;
  overflow-y: auto;
  min-width: 0;
  max-width: 100%;
}

.tool-nav a {
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.tool-nav a:hover,
.tool-nav a.active {
  background: var(--soft-red);
  color: var(--red-dark);
}

.sidebar-privacy {
  margin-top: auto;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.global-privacy {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.global-privacy a {
  color: var(--red-dark);
  font-weight: 900;
}

.legal-page {
  min-height: 100vh;
  background: #f6f8fb;
}

.legal-header,
.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 24px;
}

.legal-header img {
  display: block;
  width: 190px;
  height: 58px;
  object-fit: cover;
}

.legal-content {
  max-width: 900px;
  margin: 16px auto 40px;
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 8px;
  font-size: 46px;
  line-height: 1.08;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 23px;
}

.legal-content p,
.legal-content li {
  color: #46515e;
  font-size: 16px;
  line-height: 1.7;
}

.legal-content p {
  margin-top: 12px;
}

.legal-content ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 24px;
}

.legal-content code {
  padding: 2px 5px;
  border-radius: 4px;
  background: #edf1f5;
  color: #1c2732;
}

.legal-content a,
.legal-footer a {
  color: var(--red-dark);
  font-weight: 850;
}

.legal-updated {
  margin-bottom: 28px;
  color: var(--muted) !important;
  font-size: 14px !important;
}

.legal-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.tool-main {
  min-width: 0;
  max-width: 100vw;
  padding: clamp(18px, 4vw, 44px);
}

.tool-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.tool-topbar h1 {
  font-size: clamp(32px, 4vw, 56px);
}

.tool-topbar p {
  margin-top: 8px;
  color: var(--muted);
}

.app-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.calc-card {
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.04);
}

.calc-card:hover {
  border-color: rgba(225, 61, 47, 0.45);
  transform: translateY(-1px);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.calculator-form,
.result-panel,
.history-panel,
.diagnosis,
.upsell {
  padding: 20px;
}

.calculator-form {
  display: grid;
  gap: 13px;
}

.result-panel {
  display: grid;
  gap: 18px;
  min-height: 260px;
}

.result-panel h2 {
  font-size: 28px;
}

.result-panel p {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid div {
  border-radius: 8px;
  padding: 14px;
  background: var(--green-soft);
}

.metric-grid span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(20px, 3vw, 30px);
  overflow-wrap: anywhere;
}

.history-panel,
.upsell {
  margin-top: 18px;
}

#history-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

#history-list article {
  display: grid;
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

#history-list button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-height: 36px;
  padding: 0 12px;
  font-weight: 900;
}

.upsell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--text);
  color: #fff;
}

.upsell p {
  max-width: 780px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.diagnosis {
  display: grid;
  gap: 18px;
}

.diagnosis > p {
  color: var(--muted);
}

.alert-text {
  padding: 14px;
  border-radius: 8px;
  background: var(--amber-soft);
  color: #4a3410 !important;
  font-weight: 800;
}

.diagnosis-offers { gap: 26px; }
.offers-heading { max-width: 800px; }
.offers-kicker,
.offer-label { display: block; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.offers-heading h2 { max-width: 760px; margin: 8px 0 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.035em; }
.offers-heading p { color: var(--muted); font-size: 17px; line-height: 1.65; }
.offer-grid { align-items: stretch; }
.diagnosis-grid .offer-card { display: flex; flex-direction: column; padding: 24px; border-radius: 14px; }
.offer-card-featured { border-color: var(--green) !important; box-shadow: 0 14px 38px rgba(0, 107, 77, .12); }
.offer-card h3 { margin: 9px 0 10px; font-size: 23px; line-height: 1.15; }
.offer-card p { color: var(--muted); line-height: 1.55; }
.offer-card ul { display: grid; gap: 10px; margin: 20px 0 24px; padding: 0; list-style: none; }
.offer-card li { position: relative; padding-left: 23px; color: var(--text); font-size: 14px; line-height: 1.4; }
.offer-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.offer-card .button { width: 100%; margin-top: auto; }
.offer-recommendation { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px; border-radius: 14px; background: var(--text); color: #fff; }
.offer-recommendation div { display: grid; gap: 5px; }
.offer-recommendation span { color: rgba(255,255,255,.72); }
.offer-recommendation .button { flex: 0 0 auto; }

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero,
  .section-grid,
  .video-section,
  .lead-section,
  .calculator-layout,
  .tool-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .tool-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .app-mode .tool-sidebar {
    height: auto;
  }

  .tool-nav {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    width: 100%;
  }

  .sidebar-privacy {
    display: none;
  }

  .tool-nav a {
    flex: 0 0 auto;
  }

  .benefit-grid,
  .examples,
  .diagnosis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .site-header > .button {
    display: none;
  }

  .brand strong {
    max-width: 170px;
    line-height: 1.1;
  }

  .hero,
  .problem-band,
  .section-grid,
  .video-section,
  .examples,
  .lead-section,
  .faq,
  .tool-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-actions,
  .result-actions,
  .upsell,
  .offer-recommendation,
  .tool-topbar,
  .problem-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .benefit-grid,
  .examples,
  .diagnosis-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  #history-list article {
    grid-template-columns: 1fr;
  }

  .global-privacy,
  .legal-header,
  .legal-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-content {
    margin: 10px 14px 28px;
    padding: 28px 20px;
  }

  .legal-content h1 {
    font-size: 34px;
  }
}

/* Raio-X funnel */
.blast-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #0b0d0c;
}

.blast-brand img {
  display: block;
  width: 210px;
  height: 60px;
  object-fit: cover;
  object-position: center;
}

.header-product {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #151a17;
  font-size: 17px;
  font-weight: 900;
}

.header-support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #171d19;
  text-decoration: none;
}

.header-support > span:first-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #12803b;
  border-radius: 50%;
  color: #12803b;
  font-size: 18px;
}

.header-support strong,
.header-support small {
  display: block;
}

.header-support strong {
  font-size: 12px;
}

.header-support small {
  margin-top: 2px;
  color: #68716b;
  font-size: 11px;
}

.funnel-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: 58px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px clamp(24px, 5vw, 72px) 58px;
}

.funnel-intro {
  display: grid;
  gap: 22px;
  align-content: center;
}

.funnel-intro h1 {
  max-width: 560px;
  font-size: 52px;
  line-height: 1.04;
  color: #0b0d0c;
}

.funnel-intro > p {
  max-width: 500px;
  color: #4f5b54;
  font-size: 18px;
}

.confidence-list,
.offer-copy ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
}

.confidence-list li,
.offer-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #313a35;
  font-size: 14px;
  font-weight: 750;
}

.confidence-list li span,
.offer-copy li::before {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9f6ed;
  color: #0f7b35;
  font-size: 12px;
  font-weight: 950;
}

.offer-copy li::before {
  content: "\2713";
}

.diagnostic-frame {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px;
  border: 1px solid #93b39e;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20, 63, 36, 0.08);
}

.diagnostic-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e1e6e2;
}

.diagnostic-progress div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #8a928d;
}

.diagnostic-progress div::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 14px;
  left: calc(50% + 18px);
  width: calc(100% - 28px);
  height: 1px;
  background: #dce1dd;
}

.diagnostic-progress div:last-child::after {
  display: none;
}

.diagnostic-progress span {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7eae8;
  color: #727a75;
  font-size: 12px;
  font-weight: 900;
}

.diagnostic-progress .active,
.diagnostic-progress .done {
  color: #156d33;
  font-weight: 850;
}

.diagnostic-progress .active span,
.diagnostic-progress .done span {
  background: #147d38;
  color: #fff;
}

.diagnostic-progress small {
  font-size: 10px;
}

.question-head,
.capture-head,
.result-head {
  display: grid;
  gap: 7px;
  text-align: center;
}

.question-head > span,
.result-head > span {
  color: #16803d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.question-head h2,
.capture-head h2,
.result-head h2 {
  font-size: 27px;
  line-height: 1.16;
}

.question-head p,
.capture-head p {
  color: #667169;
  font-size: 14px;
}

.money-input {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

.money-input > span {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  border: 1px solid #cad1cc;
  border-radius: 6px;
  overflow: hidden;
}

.money-input b {
  display: grid;
  place-items: center;
  align-self: stretch;
  background: #f4f6f4;
  border-right: 1px solid #cad1cc;
}

.money-input input {
  border: 0;
  border-radius: 0;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.answer-option {
  min-height: 54px;
  padding: 9px;
  border: 1px solid #d4dad6;
  border-radius: 6px;
  background: #fff;
  color: #252c28;
  font-size: 13px;
  font-weight: 750;
}

.answer-option:hover,
.answer-option.selected {
  border-color: #12803b;
  background: #eff8f1;
  color: #0d632d;
}

.question-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.button-profit {
  background: #147d38;
  color: #fff;
  border-color: #147d38;
  box-shadow: 0 12px 24px rgba(20, 125, 56, 0.17);
}

.button-profit:hover {
  background: #0d672d;
}

.button-profit:disabled {
  cursor: not-allowed;
  background: #aab5ad;
  border-color: #aab5ad;
  box-shadow: none;
}

.button-back {
  background: #fff;
  border-color: #d5dbd7;
  color: #4c5650;
}

.privacy-note {
  color: #7a837d;
  text-align: center;
  font-size: 11px;
}

.capture-check {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background: #e6f5ea;
  color: #147d38;
  font-size: 20px;
  font-weight: 950;
}

.capture-form {
  display: grid;
  gap: 13px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.diagnostic-result {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 28px;
}

.score-ring {
  width: 154px;
  height: 154px;
  display: grid;
  place-content: center;
  justify-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 60%, transparent 62%), conic-gradient(#dc332d var(--score), #e8ebe9 0);
}

.score-ring strong {
  color: #dc332d;
  font-size: 48px;
  line-height: 1;
}

.score-ring span,
.score-ring small {
  color: #454e48;
  font-size: 12px;
}

.loss-metric {
  display: grid;
  gap: 6px;
}

.loss-metric span {
  color: #59635d;
  font-size: 13px;
  font-weight: 850;
}

.loss-metric strong {
  color: #d52d28;
  font-size: 39px;
  line-height: 1;
}

.loss-metric small,
.estimate-note {
  color: #6a746d;
  font-size: 12px;
}

.priority-list {
  display: grid;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px solid #e1e6e2;
}

.priority-list h3 {
  margin-bottom: 3px;
}

.priority-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.priority-list > div span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #147d38;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.priority-list > div strong {
  font-size: 13px;
}

.method-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1296px;
  margin: 0 auto 68px;
  border-top: 1px solid #dfe4e0;
  border-bottom: 1px solid #dfe4e0;
}

.method-band > div {
  position: relative;
  min-height: 150px;
  padding: 28px 34px 28px 74px;
  border-right: 1px solid #dfe4e0;
}

.method-band > div:last-child {
  border-right: 0;
}

.method-number {
  position: absolute;
  top: 27px;
  left: 28px;
  color: #14803a;
  font-size: 25px;
  font-weight: 950;
}

.method-band h3 {
  margin-bottom: 8px;
}

.method-band p {
  color: #647068;
  font-size: 14px;
}

.lesson-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 24px 86px;
}

.lesson-visual {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 34px;
  border-radius: 8px;
  background: #0e3b24;
  color: #fff;
}

.lesson-visual strong {
  font-size: 34px;
}

.lesson-visual > span {
  color: #cde0d3;
}

.profit-bars {
  position: absolute;
  inset: 36px 34px 36px auto;
  display: flex;
  align-items: end;
  gap: 10px;
}

.profit-bars i {
  width: 28px;
  background: #2a7349;
}

.profit-bars i:nth-child(1) { height: 48px; }
.profit-bars i:nth-child(2) { height: 78px; }
.profit-bars i:nth-child(3) { height: 112px; }
.profit-bars i:nth-child(4) { height: 156px; }
.profit-bars i:nth-child(5) { height: 210px; background: #f4b400; }

.lesson-copy {
  display: grid;
  gap: 18px;
}

.lesson-copy h2 {
  font-size: 36px;
}

.lesson-copy > p {
  color: #5f6a63;
}

.lesson-copy ol {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.lesson-copy li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  padding-left: 18px;
  border-left: 3px solid #17803b;
}

.lesson-copy li span {
  color: #667169;
  font-size: 14px;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid #ced7d0;
  border-radius: 8px;
  background: #fff;
}

.offer-copy {
  display: grid;
  gap: 14px;
}

.offer-copy h2 {
  font-size: 38px;
}

.offer-copy > p {
  color: #647068;
}

.offer-price {
  display: grid;
  align-content: center;
  gap: 10px;
  padding-left: 42px;
  border-left: 1px solid #e1e6e2;
}

.offer-price > strong {
  color: #147d38;
  font-size: 58px;
  line-height: 1;
}

.offer-price > span,
.offer-price > small {
  color: #647068;
}

.addons-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 54px 0;
}

.addons-section h2 {
  margin-bottom: 18px;
  font-size: 25px;
}

.addon-row {
  display: grid;
  grid-template-columns: 34px minmax(200px, 0.9fr) minmax(260px, 1.5fr) 80px;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid #e0e5e1;
}

.addon-row > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #f4b400;
  color: #1d211f;
  font-size: 11px;
  font-weight: 950;
}

.addon-row p {
  color: #69736d;
  font-size: 13px;
}

.addon-row b {
  justify-self: end;
}

.whatsapp-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto 34px;
  padding: 24px 30px;
  background: #f0f7f2;
  border-radius: 8px;
}

.whatsapp-band div {
  display: grid;
  gap: 3px;
}

.whatsapp-band span {
  color: #657069;
  font-size: 13px;
}

.button-outline-profit {
  border-color: #147d38;
  color: #126b32;
  background: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 0 38px;
  border-top: 1px solid #e0e5e1;
  color: #68726b;
  font-size: 12px;
}

.site-footer img {
  display: block;
  width: 190px;
  height: 58px;
  object-fit: cover;
  object-position: center;
}

.site-footer a {
  color: #147d38;
  font-weight: 850;
}

@media (max-width: 980px) {
  .funnel-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .funnel-intro h1 {
    max-width: 720px;
  }

  .method-band,
  .lesson-section,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .method-band {
    margin-left: 24px;
    margin-right: 24px;
  }

  .method-band > div {
    border-right: 0;
    border-bottom: 1px solid #dfe4e0;
  }

  .method-band > div:last-child {
    border-bottom: 0;
  }

  .offer-price {
    padding: 24px 0 0;
    border-top: 1px solid #e1e6e2;
    border-left: 0;
  }

  .addons-section,
  .site-footer,
  .whatsapp-band {
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
  }

  .blast-brand img {
    width: 142px;
    height: 42px;
    object-fit: cover;
  }

  .header-product {
    position: static;
    transform: none;
    margin-left: auto;
    font-size: 13px;
  }

  .header-support {
    display: none;
  }

  .funnel-hero {
    padding: 34px 14px 44px;
  }

  .funnel-intro h1 {
    font-size: 38px;
  }

  .funnel-intro > p {
    font-size: 16px;
  }

  .diagnostic-frame {
    min-height: 560px;
    padding: 18px;
  }

  .diagnostic-progress small {
    display: none;
  }

  .diagnostic-progress div::after {
    top: 14px;
  }

  .question-head h2,
  .capture-head h2,
  .result-head h2 {
    font-size: 23px;
  }

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

  .diagnostic-result {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .loss-metric strong {
    font-size: 32px;
  }

  .method-band,
  .lesson-section,
  .offer-section,
  .addons-section,
  .whatsapp-band,
  .site-footer {
    margin-left: 14px;
    margin-right: 14px;
  }

  .lesson-section {
    padding-left: 0;
    padding-right: 0;
  }

  .lesson-visual {
    min-height: 280px;
  }

  .profit-bars {
    opacity: 0.45;
  }

  .offer-section {
    padding: 24px 18px;
  }

  .offer-copy h2 {
    font-size: 31px;
  }

  .offer-price > strong {
    font-size: 48px;
  }

  .addon-row {
    grid-template-columns: 30px 1fr auto;
    padding: 12px 0;
  }

  .addon-row p {
    grid-column: 2 / 4;
  }

  .whatsapp-band,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}
/* Authentication */
.auth-page { min-height: 100vh; background: #f4f7f6; }
.auth-shell { width: min(440px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0; display: grid; gap: 24px; }
.auth-brand { justify-self: center; }
.auth-brand img { width: 210px; height: auto; }
.auth-card { background: #fff; border: 1px solid #dce5e1; border-radius: 18px; padding: 32px; box-shadow: 0 16px 50px rgba(14, 45, 34, .08); }
.auth-card h1 { margin: 0 0 8px; }
.auth-card form { display: grid; gap: 18px; margin-top: 24px; }
.auth-card label { display: grid; gap: 7px; font-weight: 700; }
.auth-card input { width: 100%; padding: 13px 14px; border: 1px solid #b9c9c2; border-radius: 10px; font: inherit; }
.auth-card .button { width: 100%; }
.auth-message { min-height: 24px; margin: 0; color: #a62424; }
.auth-help { color: #586a63; font-size: .92rem; }
.sidebar-logout { margin-top: auto; padding: 10px 0; border: 0; background: none; color: inherit; text-align: left; cursor: pointer; overflow-wrap: anywhere; }

/* Public access gateway */
.access-page { min-height: 100vh; background: linear-gradient(145deg, #f7faf8 0%, #edf4f0 100%); color: #17372b; }
.access-main { min-height: calc(100vh - 154px); width: min(1120px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: center; padding: 72px 0; }
.access-copy { max-width: 680px; }
.access-kicker { display: inline-block; margin-bottom: 18px; color: #157652; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.access-copy h1 { max-width: 650px; margin: 0 0 20px; font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: .98; letter-spacing: -.055em; }
.access-copy > p { max-width: 630px; color: #52675f; font-size: 1.08rem; line-height: 1.7; }
.access-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.access-note { font-size: .9rem !important; }
.access-card { padding: 34px; border: 1px solid #d4e2db; border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 24px 70px rgba(18,61,45,.1); }
.access-card img { width: 52px; margin-bottom: 24px; }
.access-card strong { display: block; font-size: 1.35rem; }
.access-card ul { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.access-card li { padding-left: 26px; position: relative; color: #52675f; }
.access-card li::before { content: "✓"; position: absolute; left: 0; color: #16845b; font-weight: 900; }
@media (max-width: 760px) {
  .access-main { grid-template-columns: 1fr; gap: 34px; padding: 48px 0; }
  .access-copy h1 { font-size: clamp(2.35rem, 13vw, 3.6rem); }
  .access-actions .button { width: 100%; }
}
