/* Fontes próprias. Antes vinham do Google: a de texto por <link> e a de
   ícones por @import daqui — esta última em cascata serial, que sozinha
   respondia pela maior parte do bloqueio de renderização.
   A de ícones é subconjunto dos 47 ícones que o site usa: 16 KB no lugar
   dos 947 KB da família inteira. */
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fontes/inter-tight-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("assets/fontes/material-symbols-rounded-v5.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-soft: #11100f;
  --surface: #171514;
  --surface-2: #211f1d;
  --ink: #fff7ef;
  --muted: rgba(255, 247, 239, 0.68);
  --quiet: rgba(255, 247, 239, 0.48);
  --line: rgba(255, 247, 239, 0.12);
  --brand: #ff2c2c;
  --brand-2: #ff5050;
  --cream: #fff1df;
  --green: #8df0bc;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-lg: 22px;
  --radius-md: 14px;
  --max: 1120px;
  --section-y: clamp(58px, 8vw, 92px);
  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 18px;
  --gap-lg: 28px;
  --gap-xl: 44px;
  font-family: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.material-symbols-rounded {
  flex: 0 0 auto;
  font-family: "Material Symbols Rounded";
  font-size: 1.2em;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.button.has-leading-icon,
.header-cta.has-leading-icon {
  gap: 9px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 44, 44, 0.26), transparent 28rem),
    radial-gradient(circle at 86% 7%, rgba(255, 44, 44, 0.1), transparent 24rem),
    linear-gradient(180deg, #11100f 0%, var(--bg) 44%, #0c0b0b 100%);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

select {
  color-scheme: dark;
}

select option,
select optgroup {
  background: #151313;
  color: var(--ink);
}

select option:checked {
  background: var(--brand);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-pad {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 80px)));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: clamp(10px, 2vw, 16px) clamp(10px, 2vw, 18px) 0;
}

.header-shell {
  position: relative;
  display: grid;
  width: min(var(--max), 100%);
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--gap-sm);
  margin: 0 auto;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 11, 10, 0.74);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(255, 44, 44, 0.3);
  background: rgba(12, 11, 10, 0.92);
}

.brand {
  grid-column: 1;
  width: fit-content;
}

.brand-logo {
  width: clamp(96px, 24vw, 118px);
  height: 26px;
  object-fit: cover;
  object-position: center;
}

.nav-toggle {
  position: relative;
  z-index: 35;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 247, 239, 0.08);
  color: var(--ink);
  cursor: pointer;
  grid-column: 3;
  grid-row: 1;
}

.nav-toggle-line {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  align-content: start;
  gap: 0;
  max-height: calc(100vh - 92px);
  padding: 10px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 44, 44, 0.22), transparent 22rem),
    linear-gradient(180deg, rgba(22, 20, 19, 0.98), rgba(9, 9, 8, 0.98));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 10px;
}

.site-nav a::after {
  color: var(--brand);
  content: "→";
  font-size: 0.95rem;
}

.header-cta {
  display: none;
}

.header-actions {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  gap: 6px;
}

.header-icon-button {
  position: relative;
  display: inline-flex;
  width: auto;
  min-width: max-content;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.07);
  color: var(--ink);
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-icon-button .material-symbols-rounded {
  font-size: 1.3rem;
}

.header-action-label {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.header-cart {
  min-width: 96px;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--brand);
  box-shadow: 0 9px 22px rgba(255, 44, 44, 0.2);
  color: #fff;
}

.header-icon-button:hover {
  border-color: rgba(255, 247, 239, 0.25);
  background: rgba(255, 247, 239, 0.12);
  transform: translateY(-1px);
}

.header-cart:hover {
  background: var(--brand-2);
  box-shadow: 0 12px 26px rgba(255, 44, 44, 0.28);
}

.header-cart-count {
  position: absolute;
  top: -3px;
  right: 1px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #0c0b0a;
  border-radius: 999px;
  background: var(--cream);
  color: #151210;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 420px) {
  .header-actions {
    gap: 4px;
  }

  .header-icon-button {
    gap: 5px;
    padding: 0 9px;
  }

  .header-action-label {
    font-size: 0.7rem;
  }
}

.header-cart-count[hidden] {
  display: none;
}

.language-switcher {
  align-items: center;
  gap: 10px;
}

.language-switcher span:not(.sr-only) {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.language-switcher select {
  min-width: 58px;
  min-height: 38px;
  padding: 0 26px 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 14px) 52% / 5px 5px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 10px) 52% / 5px 5px no-repeat,
    rgba(255, 247, 239, 0.06);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher select:focus-visible {
  outline: 3px solid rgba(255, 44, 44, 0.42);
  outline-offset: 2px;
}

.language-switcher-mobile {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.language-switcher-desktop {
  display: none;
}

.hero {
  display: grid;
  min-height: auto;
  align-items: center;
  gap: var(--gap-xl);
  padding-top: clamp(48px, 7vw, 76px);
  padding-bottom: clamp(38px, 5vw, 62px);
}

.hero-content {
  display: grid;
  gap: var(--gap-md);
  align-content: center;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(255, 44, 44, 0.32);
  border-radius: 999px;
  background: rgba(255, 44, 44, 0.09);
  color: #ffc2c2;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  color: var(--ink);
  font-size: clamp(2.7rem, 10vw, 5.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.93;
}

h2 {
  max-width: 680px;
  font-size: clamp(1.9rem, 5.6vw, 3.65rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  font-size: clamp(1.16rem, 2.8vw, 1.48rem);
  font-weight: 900;
  line-height: 1.08;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2.3vw, 1.22rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(255, 44, 44, 0.22);
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 247, 239, 0.06);
  color: var(--ink);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary:hover {
  background: #ff4747;
  box-shadow: 0 16px 34px rgba(255, 44, 44, 0.3);
}

.header-cta:hover {
  background: #ff4747;
}

.button-secondary:hover {
  border-color: rgba(255, 247, 239, 0.24);
  background: rgba(255, 247, 239, 0.1);
}

.button:focus-visible,
.header-cta:focus-visible,
.header-icon-button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 44, 44, 0.48);
  outline-offset: 3px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: var(--gap-sm);
  width: min(100%, 430px);
  padding: 14px;
  border: 1px solid rgba(255, 247, 239, 0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 44, 44, 0.28), transparent 18rem),
    linear-gradient(145deg, rgba(255, 247, 239, 0.11), rgba(255, 247, 239, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: auto -16% -22% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 44, 44, 0.16);
  content: "";
  filter: blur(12px);
}

.visual-top,
.metric-card,
.mini-card {
  position: relative;
  border: 1px solid rgba(255, 247, 239, 0.12);
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(16px);
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-top strong {
  color: var(--green);
}

.metric-card-main {
  display: grid;
  gap: 6px;
  padding: clamp(16px, 4vw, 20px);
  border-radius: 18px;
}

.metric-card span,
.mini-card span {
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  color: var(--ink);
  font-size: clamp(2.5rem, 12vw, 4.25rem);
  font-weight: 900;
  line-height: 0.9;
}

.metric-card small {
  color: var(--muted);
  font-size: 0.98rem;
}

.chart-bars {
  display: flex;
  height: clamp(100px, 24vw, 122px);
  align-items: end;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 247, 239, 0.1);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.36);
}

.chart-bars span {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-sm);
}

.mini-card {
  display: grid;
  gap: 8px;
  min-height: 82px;
  padding: 12px;
  border-radius: 14px;
}

.mini-card strong {
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1;
}

.trust-strip {
  display: flex;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 80px)));
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
  padding: 0 0 clamp(34px, 5vw, 52px);
}

.trust-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.05);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.diagnostic-section {
  padding-top: clamp(48px, 7vw, 78px);
}

.diagnostic-heading {
  display: grid;
  max-width: 720px;
  gap: var(--gap-sm);
  margin-bottom: clamp(28px, 4vw, 42px);
}

.diagnostic-heading p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.diagnostic-shell {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 239, 0.14);
  border-radius: var(--radius-lg);
  background: #0d0c0c;
  box-shadow: var(--shadow);
}

.diagnostic-form,
.diagnostic-result {
  display: grid;
  align-content: start;
}

.diagnostic-form {
  gap: 18px;
  padding: clamp(22px, 5vw, 34px);
  background: #111010;
}

.form-section-heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.form-section-heading > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 44, 44, 0.35);
  border-radius: 50%;
  background: rgba(255, 44, 44, 0.1);
  color: #ffc2c2;
  font-size: 0.76rem;
  font-weight: 900;
}

.form-section-heading div {
  display: grid;
  gap: 2px;
}

.form-section-heading strong {
  color: var(--ink);
  font-size: 1rem;
}

.form-section-heading p {
  color: var(--quiet);
  font-size: 0.86rem;
  line-height: 1.35;
}

.form-divider {
  height: 1px;
  margin: 4px 0;
  background: var(--line);
}

.diagnostic-form label {
  display: grid;
  gap: var(--gap-xs);
}

.diagnostic-form .field-label {
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-hint {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.diagnostic-form input,
.diagnostic-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 239, 0.14);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 247, 239, 0.055);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
}

.diagnostic-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 247, 239, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 247, 239, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 13px) 52%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.diagnostic-form input:focus,
.diagnostic-form select:focus {
  border-color: rgba(255, 44, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 44, 44, 0.12);
}

.form-grid {
  display: grid;
  gap: var(--gap-sm);
}

.range-control {
  position: relative;
  grid-template-columns: 1fr auto;
  align-items: center;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 247, 239, 0.025);
}

.range-control output {
  color: var(--cream);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.money-control output {
  font-size: 1.1rem;
}

.diagnostic-form .range-control input[type="range"] {
  grid-column: 1 / -1;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.range-control input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--brand) 0 var(--range-progress, 35%), rgba(255, 247, 239, 0.14) var(--range-progress, 35%) 100%);
}

.range-control input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -7px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  appearance: none;
  background: var(--brand);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.range-control input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.14);
}

.range-control input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
}

.range-control input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--brand);
}

.range-scale {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  color: var(--quiet);
  font-size: 0.76rem;
  font-weight: 800;
}

.channel-menu {
  gap: 9px !important;
}

.channel-select-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  min-height: 58px;
  border: 1px solid rgba(255, 247, 239, 0.16);
  border-radius: 10px;
  background: rgba(255, 247, 239, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.channel-select-wrap:focus-within {
  border-color: rgba(255, 44, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 44, 44, 0.12);
}

.channel-menu-index {
  display: grid;
  width: 32px;
  height: 32px;
  justify-self: center;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 44, 44, 0.12);
  color: #ffc2c2;
  font-size: 0.72rem;
  font-weight: 900;
}

.diagnostic-form .channel-select-wrap select {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.channel-note {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 0 2px;
}

.channel-note i {
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--brand-2);
}

.channel-note p {
  color: var(--quiet);
  font-size: 0.82rem;
  line-height: 1.45;
}

.diagnostic-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
}

.form-disclaimer {
  color: var(--quiet);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.calculation-note {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.calculation-note summary {
  color: var(--ink);
  font-size: 0.88rem;
  cursor: pointer;
}

.calculation-note p {
  padding-top: 10px;
  color: var(--quiet);
  font-size: 0.8rem;
  line-height: 1.5;
}

.diagnostic-result {
  gap: 22px;
  padding: clamp(22px, 5vw, 34px);
  background: #171515;
  outline: 0;
}

.result-header,
.investment-heading,
.timeline-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.result-header > div {
  display: grid;
  gap: 4px;
}

.result-kicker,
.result-kpi span,
.growth-summary span,
.investment-heading span,
.timeline-heading span {
  color: var(--quiet);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.result-header h3 {
  color: var(--ink);
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  line-height: 1.1;
}

.result-status {
  display: inline-flex;
  min-height: 30px;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(141, 240, 188, 0.2);
  border-radius: 999px;
  background: rgba(141, 240, 188, 0.07);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
}

.result-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.result-kpis {
  display: grid;
  gap: 10px;
}

.result-kpi {
  display: grid;
  min-height: 132px;
  align-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 247, 239, 0.035);
}

.result-kpi-primary {
  border-color: rgba(255, 44, 44, 0.28);
  background: rgba(255, 44, 44, 0.08);
}

.result-kpi strong {
  color: var(--cream);
  font-size: clamp(1.65rem, 6vw, 2.5rem);
  line-height: 1;
}

.result-kpi small {
  color: var(--quiet);
  font-size: 0.8rem;
  font-weight: 800;
}

.result-kpi:last-child {
  grid-column: 1 / -1;
  min-height: 112px;
}

.growth-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.growth-summary > div {
  display: grid;
  gap: 5px;
}

.growth-summary > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.growth-summary strong {
  color: var(--green);
  font-size: 1.25rem;
}

.tier-summary {
  display: grid;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tier-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.tier-heading > div,
.tier-heading small {
  display: grid;
  gap: 4px;
}

.tier-heading span,
.tier-metrics span {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tier-heading > div strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.tier-heading small {
  justify-items: end;
  text-align: right;
}

.tier-heading small b {
  color: var(--muted);
  font-size: 0.88rem;
}

.tier-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tier-metrics div {
  display: grid;
  gap: 4px;
  padding: 13px;
}

.tier-metrics div:nth-child(even) {
  border-left: 1px solid var(--line);
}

.tier-metrics div:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.tier-metrics strong {
  color: var(--cream);
  font-size: 1.05rem;
}

.investment-heading {
  align-items: end;
}

.investment-heading > div {
  display: grid;
  gap: 4px;
}

.investment-heading strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.investment-heading small,
.timeline-heading small {
  color: var(--quiet);
  font-size: 0.76rem;
  font-weight: 800;
}

.allocation-list {
  display: grid;
  gap: 14px;
}

.allocation-row {
  display: grid;
  gap: 8px;
}

.allocation-row > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.allocation-row span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.allocation-row strong {
  color: var(--ink);
  font-size: 0.95rem;
  white-space: nowrap;
}

.allocation-row .allocation-values {
  display: grid;
  flex: 0 0 auto;
  gap: 3px;
  justify-items: end;
  text-align: right;
}

.allocation-row .allocation-values small {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.allocation-track {
  display: block;
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.09);
}

.allocation-track i {
  display: block;
  width: var(--allocation);
  height: 100%;
  border-radius: inherit;
  background: var(--channel-color);
}

.timeline-heading {
  align-items: baseline;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 72px;
  padding: 0 0 14px;
}

.timeline li:last-child {
  min-height: 0;
  padding-bottom: 0;
}

.timeline li:not(:last-child)::after {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: rgba(255, 247, 239, 0.14);
  content: "";
}

.timeline-index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 44, 44, 0.38);
  border-radius: 50%;
  background: #241616;
  color: #ffc2c2;
  font-size: 0.76rem;
  font-weight: 900;
}

.timeline li > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  padding-top: 3px;
}

.timeline strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.2;
}

.timeline p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.timeline small {
  color: var(--brand-2);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.report-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 44, 44, 0.28);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 44, 44, 0.11), rgba(255, 247, 239, 0.025));
}

.report-card-copy {
  display: grid;
  gap: 5px;
}

.report-card-copy > span {
  color: #ff9c9c;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-card-copy strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.report-card-copy p,
.report-card-copy small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.report-card-copy small span {
  color: var(--quiet);
}

.report-download {
  width: 100%;
  min-height: 48px;
}

.niche-insights-section {
  display: grid;
  gap: var(--gap-lg);
}

.niche-insights-section .section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.niche-insights-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 44, 44, 0.26);
  border-radius: var(--radius-lg);
  background: #151313;
}

.insights-lead {
  display: grid;
  gap: 5px;
  padding: clamp(22px, 5vw, 34px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(255, 44, 44, 0.13), transparent 64%);
}

.insights-lead span,
.insights-grid span {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.insights-lead strong {
  color: var(--ink);
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  line-height: 1.05;
}

.insights-lead small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

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

.insights-grid div {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 7px;
  padding: clamp(16px, 3vw, 22px);
  border-bottom: 1px solid var(--line);
}

.insights-grid div:nth-child(even) {
  border-left: 1px solid var(--line);
}

.insights-grid strong {
  color: var(--cream);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.insights-note {
  padding: 15px clamp(16px, 3vw, 22px);
  color: var(--quiet);
  font-size: 0.76rem;
  line-height: 1.45;
}

.split-section,
.method-section,
.cases-section,
.testimonials-section,
.contact-section {
  display: grid;
  gap: var(--gap-lg);
}

.section-heading {
  display: grid;
  gap: var(--gap-sm);
}

.section-heading.compact {
  max-width: 840px;
}

.service-grid,
.case-grid,
.testimonial-grid,
.method-list {
  display: grid;
  gap: var(--gap-sm);
}

.service-card,
.case-card,
.method-list article {
  display: grid;
  gap: var(--gap-sm);
  min-height: 190px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 247, 239, 0.055);
}

.service-card.featured {
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 44, 44, 0.22), transparent 16rem),
    rgba(255, 247, 239, 0.075);
}

.service-card p,
.case-card p,
.method-list p,
.data-panel p,
.contact-copy > p:last-child,
.footer-brand p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.card-index,
.method-list article span,
.case-card span {
  color: var(--brand-2);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.method-list article span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 44, 44, 0.12);
  color: #ffc2c2;
}

.data-panel {
  display: grid;
  gap: clamp(28px, 5vw, 44px);
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(255, 44, 44, 0.26);
  border-radius: var(--radius-lg);
  background: #151313;
}

.data-copy {
  display: grid;
  gap: var(--gap-lg);
}

.data-copy > div {
  display: grid;
  gap: 12px;
}

.data-copy h2 {
  max-width: 620px;
}

.data-description {
  max-width: 580px;
  align-self: end;
}

.data-panel h2 {
  margin: 0;
}

.data-stats {
  display: grid;
  gap: var(--gap-sm);
}

.data-stats div {
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.data-stats strong {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.data-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.case-card {
  min-height: 240px;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.06), rgba(255, 247, 239, 0.035)),
    #11100f;
}

.testimonial-card {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  gap: 28px;
  padding: clamp(20px, 4vw, 28px);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 247, 239, 0.045);
}

.testimonial-card::before {
  color: var(--brand);
  content: "“";
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.5;
}

.testimonial-card > p {
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 750;
  line-height: 1.45;
}

.testimonial-card footer {
  display: grid;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-card footer strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.testimonial-card footer span {
  color: var(--quiet);
  font-size: 0.8rem;
  font-weight: 800;
}

.faq-section {
  display: grid;
  gap: var(--gap-lg);
}

.faq-list {
  display: grid;
  max-width: 900px;
  border-bottom: 1px solid var(--line);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: grid;
  min-height: 66px;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  color: var(--ink);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-2);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.faq-list details[open] summary::after {
  background: rgba(255, 44, 44, 0.1);
  transform: rotate(45deg);
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(255, 44, 44, 0.34);
  outline-offset: 4px;
}

.faq-list details p {
  max-width: 720px;
  padding: 0 50px 20px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.global-section {
  display: grid;
  gap: var(--gap-lg);
}

.global-section .section-heading > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.world-map-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 52% 48%, rgba(255, 44, 44, 0.12), transparent 24rem), rgba(255, 247, 239, 0.035);
}

.world-map-stage {
  position: relative;
  min-height: 290px;
  padding: clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.world-map-stage::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 247, 239, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 247, 239, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.world-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 0.62;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
}

.world-map path {
  fill: #302c2a;
  stroke: rgba(255, 247, 239, 0.18);
  stroke-width: 2;
}

.map-marker {
  position: absolute;
  z-index: 2;
  display: grid;
  justify-items: center;
  transform: translate(-50%, -50%);
}

.map-marker i {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(255, 44, 44, 0.18), 0 0 28px rgba(255, 44, 44, 0.58);
}

.map-marker i::after {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 44, 44, 0.46);
  border-radius: 50%;
  content: "";
  animation: map-pulse 2.4s ease-out infinite;
}

.map-marker b {
  margin-top: 11px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 44, 44, 0.34);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.88);
  color: #ffffff;
  font-size: clamp(0.66rem, 1.8vw, 0.82rem);
  line-height: 1;
  white-space: nowrap;
}

.marker-portugal { left: 46.5%; top: 39%; }
.marker-uk { left: 45.5%; top: 30%; }
.marker-brazil { left: 29%; top: 66%; }

.market-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.market-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 18px 20px;
}

.market-list article + article {
  border-top: 1px solid var(--line);
}

.market-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 44, 44, 0.36);
  border-radius: 50%;
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.market-list article div {
  display: grid;
  gap: 3px;
}

.market-list strong { color: var(--ink); font-size: 1rem; }
.market-list small { color: var(--quiet); font-size: 0.8rem; }

.market-list em {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.2;
}

.market-list em b {
  color: var(--brand-2);
  font-size: 1.12rem;
  font-weight: 900;
}

@keyframes map-pulse {
  from { opacity: 0.85; transform: scale(0.6); }
  to { opacity: 0; transform: scale(1.5); }
}

@media (max-width: 719px) {
  .marker-portugal { left: 39%; top: 43%; }
  .marker-uk { left: 60%; top: 27%; }
}

@media (max-width: 980px) {
  .dre-hero,
  .dre-workspace {
    grid-template-columns: 1fr;
  }

  .dre-hero {
    min-height: auto;
  }

  .dre-summary-card {
    max-width: 520px;
  }

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

@media (max-width: 620px) {
  .dre-hero-actions,
  .dre-hero-actions .button {
    width: 100%;
  }

  .dre-metrics {
    grid-template-columns: 1fr;
  }

  .dre-table div {
    display: grid;
  }
}

.account-digital-asset {
  border-color: rgba(141, 240, 188, 0.22);
}

.account-digital-asset .account-product-code {
  background: rgba(141, 240, 188, 0.1);
  color: var(--green);
}

/* DRE product page */
.dre-hero {
  display: grid;
  min-height: 62vh;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
  padding-top: clamp(86px, 10vw, 128px);
}

.dre-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(4.5rem, 14vw, 9rem);
  line-height: 0.86;
}

.dre-hero > div > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.dre-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dre-summary-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 80, 80, 0.42);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 44, 44, 0.16), transparent 52%),
    rgba(23, 21, 20, 0.84);
  box-shadow: var(--shadow);
}

.dre-summary-card .material-symbols-rounded {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand);
  color: var(--ink);
  font-size: 1.7rem;
}

.dre-summary-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.dre-summary-card p {
  margin: 0;
  color: var(--muted);
}

.dre-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.dre-input-panel,
.dre-output-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 16, 15, 0.84);
  box-shadow: var(--shadow);
}

.dre-input-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.dre-input-panel .section-heading {
  margin-bottom: 6px;
}

.dre-input-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.dre-input-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0b0b;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
}

.dre-input-panel input:focus {
  outline: 2px solid rgba(255, 44, 44, 0.45);
  outline-offset: 2px;
}

.dre-output-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.dre-output-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.dre-output-head p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.dre-metrics article {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0b0b;
}

.dre-metrics span,
.dre-table span,
.dre-next-step strong {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dre-metrics strong {
  align-self: end;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1;
}

.dre-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.dre-table div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.dre-table div:last-child {
  border-bottom: 0;
}

.dre-table strong {
  color: var(--ink);
}

.dre-next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(141, 240, 188, 0.24);
  border-radius: 16px;
  background: rgba(141, 240, 188, 0.07);
}

.dre-next-step .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(141, 240, 188, 0.14);
  color: var(--green);
}

.dre-next-step p {
  margin: 4px 0 0;
  color: var(--muted);
}

.dre-workspace.is-negative .dre-next-step {
  border-color: rgba(255, 80, 80, 0.36);
  background: rgba(255, 44, 44, 0.08);
}

.dre-workspace.is-negative .dre-next-step .material-symbols-rounded {
  background: rgba(255, 44, 44, 0.14);
  color: var(--brand-2);
}

.dre-workspace.is-strong .dre-output-head h2 {
  color: var(--green);
}

.dre-month-panel,
.dre-year-panel {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 16, 15, 0.72);
  box-shadow: var(--shadow);
}

.dre-month-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  padding: clamp(20px, 3vw, 28px);
}

.dre-month-panel h2,
.dre-year-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

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

.dre-months button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0c0b0b;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.dre-months button:hover,
.dre-months button.is-active {
  border-color: rgba(255, 80, 80, 0.74);
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.dre-input-panel .section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.dre-output-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dre-output-panel .dre-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dre-metrics strong,
.dre-table strong,
.dre-year-table td,
.dre-year-table th {
  font-variant-numeric: tabular-nums;
}

.dre-metrics strong {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.dre-metrics strong.is-long-value {
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
}

.dre-metrics strong.is-extra-long-value {
  font-size: clamp(0.92rem, 1.65vw, 1.18rem);
}

.dre-year-panel {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
}

.dre-year-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.dre-year-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.dre-year-table th,
.dre-year-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.dre-year-table th {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dre-year-table td {
  color: var(--muted);
  font-weight: 650;
}

.dre-year-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .dre-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .dre-month-panel {
    grid-template-columns: 1fr;
  }

  .dre-months {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .dre-months {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dre-input-panel,
  .dre-output-panel,
  .dre-year-panel {
    min-width: 0;
    padding: 20px;
  }

  .dre-output-head,
  .dre-output-head h2,
  .dre-output-head p:not(.eyebrow),
  .dre-output-actions,
  .dre-next-step {
    min-width: 0;
  }

  .dre-output-head h2 {
    font-size: clamp(2rem, 13vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .dre-output-head p:not(.eyebrow) {
    font-size: 1rem;
  }

  .dre-output-panel .dre-metrics {
    grid-template-columns: 1fr;
  }

  .dre-metrics article {
    min-width: 0;
  }

  .dre-metrics strong {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media print {
  .site-header,
  .dre-hero,
  .dre-input-panel,
  .dre-output-actions,
  .dre-months,
  .cookie-banner,
  .site-footer {
    display: none !important;
  }

  body,
  body[data-page="sales"],
  body[data-page="sales"] main {
    background: #fff !important;
    color: #111 !important;
  }

  .section-pad,
  .dre-workspace {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .dre-workspace {
    display: grid !important;
    gap: 18px !important;
  }

  .dre-month-panel,
  .dre-output-panel,
  .dre-year-panel {
    box-shadow: none !important;
    background: #fff !important;
    color: #111 !important;
    border-color: #ddd !important;
    break-inside: avoid;
  }

  .dre-output-head h2,
  .dre-workspace.is-strong .dre-output-head h2,
  .dre-output-head p,
  .dre-table span,
  .dre-table strong,
  .dre-year-table td,
  .dre-year-table th {
    color: #111 !important;
  }

  .dre-year-table {
    overflow: visible !important;
  }

  .dre-year-table table {
    min-width: 0 !important;
  }
}

/* Meta/Google checklist product page */
.checklist-hero {
  display: grid;
  min-height: 62vh;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
  padding-top: clamp(86px, 10vw, 128px);
}

.checklist-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4rem, 12vw, 8.6rem);
  line-height: 0.86;
}

.checklist-hero > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.checklist-summary-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 80, 80, 0.42);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 44, 44, 0.16), transparent 52%),
    rgba(23, 21, 20, 0.84);
  box-shadow: var(--shadow);
}

.checklist-summary-card .material-symbols-rounded {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand);
  color: var(--ink);
  font-size: 1.7rem;
}

.checklist-summary-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.checklist-summary-card p {
  margin: 0;
  color: var(--muted);
}

.checklist-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.checklist-control-panel,
.checklist-output-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 16, 15, 0.84);
  box-shadow: var(--shadow);
}

.checklist-control-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.checklist-control-panel .section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.checklist-tabs {
  display: grid;
  gap: 10px;
}

.checklist-tabs button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0b0b;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.checklist-tabs button:hover,
.checklist-tabs button.is-active {
  border-color: rgba(255, 80, 80, 0.62);
  background: rgba(255, 44, 44, 0.09);
  color: var(--ink);
  transform: translateY(-1px);
}

.checklist-tabs .material-symbols-rounded {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 44, 44, 0.11);
  color: var(--brand-2);
  font-size: 1.35rem;
}

.checklist-tabs strong {
  color: var(--quiet);
  font-size: 0.84rem;
  font-variant-numeric: tabular-nums;
}

.checklist-notes {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.checklist-notes textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0c0b0b;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
}

.checklist-notes textarea:focus {
  outline: 2px solid rgba(255, 44, 44, 0.45);
  outline-offset: 2px;
}

.checklist-output-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.checklist-output-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.checklist-output-head p:not(.eyebrow) {
  max-width: 690px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.checklist-score-card {
  display: grid;
  gap: 10px;
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0b0b;
}

.checklist-score-card span,
.checklist-group-summary span,
.checklist-next-step strong {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checklist-score-card strong {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.checklist-score-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.checklist-progress {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.checklist-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  transition: width 220ms ease;
}

.checklist-items {
  display: grid;
  gap: 10px;
}

.checklist-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0b0b;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.checklist-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checklist-item-control {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.checklist-item-control::after {
  content: "✓";
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.checklist-item:has(input:checked) {
  border-color: rgba(141, 240, 188, 0.32);
  background: rgba(141, 240, 188, 0.06);
  color: var(--ink);
}

.checklist-item:has(input:checked) .checklist-item-control {
  border-color: rgba(141, 240, 188, 0.62);
  background: rgba(141, 240, 188, 0.14);
}

.checklist-item:has(input:checked) .checklist-item-control::after {
  opacity: 1;
  transform: scale(1);
}

.checklist-next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(141, 240, 188, 0.24);
  border-radius: 16px;
  background: rgba(141, 240, 188, 0.07);
}

.checklist-next-step .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(141, 240, 188, 0.14);
  color: var(--green);
}

.checklist-next-step p {
  margin: 4px 0 0;
  color: var(--muted);
}

.checklist-workspace.is-warning .checklist-next-step {
  border-color: rgba(255, 80, 80, 0.36);
  background: rgba(255, 44, 44, 0.08);
}

.checklist-workspace.is-warning .checklist-next-step .material-symbols-rounded {
  background: rgba(255, 44, 44, 0.14);
  color: var(--brand-2);
}

.checklist-workspace.is-ready .checklist-output-head h2 {
  color: var(--green);
}

.checklist-workspace.is-ready .checklist-progress span {
  background: var(--green);
}

.checklist-group-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.checklist-group-summary article {
  display: grid;
  gap: 8px;
  min-height: 100px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0c0b0b;
}

.checklist-group-summary strong {
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 980px) {
  .checklist-hero,
  .checklist-workspace {
    grid-template-columns: 1fr;
  }

  .checklist-hero {
    min-height: auto;
  }

  .checklist-summary-card {
    max-width: 520px;
  }

  .checklist-group-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .checklist-score-grid,
  .checklist-group-summary {
    grid-template-columns: 1fr;
  }
}

@media print {
  .checklist-hero,
  .checklist-control-panel,
  .checklist-output-panel .dre-output-actions {
    display: none !important;
  }

  .checklist-workspace {
    display: block !important;
    padding: 0 !important;
  }

  .checklist-output-panel,
  .checklist-score-card,
  .checklist-item,
  .checklist-next-step,
  .checklist-group-summary article {
    box-shadow: none !important;
    background: #fff !important;
    color: #111 !important;
    border-color: #ddd !important;
    break-inside: avoid;
  }

  .checklist-output-head h2,
  .checklist-output-head p,
  .checklist-score-card span,
  .checklist-score-card strong,
  .checklist-score-card p,
  .checklist-item,
  .checklist-next-step strong,
  .checklist-next-step p,
  .checklist-group-summary span,
  .checklist-group-summary strong {
    color: #111 !important;
  }
}

/* Media planning product page */
.media-hero {
  display: grid;
  min-height: 62vh;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
  padding-top: clamp(86px, 10vw, 128px);
}

.media-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4rem, 12vw, 8.6rem);
  line-height: 0.86;
}

.media-hero > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.media-summary-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 80, 80, 0.42);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 44, 44, 0.16), transparent 52%),
    rgba(23, 21, 20, 0.84);
  box-shadow: var(--shadow);
}

.media-summary-card .material-symbols-rounded {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand);
  color: var(--ink);
  font-size: 1.7rem;
}

.media-summary-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.media-summary-card p {
  margin: 0;
  color: var(--muted);
}

.media-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.media-month-panel,
.media-year-panel {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 16, 15, 0.72);
  box-shadow: var(--shadow);
}

.media-month-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  padding: clamp(20px, 3vw, 28px);
}

.media-month-panel h2,
.media-year-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.media-input-panel,
.media-output-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 16, 15, 0.84);
  box-shadow: var(--shadow);
}

.media-input-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.media-input-panel .section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.media-input-panel label,
.media-channel-inputs label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.media-input-panel input,
.media-channel-inputs input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0b0b;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
}

.media-input-panel input:focus,
.media-channel-inputs input:focus {
  outline: 2px solid rgba(255, 44, 44, 0.45);
  outline-offset: 2px;
}

.media-channel-inputs {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.media-output-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.media-output-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.media-output-head p:not(.eyebrow) {
  max-width: 690px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.media-metrics article {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0b0b;
}

.media-metrics span,
.media-channel-head span,
.media-next-step strong {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-metrics strong {
  align-self: end;
  font-size: clamp(1.18rem, 2.2vw, 1.85rem);
  line-height: 1;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  font-variant-numeric: tabular-nums;
}

.media-metrics strong.is-long-value {
  font-size: clamp(1rem, 1.65vw, 1.32rem);
}

.media-metrics strong.is-extra-long-value {
  font-size: clamp(0.82rem, 1.25vw, 1rem);
}

.media-channel-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.media-channel-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.15fr) repeat(3, minmax(96px, 0.62fr));
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.media-channel-row:last-child {
  border-bottom: 0;
}

.media-channel-row > span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.media-channel-row strong {
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.media-channel-head {
  background: rgba(255, 247, 239, 0.035);
}

.media-next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(141, 240, 188, 0.24);
  border-radius: 16px;
  background: rgba(141, 240, 188, 0.07);
}

.media-next-step .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(141, 240, 188, 0.14);
  color: var(--green);
}

.media-next-step p {
  margin: 4px 0 0;
  color: var(--muted);
}

.media-workspace.is-warning .media-next-step {
  border-color: rgba(255, 80, 80, 0.36);
  background: rgba(255, 44, 44, 0.08);
}

.media-workspace.is-warning .media-next-step .material-symbols-rounded {
  background: rgba(255, 44, 44, 0.14);
  color: var(--brand-2);
}

.media-workspace.is-ready .media-output-head h2 {
  color: var(--green);
}

.media-year-panel {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
}

@media (max-width: 980px) {
  .media-hero,
  .media-workspace,
  .media-month-panel {
    grid-template-columns: 1fr;
  }

  .media-hero {
    min-height: auto;
  }

  .media-summary-card {
    max-width: 520px;
  }

}

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

  .media-channel-table {
    overflow-x: auto;
  }

  .media-channel-row {
    min-width: 640px;
  }
}

@media print {
  .media-hero,
  .media-input-panel,
  .media-output-actions,
  .media-output-panel .dre-output-actions,
  .media-month-panel .dre-months {
    display: none !important;
  }

  .media-workspace {
    display: block !important;
    padding: 0 !important;
  }

  .media-month-panel,
  .media-output-panel,
  .media-year-panel,
  .media-metrics article,
  .media-channel-table,
  .media-next-step {
    box-shadow: none !important;
    background: #fff !important;
    color: #111 !important;
    border-color: #ddd !important;
    break-inside: avoid;
  }

  .media-output-head h2,
  .media-output-head p,
  .media-metrics span,
  .media-metrics strong,
  .media-channel-row span,
  .media-channel-row strong,
  .media-next-step strong,
  .media-next-step p {
    color: #111 !important;
  }
}

/* Plans page */
.plans-hero {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding-top: clamp(58px, 7vw, 82px);
  padding-bottom: clamp(50px, 6vw, 68px);
  text-align: center;
}

.plans-hero h1 {
  margin: 0 auto;
  max-width: 920px;
  font-size: clamp(3.3rem, 9vw, 5.5rem);
  line-height: 0.92;
}

.plans-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.plans-hero-path {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.plans-hero-path span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #11100f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plans-hero-path i {
  align-self: center;
  color: var(--brand-2);
  font-style: normal;
}

.detailed-plans {
  display: grid;
  gap: 22px;
}

.detailed-plan {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
}

.detailed-plan-featured {
  border-color: var(--brand);
  background: #181010;
}

.detailed-plan > header,
.detailed-plan > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(20px, 4vw, 30px);
}

.detailed-plan > header {
  border-bottom: 1px solid var(--line);
}

.detailed-plan > header div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.detailed-plan > header div > span {
  color: var(--brand-2);
  font-size: 1.55rem;
  font-weight: 900;
}

.detailed-plan > header small {
  color: var(--quiet);
  font-weight: 900;
  text-transform: uppercase;
}

.detailed-plan > header strong {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
}

.detailed-plan-body {
  display: grid;
  gap: 0;
}

.detailed-plan-body > div {
  padding: clamp(24px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}

.detailed-plan-body h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.detailed-plan-body h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  text-transform: uppercase;
}

.detailed-plan-body p {
  margin: 0;
  color: var(--muted);
}

.plan-delivery ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-delivery li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.plan-delivery li::before {
  position: absolute;
  left: 0;
  color: var(--brand-2);
  content: "?";
}

.plan-indicators {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 8px;
}

.plan-indicators h3 {
  flex-basis: 100%;
}

.plan-indicators span,
.plan-indicators small {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-indicators small {
  border-color: rgba(141, 240, 188, 0.34);
  color: var(--green);
}

.detailed-plan > footer p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.detailed-plan > footer .button {
  flex: 0 0 auto;
}

.section-pad.plan-choice-guide {
  display: grid;
  gap: 34px;
  margin-bottom: var(--section-y);
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
}

.plan-choice-guide h2 {
  margin: 12px 0 0;
}

.choice-guide-list {
  display: grid;
  gap: 0;
}

.choice-guide-list p {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.choice-guide-list strong {
  color: var(--brand-2);
}

@media (min-width: 1080px) {
  .detailed-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
  }

  .detailed-plan {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .detailed-plan > header {
    min-height: 112px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .detailed-plan > header div {
    flex-wrap: wrap;
  }

  .detailed-plan > header strong {
    font-size: 2rem;
  }

  .detailed-plan .detailed-plan-body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .detailed-plan-body > div {
    min-width: 0;
    padding: 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detailed-plan-body > div:last-child {
    border-bottom: 0;
  }

  .detailed-plan-body h2 {
    min-height: 2.24em;
    font-size: 2rem;
  }

  .detailed-plan > footer {
    min-height: 188px;
    align-items: stretch;
    flex-direction: column;
  }

  .detailed-plan > footer p {
    flex: 1;
  }

  .detailed-plan > footer .button {
    width: 100%;
  }
}

/* Checkout beta */
.checkout-header .header-shell {
  grid-template-columns: 1fr auto;
}

.checkout-back {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-main {
  min-height: calc(100svh - 160px);
}

.checkout-heading {
  display: grid;
  gap: 12px;
  padding-top: clamp(50px, 7vw, 78px);
  padding-bottom: 12px;
}

.checkout-heading h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.checkout-heading ol {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.checkout-heading li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--quiet);
  font-size: 0.82rem;
}

.checkout-heading li span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.checkout-heading li.is-current {
  color: var(--ink);
}

.checkout-heading li.is-current span {
  border-color: var(--brand);
  background: var(--brand);
}

.checkout-layout {
  display: grid;
  align-items: start;
  gap: 22px;
  padding-top: 0;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-block,
.order-summary {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
}

.checkout-block {
  min-width: 0;
  margin: 0;
}

.checkout-block legend {
  float: left;
  width: 100%;
  margin: 0 0 22px;
  padding: 0;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.2;
}

.checkout-block legend span {
  margin-right: 10px;
  color: var(--brand-2);
  font-size: 0.78rem;
}

.checkout-block > legend ~ * {
  clear: both;
}

.plan-selector {
  display: grid;
  gap: 10px;
}

.plan-selector label {
  cursor: pointer;
}

.plan-selector input {
  position: absolute;
  opacity: 0;
}

.plan-selector label > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0b0b;
}

.plan-selector input:checked + span {
  border-color: var(--brand);
  background: #1d1111;
}

.plan-selector b,
.plan-selector small {
  grid-column: 1;
}

.plan-selector small {
  color: var(--quiet);
}

.plan-selector strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.checkout-fields,
.payment-panel {
  display: grid;
  gap: 14px;
}

.checkout-fields label,
.checkout-field,
.payment-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-field > label {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-fields input,
.payment-panel input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: #0c0b0b;
  color: var(--ink);
  font: inherit;
}

.checkout-fields input:focus,
.payment-panel input:focus {
  border-color: var(--brand);
}

.checkout-fields label > small {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 700;
}

.checkout-phone {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0b0b;
}

.checkout-phone i {
  padding: 0 12px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
}

.checkout-phone input {
  border: 0;
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.payment-tabs button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0b0b;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.payment-tabs button.is-active {
  border-color: var(--brand);
  color: var(--ink);
}

.payment-panel > div:not(.pix-preview) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-panel[hidden] {
  display: none;
}

.pix-preview {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0b0b;
}

.pix-preview > span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 900;
}

.nupay-preview > span {
  border-color: #8a5cff;
  color: #b9a2ff;
  font-size: 1.8rem;
}

.pix-preview p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.order-summary {
  display: grid;
  gap: 20px;
}

.summary-product {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.summary-product > span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 6px;
  background: var(--brand);
  font-weight: 900;
}

.summary-product small {
  display: block;
  color: var(--quiet);
}

.order-summary ul {
  display: grid;
  gap: 9px;
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.order-summary li {
  color: var(--muted);
  font-size: 0.88rem;
}

.order-summary li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary-total strong {
  font-size: 1.55rem;
}

.checkout-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
}

.checkout-submit {
  width: 100%;
}

.checkout-safe,
.beta-checkout-note {
  margin: 0;
  text-align: center;
  color: var(--quiet);
  font-size: 0.78rem;
}

.checkout-safe span {
  color: var(--green);
}

.beta-checkout-note {
  padding: 12px;
  border: 1px solid rgba(141, 240, 188, 0.26);
  border-radius: 6px;
  color: var(--green);
}

.beta-checkout-note a {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-footer {
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  justify-content: space-between;
  gap: 18px;
  margin: 30px auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.78rem;
}

.checkout-footer div {
  display: flex;
  gap: 16px;
}

@media (min-width: 760px) {
  .detailed-plan-body {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .detailed-plan-body > div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .detailed-plan-body > div:last-child {
    border-right: 0;
  }

  .plan-choice-guide {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  }

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

@media (min-width: 980px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .order-summary {
    position: sticky;
    top: 100px;
  }
}

/* Commerce catalog, order bumps and administrative editors */
.checkout-order-bumps > p {
  margin: -4px 0 18px;
  color: var(--quiet);
  font-size: 0.86rem;
}

.order-bump-bundle[hidden] {
  display: none;
}

.order-bump-bundle {
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  padding: 16px;
  border: 1px solid rgba(141, 240, 188, 0.46);
  border-radius: 8px;
  background: rgba(141, 240, 188, 0.075);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.order-bump-bundle:hover {
  border-color: var(--green);
  background: rgba(141, 240, 188, 0.12);
  transform: translateY(-1px);
}

.order-bump-bundle:focus-visible {
  outline: 3px solid rgba(141, 240, 188, 0.34);
  outline-offset: 3px;
}

.order-bump-bundle.is-selected {
  border-color: var(--green);
  background: rgba(141, 240, 188, 0.13);
}

.order-bump-bundle-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 7px;
  background: var(--green);
  color: #08130d;
}

.order-bump-bundle-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.order-bump-bundle-copy strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.order-bump-bundle-copy strong b,
.order-bump-bundle-copy small b {
  white-space: nowrap;
}

.order-bump-bundle-copy small {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.order-bump-bundle-action {
  color: var(--green);
  font-size: 1.6rem;
}

.order-bumps {
  display: grid;
  gap: 10px;
}

.order-bump-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0b0b;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.order-bump-card:hover,
.order-bump-card:has(input:checked) {
  border-color: rgba(255, 44, 44, 0.64);
  background: #181010;
}

.order-bump-card:hover {
  transform: translateY(-1px);
}

.order-bump-card > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.order-bump-check {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
}

.order-bump-card:has(input:checked) .order-bump-check {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.order-bump-card:has(input:checked) .order-bump-check span {
  transform: rotate(45deg);
}

.order-bump-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.order-bump-copy strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.order-bump-copy small {
  color: var(--quiet);
  line-height: 1.35;
}

.order-bump-copy em {
  color: var(--green);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.order-bump-card > b {
  color: var(--ink);
  white-space: nowrap;
}

.order-bumps-empty {
  color: var(--quiet);
}

.summary-line,
.summary-addons li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.summary-line {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.summary-addons {
  display: grid;
  gap: 9px;
  padding: 13px 0 0;
  margin: 0;
  border-top: 0 !important;
  list-style: none;
}

.summary-addons[hidden] {
  display: none;
}

.summary-addons li strong,
.summary-line strong {
  color: var(--ink);
}

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

.admin-catalog-card {
  display: grid;
  min-width: 0;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0a0a;
}

.admin-catalog-card.is-addon {
  border-color: rgba(141, 240, 188, 0.18);
}

.admin-catalog-card > header {
  display: flex;
  align-items: center;
  gap: 11px;
}

.admin-catalog-card > header > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 44, 44, 0.12);
  color: var(--brand-2);
}

.admin-catalog-card.is-addon > header > span {
  background: rgba(141, 240, 188, 0.08);
  color: var(--green);
}

.admin-catalog-card header small,
.admin-catalog-card header strong {
  display: block;
}

.admin-catalog-card header small {
  color: var(--quiet);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-catalog-card header strong {
  color: var(--ink);
}

.admin-catalog-card > label,
.admin-editor-fields > label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.admin-catalog-card input,
.admin-catalog-card textarea,
.admin-catalog-card select,
.admin-editor-fields input,
.admin-editor-fields select,
.admin-editor-fields textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: #080808;
  color: var(--ink);
  font: inherit;
}

.admin-catalog-card textarea,
.admin-editor-fields textarea {
  min-height: 76px;
  resize: vertical;
}

.admin-catalog-card input:focus,
.admin-catalog-card textarea:focus,
.admin-catalog-card select:focus,
.admin-editor-fields input:focus,
.admin-editor-fields select:focus,
.admin-editor-fields textarea:focus {
  border-color: var(--brand);
}

.admin-manual-purchase-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  max-width: none;
  padding: clamp(18px, 2.5vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.035), rgba(255, 247, 239, 0.012)),
    #090909;
}

.admin-addon-fieldset {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-addon-fieldset legend {
  padding: 0 7px;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-addon-fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 239, 0.025);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-addon-fieldset input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--brand);
}

.admin-manual-purchase-form .admin-catalog-feedback,
.admin-manual-purchase-form .admin-catalog-card-footer {
  grid-column: 1 / -1;
}

.admin-price-control {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
}

.admin-price-control button {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #191716;
  color: var(--ink);
  cursor: pointer;
}

.admin-price-control button:first-child {
  border-radius: 6px 0 0 6px;
}

.admin-price-control button:last-child {
  border-radius: 0 6px 6px 0;
}

.admin-price-control > div {
  position: relative;
}

.admin-price-control > div i {
  position: absolute;
  top: 50%;
  left: 10px;
  color: var(--quiet);
  font-size: 0.75rem;
  font-style: normal;
  transform: translateY(-50%);
}

.admin-price-control input {
  padding-left: 34px;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.admin-catalog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-catalog-feedback {
  min-height: 18px;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-catalog-feedback[data-state="loading"] {
  color: var(--muted);
}

.admin-catalog-feedback[data-state="success"] {
  color: var(--green);
}

.admin-catalog-feedback[data-state="error"] {
  color: #ff9a9a;
}

.admin-catalog-card-footer .button {
  min-height: 40px;
  padding: 0 13px;
}

.admin-switch {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.admin-switch input {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  padding: 0;
  margin: 0;
  opacity: 0;
}

.admin-switch > span {
  position: relative;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #34302e;
}

.admin-switch > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform 160ms ease;
}

.admin-switch input:checked + span {
  background: var(--brand);
}

.admin-switch input:checked + span::after {
  transform: translateX(16px);
}

.admin-switch b {
  color: var(--muted);
  font-size: 0.74rem;
}

.admin-edit-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #181716;
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.admin-edit-button .material-symbols-rounded {
  font-size: 17px;
}

.admin-edit-button.is-danger {
  border-color: rgba(255, 106, 90, 0.32);
  color: #ff8a7a;
}

.admin-edit-button[disabled] {
  cursor: progress;
  opacity: 0.55;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.plan-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Landing de produto (B1, B2, B3) */
.product-hero {
  display: grid;
  align-items: center;
  gap: clamp(38px, 7vw, 78px);
  min-height: clamp(520px, calc(100svh - 180px), 680px);
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
}

.product-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.product-hero-lead {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.6;
}

.product-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 26px 0 18px;
}

.product-price {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.product-price-block small {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.product-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-assurances li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.product-assurances li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  content: "•";
}

.product-uvp {
  max-width: 44ch;
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.product-uvp strong {
  color: var(--brand);
}

.price-anchor {
  max-width: 48ch;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.price-anchor strong {
  color: var(--ink);
}

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  text-align: center;
}

.section-cta.is-standalone {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

.section-cta small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

/* Comparação de valor */
.value-compare {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.value-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.value-card h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.value-card ul {
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.value-card li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
}

.value-card li span {
  color: var(--ink-soft);
}

.value-card li b {
  white-space: nowrap;
  font-weight: 800;
}

.value-card.is-cost {
  border-color: rgba(255, 138, 122, 0.24);
}

.value-card.is-cost li b {
  color: #ff8a7a;
}

.value-card.is-offer {
  border-color: rgba(125, 219, 160, 0.3);
  background: #121110;
}

.value-card.is-offer li b {
  color: #7ddba0;
}

.value-card footer {
  margin-top: 18px;
}

.value-card.is-cost footer small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.value-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.value-total strong {
  font-size: 1.7rem;
  font-weight: 900;
}

.value-card.is-offer .button {
  width: 100%;
  justify-content: center;
}

/* Barra fixa de compra: só no mobile, onde o CTA do topo já saiu da tela */
.sticky-buy {
  position: fixed;
  z-index: 40;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 11, 10, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.sticky-buy small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.sticky-buy strong {
  font-size: 1.1rem;
  font-weight: 900;
}

.sticky-buy .button {
  padding: 10px 20px;
}

@media (max-width: 860px) {
  .sticky-buy {
    display: flex;
  }

  body[data-page="sales"] .site-footer {
    padding-bottom: 90px;
  }
}

.delivery-grid {
  display: grid;
  align-items: stretch;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.delivery-grid article {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #121110;
}

.delivery-grid p {
  flex: 1;
}

.delivery-grid h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.delivery-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.delivery-note {
  max-width: 70ch;
  margin: 22px auto 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-fit {
  display: grid;
  align-items: stretch;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.fit-column {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.fit-column.is-yes {
  border-color: rgba(125, 219, 160, 0.28);
}

.fit-column.is-no {
  border-color: rgba(255, 138, 122, 0.22);
}

.fit-column h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.fit-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-column li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.fit-column.is-yes li::before {
  position: absolute;
  left: 0;
  color: #7ddba0;
  content: "✓";
}

.fit-column.is-no li::before {
  position: absolute;
  left: 0;
  color: #ff8a7a;
  content: "×";
}

.product-upgrade {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.product-upgrade p {
  max-width: 58ch;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .product-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
}

.admin-metrics-compact {
  margin-bottom: 18px;
}

.admin-usage-split {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.admin-subheading {
  margin: 18px 0 10px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.summary-tax-note {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.5;
}

.admin-tax-form .admin-editor-lock {
  margin: 0 0 4px;
}

.admin-upload {
  display: grid;
  gap: 8px;
  margin: -4px 0 12px;
}

.admin-upload-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.admin-upload-button:hover {
  border-style: solid;
  color: var(--ink);
}

.admin-upload-button input[type="file"] {
  display: none;
}

.admin-upload small[data-state="error"] {
  color: #ff8a7a;
}

.admin-upload small[data-state="success"] {
  color: #7ddba0;
}

.admin-upload small {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.admin-upload img[data-upload-preview] {
  width: min(100%, 200px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-card-cover,
.blog-article-cover {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.admin-catalog-advanced {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 10px;
}

.admin-catalog-advanced > summary {
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-catalog-advanced[open] > summary {
  margin-bottom: 10px;
}

.admin-catalog-advanced > label {
  margin-bottom: 8px;
}

.admin-badge.is-warning {
  border-color: rgba(255, 188, 90, 0.25);
  background: rgba(255, 188, 90, 0.08);
  color: #ffc675;
}

.admin-editor {
  width: min(680px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 28px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
  color: var(--ink);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.64);
}

.admin-editor::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(5px);
}

.admin-editor > form {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.admin-editor form > header,
.admin-editor form > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-editor h2 {
  margin: 5px 0 0;
  font-size: 2rem;
}

.admin-editor header > button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #191716;
  color: var(--ink);
  cursor: pointer;
}

.admin-editor-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-editor-wide,
.admin-editor-lock {
  grid-column: 1 / -1;
}

.admin-check {
  display: flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.admin-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--brand);
}

.admin-editor-lock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--quiet);
  font-size: 0.78rem;
}

.admin-editor-purchases {
  display: grid;
  gap: 6px;
  padding: 13px 14px;
  border: 1px solid rgba(141, 240, 188, 0.22);
  border-radius: 6px;
  background: rgba(141, 240, 188, 0.06);
}

.admin-editor-purchases span {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-editor-purchases strong {
  color: var(--ink);
  font-size: 0.9rem;
}

@media (min-width: 1180px) {
  .admin-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .admin-catalog-grid,
  .admin-editor-fields {
    grid-template-columns: 1fr;
  }

  .admin-editor-wide,
  .admin-editor-lock {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .order-bump-bundle {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    padding: 14px;
  }

  .order-bump-bundle-action {
    display: none;
  }

  .order-bump-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .order-bump-card > b {
    grid-column: 2;
  }

  .admin-catalog-card-footer,
  .admin-editor form > footer {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-catalog-card-footer .button,
  .admin-editor form > footer .button {
    width: 100%;
  }
}

@media (max-width: 719px) {
  .detailed-plan > header,
  .detailed-plan > footer {
    align-items: stretch;
    flex-direction: column;
  }

  .detailed-plan > footer .button {
    width: 100%;
  }

  .checkout-back span {
    display: none;
  }

  .checkout-heading ol {
    justify-content: space-between;
  }

  .checkout-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.contact-section {
  align-items: start;
  padding-bottom: clamp(70px, 9vw, 108px);
}

.contact-copy {
  display: grid;
  gap: var(--gap-sm);
}

.contact-copy img {
  width: min(150px, 45vw);
  height: 34px;
  margin-bottom: 12px;
  object-fit: cover;
  object-position: center;
}

.contact-copy > p:last-child {
  max-width: 560px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(255, 44, 44, 0.28);
  border-radius: var(--radius-md);
  background: #151313;
  box-shadow: var(--shadow);
}

.contact-form > label:not(.contact-consent) {
  display: grid;
  gap: 7px;
}

.contact-form > label > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 239, 0.15);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 247, 239, 0.055);
  color: var(--ink);
  font: inherit;
}

.contact-form .phone-field {
  display: grid;
  min-height: 50px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 239, 0.15);
  border-radius: 8px;
  background: rgba(255, 247, 239, 0.055);
}

.contact-form .phone-field > span {
  display: grid;
  min-height: 50px;
  place-items: center;
  padding: 0 12px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form .phone-field input[type="tel"] {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form .phone-field:focus-within {
  border-color: rgba(255, 44, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 44, 44, 0.12);
}

.contact-form input:focus {
  border-color: rgba(255, 44, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 44, 44, 0.12);
}

.contact-form .phone-field input[type="tel"]:focus {
  border: 0;
  box-shadow: none;
}

.contact-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.contact-consent span,
.contact-form > small {
  color: var(--quiet);
  font-size: 0.78rem;
  line-height: 1.4;
}

.contact-form .button {
  width: 100%;
  min-height: 50px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.page-main {
  min-height: calc(100svh - 90px);
}

.page-hero {
  display: grid;
  gap: 18px;
  padding-top: clamp(64px, 9vw, 104px);
  padding-bottom: clamp(42px, 6vw, 68px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.75rem, 8vw, 5.2rem);
}

.page-hero > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.2vw, 1.24rem);
  line-height: 1.55;
}

.page-updated {
  color: var(--quiet) !important;
  font-size: 0.84rem !important;
}

.policy-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.service-page-grid {
  display: grid;
  gap: 0;
}

.service-page-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(24px, 5vw, 42px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.service-page-item > span { color: var(--brand-2); font-weight: 900; }
.service-page-item div { display: grid; gap: 12px; }
.service-page-item h2 { font-size: clamp(1.65rem, 4vw, 2.7rem); }
.service-page-item p { max-width: 720px; color: var(--muted); font-size: 1rem; line-height: 1.65; }

.policy-nav {
  display: grid;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.policy-nav strong {
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-nav ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.policy-nav a {
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-nav a:hover {
  color: var(--ink);
}

.policy-content {
  display: grid;
  gap: 0;
}

.policy-section {
  display: grid;
  gap: 12px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.policy-section + .policy-section {
  padding-top: 30px;
}

.policy-section h2 {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.1;
}

.policy-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.policy-section .button {
  margin-top: 8px;
}

.cookie-control-panel {
  display: grid;
  gap: 0;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 247, 239, 0.045);
}

.cookie-control-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 4vw, 28px);
}

.cookie-control-row + .cookie-control-row {
  border-top: 1px solid var(--line);
}

.cookie-control-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.cookie-control-copy strong {
  font-size: 1.1rem;
}

.cookie-control-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-always-on {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  cursor: pointer;
}

.cookie-toggle input {
  width: 46px;
  height: 26px;
  margin: 0;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.12);
  cursor: pointer;
  transition: background 160ms ease;
}

.cookie-toggle input::before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transition: transform 160ms ease;
}

.cookie-toggle input:checked {
  background: var(--brand);
}

.cookie-toggle input:checked::before {
  transform: translateX(20px);
}

.cookie-toggle input:focus-visible {
  outline: 3px solid rgba(255, 44, 44, 0.44);
  outline-offset: 3px;
}

.cookie-control-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: clamp(20px, 4vw, 28px);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.14);
}

.preference-status {
  color: var(--green);
  font-size: 0.88rem;
}

.error-page {
  display: grid;
  min-height: calc(100svh - 94px);
  align-content: center;
  gap: 20px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.error-code {
  color: var(--brand);
  font-size: clamp(5.8rem, 24vw, 13rem);
  font-weight: 900;
  line-height: 0.72;
}

.error-page h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.error-page > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080808;
}

.footer-main {
  display: grid;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 80px)));
  gap: var(--gap-lg);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 62px) 0;
}

.footer-brand img {
  width: 138px;
  height: 31px;
  object-fit: cover;
  object-position: center;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-section h2 {
  margin-bottom: 14px;
  color: var(--brand-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-section ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-section a {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.footer-section a:hover,
.footer-bottom a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 80px)));
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-bottom a {
  color: var(--muted);
}

.footer-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.footer-bottom-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.footer-bottom-actions button:hover {
  color: var(--ink);
}

.footer-bottom-actions button:focus-visible {
  outline: 2px solid rgba(255, 44, 44, 0.52);
  outline-offset: 4px;
}

.back-to-top {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 44, 44, 0.42);
  border-radius: 50%;
  background: #151313;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.back-to-top:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 44, 44, 0.5);
  outline-offset: 3px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 100;
  display: grid;
  width: min(760px, calc(100% - 24px));
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 247, 239, 0.16);
  border-radius: 14px;
  background: #171515;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  transform: translateX(-50%);
}

.cookie-copy {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 12px;
}

.cookie-copy > span {
  width: 8px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand);
}

.cookie-copy div {
  display: grid;
  gap: 6px;
}

.cookie-copy h2 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.cookie-copy p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-actions {
  display: grid;
  gap: 8px;
}

.cookie-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-button-primary {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--brand);
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

.cookie-button-primary:hover {
  background: #ff4747;
}

.cookie-button-secondary {
  border-color: var(--line);
  background: rgba(255, 247, 239, 0.05);
  color: var(--ink);
}

.cookie-button-secondary:hover {
  border-color: rgba(255, 247, 239, 0.26);
  background: rgba(255, 247, 239, 0.09);
}

.cookie-button:focus-visible {
  outline: 3px solid rgba(255, 44, 44, 0.42);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 560ms ease var(--reveal-delay, 0ms),
      transform 560ms ease var(--reveal-delay, 0ms);
  }

  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card,
  .case-card,
  .testimonial-card,
  .method-list article {
    transition: border-color 180ms ease, transform 180ms ease;
  }

  .service-card:hover,
  .case-card:hover,
  .testimonial-card:hover,
  .method-list article:hover {
    border-color: rgba(255, 44, 44, 0.32);
    transform: translateY(-4px);
  }

  .hero-visual.is-visible .chart-bars span {
    animation: chart-rise 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: calc(var(--bar-index, 0) * 70ms + 180ms);
    transform-origin: bottom;
  }
}

@keyframes chart-rise {
  from {
    opacity: 0.2;
    transform: scaleY(0.08);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

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

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

@media (max-width: 479px) {
  .range-control {
    grid-template-columns: 1fr;
  }

  .range-control output {
    text-align: left;
  }

  .growth-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .growth-summary > div + div {
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .tier-heading {
    display: grid;
  }

  .tier-heading small {
    justify-items: start;
    text-align: left;
  }

  .timeline li > div {
    grid-template-columns: 1fr;
  }

  .timeline small {
    text-align: left;
  }
}

@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
    width: auto;
  }

  .button {
    width: fit-content;
  }

  .error-actions {
    flex-direction: row;
  }

  .hero-visual {
    justify-self: start;
  }

  .service-grid,
  .case-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .data-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .world-map-stage {
    min-height: 380px;
  }

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

  .market-list article + article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .insights-lead {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .insights-lead span,
  .insights-lead strong {
    grid-column: 1;
  }

  .insights-lead small {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    text-align: right;
  }

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

  .insights-grid div {
    border-left: 1px solid var(--line);
  }

  .insights-grid div:nth-child(4n + 1) {
    border-left: 0;
  }

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

  .tier-metrics div:nth-child(n + 3) {
    border-top: 0;
  }

  .tier-metrics div + div {
    border-left: 1px solid var(--line);
  }

  .data-stats div {
    padding: 22px 20px;
    border-top: 0;
  }

  .data-stats div + div {
    border-left: 1px solid var(--line);
  }

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

  .report-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .report-download {
    width: auto;
  }

  .footer-main {
    grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(130px, 0.55fr));
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 18px 20px;
  }

  .cookie-actions {
    display: flex;
    flex-direction: row;
  }
}

@media (min-width: 980px) {
  .section-pad {
    padding: var(--section-y) 0;
  }

  .policy-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(48px, 7vw, 84px);
  }

  .policy-nav {
    position: sticky;
    top: 112px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .policy-nav ol {
    grid-template-columns: 1fr;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    padding: 8px 10px 8px 18px;
  }

  .brand {
    grid-column: 1;
  }

  .site-nav {
    grid-column: 2;
  }

  .header-actions {
    grid-column: 3;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    min-height: 40px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
    transition: background 160ms ease, color 160ms ease;
  }

  .site-nav a::after {
    content: none;
  }

  .site-nav a:hover {
    background: rgba(255, 247, 239, 0.07);
    color: var(--ink);
  }

  .language-switcher-mobile {
    display: none;
  }

  .language-switcher-desktop {
    display: inline-flex;
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--brand);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 900;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
  }

  .hero {
    min-height: clamp(620px, calc(100svh - 92px), 760px);
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 420px);
    gap: clamp(44px, 6vw, 72px);
    padding-top: clamp(56px, 7vw, 82px);
    padding-bottom: clamp(46px, 6vw, 76px);
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-actions {
    margin-top: 4px;
  }

  .hero-visual {
    justify-self: end;
  }

  .split-section {
    grid-template-columns: minmax(270px, 0.74fr) minmax(0, 1.26fr);
    align-items: start;
    gap: clamp(38px, 5vw, 58px);
  }

  .diagnostic-section {
    padding-top: clamp(60px, 7vw, 86px);
  }

  .diagnostic-shell {
    grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .diagnostic-form,
  .diagnostic-result {
    padding: clamp(28px, 3vw, 36px);
  }

  .diagnostic-form {
    border-right: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap-md);
  }

  .service-card.featured {
    grid-row: span 2;
    align-content: end;
    min-height: 360px;
  }

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

  .method-list article {
    min-height: 230px;
  }

  .data-panel {
    grid-template-columns: 1fr;
    padding: clamp(34px, 5vw, 52px);
  }

  .data-copy {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    align-items: end;
    gap: clamp(44px, 7vw, 88px);
  }

  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap-md);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap-md);
  }

  .contact-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
    gap: clamp(48px, 7vw, 86px);
  }
}

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

  h2 {
    font-size: 3.8rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) 430px;
  }
}

/* Sales page beta */
body[data-page="sales"] {
  background: #080808;
}

/* Product diagnostic pages */
.product-diagnostic-main {
  min-height: 70svh;
}

.product-diagnostic-hero {
  display: grid;
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.product-diagnostic-hero > div {
  display: grid;
  gap: 18px;
}

.product-diagnostic-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.1rem, 10vw, 6.2rem);
  line-height: 0.9;
}

.product-diagnostic-hero > div > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-diagnostic-hero > aside {
  display: grid;
  min-width: 210px;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(255, 44, 44, 0.42);
  border-radius: 8px;
  background: #171010;
}

.product-diagnostic-hero > aside span,
.product-diagnostic-hero > aside p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-diagnostic-hero > aside strong {
  color: var(--brand-2);
  font-size: 3rem;
  line-height: 1;
}

.diagnostic-addon-grid {
  display: grid;
  gap: 14px;
}

.diagnostic-addon-grid > label {
  min-width: 0;
}

.maturity-question-grid {
  display: grid;
  gap: 12px;
}

.maturity-question-grid label {
  min-width: 0;
}

.addon-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 239, 0.14);
  border-radius: 8px;
  background: rgba(255, 247, 239, 0.04);
}

.addon-input:focus-within {
  border-color: var(--brand);
}

.addon-input > span {
  padding: 0 12px;
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 900;
}

.diagnostic-form .addon-input input {
  border: 0;
  border-left: 1px solid rgba(255, 247, 239, 0.12);
  border-radius: 0;
}

.diagnostic-form .addon-input-suffix input {
  border-right: 1px solid rgba(255, 247, 239, 0.12);
  border-left: 0;
}

.addon-input-suffix {
  grid-template-columns: minmax(0, 1fr) auto;
}

.addon-input-suffix > span {
  white-space: nowrap;
}

.plan-indicator-strip {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.plan-indicator-strip article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0b0b;
}

.plan-indicator-strip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.plan-indicator-strip strong {
  color: var(--green);
  text-align: right;
}

.b2-executive-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 22px;
  border: 1px solid rgba(255, 44, 44, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 44, 44, 0.14), rgba(255, 247, 239, 0.035)),
    #121010;
}

.b2-executive-summary div {
  display: grid;
  gap: 8px;
}

.b2-executive-summary span,
.b2-score-grid span,
.b2-channel-matrix-head span,
.b2-channel-matrix small {
  color: #ff9d9d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.b2-executive-summary h4 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1;
}

.b2-executive-summary p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.b2-executive-summary > strong {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(132, 255, 184, 0.32);
  border-radius: 999px;
  background: rgba(132, 255, 184, 0.1);
  color: var(--green);
  font-size: 0.92rem;
  text-align: center;
  white-space: nowrap;
}

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

.b2-score-grid article {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0b0b;
}

.b2-score-grid strong {
  color: var(--ink);
  font-size: clamp(1.12rem, 3vw, 1.5rem);
  line-height: 1.05;
}

.b2-score-grid small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.b2-channel-matrix {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0c0b0b;
}

.b2-channel-matrix-head,
.b2-channel-matrix article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.b2-channel-matrix article:last-child {
  border-bottom: 0;
}

.b2-channel-matrix-head strong,
.b2-channel-matrix article strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.b2-channel-matrix article div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.b2-channel-matrix article > span {
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
}

.b3-scale-summary {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(132, 255, 184, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(132, 255, 184, 0.12), transparent 16rem),
    linear-gradient(135deg, rgba(255, 44, 44, 0.08), rgba(255, 247, 239, 0.025)),
    #101211;
}

.b3-scale-summary div {
  display: grid;
  gap: 8px;
}

.b3-scale-summary span,
.b3-stack-grid span,
.b3-economy-grid span,
.b3-risk-board span {
  color: #9ff7c8;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.b3-scale-summary h4 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  line-height: 0.98;
}

.b3-scale-summary p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.b3-scale-summary > strong {
  justify-self: start;
  padding: 9px 14px;
  border: 1px solid rgba(132, 255, 184, 0.34);
  border-radius: 999px;
  background: rgba(132, 255, 184, 0.1);
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.b3-stack-grid article,
.b3-economy-grid article,
.b3-risk-board article {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0b0b;
}

.b3-stack-grid article {
  border-color: rgba(255, 44, 44, 0.2);
  background: linear-gradient(135deg, rgba(255, 44, 44, 0.075), rgba(255, 247, 239, 0.018));
}

.b3-stack-grid strong,
.b3-economy-grid strong,
.b3-risk-board strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 3vw, 1.45rem);
  line-height: 1.05;
}

.b3-stack-grid small,
.b3-economy-grid small,
.b3-risk-board p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

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

.b3-risk-board article {
  border-color: rgba(255, 44, 44, 0.22);
  background: linear-gradient(135deg, rgba(255, 44, 44, 0.06), rgba(255, 247, 239, 0.02));
}

.b1-readiness {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 44, 44, 0.3);
  border-radius: 12px;
  background: rgba(255, 44, 44, 0.075);
}

.b1-readiness-score {
  display: flex;
  min-width: 86px;
  align-items: baseline;
  color: var(--cream);
}

.b1-readiness-score span {
  font-size: clamp(2.35rem, 6vw, 3.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.b1-readiness-score small {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
}

.b1-readiness-copy {
  display: grid;
  gap: 4px;
}

.b1-readiness-copy > span,
.b1-indicator-heading span,
.b1-recommendation > span,
.b1-recommendation small {
  color: #ff9d9d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.b1-readiness-copy strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.b1-readiness-copy p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.b1-readiness-track {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.1);
}

.b1-readiness-track i {
  display: block;
  width: var(--readiness, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  transition: width 260ms ease;
}

.b1-indicator-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 4px;
}

.b1-indicator-heading > div {
  display: grid;
  gap: 4px;
}

.b1-indicator-heading strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.b1-indicator-heading > small {
  color: var(--quiet);
  font-size: 0.74rem;
  font-weight: 900;
}

.b1-indicator-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.b1-indicator-panel article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.b1-indicator-panel article:first-child {
  border-top: 0;
}

.b1-indicator-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 44, 44, 0.32);
  border-radius: 50%;
  color: #ff9d9d;
  font-size: 0.68rem;
  font-weight: 900;
}

.b1-indicator-panel article > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.b1-indicator-panel small {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.b1-indicator-panel strong {
  color: var(--green);
  font-size: 1.08rem;
  line-height: 1.15;
}

.b1-indicator-panel p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.b1-recommendation {
  display: grid;
  gap: 7px;
  padding: 20px 20px 20px 22px;
  border-left: 3px solid var(--brand);
  background: rgba(255, 247, 239, 0.035);
}

.b1-recommendation h4 {
  color: var(--cream);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  line-height: 1.05;
}

.b1-recommendation > p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.b1-recommendation > div {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.b1-recommendation > div strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Support page */
.support-hero {
  display: grid;
  gap: 18px;
  padding-top: clamp(72px, 10vw, 124px);
  padding-bottom: clamp(46px, 7vw, 76px);
}

.support-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.6rem, 12vw, 7rem);
  line-height: 0.88;
}

.support-hero > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.support-topics {
  display: grid;
  gap: 14px;
  padding-top: 0;
}

.support-topics article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
}

.support-topics article > span {
  color: var(--brand-2);
  font-size: 1.8rem;
  font-weight: 900;
}

.support-topics h2 {
  margin: 18px 0 8px;
  font-size: 1.55rem;
}

.form-beta-note {
  margin: -4px 0 0;
  color: var(--quiet);
  font-size: 0.8rem;
  line-height: 1.45;
}

.button:disabled {
  border-color: var(--line);
  background: rgba(255, 247, 239, 0.08);
  box-shadow: none;
  color: var(--quiet);
  cursor: not-allowed;
  transform: none;
}

.diagnostic-preview,
.pricing-card,
.detailed-plan,
.checkout-block,
.order-summary,
.compact-proof,
.account-product,
.support-topics article,
.policy-nav,
.cookie-control-panel,
.final-sales-cta {
  border-radius: 12px;
}

.diagnostic-pillars {
  grid-template-columns: 1fr;
}

.diagnostic-pillars .service-page-item > span {
  font-size: 1.9rem;
}

.support-topics p,
.support-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.support-contact {
  display: grid;
  align-items: start;
  gap: clamp(32px, 7vw, 80px);
}

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

.support-copy h2 {
  margin: 0;
}

.support-service-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.support-service-note strong {
  color: var(--ink);
}

.support-service-note a {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--brand-2);
  font-weight: 900;
}

.support-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(255, 44, 44, 0.3);
  border-radius: 8px;
  background: #151111;
}

.support-form label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: #0c0b0b;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--brand);
}

.support-form small {
  color: var(--quiet);
  text-align: center;
}

.support-form-row {
  display: grid;
  gap: 15px;
}

/* Account and Google access */
.account-main {
  min-height: 75svh;
}

.account-shell {
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

.account-login {
  display: grid;
  width: min(100%, 540px);
  gap: 28px;
  margin: 0 auto;
  padding: clamp(26px, 6vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
  box-shadow: var(--shadow);
}

.account-login > img {
  width: 132px;
  height: 30px;
  object-fit: cover;
  object-position: center;
}

.account-login > div {
  display: grid;
  gap: 14px;
}

.account-login h1 {
  margin: 0;
  font-size: clamp(2.7rem, 9vw, 4.5rem);
  line-height: 0.92;
}

.account-login p:last-child {
  margin: 0;
  color: var(--muted);
}

.google-login-button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.google-login-button > div,
.google-login-button iframe {
  max-width: 100%;
}

.account-product-actions .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.account-login-status {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.account-login-status[data-state="error"] {
  color: #ff8d8d;
}

.account-login-status[data-state="loading"] {
  color: var(--green);
}

.account-dashboard-status {
  padding: 12px 14px;
  margin: 0;
  border: 1px solid rgba(255, 44, 44, 0.28);
  border-radius: 8px;
  background: rgba(255, 44, 44, 0.08);
  color: #ff9b9b;
  font-size: 0.84rem;
}

.account-dashboard-status[data-state="success"] {
  border-color: rgba(141, 240, 188, 0.3);
  background: rgba(141, 240, 188, 0.08);
  color: var(--green);
}

.account-dashboard-status[hidden] {
  display: none;
}

.account-dashboard {
  display: grid;
  gap: 20px;
}

.account-dashboard[hidden],
.account-login[hidden] {
  display: none;
}

.account-welcome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.account-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.account-welcome h1 {
  margin: 5px 0 0;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.account-welcome > div {
  min-width: 0;
}

.account-welcome p:last-child {
  margin: 3px 0 0;
  color: var(--quiet);
}

.account-welcome > button {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.account-settings {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.account-settings > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #11100f;
}

.account-settings span {
  color: var(--quiet);
}

.account-settings strong {
  text-align: right;
}

.account-cart-resume {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(255, 44, 44, 0.48);
  border-radius: 12px;
  background: #171010;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.account-cart-resume[hidden] {
  display: none;
}

.account-cart-resume > .material-symbols-rounded {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 1.55rem;
}

.account-cart-copy h2 {
  margin: 8px 0;
  font-size: clamp(1.75rem, 5vw, 2.65rem);
  line-height: 1;
}

.account-cart-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.account-cart-reward[hidden] {
  display: none;
}

.account-cart-reward {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(141, 240, 188, 0.44);
  border-radius: 8px;
  background: rgba(141, 240, 188, 0.09);
}

.account-cart-reward > .material-symbols-rounded {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 7px;
  background: var(--green);
  color: #08130d;
}

.account-cart-reward > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.account-cart-reward small,
.account-cart-reward > div > span {
  color: var(--muted);
  font-size: 0.74rem;
}

.account-cart-reward small {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.account-cart-reward strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.account-cart-reward strong b {
  color: var(--green);
}

.account-cart-actions a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.66;
}

.account-cart-details {
  display: grid;
  grid-column: 1 / -1;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.account-cart-details > div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  background: #0c0b0b;
}

.account-cart-details span {
  color: var(--quiet);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-cart-details strong {
  color: var(--ink);
}

.account-cart-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.account-cart-actions > button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.account-cart-actions > button:hover {
  border-color: rgba(255, 247, 239, 0.28);
  color: var(--ink);
}

.account-products {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.account-products-list {
  display: grid;
  gap: 18px;
}

.account-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 5vw, 32px);
  border: 1px dashed rgba(255, 247, 239, 0.2);
  border-radius: 12px;
  background: rgba(255, 247, 239, 0.035);
}

.account-empty[hidden] {
  display: none;
}

.account-empty > .material-symbols-rounded {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 44, 44, 0.12);
  color: var(--brand-2);
  font-size: 1.45rem;
}

.account-empty h3,
.account-empty p {
  margin: 0;
}

.account-empty p {
  margin-top: 5px;
  color: var(--muted);
}

.account-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.account-section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 6vw, 3.6rem);
}

.account-section-heading > span {
  color: var(--quiet);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-product {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(255, 44, 44, 0.42);
  border-radius: 8px;
  background: #171010;
}

.account-product-code {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.account-product-copy {
  min-width: 0;
}

.account-product-copy > span {
  color: var(--brand-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-product-copy h3 {
  margin: 8px 0;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
}

.account-product-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.account-validity {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 16px;
  color: var(--quiet);
  font-size: 0.8rem;
}

.account-validity strong {
  color: var(--green);
}

.account-product-status {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.account-product-status > div {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  background: #0c0b0b;
}

.account-product-status span {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-product-status strong {
  color: var(--ink);
  font-size: 0.88rem;
}

/* Administrative dashboard */
.admin-main {
  min-height: 80svh;
}

body[data-page="admin"]:not(.admin-authenticated) .site-nav,
body[data-page="admin"]:not(.admin-authenticated) .nav-toggle {
  display: none;
}

body[data-page="admin"]:not(.admin-authenticated) .header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body[data-page="admin"]:not(.admin-authenticated) .brand,
body[data-page="admin"]:not(.admin-authenticated) .header-cta {
  flex: 0 0 auto;
}

body[data-page="admin"]:not(.admin-authenticated) .header-cta {
  width: auto;
  min-width: 112px;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
  align-items: center;
  width: min(calc(100% - 32px), 880px);
  gap: clamp(36px, 7vw, 72px);
  margin: clamp(64px, 10vw, 120px) auto;
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #11100f;
  box-shadow: var(--shadow);
}

.admin-login[hidden],
.admin-dashboard[hidden] {
  display: none;
}

.admin-login h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 0.95;
}

.admin-login p {
  margin: 0;
  color: var(--muted);
}

.admin-email-login {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 10px;
  min-width: 0;
  padding-left: clamp(28px, 4vw, 48px);
  border-left: 1px solid var(--line);
}

.admin-email-login label {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-email-login input {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: #0b0a0a;
  color: var(--ink);
  font: inherit;
}

.admin-email-login input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.12);
}

.admin-email-login .button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
}

.admin-reset-password {
  justify-self: center;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.admin-reset-password:hover,
.admin-reset-password:focus-visible {
  color: var(--ink);
}

.admin-login > .account-login-status {
  grid-column: 1 / -1;
  margin: -18px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0a0a;
}

@media (max-width: 720px) {
  .admin-login {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    margin: 32px auto 56px;
    padding: 28px 22px;
  }

  .admin-login h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .admin-email-login {
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .admin-login > .account-login-status {
    margin-top: -8px;
  }
}

.admin-dashboard {
  display: grid;
  gap: 28px;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

.admin-heading,
.admin-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.admin-heading h1,
.admin-panel-heading h2 {
  margin: 8px 0 0;
}

.admin-heading h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.admin-heading p:last-child,
.admin-panel-heading > p {
  margin: 5px 0 0;
  color: var(--quiet);
}

.admin-panel-heading > p {
  max-width: 460px;
}

.admin-heading-actions {
  display: flex;
  gap: 8px;
}

.admin-heading-actions button,
.admin-status-toggle,
.admin-refresh {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #151413;
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.admin-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #121110;
  color: var(--muted);
}

.admin-status[hidden] {
  display: none;
}

.admin-status[data-state="error"] {
  border-color: rgba(255, 44, 44, 0.35);
  color: #ff9a9a;
}

.admin-status[data-state="success"] {
  border-color: rgba(141, 240, 188, 0.3);
  color: var(--green);
}

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

.admin-metrics article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #11100f;
}

.admin-metrics article > div {
  min-width: 0;
}

.admin-metrics .material-symbols-rounded {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 44, 44, 0.12);
  color: var(--brand-2);
}

.admin-metrics small,
.admin-metrics strong {
  display: block;
}

.admin-metrics small {
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-metrics strong {
  margin-top: 2px;
  font-size: 1.65rem;
}

.admin-panel {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #11100f;
}

.admin-content-panel {
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(18px, 4vw, 32px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.025), rgba(255, 247, 239, 0.008)),
    #0d0c0c;
}

.admin-content-panel .admin-panel-heading {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  align-items: start;
  justify-content: start;
}

.admin-content-panel .admin-panel-heading h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  line-height: 0.98;
}

.admin-content-panel .admin-panel-heading > p {
  max-width: 390px;
  font-size: 0.96rem;
  line-height: 1.45;
}

.admin-panel-heading h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.admin-coupon-layout {
  display: grid;
  gap: 24px;
}

.admin-coupon-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.admin-coupon-form label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-coupon-form input,
.admin-coupon-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: #090909;
  color: var(--ink);
  font: inherit;
}

.admin-coupon-form input:focus,
.admin-coupon-form select:focus {
  border-color: var(--brand);
}

.admin-code-field,
.admin-input-suffix {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-code-field input,
.admin-input-suffix input {
  border-radius: 6px 0 0 6px;
}

.admin-code-field button,
.admin-input-suffix i {
  display: grid;
  min-width: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: #181716;
  color: var(--muted);
}

.admin-code-field button {
  cursor: pointer;
}

.admin-input-suffix i {
  font-style: normal;
}

.admin-coupon-form .button {
  align-self: end;
}

.admin-featured-check {
  display: flex !important;
  align-items: center;
  gap: 9px !important;
  padding: 10px 0;
}

.admin-featured-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--brand);
}

.plan-promotion {
  display: inline-flex;
  width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 9px;
  margin: 8px 0 0;
  padding: 7px 10px;
  border: 1px solid rgba(141, 240, 188, 0.26);
  border-radius: 6px;
  background: rgba(141, 240, 188, 0.08);
  color: var(--green);
  font-size: 0.76rem;
}

.plan-promotion span {
  color: var(--muted);
}

.plan-promotion b {
  color: var(--ink);
}

.plan-discounted-price {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
}

.checkout-plan-promotion {
  color: var(--green) !important;
  font-weight: 900;
}

.summary-promotion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px dashed rgba(141, 240, 188, 0.34);
  border-radius: 6px;
  background: rgba(141, 240, 188, 0.08);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.summary-promotion[hidden] {
  display: none;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

#cupoes .admin-table-wrap table {
  min-width: 960px;
}

.admin-table-wrap th,
.admin-table-wrap td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table-wrap th {
  background: #191716;
  color: var(--quiet);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.admin-table-wrap td {
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-table-wrap td strong,
.admin-table-wrap td small {
  display: block;
}

.admin-table-wrap td strong {
  color: var(--ink);
}

.admin-table-wrap td small {
  margin-top: 2px;
  color: var(--quiet);
}

.admin-table-wrap tr:last-child td {
  border-bottom: 0;
}

.admin-empty {
  margin: 0;
  padding: 24px;
  color: var(--quiet);
  text-align: center;
}

.admin-empty[hidden] {
  display: none;
}

.admin-badge,
.admin-status-toggle {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-badge.is-success,
.admin-status-toggle.is-active {
  border-color: rgba(141, 240, 188, 0.26);
  background: rgba(141, 240, 188, 0.1);
  color: var(--green);
}

.admin-badge.is-admin {
  border: 1px solid rgba(255, 80, 80, 0.34);
  background: rgba(255, 44, 44, 0.1);
  color: var(--brand-2);
}

.admin-product-list {
  display: flex;
  min-width: 150px;
  flex-wrap: wrap;
  gap: 5px;
}

.admin-product-list span {
  padding: 4px 7px;
  border: 1px solid rgba(141, 240, 188, 0.24);
  border-radius: 999px;
  background: rgba(141, 240, 188, 0.08);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
}

@media (min-width: 780px) {
  .admin-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .b2-executive-summary,
  .b2-score-grid,
  .b3-stack-grid,
  .b3-economy-grid,
  .b3-risk-board {
    grid-template-columns: 1fr;
  }

  .b2-executive-summary > strong {
    justify-self: start;
    white-space: normal;
  }

  .admin-heading,
  .admin-panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-heading-actions {
    width: 100%;
  }

  .admin-heading-actions button {
    flex: 1;
  }

  .admin-coupon-form {
    grid-template-columns: 1fr;
  }
}

.account-product-actions {
  display: grid;
  gap: 9px;
}

.account-product-actions .button {
  width: 100%;
}

.account-product-actions [hidden] {
  display: none;
}

@media (max-width: 479px) {
  .account-shell {
    padding-top: 48px;
  }

  .account-login {
    gap: 22px;
    padding: 26px;
  }

  .account-login h1 {
    font-size: 2.35rem;
  }

  .account-welcome {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .account-avatar {
    width: 52px;
    height: 52px;
  }

  .account-welcome h1 {
    font-size: 2.15rem;
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .account-welcome p:last-child,
  .account-settings strong,
  .account-product-status strong {
    overflow-wrap: anywhere;
  }

  .account-welcome > button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .account-settings > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .account-settings strong {
    text-align: left;
  }

  .account-section-heading {
    display: grid;
    align-items: start;
  }

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

  .account-empty .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .account-section-heading h2 {
    font-size: 2.15rem;
    line-height: 1;
  }

  .account-section-heading > span {
    justify-self: start;
  }

  .account-product-copy h3 {
    font-size: 1.65rem;
  }
}

@media (min-width: 760px) {
  .product-diagnostic-hero {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .b1-indicator-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b1-indicator-panel article {
    border-top: 1px solid var(--line);
  }

  .b1-indicator-panel article:nth-child(-n + 2) {
    border-top: 0;
  }

  .b1-indicator-panel article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .b1-indicator-panel article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .plan-indicator-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-indicator-strip article {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .support-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .account-settings > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-settings strong {
    text-align: left;
  }

  .account-cart-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .account-product-status,
  .account-product-actions {
    grid-column: 1 / -1;
  }

  .account-product-status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-product-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .account-product-actions .button {
    width: auto;
  }
}

@media (min-width: 980px) {
  .support-contact {
    grid-template-columns: minmax(0, 0.78fr) minmax(440px, 0.92fr);
  }
}

body[data-page="sales"] .header-shell {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.sales-hero {
  display: grid;
  align-items: center;
  gap: clamp(38px, 7vw, 78px);
  min-height: clamp(560px, calc(100svh - 150px), 720px);
  padding-top: clamp(56px, 8vw, 94px);
  padding-bottom: clamp(56px, 8vw, 86px);
}

.sales-hero-copy {
  display: grid;
  gap: 20px;
  max-width: 720px;
}

.sales-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.6rem, 13vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.sales-hero-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.36rem);
  line-height: 1.48;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 4px 0 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.9rem;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-assurances li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.diagnostic-preview {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 470px;
  justify-self: center;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(255, 247, 239, 0.18);
  border-radius: var(--radius-md);
  background: #1a1716;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
}

.diagnostic-preview-human {
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 44, 44, 0.34);
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 44, 44, 0.14), transparent 20rem),
    #141211;
}

.diagnostic-preview-human > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  opacity: 0.94;
  transform: scale(1.015);
  animation: beccarsi-persona-float 9s ease-in-out infinite;
}

.diagnostic-preview-human::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.16) 64%, rgba(8, 8, 8, 0.34) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.18));
  content: "";
}

.persona-data-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: min(72%, 230px);
  padding: 14px 16px;
  border: 1px solid rgba(255, 247, 239, 0.16);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: rgba(9, 9, 9, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.persona-data-card span {
  color: rgba(255, 247, 239, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.persona-data-card strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.persona-data-card small {
  color: rgba(255, 247, 239, 0.62);
  font-size: 0.86rem;
  font-weight: 600;
}

.persona-diagnostic-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: calc(100% - 28px);
  margin: 0 14px 14px;
  padding: 14px;
  border: 1px solid rgba(255, 247, 239, 0.18);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.diagnostic-preview::before {
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 5px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--brand);
  content: "";
}

.preview-topline,
.preview-score,
.preview-metrics > div,
.preview-action {
  border: 1px solid var(--line);
  background: #11100f;
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--muted);
}

.preview-topline strong {
  color: var(--brand-2);
}

.preview-score {
  padding: 22px;
  border-radius: 8px;
}

.preview-score > span,
.preview-metrics span,
.preview-action span {
  display: block;
  color: var(--quiet);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-score > strong {
  display: block;
  margin: 6px 0 14px;
  font-size: clamp(3.2rem, 12vw, 5.2rem);
  line-height: 0.95;
}

.preview-score > strong small {
  color: var(--quiet);
  font-size: 1rem;
}

.score-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.1);
}

.score-track i {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

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

.preview-metrics > div {
  min-height: 92px;
  padding: 15px;
  border-radius: 8px;
}

.preview-metrics strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(1.2rem, 5vw, 1.65rem);
  line-height: 1;
}

.preview-action {
  padding: 16px;
  border-radius: 8px;
  border-left: 3px solid var(--green);
}

.preview-action p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.sales-proof-strip {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 0 max(20px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #11100f;
  color: var(--muted);
  white-space: nowrap;
}

.sales-proof-strip span {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sales-proof-strip span:not(:last-child)::after {
  color: var(--brand);
  content: "+";
}

.sales-heading {
  max-width: 780px;
}

.sales-heading > p:last-child {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.benefit-grid {
  display: grid;
  gap: 12px;
  margin-top: clamp(30px, 5vw, 52px);
}

.benefit-grid article {
  min-height: 220px;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
}

.benefit-grid h3 {
  margin: 42px 0 10px;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  line-height: 1.06;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.comparison-section {
  width: 100%;
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  background: #11100f;
}

.comparison-intro {
  display: grid;
  max-width: 780px;
  gap: 14px;
}

.comparison-intro h2,
.comparison-intro p {
  margin: 0;
}

.comparison-intro > p:last-child {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.06rem;
}

.comparison-ladder {
  display: grid;
  gap: 14px;
  margin-top: clamp(34px, 6vw, 60px);
}

.comparison-level {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0b0b;
}

.comparison-level-featured {
  border-color: rgba(255, 44, 44, 0.7);
  background: #181010;
}

.comparison-level header {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.comparison-level header > span {
  color: var(--brand-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.comparison-level small {
  display: block;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-level h3 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  line-height: 1;
}

.level-plus {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  margin: -8px 0 20px auto;
  padding: 0 9px;
  border: 1px solid rgba(255, 44, 44, 0.45);
  border-radius: 999px;
  color: var(--brand-2);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.level-question {
  min-height: 72px;
  margin: 24px 0 20px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.4;
}

.comparison-level ul {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.comparison-level li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.comparison-level li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.comparison-level > a {
  margin-top: auto;
  color: var(--brand-2);
  font-weight: 900;
}

.comparison-wrap {
  margin-top: clamp(30px, 5vw, 50px);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #0d0c0c;
}

.comparison-table th,
.comparison-table td {
  height: 62px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.comparison-table th:first-child {
  width: 40%;
  text-align: left;
}

.comparison-table thead th {
  height: 82px;
  color: var(--ink);
  font-size: 1.45rem;
}

.comparison-table thead small {
  display: block;
  color: var(--quiet);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--muted);
}

.comparison-table td span:not(.not-included) {
  color: var(--green);
  font-size: 1.3rem;
}

.recommended-column {
  background: rgba(255, 44, 44, 0.09);
}

.not-included {
  color: rgba(255, 247, 239, 0.24);
}

.pricing-heading {
  margin-bottom: clamp(34px, 6vw, 58px);
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  gap: 16px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  container-type: inline-size;
  flex-direction: column;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
}

.pricing-card-featured {
  border-color: var(--brand);
  background: #1a1212;
  box-shadow: 0 26px 70px rgba(255, 44, 44, 0.14);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 7px 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--brand-2);
}

.plan-heading span {
  font-size: 1.35rem;
  font-weight: 900;
}

.plan-heading small {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 28px 0 10px;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  line-height: 1;
}

.plan-description {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
}

.plan-price {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 30px 0 0;
  font-size: clamp(2.55rem, 19cqi, 4rem);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

[data-catalog-price],
[data-bundle-price],
[data-summary-price],
[data-summary-plan-price] {
  transition: color 160ms ease, background-size 160ms ease;
}

:root:not(.catalog-ready) [data-catalog-price],
:root:not(.catalog-ready) [data-bundle-price],
:root:not(.catalog-ready) [data-summary-price],
:root:not(.catalog-ready) [data-summary-plan-price] {
  color: transparent !important;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 247, 239, 0.08), rgba(255, 247, 239, 0.18), rgba(255, 247, 239, 0.08));
  background-size: 220% 100%;
  animation: price-loading 1.2s ease-in-out infinite;
}

/* Conteúdo protegido fica oculto desde a primeira pintura e só é revelado
   depois que access-control.js resolve a verificação de acesso. Falha fechada:
   se o JS não rodar, o conteúdo não aparece. */
body[data-diagnostic-plan] main,
body[data-requires-product] main {
  visibility: hidden;
}

body[data-access-state="granted"] main,
body[data-access-state="denied"] main {
  visibility: visible;
}

.access-gate {
  display: grid;
  min-height: 68vh;
  place-items: center;
}

.access-gate-card {
  display: grid;
  width: min(640px, 100%);
  gap: 18px;
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid rgba(255, 247, 239, 0.12);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(20, 18, 18, 0.94), rgba(9, 9, 10, 0.98));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

.access-gate-card h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 4.8rem);
  line-height: 0.96;
}

.access-gate-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.55;
}

@keyframes price-loading {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.plan-price.is-long-price {
  font-size: clamp(2.3rem, 17cqi, 3.5rem);
}

.plan-price.is-extra-long-price {
  font-size: clamp(2rem, 15cqi, 3rem);
}

.plan-price small {
  margin: 6px 6px 0 0;
  font-size: 1rem;
}

.plan-price span {
  margin-top: 5px;
  font-size: 1.35rem;
}

.price-note {
  min-height: 24px;
  margin: 9px 0 24px;
  color: var(--quiet);
  font-size: 0.82rem;
}

.pricing-card ul,
.report-copy ul {
  display: grid;
  gap: 11px;
  padding: 22px 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-card li,
.report-copy li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
}

.pricing-card li::before,
.report-copy li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--brand-2);
  content: "✓";
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.plan-upgrade {
  min-height: 46px;
  margin: 0 0 18px;
  color: var(--quiet);
  font-size: 0.82rem;
  line-height: 1.4;
}

.pricing-card-featured .plan-upgrade {
  color: rgba(255, 247, 239, 0.74);
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: clamp(34px, 6vw, 62px) 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--brand-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-list h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.report-section {
  display: grid;
  align-items: center;
  gap: clamp(42px, 8vw, 90px);
}

.report-copy h2 {
  margin: 14px 0 20px;
}

.report-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.06rem;
}

.report-copy ul {
  max-width: 540px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

.report-preview {
  position: relative;
  width: min(100%, 500px);
  justify-self: center;
  min-height: 560px;
  padding: 0;
}

.report-persona {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: 50% 16%;
  border: 1px solid rgba(255, 44, 44, 0.28);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
}

.report-preview::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 22px;
  background: linear-gradient(180deg, transparent 44%, rgba(8, 8, 8, 0.54) 100%);
  content: "";
  pointer-events: none;
}

.report-data-card {
  z-index: 2;
  right: 20px;
  bottom: 20px;
}

.report-page {
  position: relative;
  z-index: 3;
  aspect-ratio: 0.72;
  padding: clamp(22px, 5vw, 38px);
  background: #f5f2ed;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  color: #171515;
}

.report-page-back {
  position: absolute;
  inset: 94px 24px 0 100px;
  z-index: 2;
  border: 1px solid rgba(255, 44, 44, 0.4);
  background: #211817;
  transform: translate(-5px, 7px);
}

.report-page header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px solid #ff2c2c;
}

.report-page header img {
  width: 104px;
  height: 24px;
  object-fit: cover;
}

.report-page header span {
  color: #ff2c2c;
  font-weight: 900;
}

.report-page > p {
  margin: 30px 0 8px;
  color: #77706c;
  font-size: 0.65rem;
  font-weight: 900;
}

.report-page h3 {
  max-width: 260px;
  margin: 0 0 30px;
  font-size: clamp(1.8rem, 6vw, 2.65rem);
  line-height: 0.98;
}

.report-company {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid #d9d4ce;
}

.report-company span {
  color: #77706c;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.report-chart {
  display: flex;
  height: 112px;
  align-items: end;
  gap: 8px;
  margin-top: 24px;
  padding: 14px;
  background: #171515;
}

.report-chart i {
  width: 25%;
  background: #ff2c2c;
}

.report-chart i:nth-child(1) { height: 38%; }
.report-chart i:nth-child(2) { height: 62%; }
.report-chart i:nth-child(3) { height: 78%; }
.report-chart i:nth-child(4) { height: 92%; }

.report-footer {
  position: absolute;
  right: clamp(22px, 5vw, 38px);
  bottom: clamp(22px, 5vw, 38px);
  left: clamp(22px, 5vw, 38px);
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #d9d4ce;
  color: #77706c;
  font-size: 0.66rem;
}

.report-footer span {
  color: #ff2c2c;
  font-weight: 900;
}

.credibility-section {
  display: grid;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.diagnostic-activity {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.activity-heading {
  display: grid;
  gap: 22px;
}

.activity-heading h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
}

.activity-heading h2 strong {
  display: block;
  color: var(--brand);
  font-size: 1.18em;
}

.activity-disclosure {
  align-self: end;
  max-width: 440px;
  padding-left: 16px;
  border-left: 3px solid var(--brand);
}

.activity-disclosure span,
.activity-states header span,
.activity-recent small {
  color: var(--brand-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-disclosure p {
  margin: 7px 0 0;
  color: var(--quiet);
  font-size: 0.85rem;
}

.activity-layout {
  display: grid;
  gap: 14px;
}

.activity-plans,
.activity-states {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100f;
}

.activity-plans article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 20px;
}

.activity-plans article + article {
  border-top: 1px solid var(--line);
}

.activity-plans article > div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.activity-plans article span,
.activity-plans article > strong {
  font-size: 1.45rem;
  font-weight: 900;
}

.activity-plans article small {
  color: var(--quiet);
  font-weight: 800;
}

.activity-plans article i {
  grid-column: 1 / -1;
  width: var(--share);
  height: 3px;
  background: var(--brand);
}

.activity-states header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.activity-states header strong {
  font-size: 1.1rem;
}

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

.state-list div {
  display: grid;
  gap: 5px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.state-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.state-list span {
  color: var(--quiet);
  font-size: 0.8rem;
}

.state-list strong {
  font-size: 1.15rem;
}

.activity-recent {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 44, 44, 0.4);
  border-radius: 8px;
  background: #171010;
}

.activity-recent > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(105, 241, 171, 0.1);
}

.activity-recent p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.activity-recent em {
  grid-column: 2;
  color: var(--quiet);
  font-size: 0.82rem;
  font-style: normal;
}

.compact-proof-wrap {
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(28px, 5vw, 56px);
}

.compact-proof {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 44, 44, 0.42);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.compact-proof > * {
  background: #11100f;
}

.compact-proof-total {
  padding: 22px;
}

.compact-proof-total > span,
.compact-proof-live span {
  display: block;
  color: var(--brand-2);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-proof-total > strong {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-size: clamp(2.7rem, 8vw, 4.3rem);
  line-height: 0.9;
}

.compact-proof-total p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.compact-proof-plans {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.compact-proof-plans div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  background: #0c0b0b;
}

.compact-proof-plans span {
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 800;
}

.compact-proof-plans strong {
  font-size: 1rem;
}

.compact-proof-live {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px;
}

.compact-proof-live i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(105, 241, 171, 0.1);
}

.compact-proof-live p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.compact-proof-live strong {
  font-size: 0.92rem;
}

.compact-proof > small {
  padding: 13px 18px;
  color: var(--quiet);
  font-size: 0.72rem;
  line-height: 1.4;
}

.compact-proof-account {
  padding-top: 0;
}

.compact-proof-diagnostic {
  padding-top: 0;
  padding-bottom: 0;
}

.credibility-lead h2 {
  max-width: 720px;
  margin: 14px 0 0;
}

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

.credibility-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.sales-faq {
  width: min(900px, calc(100% - clamp(32px, 7vw, 80px)));
}

.final-sales-cta {
  display: grid;
  align-items: end;
  gap: 28px;
  margin-bottom: var(--section-y);
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid rgba(255, 44, 44, 0.58);
  border-radius: 8px;
  background: #191111;
}

.final-sales-cta h2 {
  margin: 12px 0 8px;
}

.final-sales-cta p:last-child {
  margin: 0;
  color: var(--muted);
}

.sales-footer-main {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .diagnostic-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compact-proof {
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.15fr) minmax(220px, 0.75fr);
    align-items: stretch;
  }

  .compact-proof-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compact-proof-plans div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .compact-proof-live {
    align-content: center;
  }

  .compact-proof > small {
    grid-column: 1 / -1;
  }

  .activity-heading,
  .activity-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  }

  .activity-recent {
    grid-template-columns: 10px minmax(0, 1fr) auto;
  }

  .activity-recent em {
    grid-column: auto;
  }

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

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

  .process-list li:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid var(--line);
  }

  .process-list li:nth-child(even) {
    padding-left: 28px;
  }

  .credibility-section,
  .final-sales-cta {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  }

  .final-sales-cta .button {
    justify-self: end;
  }

  .sales-footer-main {
    grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(130px, 0.55fr));
  }
}

@media (min-width: 980px) {
  body[data-page="sales"] .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .sales-hero {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  }

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

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

  .pricing-card h3 {
    min-height: 2em;
  }

  .comparison-ladder {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .comparison-level:nth-child(2) {
    transform: translateY(18px);
  }

  .comparison-level:nth-child(3) {
    transform: translateY(36px);
  }

  .pricing-card-featured {
    transform: translateY(-16px);
  }

  .report-section {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  }
}

@media (max-width: 719px) {
  .sales-hero {
    min-height: auto;
  }

  .sales-hero h1 {
    font-size: 3.25rem;
  }

  .hero-assurances {
    display: grid;
  }

  .sales-proof-strip {
    gap: 20px;
  }

  .sales-proof-strip span {
    gap: 20px;
  }

  .report-copy ul {
    grid-template-columns: 1fr;
  }

  .report-footer small {
    display: none;
  }
}

/* Responsive text safety */
main :where(h1, h2, h3, h4, p, li, summary, strong, small),
.site-footer :where(h2, p, li, span, a) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.pricing-card > *,
.detailed-plan > *,
.checkout-block > *,
.order-summary > *,
.account-product > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 479px) {
  .product-diagnostic-hero > div {
    min-width: 0;
  }

  .product-diagnostic-hero h1 {
    font-size: 2.55rem;
    overflow-wrap: anywhere;
  }

  .cookie-control-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .cookie-always-on,
  .cookie-toggle {
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .admin-metrics {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 359px) {
  .site-header {
    padding-right: 6px;
    padding-left: 6px;
  }

  .header-shell {
    grid-template-columns: minmax(68px, 1fr) auto auto;
    gap: 5px;
    padding: 6px 6px 6px 10px;
  }

  .brand-logo {
    width: 72px;
    height: 20px;
  }

  .header-actions {
    gap: 3px;
  }

  .header-icon-button {
    height: 36px;
    gap: 4px;
    padding: 0 7px;
  }

  .header-cart {
    min-width: 83px;
  }

  .header-icon-button .material-symbols-rounded {
    font-size: 1.1rem;
  }

  .header-action-label {
    font-size: 0.64rem;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }
}

/* Dark deploy refinement: lighter typography and admin-style depth. */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 44, 44, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(255, 80, 80, 0.08), transparent 26rem),
    linear-gradient(180deg, #11100f 0%, #080808 38%, #0c0b0b 100%);
  font-weight: 500;
}

body[data-page="sales"] {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 44, 44, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(255, 80, 80, 0.08), transparent 25rem),
    linear-gradient(180deg, #11100f 0%, #080808 42%, #0b0a0a 100%);
}

body[data-page="sales"] main {
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.018), transparent 260px),
    radial-gradient(circle at 50% 0%, rgba(255, 44, 44, 0.055), transparent 34rem);
}

.site-nav a {
  color: rgba(255, 247, 239, 0.72);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-icon-button,
.header-cta,
.button,
.cookie-button {
  font-weight: 700;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.018), rgba(255, 247, 239, 0.006)),
    #080808;
}

.footer-brand p,
.footer-section a,
.footer-bottom {
  font-weight: 500;
}

.footer-section h2 {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-brand p,
.footer-section a {
  color: rgba(255, 247, 239, 0.58);
}

.footer-bottom {
  color: rgba(255, 247, 239, 0.42);
}

.sales-hero h1,
h1,
h2,
h3 {
  font-weight: 800;
}

.sales-hero-lead,
.hero-assurances,
.pricing-card p,
.comparison-level p,
.method-list p,
.report-copy p {
  font-weight: 500;
}

@media (min-width: 720px) {
  .site-nav a {
    font-size: 0.9rem;
    font-weight: 600;
  }
}

/* Dark production polish: continuous hero background, full-width sticky header and lighter footer/nav. */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: rgba(7, 7, 7, 0.82);
  border-bottom: 1px solid rgba(255, 247, 239, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 247, 239, 0.16) 0 1px, transparent 1.4px),
    linear-gradient(115deg, transparent 0 48%, rgba(255, 44, 44, 0.12) 48.35%, transparent 48.7%),
    linear-gradient(64deg, transparent 0 52%, rgba(255, 247, 239, 0.08) 52.15%, transparent 52.45%),
    linear-gradient(180deg, rgba(255, 44, 44, 0.06), transparent);
  background-position: 0 0, 0 0, 0 0, 0 0;
  background-size: 72px 72px, 260px 160px, 310px 210px, 100% 100%;
  opacity: 0.42;
  animation: beccarsi-header-drift 28s linear infinite;
}

.header-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 80px)));
  min-height: 64px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled .header-shell {
  border-color: transparent;
  background: transparent;
}

body[data-page="sales"] {
  background:
    radial-gradient(circle at 9% -6%, rgba(255, 44, 44, 0.24), transparent 31rem),
    radial-gradient(circle at 75% 14%, rgba(255, 44, 44, 0.08), transparent 30rem),
    linear-gradient(180deg, #161010 0%, #090909 38%, #070707 100%);
}

body[data-page="sales"] main {
  position: relative;
  background: transparent;
}

body[data-page="sales"] main::before {
  position: absolute;
  z-index: -1;
  inset: -68px 0 auto;
  height: min(920px, 108vh);
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 10% 2%, rgba(255, 44, 44, 0.22), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(255, 44, 44, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(36, 16, 16, 0.78) 0%, rgba(9, 9, 9, 0.95) 74%, rgba(7, 7, 7, 0) 100%);
}

body[data-page="sales"] .sales-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body[data-page="sales"] .sales-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 247, 239, 0.24) 0 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 44, 44, 0.22) 0 1.4px, transparent 2px),
    linear-gradient(118deg, transparent 0 46%, rgba(255, 247, 239, 0.12) 46.2%, transparent 46.55%),
    linear-gradient(62deg, transparent 0 54%, rgba(255, 44, 44, 0.14) 54.2%, transparent 54.55%);
  background-position: 0 0, 38px 42px, 0 0, 110px 20px;
  background-size: 96px 96px, 156px 156px, 340px 220px, 420px 260px;
  opacity: 0.32;
  mask-image: radial-gradient(circle at 50% 34%, #000 0%, transparent 78%);
  animation: beccarsi-data-drift 34s linear infinite;
}

body[data-page="sales"] .sales-hero > * {
  position: relative;
  z-index: 1;
}

@keyframes beccarsi-header-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 260px 160px, 310px 210px, 0 0;
  }
}

@keyframes beccarsi-data-drift {
  from {
    background-position: 0 0, 38px 42px, 0 0, 110px 20px;
  }
  to {
    background-position: 96px 96px, 194px 198px, 340px 220px, 530px 280px;
  }
}

@keyframes beccarsi-persona-float {
  0%,
  100% {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.045) translate3d(-8px, -6px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before,
  body[data-page="sales"] .sales-hero::before,
  .diagnostic-preview-human > img {
    animation: none;
  }
}

.site-nav a {
  color: rgba(255, 247, 239, 0.68);
  font-weight: 500;
}

.header-icon-button,
.header-cta,
.button,
.cookie-button {
  font-weight: 600;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.012), rgba(255, 247, 239, 0)),
    #070707;
}

.site-footer :where(p, li, span, a) {
  font-weight: 400;
}

.site-footer .footer-section h2 {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-footer .footer-brand p,
.site-footer .footer-section a {
  color: rgba(255, 247, 239, 0.54);
}

.site-footer .footer-bottom {
  color: rgba(255, 247, 239, 0.4);
  font-weight: 400;
}

.admin-site-copy-form {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  padding: clamp(18px, 2.5vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.035), rgba(255, 247, 239, 0.012)),
    #090909;
}

.admin-site-copy-form label:nth-of-type(2),
.admin-site-copy-form label:nth-of-type(3),
.admin-site-copy-form label:nth-of-type(4),
.admin-site-copy-form label:nth-of-type(9),
.admin-site-copy-form .admin-catalog-feedback,
.admin-site-copy-form .admin-catalog-card-footer {
  grid-column: 1 / -1;
}

.admin-site-copy-form textarea {
  min-height: 84px;
  resize: vertical;
}

.blog-preview-section,
.blog-archive {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

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

.blog-card,
.blog-article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 247, 239, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.055), rgba(255, 247, 239, 0.018)),
    rgba(255, 247, 239, 0.028);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.blog-card .blog-category,
.blog-article > span {
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.blog-author img {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(255, 247, 239, 0.16);
  border-radius: 14px;
  background: var(--brand-2);
  box-shadow: 0 10px 24px rgba(255, 44, 44, 0.18);
}

.blog-author div {
  display: grid;
  gap: 2px;
}

.blog-author strong {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1;
}

.blog-author span {
  color: rgba(255, 247, 239, 0.54);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
}

.blog-card h3,
.blog-article h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.blog-card p,
.blog-article p {
  margin: 0;
  color: rgba(255, 247, 239, 0.62);
  font-weight: 450;
  line-height: 1.6;
}

.blog-card a {
  align-self: end;
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: none;
}

.blog-preview-cta {
  justify-self: start;
}

.blog-hero {
  max-width: 860px;
}

.blog-hero h1 {
  max-width: 780px;
}

.blog-hero > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 247, 239, 0.64);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.blog-archive-list {
  display: grid;
  gap: 18px;
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-article {
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.blog-article h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.94;
}

.blog-article-excerpt {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.blog-post-shell {
  min-height: 62vh;
}

.blog-list-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.blog-article > div {
  display: grid;
  gap: 12px;
}

.admin-blog-form {
  max-width: none;
  padding: clamp(18px, 2.5vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.035), rgba(255, 247, 239, 0.012)),
    #090909;
}

.admin-blog-form textarea {
  resize: vertical;
}

.admin-blog-form textarea[name="content"] {
  min-height: 220px;
}

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

.admin-blog-table {
  align-self: stretch;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.025), rgba(255, 247, 239, 0.008)),
    rgba(8, 8, 8, 0.72);
}

.admin-content-panel .admin-catalog-card input,
.admin-content-panel .admin-catalog-card textarea,
.admin-content-panel .admin-catalog-card select {
  border-radius: 8px;
  background: rgba(4, 4, 4, 0.72);
}

.admin-content-panel .admin-catalog-card-footer {
  padding-top: 4px;
}

.admin-content-panel .button-primary {
  border-radius: 999px;
}

/* Mobile navigation hard override: Material Symbols icon + reliable fixed dropdown. */
.nav-toggle::before {
  content: none;
}

.nav-toggle-line {
  display: none;
}

.nav-toggle-icon {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff7ef;
  font-size: 1.7rem;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 28;
}

@media (max-width: 719px) {
  .site-header {
    z-index: 2000;
    overflow: visible;
    padding: 0;
  }

  .header-shell {
    width: 100%;
    min-height: 58px;
    grid-template-columns: minmax(110px, 1fr) auto auto;
    gap: 8px;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(255, 247, 239, 0.08);
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(18px);
  }

  .brand-logo {
    width: clamp(116px, 34vw, 142px);
    height: 32px;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    width: 44px;
    height: 44px;
    grid-column: 3;
    border-color: rgba(255, 247, 239, 0.2);
    background: rgba(255, 247, 239, 0.12);
    color: #fff7ef;
    box-shadow: inset 0 0 0 1px rgba(255, 247, 239, 0.04);
  }

  .nav-toggle-icon {
    display: none;
  }

  .nav-toggle::after {
    position: relative;
    z-index: 2;
    color: #fff7ef;
    content: "menu";
    font-family: "Material Symbols Rounded";
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 28;
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(255, 44, 44, 0.42);
    background: rgba(255, 44, 44, 0.18);
  }

  .nav-toggle[aria-expanded="true"]::after {
    content: "close";
  }

  .header-actions {
    grid-column: 2;
    gap: 6px;
  }

  .header-icon-button {
    height: 44px;
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .header-cart {
    min-width: 44px;
  }

  .header-action-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-nav {
    position: fixed;
    top: 58px;
    right: 12px;
    left: 12px;
    z-index: 1999;
    display: grid;
    max-height: calc(100dvh - 78px);
    padding: 12px;
    border: 1px solid rgba(255, 247, 239, 0.12);
    border-radius: 22px;
    background:
      radial-gradient(circle at 14% 0%, rgba(255, 44, 44, 0.24), transparent 18rem),
      linear-gradient(180deg, rgba(22, 18, 18, 0.98), rgba(8, 8, 8, 0.98));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.46);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    justify-content: space-between;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 247, 239, 0.08);
    color: var(--ink);
    font-size: 1rem;
    font-weight: 650;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    content: "arrow_forward";
    font-family: "Material Symbols Rounded";
    font-size: 1.15rem;
    font-weight: normal;
    color: var(--brand);
  }

  .sales-proof-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    min-height: 0;
    padding: 18px 20px;
    overflow: visible;
    border-color: rgba(255, 247, 239, 0.08);
    background: rgba(8, 8, 8, 0.38);
    white-space: normal;
  }

  .sales-proof-strip span {
    min-width: 0;
    min-height: 34px;
    justify-content: center;
    gap: 0;
    padding: 0 13px;
    border: 1px solid rgba(255, 247, 239, 0.1);
    border-radius: 999px;
    background: rgba(255, 247, 239, 0.045);
    color: rgba(255, 247, 239, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .sales-proof-strip span:not(:last-child)::after {
    content: none;
  }

  .report-preview .report-data-card {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    min-width: 0;
    transform: none;
  }

  body[data-page="sales"] main::before {
    top: -58px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-archive-list {
    grid-template-columns: 1fr;
  }

  .diagnostic-preview-human {
    min-height: 500px;
  }

  .persona-data-card {
    right: 12px;
    bottom: 12px;
    min-width: calc(100% - 24px);
  }

  .report-preview {
    width: min(100%, 420px);
    min-height: 0;
    padding: 0;
  }

  .report-persona {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: -60px;
  }

  .report-page {
    width: calc(100% - 24px);
    margin: 0 auto;
  }

  .report-page-back {
    display: none;
  }

  .admin-site-copy-form,
  .admin-manual-purchase-form,
  .admin-content-panel,
  .admin-blog-layout {
    grid-template-columns: 1fr;
  }

  .admin-addon-fieldset {
    grid-template-columns: 1fr;
  }

  .admin-content-panel .admin-panel-heading {
    position: static;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Refinamentos da home — set 2026
   1. Header some ao descer, revela ao subir
   2. Animação leve de fundo no hero
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Header hide-on-scroll ──────────────────────────────── */
.site-header {
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 24px));
  opacity: 0;
  pointer-events: none;
}

/* ── 2. Animação de fundo do hero ──────────────────────────── */
@keyframes hero-orb-a {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  33%  { transform: translate3d(38px, -28px, 0) scale(1.08); }
  66%  { transform: translate3d(-18px, 18px, 0) scale(0.94); }
}

@keyframes hero-orb-b {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  40%  { transform: translate3d(-46px, 22px, 0) scale(1.06); }
  70%  { transform: translate3d(28px, -18px, 0) scale(0.96); }
}

.sales-hero {
  position: relative;
  overflow: hidden;
}

.sales-hero::before,
.sales-hero::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  content: "";
  pointer-events: none;
  will-change: transform;
}

.sales-hero::before {
  top: -140px;
  right: -80px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 44, 44, 0.16) 0%, transparent 70%);
  animation: hero-orb-a 15s ease-in-out infinite;
}

.sales-hero::after {
  bottom: -120px;
  left: 4%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 80, 80, 0.11) 0%, transparent 70%);
  animation: hero-orb-b 19s ease-in-out infinite;
}

/* conteúdo sempre acima das orbs */
.sales-hero > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .sales-hero::before,
  .sales-hero::after {
    animation: none;
  }

  .site-header {
    transition: none;
  }
}

/* ── Entrada do painel pela Conta Google ─────────────────────────
   Substitui o formulário de utilizador e palavra-passe. A regra do
   Firestore confere request.auth.token.email, então o provedor pode
   mudar sem tocar em nenhuma regra. */
.admin-google-login {
  display: grid;
  gap: 16px;
  justify-items: start;
}

/* O iframe do Google vem com margin negativa (-2px -10px). Com o
   overflow:hidden da regra geral, essa margem faz o botão ser cortado
   nas laterais. Aqui ele precisa aparecer inteiro. */
.admin-google-login .google-login-button {
  min-height: 44px;
  justify-content: flex-start;
  overflow: visible;
  padding: 0 10px;
}

.admin-login-hint {
  margin: 0;
  color: var(--quiet);
  font-size: 0.86rem;
  line-height: 1.5;
}

.admin-login-hint b {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 720px) {
  .admin-google-login {
    justify-items: stretch;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Aviso do sistema — cartão na área do cliente
   Não é faixa de topo: pertence ao painel de quem já comprou, entre
   a saudação e os dados da conta. Ícone em disco, título por
   gravidade e a mensagem em corpo legível.
   ═══════════════════════════════════════════════════════════════ */
.account-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.account-notice-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.account-notice-body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.account-notice-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.account-notice-dismiss {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  color: var(--quiet);
  cursor: pointer;
  font-size: 18px;
  transition: background 160ms ease, color 160ms ease;
}

.account-notice-dismiss:hover {
  background: rgba(255, 247, 239, 0.08);
  color: var(--ink);
}

/* Gravidade: informação é neutra, manutenção avisa, incidente alerta.
   A cor entra na borda e no disco do ícone, não no fundo inteiro —
   um bloco colorido inteiro brigaria com o resto do painel. */
.account-notice.is-info {
  border-left: 3px solid var(--green);
}
.account-notice.is-info .account-notice-icon {
  background: rgba(141, 240, 188, 0.12);
  color: var(--green);
}

.account-notice.is-manutencao {
  border-left: 3px solid #ffbe5a;
}
.account-notice.is-manutencao .account-notice-icon {
  background: rgba(255, 190, 90, 0.12);
  color: #ffbe5a;
}

.account-notice.is-incidente {
  border-left: 3px solid var(--brand);
  background: #1d1413;
}
.account-notice.is-incidente .account-notice-icon {
  background: rgba(255, 44, 44, 0.14);
  color: var(--brand-2);
}

@media (max-width: 620px) {
  .account-notice {
    padding: 18px;
    gap: 14px;
  }
  .account-notice-icon {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
}

/* ── Painel: status compacto ──────────────────────────────────────
   Seis itens de uma linha cada. Em duas colunas ocupam metade da
   altura e continuam legíveis de relance. */
.status-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.status-checked-at {
  color: var(--quiet);
  font-size: 0.8rem;
}

.status-list {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 860px) {
  .status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 0.88rem;
}

/* O detalhe técnico vira title no hover: informação disponível sem
   custar altura na tela. */
.status-list li small {
  display: none;
}

.status-list strong {
  font-weight: 600;
}

.status-verdict span {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-list li.is-ok { border-left-color: var(--green); }
.status-list li.is-ok .status-verdict span { color: var(--green); }
.status-list li.is-down { border-left-color: var(--brand); }
.status-list li.is-down .status-verdict span { color: var(--brand-2); }
.status-list li.is-unknown { border-left-color: rgba(255, 190, 90, 0.6); }
.status-list li.is-unknown .status-verdict span { color: #ffbe5a; }

/* ── Painel: formulário de aviso, em linha ───────────────────── */
.admin-notice-form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.admin-notice-form textarea {
  min-height: 62px;
  resize: vertical;
}

.admin-notice-form .admin-editor-wide {
  grid-column: 1 / -1;
}

/* Os labels do painel são coluna por padrão; este precisa ser linha,
   com a caixa no tamanho certo em vez de esticada pelo grid. */
.admin-notice-toggle {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.admin-notice-toggle input {
  width: 18px;
  height: 18px;
  flex: none;
  margin: 0;
  accent-color: var(--brand);
}

.admin-notice-toggle span {
  font-size: 0.9rem;
}

.admin-notice-preview-label {
  display: block;
  margin-bottom: 6px;
  color: var(--quiet);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-notice-form button[type="submit"] {
  justify-self: start;
  width: auto;
}

.admin-notice-preview .account-notice.is-off {
  opacity: 0.5;
}

.admin-notice-empty {
  color: var(--quiet);
  font-size: 0.84rem;
}

@media (max-width: 720px) {
  .admin-notice-form {
    grid-template-columns: 1fr;
  }
}

/* ── Painel: navegação por páginas ───────────────────────────────
   O item ativo precisa se distinguir; sem isso, com 12 links, some. */
body[data-page="admin"] .site-nav a.is-active {
  color: var(--ink);
  font-weight: 600;
}

body[data-page="admin"] .site-nav a.is-active::after {
  position: absolute;
  right: 10px;
  bottom: 2px;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  content: "";
}

body[data-page="admin"] .site-nav a {
  position: relative;
}

/* O atributo hidden vem da folha do navegador e perde para qualquer
   display declarado numa classe — e .admin-panel usa grid/flex. Sem
   esta regra, esconder a página não surte efeito. */
body[data-page="admin"] [data-admin-page][hidden] {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   Painel: densidade
   Cada painel era um bloco largo com título de manchete e muito ar.
   Com 2 a 4 painéis por módulo, a tela pedia rolagem para pouca
   informação. Aqui os cartões encolhem e a métrica ganha colunas.
   ═══════════════════════════════════════════════════════════════ */

/* Títulos de painel são rótulos de seção, não manchetes de página. */
body[data-page="admin"] .admin-panel-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: -0.01em;
}

/* :not(.eyebrow) — sem isso esta regra vencia a do eyebrow por ser mais
   específica, e o rótulo saía do mesmo tamanho do texto de apoio. */
body[data-page="admin"] .admin-panel-heading p:not(.eyebrow) {
  max-width: 52ch;
  font-size: 0.86rem;
  line-height: 1.5;
}

body[data-page="admin"] .admin-panel {
  gap: 16px;
  padding: 20px 22px;
  border-radius: 10px;
}

/* Métricas: em telas largas, 3 e depois 4 colunas. Nove números em
   duas colunas ocupavam meia tela sem necessidade. */
@media (min-width: 760px) {
  body[data-page="admin"] .admin-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
}

@media (min-width: 1120px) {
  body[data-page="admin"] .admin-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

body[data-page="admin"] .admin-metrics article {
  gap: 11px;
  padding: 13px 14px;
  border-radius: 9px;
}

body[data-page="admin"] .admin-metrics strong {
  font-size: 1.32rem;
}

body[data-page="admin"] .admin-metrics small {
  font-size: 0.68rem;
}

/* A saudação do topo consumia um terço da tela sozinha. */
body[data-page="admin"] .admin-heading h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

body[data-page="admin"] .admin-heading {
  gap: 14px;
  margin-bottom: 4px;
}

/* Espaço entre painéis do mesmo módulo: separa sem afastar. */
body[data-page="admin"] .admin-panel + .admin-panel,
body[data-page="admin"] .admin-metrics + .admin-panel {
  margin-top: 14px;
}

/* Painéis de conteúdo (Home e Blog) tinham título em tamanho de capa. */
body[data-page="admin"] .admin-content-panel .admin-panel-heading h2 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}

/* O ícone gira enquanto a verificação roda, para o clique ter resposta. */
@keyframes admin-girando {
  to { transform: rotate(360deg); }
}

body[data-page="admin"] .admin-refresh.is-checking .material-symbols-rounded {
  animation: admin-girando 700ms linear infinite;
}

body[data-page="admin"] .admin-refresh:disabled {
  cursor: progress;
  opacity: 0.7;
}

/* Tributos: é consulta ocasional, não painel de trabalho. Ocupa menos. */
body[data-page="admin"] #tributos {
  max-width: 620px;
}

body[data-page="admin"] #tributos .admin-panel-heading {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   Painel: escala tipográfica
   A hierarquia estava invertida em três pontos: o h3 de subtítulo saía
   a 12px (menor que o corpo), o eyebrow tinha dois tamanhos para o
   mesmo papel e o número da métrica empatava com o título do painel.
   A escala abaixo é a única fonte:
     37px  h1 da página
     22px  h2 do painel
     19px  número da métrica
     15px  h3 de subtítulo
     14px  corpo
     12px  eyebrow e rótulo de métrica
   ═══════════════════════════════════════════════════════════════ */

/* h3 é subtítulo dentro do painel: acima do corpo, abaixo do h2.
   Estava a 12px em caixa alta, lido como rótulo e não como título. */
body[data-page="admin"] .admin-subheading {
  margin: 0 0 10px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

/* Um só tamanho de eyebrow em todo o painel. */
body[data-page="admin"] .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

/* O número da métrica recua um degrau para não empatar com o h2. */
body[data-page="admin"] .admin-metrics strong {
  font-size: 1.2rem;
  font-weight: 700;
}

/* A tela de login não é a home: o título não precisa de 70px. */
body[data-page="admin"] .admin-login h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.12;
}

/* Nota de tributos nas páginas de preço. Informação legal: presente e
   legível, sem competir com o preço. */
.tax-site-note {
  max-width: 68ch;
  margin: 22px auto 0;
  color: var(--quiet);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   Painel: sistema de botões
   Havia duas linguagens convivendo — 20 botões com raio 6px e 18 em
   pílula — e cinco alturas (34, 40, 42, 46, 48). Sem regra, cada
   contexto inventava a sua. Aqui há um raio, dois tamanhos e três
   papéis, e nada mais.

     altura   40px padrão · 32px em linha de tabela
     raio     8px, o mesmo dos cartões
     papéis   primário (ação principal do painel)
              secundário (tudo o mais)
              destrutivo (apagar)
   ═══════════════════════════════════════════════════════════════ */

body[data-page="admin"] main button,
body[data-page="admin"] main .button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;                 /* o ícone colava no texto: "saveSalvar" */
  padding: 0 15px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="admin"] main button .material-symbols-rounded,
body[data-page="admin"] main .button .material-symbols-rounded {
  font-size: 17px;
}

/* Primário: a ação principal de cada painel. Um por painel, de regra. */
body[data-page="admin"] main .button-primary {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
}

body[data-page="admin"] main .button-primary:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
}

/* Secundário: editar, copiar, atualizar, verificar. */
body[data-page="admin"] main .admin-edit-button,
body[data-page="admin"] main .admin-refresh,
body[data-page="admin"] main .admin-logout,
body[data-page="admin"] main .admin-status-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

body[data-page="admin"] main .admin-edit-button:hover,
body[data-page="admin"] main .admin-refresh:hover,
body[data-page="admin"] main .admin-logout:hover {
  border-color: rgba(255, 247, 239, 0.28);
  background: var(--surface-2);
}

/* Destrutivo: some do vermelho da marca, que significa "ação principal".
   Fica pela borda e pelo texto, para não competir com o primário. */
body[data-page="admin"] main .admin-edit-button.is-danger {
  border-color: rgba(255, 106, 90, 0.34);
  background: transparent;
  color: #ff8a7a;
}

body[data-page="admin"] main .admin-edit-button.is-danger:hover {
  border-color: #ff8a7a;
  background: rgba(255, 106, 90, 0.1);
}

/* Compacto: ações dentro de linha de tabela, onde 40px empurra a linha. */
body[data-page="admin"] main td button,
body[data-page="admin"] main .admin-row-actions button {
  min-height: 32px;
  padding: 0 11px;
  font-size: 0.8rem;
}

body[data-page="admin"] main td button .material-symbols-rounded,
body[data-page="admin"] main .admin-row-actions button .material-symbols-rounded {
  font-size: 15px;
}

/* O par de passo (− / +) mantém o raio partido, mas alinhado ao novo valor. */
body[data-page="admin"] main .admin-price-control button:first-of-type {
  border-radius: 8px 0 0 8px;
}

body[data-page="admin"] main .admin-price-control button:last-of-type {
  border-radius: 0 8px 8px 0;
}

/* Tabelas: coluna sem largura mínima esmagava "Cliente" e datas. */
body[data-page="admin"] main table {
  min-width: 100%;
}

body[data-page="admin"] main th,
body[data-page="admin"] main td {
  white-space: nowrap;
}

body[data-page="admin"] main td:first-child,
body[data-page="admin"] main th:first-child {
  min-width: 180px;
  white-space: normal;
}

body[data-page="admin"] .admin-table-wrap {
  overflow-x: auto;
}

/* Botão acoplado ao campo de código: acompanha a altura do input, como o
   par de passo do preço, e arredonda só o lado de fora. */
body[data-page="admin"] main .admin-code-field button {
  border-radius: 0 8px 8px 0;
  padding: 0 12px;
}

/* ═══════════════════════════════════════════════════════════════
   Correio do cliente
   Ícone no header com contador de não lidas, e um painel ancorado
   abaixo dele. Aparece só nas áreas autenticadas.
   ═══════════════════════════════════════════════════════════════ */
.header-inbox {
  position: relative;
}

.header-inbox-count {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
}

/* display:flex vence o atributo hidden, que vem da folha do navegador —
   sem esta regra o painel nunca fecha. Mesmo caso dos módulos do admin. */
.inbox-panel[hidden],
.header-inbox[hidden],
.header-inbox-count[hidden] {
  display: none;
}

.inbox-panel {
  position: fixed;
  z-index: 70;
  top: 74px;
  right: clamp(10px, 3vw, 22px);
  width: min(380px, calc(100vw - 20px));
  max-height: min(560px, calc(100vh - 100px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}

.inbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.inbox-head strong {
  font-size: 0.95rem;
}

.inbox-head button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  color: var(--quiet);
  cursor: pointer;
  font-size: 18px;
}

.inbox-head button:hover {
  background: rgba(255, 247, 239, 0.08);
  color: var(--ink);
}

.inbox-list {
  padding: 0;
  margin: 0;
  overflow-y: auto;
  list-style: none;
}

.inbox-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 160ms ease;
}

.inbox-list li:hover {
  background: var(--surface-2);
}

.inbox-list li:last-child {
  border-bottom: 0;
}

/* Não lida: ponto vermelho e título em creme cheio. Lida recua. */
.inbox-list li.is-unread {
  background: rgba(255, 44, 44, 0.04);
}

.inbox-list li.is-unread::after {
  position: absolute;
  content: "";
}

.inbox-item-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--quiet);
  font-size: 18px;
}

.inbox-list li.is-unread .inbox-item-icon {
  border-color: rgba(255, 44, 44, 0.32);
  color: var(--brand-2);
}

.inbox-item-cat {
  display: block;
  margin-bottom: 3px;
  color: var(--quiet);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inbox-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.inbox-list li.is-unread strong {
  color: var(--ink);
}

.inbox-list p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.84rem;
  line-height: 1.5;
}

.inbox-empty {
  margin: 0;
  padding: 30px 22px;
  color: var(--quiet);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: center;
}

/* Formulário de atualizações no painel */
.admin-broadcast-form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.admin-broadcast-form textarea {
  min-height: 84px;
  resize: vertical;
}

.admin-broadcast-form button[type="submit"] {
  justify-self: start;
}

@media (max-width: 720px) {
  .admin-broadcast-form {
    grid-template-columns: 1fr;
  }
}

/* ── Identificação legal e condições comerciais ──────────────────
   Informação obrigatória e de referência: precisa estar acessível e
   legível, sem disputar atenção com o resto do rodapé. */
.footer-legal {
  /* Cada bloco do rodapé define a própria largura; sem isto o texto
     legal colava na borda da janela, fora do alinhamento dos demais. */
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 80px)));
  margin: 0 auto;
  /* Faixa entre duas réguas: o mesmo respiro dos dois lados, senão o
     texto encosta na régua de baixo. */
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.footer-legal p {
  max-width: 96ch;
  margin: 0;
  color: var(--quiet);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-legal-entity strong {
  color: var(--muted);
  font-weight: 600;
}

.footer-legal-terms {
  margin-top: 6px !important;
  /* Um degrau abaixo do dado cadastral: é ressalva, não identificação. */
  opacity: 0.82;
}

@media (max-width: 620px) {
  .footer-legal p {
    font-size: 0.7rem;
  }
}

/* ── Marca: biblioteca de ativos no painel ─────────────────────────────
   Os previews trazem o próprio fundo: um logotipo branco só se lê sobre
   escuro e um vermelho só sobre claro, então o cartão precisa declarar
   sobre o que aquela versão foi feita para viver. */
.marca-baixar-tudo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.marca-baixar-tudo strong { display: block; color: var(--ink); font-size: 0.95rem; font-weight: 800; }
.marca-baixar-tudo span { color: var(--quiet); font-size: 0.85rem; }
.marca-zip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 160ms ease;
}
.marca-zip:hover { background: var(--brand-2); }
.marca-zip .material-symbols-rounded { font-size: 18px; }

.marca-nota { margin: -6px 0 14px; color: var(--quiet); font-size: 0.86rem; }

.marca-grade {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  margin-bottom: 8px;
}
.marca-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.marca-preview {
  display: grid;
  min-height: 124px;
  place-items: center;
  padding: 18px;
}
.marca-preview[data-fundo="claro"] { background: var(--cream); }
.marca-preview[data-fundo="vermelho"] { background: var(--brand); }
.marca-preview img { max-width: 74%; height: auto; }
.marca-preview-peca img { max-width: 88%; }
/* peças já vêm com fundo próprio: o tabuleiro só revela onde há recorte */
.marca-preview-peca {
  background:
    linear-gradient(45deg, rgba(255,247,239,0.05) 25%, transparent 25%, transparent 75%, rgba(255,247,239,0.05) 75%),
    linear-gradient(45deg, rgba(255,247,239,0.05) 25%, transparent 25%, transparent 75%, rgba(255,247,239,0.05) 75%),
    var(--bg-soft);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
}
.marca-preview-peca img { border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.marca-info { padding: 14px 16px 16px; border-top: 1px solid var(--line); }
.marca-info h4 { margin: 0 0 4px; color: var(--ink); font-size: 0.95rem; font-weight: 800; }
.marca-info p { margin: 0 0 12px; color: var(--quiet); font-size: 0.82rem; line-height: 1.5; }
.marca-links { display: flex; flex-wrap: wrap; gap: 6px; }
.marca-links a {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease;
}
.marca-links a:hover { border-color: var(--brand); color: var(--brand-2); }

.marca-cores {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.marca-cores article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.marca-cores span {
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.marca-cores strong { display: block; color: var(--ink); font-size: 0.88rem; font-weight: 800; }
.marca-cores code { display: block; margin: 2px 0 4px; color: var(--brand-2); font-size: 0.78rem; letter-spacing: 0.04em; }
.marca-cores small { color: var(--quiet); font-size: 0.76rem; line-height: 1.45; }

.marca-tipo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.marca-tipo-amostra {
  display: grid;
  width: 96px;
  height: 96px;
  flex: none;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--brand);
}
.marca-tipo-amostra span { color: #fff; font-size: 3rem; font-weight: 900; line-height: 1; }
.marca-tipo h4 { margin: 0 0 6px; color: var(--ink); font-size: 1rem; font-weight: 800; }
.marca-tipo p { margin: 0; max-width: 62ch; color: var(--quiet); font-size: 0.84rem; line-height: 1.6; }
.marca-tipo-linha { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 10px !important; color: var(--muted) !important; font-size: 0.95rem !important; }

.marca-regras, .marca-erros {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.marca-regras article, .marca-erros article {
  padding: 14px 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.marca-regras h4 { margin: 0 0 10px; color: var(--ink); font-size: 0.9rem; font-weight: 800; }
.marca-regra-fig, .marca-erro-fig {
  display: grid;
  min-height: 84px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--bg-soft);
}
.marca-regra-fig img, .marca-erro-fig img { max-width: 78%; height: auto; }
/* a folga é a regra: o tracejado mostra o que ela vale */
/* outline com offset: o tracejado fica FORA da marca, marcando a folga —
   por dentro ele leria como caixa de recorte, não como área de proteção */
.marca-fig-protecao { min-height: 108px; }
.marca-fig-protecao img {
  outline: 1px dashed rgba(255, 247, 239, 0.34);
  outline-offset: 18px;
}
.marca-medida { margin-top: 6px; color: var(--quiet); font-size: 0.72rem; font-weight: 800; }
.marca-erro-fig { position: relative; overflow: hidden; }
.marca-erro-fig[data-fundo-ruim] { background: #241111; }
.marca-erro-fig::before {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  content: "\00d7";
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}
.marca-erros p { margin: 0; color: var(--quiet); font-size: 0.8rem; line-height: 1.5; }
.marca-erro-texto { color: var(--ink); font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; }

.marca-origem {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.78rem;
  line-height: 1.6;
}
.marca-origem code { color: var(--muted); font-size: 0.76rem; }

@media (max-width: 620px) {
  .marca-baixar-tudo { flex-direction: column; align-items: stretch; }
  .marca-zip { justify-content: center; }
}

/* Filtros do registro de operações */
.admin-log-filtros {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.admin-log-filtros label { display: grid; gap: 6px; }
.admin-log-filtros span {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.admin-log-filtros select,
.admin-log-filtros input {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}
.admin-log-filtros select:focus-visible,
.admin-log-filtros input:focus-visible { border-color: var(--brand); outline: none; }
[data-log-table] td small { display: block; margin-top: 2px; color: var(--quiet); font-size: 0.74rem; }
[data-log-table] code { color: var(--muted); font-size: 0.76rem; }

/* Número do pedido e SKU — identificadores, não texto corrido: fonte
   monoespaçada para que 0/O e 1/I não se confundam ao conferir. */
.admin-copy-code {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--ink);
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  transition: border-color 160ms ease, color 160ms ease;
}
.admin-copy-code strong { font-weight: 700; letter-spacing: 0.02em; }
.admin-copy-code .material-symbols-rounded { font-size: 14px; opacity: 0.5; }
.admin-copy-code:hover { border-color: var(--brand); }
.admin-copy-code.is-copiado { border-color: var(--green); color: var(--green); }
.admin-sku {
  margin-left: auto;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--quiet);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

/* Ferramentas do correio: filtro e limpar */
.inbox-tools {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.inbox-tools select {
  flex: 1;
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
}
.inbox-tools button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--quiet);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease;
}
.inbox-tools button:hover:not(:disabled) { border-color: var(--brand); color: var(--brand-2); }
.inbox-tools button:disabled { opacity: 0.5; cursor: default; }
.inbox-tools .material-symbols-rounded { font-size: 15px; }
/* Separador de dia: fica claro o que chegou hoje e o que é da semana passada */
.inbox-day {
  padding: 12px 14px 5px;
  color: var(--quiet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.inbox-day:first-child { padding-top: 8px; }
.inbox-vazio-filtro { padding: 22px 14px; color: var(--quiet); font-size: 0.84rem; text-align: center; }

/* Ensaio da jornada: presente, mas nunca confundível com o botão de compra */
.checkout-teste {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 11px 18px;
  border: 1px dashed rgba(255, 247, 239, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--quiet);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease;
}
.checkout-teste:hover:not(:disabled) { border-color: var(--brand); color: var(--brand-2); }
.checkout-teste:disabled { opacity: 0.5; cursor: default; }
.checkout-teste .material-symbols-rounded { font-size: 17px; }
.checkout-teste[hidden] { display: none; }
