:root {
  --ink: #071b2f;
  --ink-2: #0c2a3f;
  --ink-3: #173b50;
  --green: #00a97f;
  --green-text: #006f56;
  --green-2: #21c79a;
  --green-3: #6ee7c2;
  --mint: #e8fff7;
  --mint-2: #d6f8ec;
  --blue: #2e7df6;
  --gold: #f0b14a;
  --danger: #e46565;
  --cream: #f5f8f7;
  --paper: #ffffff;
  --muted: #62717c;
  --muted-2: #8a98a2;
  --muted-readable: #56636c;
  --line: #dbe5e8;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 10px 30px rgba(7, 27, 47, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 27, 47, 0.13);
  --shadow-lg: 0 38px 100px rgba(0, 15, 28, 0.30);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 78px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--green-3);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(46, 125, 246, 0.65);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.simulator-copy h2,
.lead-copy h2,
.faq-heading h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading p,
.simulator-copy > p,
.lead-copy > p,
.faq-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 25px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.section-kicker.light {
  color: var(--green-3);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s ease, border-color .22s ease, color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.button-primary {
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #03261d;
  box-shadow: 0 14px 34px rgba(0, 169, 127, 0.26);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(0, 169, 127, 0.36);
}

.button-ghost {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
  color: #fff;
  backdrop-filter: blur(14px);
}

.button-ghost:hover {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.12);
}

.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.button-light:hover {
  background: var(--mint);
}

.button-text {
  min-height: 44px;
  padding-inline: 6px;
  background: transparent;
  color: var(--muted);
}

.button-text:hover {
  color: var(--ink);
  transform: none;
}

.button-lg {
  min-height: 58px;
  padding: 17px 24px;
  border-radius: 14px;
  font-size: 1rem;
}

.button-sm {
  min-height: 44px;
  padding: 11px 17px;
  font-size: .92rem;
}

.button-full {
  width: 100%;
}

.disclosure-bar {
  position: relative;
  z-index: 51;
  background: #041522;
  color: rgba(255,255,255,.76);
  font-size: .78rem;
}

.disclosure-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.disclosure-inner strong {
  color: #fff;
}

.disclosure-inner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-3);
  font-weight: 700;
}

.disclosure-inner a svg {
  width: 14px;
  height: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(7, 27, 47, .84);
  color: #fff;
  backdrop-filter: blur(18px) saturate(130%);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 27, 47, .96);
  box-shadow: 0 10px 40px rgba(0,0,0,.16);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.16rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--green-3);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 11px 13px;
  color: rgba(255,255,255,.74);
  font-size: .91rem;
  font-weight: 650;
  transition: color .18s ease;
}

.main-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-2);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 34px);
  overflow: hidden;
  padding: 62px 0 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(0,169,127,.19), transparent 27%),
    radial-gradient(circle at 85% 15%, rgba(46,125,246,.16), transparent 25%),
    linear-gradient(150deg, #061826 0%, #0a2638 52%, #0b3540 100%);
  color: #fff;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: 18%;
  left: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(110,231,194,.13);
  box-shadow: inset 0 0 80px rgba(110,231,194,.06);
}

.hero-orb-two {
  right: -210px;
  bottom: 2%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(46,125,246,.12);
  box-shadow: inset 0 0 100px rgba(46,125,246,.05);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr);
  align-items: center;
  gap: clamp(34px, 4.5vw, 64px);
}

.hero-copy {
  padding-bottom: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 8px 12px;
  border: 1px solid rgba(110,231,194,.22);
  border-radius: 999px;
  background: rgba(110,231,194,.07);
  color: var(--green-3);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 5px rgba(33,199,154,.13);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3rem, 4.65vw, 4.55rem);
  font-weight: 790;
  letter-spacing: -0.058em;
  line-height: .96;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--green-3);
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(110,231,194,.74), rgba(110,231,194,0));
  content: "";
  transform: scaleX(.9);
  transform-origin: left;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.74);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.58;
}

.hero-feature {
  display: flex;
  max-width: 680px;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 21px;
  padding: 13px 16px;
  border: 1px solid rgba(240,177,74,.20);
  border-radius: 15px;
  background: rgba(240,177,74,.075);
}

.hero-feature > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  margin-top: 2px;
  color: var(--gold);
}

.hero-feature p {
  margin: 0;
  color: rgba(255,255,255,.73);
  font-size: .88rem;
  line-height: 1.52;
}

.hero-feature strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  font-weight: 620;
}

.hero-microproof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-microproof svg {
  width: 15px;
  height: 15px;
  color: var(--green-3);
}

.hero-visual {
  position: relative;
  padding: 28px 12px 64px;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: auto;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(22px) saturate(135%);
}

.dashboard-shell::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(110,231,194,.44), transparent 33%, rgba(46,125,246,.24));
  content: "";
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.dashboard-top > div {
  display: flex;
  flex-direction: column;
}

.dashboard-kicker {
  margin-bottom: 4px;
  color: rgba(255,255,255,.5);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dashboard-top strong {
  font-size: 1.06rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(110,231,194,.22);
  border-radius: 999px;
  background: rgba(110,231,194,.08);
  color: var(--green-3);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 4px rgba(33,199,154,.13);
}

.dashboard-main-value {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.dashboard-main-value > span {
  color: rgba(255,255,255,.53);
  font-size: .8rem;
}

.dashboard-main-value strong {
  margin: 3px 0;
  color: #fff;
  font-size: clamp(2.3rem, 4.2vw, 3.25rem);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.dashboard-main-value small {
  color: var(--green-3);
  font-size: .76rem;
  font-weight: 700;
}

.dashboard-chart {
  position: relative;
  display: grid;
  height: 118px;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 11px;
  margin-bottom: 24px;
  padding: 8px 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.chart-line {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 1px;
  border-top: 1px dashed rgba(110,231,194,.35);
}

.chart-bar {
  position: relative;
  height: var(--h);
  min-height: 10px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(to top, rgba(110,231,194,.25), rgba(110,231,194,.72));
  box-shadow: 0 0 20px rgba(33,199,154,.08);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: growBar .9s var(--ease) forwards;
}

.chart-bar:nth-of-type(3) { animation-delay: .08s; }
.chart-bar:nth-of-type(4) { animation-delay: .14s; }
.chart-bar:nth-of-type(5) { animation-delay: .20s; }
.chart-bar:nth-of-type(6) { animation-delay: .26s; }
.chart-bar:nth-of-type(7) { animation-delay: .32s; }

.chart-bar.current {
  background: linear-gradient(to top, var(--green), var(--green-3));
  box-shadow: 0 0 25px rgba(33,199,154,.20);
}

.chart-bar span {
  position: absolute;
  bottom: -19px;
  left: 50%;
  color: rgba(255,255,255,.37);
  font-size: .62rem;
  transform: translateX(-50%);
}

@keyframes growBar {
  to { transform: scaleY(1); }
}

.dashboard-breakdown {
  display: grid;
  gap: 9px;
}

.dashboard-breakdown > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.56);
  font-size: .76rem;
}

.dashboard-breakdown strong {
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  white-space: nowrap;
}

.dashboard-breakdown .risk-row {
  color: rgba(240,177,74,.80);
}

.dashboard-breakdown .risk-row strong {
  color: var(--gold);
}

.dashboard-breakdown .total-row {
  border: 1px solid rgba(110,231,194,.18);
  background: rgba(110,231,194,.08);
  color: var(--green-3);
  font-weight: 700;
}

.dashboard-breakdown .total-row strong {
  color: var(--green-3);
}

.dashboard-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: rgba(255,255,255,.38);
  font-size: .66rem;
}

.dashboard-note svg {
  width: 15px;
  height: 15px;
  color: var(--green-3);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 14px;
  background: rgba(8, 31, 44, .80);
  box-shadow: 0 18px 45px rgba(0,0,0,.20);
  backdrop-filter: blur(16px);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card-one {
  top: 24px;
  right: -12px;
}

.floating-card-two {
  bottom: 49px;
  left: -22px;
  animation-delay: -2.5s;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: rgba(110,231,194,.11);
  color: var(--green-3);
}

.floating-icon.alt {
  background: rgba(240,177,74,.11);
  color: var(--gold);
}

.floating-icon svg {
  width: 19px;
  height: 19px;
}

.floating-card > div:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-card span {
  color: rgba(255,255,255,.42);
  font-size: .64rem;
  text-transform: uppercase;
}

.floating-card strong {
  margin-top: 3px;
  color: #fff;
  font-size: .77rem;
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1.25fr auto 1.2fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.trust-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.trust-item strong {
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
}

.trust-item span {
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  line-height: 1.35;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.12);
}

.problem-section {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 34px;
}

.problem-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 13px;
}

.icon-box.danger {
  background: rgba(228,101,101,.09);
  color: var(--danger);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
}

.solution-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 20%, rgba(110,231,194,.18), transparent 25%),
    linear-gradient(135deg, var(--ink), #0b3c42);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.solution-banner::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(110,231,194,.14);
  border-radius: 50%;
  content: "";
}

.solution-mark {
  display: flex;
  width: 108px;
  height: 108px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110,231,194,.32);
  border-radius: 50%;
  background: rgba(110,231,194,.08);
  box-shadow: inset 0 0 45px rgba(110,231,194,.08);
  color: var(--green-3);
}

.solution-mark span {
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -.06em;
}

.solution-mark small {
  margin: 3px 0 0 2px;
  font-size: 1rem;
  font-weight: 800;
}

.solution-copy {
  position: relative;
  z-index: 1;
}

.solution-copy .section-kicker {
  margin-bottom: 10px;
}

.solution-copy h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(1.5rem, 2.7vw, 2.35rem);
  letter-spacing: -.035em;
  line-height: 1.15;
}

.solution-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.65);
}

.present-past-section {
  background: #fff;
}

.dual-impact {
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: stretch;
}

.impact-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-lg);
}

.impact-primary {
  background: linear-gradient(150deg, #071b2f, #0d3542);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.impact-secondary {
  border: 1px solid #efd9ad;
  background: linear-gradient(145deg, #fffaf0, #fff);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.impact-number {
  position: absolute;
  top: 20px;
  right: 28px;
  color: rgba(255,255,255,.07);
  font-size: 6.8rem;
  font-weight: 850;
  letter-spacing: -.09em;
  line-height: 1;
}

.impact-secondary .impact-number {
  color: rgba(240,177,74,.10);
}

.impact-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  background: rgba(110,231,194,.10);
  color: var(--green-3);
}

.impact-secondary .impact-icon {
  background: rgba(240,177,74,.12);
  color: #c77e00;
}

.impact-icon svg {
  width: 28px;
  height: 28px;
}

.impact-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(110,231,194,.09);
  color: var(--green-3);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.impact-secondary .impact-label {
  background: rgba(240,177,74,.12);
  color: #9b6200;
}

.impact-card h3 {
  position: relative;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  letter-spacing: -.038em;
  line-height: 1.15;
}

.impact-primary h3 {
  color: #fff;
}

.impact-card > p {
  position: relative;
  margin-bottom: 23px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

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

.clean-list {
  position: relative;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,.77);
  font-size: .9rem;
}

.impact-secondary .clean-list li {
  color: var(--ink-3);
}

.clean-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  color: var(--green-3);
}

.impact-secondary .clean-list svg {
  color: #c77e00;
}

.impact-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green);
}

.impact-connector span {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, var(--line), transparent);
}

.impact-connector svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.clarity-note {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  gap: 14px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.clarity-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 2px;
  color: var(--green);
}

.clarity-note p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.clarity-note strong {
  color: var(--ink);
}

.benefits-section {
  background: var(--cream);
}

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

.benefit-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(7,27,47,.045);
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}

.benefit-card:hover {
  border-color: rgba(0,169,127,.30);
  box-shadow: 0 18px 46px rgba(7,27,47,.09);
  transform: translateY(-5px);
}

.benefit-card::after {
  position: absolute;
  right: -65px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(0,169,127,.08);
  border-radius: 50%;
  content: "";
}

.benefit-icon {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  background: var(--mint);
  color: var(--green);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  letter-spacing: -.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.68;
}

.benefit-card-accent {
  border-color: rgba(240,177,74,.35);
  background: linear-gradient(145deg, #fff8e9, #fff);
}

.benefit-card-accent .benefit-icon {
  background: rgba(240,177,74,.13);
  color: #c77e00;
}

.benefit-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: #a46a07;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.simulator-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,169,127,.16), transparent 28%),
    linear-gradient(145deg, #071b2f, #0b3541);
  color: #fff;
}

.simulator-section::after {
  position: absolute;
  top: -230px;
  right: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(110,231,194,.10);
  border-radius: 50%;
  content: "";
}

.simulator-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.simulator-copy h2 {
  color: #fff;
}

.simulator-copy > p {
  color: rgba(255,255,255,.64);
}

.simulator-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.71);
  font-size: .91rem;
}

.simulator-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.simulator-points svg {
  width: 17px;
  height: 17px;
  color: var(--green-3);
}

.simulator-card {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}

.simulator-control + .simulator-control {
  margin-top: 28px;
}

.control-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.control-heading label {
  color: rgba(255,255,255,.67);
  font-size: .88rem;
  font-weight: 650;
}

.control-heading output {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.simulator-control input[type="range"] {
  width: 100%;
  height: 7px;
  margin: 0;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(90deg, var(--green-2) 0 var(--range-progress, 50%), rgba(255,255,255,.14) var(--range-progress, 50%) 100%);
  cursor: pointer;
}

.simulator-control input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border: 4px solid var(--green-3);
  border-radius: 50%;
  appearance: none;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(110,231,194,.12);
}

.simulator-control input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 4px solid var(--green-3);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(110,231,194,.12);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: rgba(255,255,255,.34);
  font-size: .67rem;
}

.simulator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 30px 0 16px;
}

.simulator-results > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(0,0,0,.12);
}

.simulator-results span {
  color: rgba(255,255,255,.47);
  font-size: .72rem;
}

.simulator-results strong {
  color: var(--gold);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: -.035em;
}

.simulator-message {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid rgba(110,231,194,.16);
  border-radius: 12px;
  background: rgba(110,231,194,.07);
}

.simulator-message svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: var(--green-3);
}

.simulator-message p {
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: .84rem;
  line-height: 1.55;
}

.steps-section {
  background: #fff;
}

.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 49px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -7px;
  left: calc(50% + 22px);
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
  box-shadow: 0 3px 12px rgba(0,169,127,.25);
}

.step-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 12px auto 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.step-icon svg {
  width: 29px;
  height: 29px;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.62;
}

.transparency-section {
  background: var(--cream);
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: center;
  gap: 16px;
}

.role-card {
  min-height: 390px;
  padding: 34px;
  border-radius: var(--radius-lg);
}

.role-brazilian {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.role-partner {
  background: linear-gradient(145deg, var(--ink), #0c3942);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.role-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 27px;
}

.role-badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--mint);
  color: var(--green-text);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.role-partner .role-badge {
  background: rgba(110,231,194,.09);
  color: var(--green-3);
}

.role-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  color: var(--green);
}

.role-partner .role-icon {
  background: rgba(110,231,194,.10);
  color: var(--green-3);
}

.role-icon svg {
  width: 24px;
  height: 24px;
}

.role-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -.035em;
  line-height: 1.17;
}

.role-partner h3 {
  color: #fff;
}

.role-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.role-partner > p {
  color: rgba(255,255,255,.64);
}

.clean-list.compact {
  gap: 9px;
}

.clean-list.compact li {
  color: var(--ink-3);
  font-size: .85rem;
}

.role-partner .clean-list.compact li {
  color: rgba(255,255,255,.72);
}

.roles-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted-readable);
  text-align: center;
}

.roles-bridge span {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.roles-bridge svg {
  width: 48px;
  height: 48px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.transparency-footnote {
  display: flex;
  max-width: 980px;
  align-items: flex-start;
  gap: 13px;
  margin: 26px auto 0;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}

.transparency-footnote svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  color: var(--green);
}

.transparency-footnote p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

.transparency-footnote strong {
  color: var(--ink);
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading .button {
  margin-top: 28px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 2px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .98rem;
  font-weight: 720;
  text-align: left;
}

.accordion-item button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--green);
  transition: transform .22s ease;
}

.accordion-item.is-open button svg {
  transform: rotate(180deg);
}

.accordion-panel {
  overflow: hidden;
  padding: 0 42px 22px 2px;
}

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

.accordion-panel p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.72;
}

.lead-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(0,169,127,.18), transparent 26%),
    linear-gradient(145deg, #061826, #0b3541);
  color: #fff;
}

.lead-glow {
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(110,231,194,.10);
  border-radius: 50%;
  box-shadow: inset 0 0 180px rgba(110,231,194,.025);
}

.lead-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
}

.lead-copy {
  padding-top: 36px;
}

.lead-copy h2 {
  color: #fff;
}

.lead-copy > p {
  color: rgba(255,255,255,.64);
}

.lead-assurances {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.lead-assurances > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 13px;
  background: rgba(255,255,255,.045);
}

.lead-assurances svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  margin-top: 2px;
  color: var(--green-3);
}

.lead-assurances span {
  display: flex;
  flex-direction: column;
  color: rgba(255,255,255,.46);
  font-size: .78rem;
  line-height: 1.4;
}

.lead-assurances strong {
  margin-bottom: 2px;
  color: rgba(255,255,255,.89);
  font-size: .86rem;
}

.form-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}


.noscript-alert {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(180,83,9,.25);
  border-radius: 12px;
  background: #fff8e8;
  color: #744210;
  font-size: .82rem;
  line-height: 1.55;
}

.noscript-alert a {
  color: #006f56;
  font-weight: 800;
  text-decoration: underline;
}

.form-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 28px;
  border-bottom: 1px solid var(--line);
}

.form-card-head > div {
  display: flex;
  flex-direction: column;
}

.form-card-head > div span {
  color: var(--muted-readable);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-card-head > div strong {
  margin-top: 2px;
  font-size: 1.15rem;
}

.form-time {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-text);
  font-size: .7rem;
  font-weight: 750;
}

.form-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 28px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.form-progress::before,
.progress-bar {
  position: absolute;
  top: 31px;
  right: 17%;
  left: 17%;
  height: 2px;
  border-radius: 999px;
  content: "";
}

.form-progress::before {
  background: var(--line);
}

.progress-bar {
  z-index: 1;
  right: auto;
  width: 0;
  background: var(--green);
  transition: width .35s var(--ease);
}

.progress-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--muted-2);
  font-size: .68rem;
  font-weight: 700;
}

.progress-step i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted-2);
  font-style: normal;
  transition: all .25s ease;
}

.progress-step.is-active,
.progress-step.is-complete {
  color: var(--green);
}

.progress-step.is-active i,
.progress-step.is-complete i {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

#leadForm {
  padding: 26px 28px 28px;
}

.form-step {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  width: 100%;
  margin-bottom: 19px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 760;
}

.field-grid {
  display: grid;
  gap: 15px;
}

.field-grid + .field-grid,
.field-grid + .field,
.field + .field-grid,
.field + .field {
  margin-top: 15px;
}

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

.field-grid.cep-grid {
  grid-template-columns: 130px minmax(0, 1fr) 100px;
}

.field-grid.city-grid {
  grid-template-columns: minmax(0, 1fr) 90px;
}

.field {
  min-width: 0;
}

.field-grow {
  min-width: 0;
}

.field label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--ink-3);
  font-size: .78rem;
  font-weight: 700;
}

.field label > span,
.consent-box strong {
  color: var(--danger);
}

.field label small {
  color: var(--muted-readable);
  font-size: .7rem;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: .88rem;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field select {
  padding-right: 34px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2362717c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
}

.field input::placeholder {
  color: #a7b1b8;
}

.field input:focus,
.field select:focus {
  border-color: rgba(0,169,127,.75);
  box-shadow: 0 0 0 4px rgba(0,169,127,.10);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: var(--danger);
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(228,101,101,.08);
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 4px;
  color: #c94f4f;
  font-size: .68rem;
  line-height: 1.3;
}

.input-action-wrap {
  position: relative;
}

.input-action-wrap input {
  padding-right: 30px;
}

.input-status {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.input-status.is-loading {
  border: 2px solid var(--line);
  border-top-color: var(--green);
  animation: spin .8s linear infinite;
}

.input-status.is-success {
  background: var(--green);
  box-shadow: inset 0 0 0 4px #fff;
}

@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.form-actions.end {
  justify-content: flex-end;
}

.form-actions.split {
  justify-content: space-between;
}

.conditional-field[hidden] {
  display: none;
}

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--muted);
  cursor: pointer;
  font-size: .73rem;
  line-height: 1.55;
}

.consent-box input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  place-items: center;
  border: 1.5px solid #b9c5ca;
  border-radius: 5px;
  background: #fff;
  color: #fff;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.custom-checkbox svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .18s ease, transform .18s ease;
}

.consent-box input:checked + .custom-checkbox {
  border-color: var(--green);
  background: var(--green);
}

.consent-box input:checked + .custom-checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.consent-box input:focus-visible + .custom-checkbox {
  box-shadow: 0 0 0 4px rgba(46,125,246,.15);
}

.consent-box a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-error {
  min-height: 0;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 13px;
  color: var(--muted-2);
  font-size: .69rem;
  line-height: 1.45;
}

.privacy-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--green);
}

.submit-button.is-loading {
  pointer-events: none;
  opacity: .78;
}

.submit-button.is-loading::after {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(3,38,29,.25);
  border-top-color: #03261d;
  border-radius: 50%;
  content: "";
  animation: spinButton .7s linear infinite;
}

.submit-button.is-loading > svg {
  display: none;
}

@keyframes spinButton { to { transform: rotate(360deg); } }

.submit-helper {
  margin: 9px 0 0;
  color: var(--muted-2);
  font-size: .66rem;
  text-align: right;
}

.form-live {
  min-height: 0;
  color: #c94f4f;
  font-size: .76rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.final-cta {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--green), #087c66);
  color: #fff;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta-inner > div span {
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  font-weight: 700;
}

.final-cta h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.site-footer {
  background: #041522;
  color: rgba(255,255,255,.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr .72fr 1.3fr;
  gap: 54px;
  padding: 72px 0 48px;
}

.brand-footer .brand-copy strong {
  color: #fff;
}

.footer-brand-col > p {
  max-width: 320px;
  margin: 20px 0;
  font-size: .84rem;
  line-height: 1.7;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-3);
  font-weight: 750;
}

.footer-whatsapp svg {
  width: 20px;
  height: 20px;
}

.footer-links-col,
.footer-company-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links-col h2,
.footer-company-col h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links-col a,
.footer-link-button {
  margin-bottom: 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.58);
  cursor: pointer;
  font-size: .83rem;
  text-align: left;
  transition: color .18s ease;
}

.footer-link-button {
  padding: 0;
}

.footer-links-col a:hover,
.footer-link-button:hover {
  color: var(--green-3);
}

.footer-company-col p {
  margin: 0;
  font-size: .81rem;
  line-height: 1.7;
}

.footer-company-col strong {
  color: rgba(255,255,255,.86);
}

.company-credential {
  margin-top: 14px !important;
  padding: 10px 12px;
  border: 1px solid rgba(110,231,194,.12);
  border-radius: 10px;
  background: rgba(110,231,194,.05);
  color: rgba(110,231,194,.72);
}

.footer-disclaimer {
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer-disclaimer p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .68rem;
  line-height: 1.65;
}

.footer-disclaimer p + p {
  margin-top: 9px;
}

.footer-disclaimer strong {
  color: rgba(255,255,255,.82);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.11);
}

.footer-bottom-inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.60);
  font-size: .69rem;
}

.mobile-sticky-cta {
  display: none;
}


/* Atalho de contato para desktop; no celular o CTA inferior assume essa função. */
.desktop-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 75;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: #0ba67b;
  color: #fff;
  box-shadow: 0 18px 42px rgba(3,34,29,.26);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.desktop-whatsapp-float:hover {
  transform: translateY(-3px);
  background: #07956e;
  box-shadow: 0 22px 52px rgba(3,34,29,.32);
}

.desktop-whatsapp-float:focus-visible {
  outline: 3px solid rgba(89,230,189,.42);
  outline-offset: 4px;
}

.desktop-whatsapp-float svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 680px) {
  .desktop-whatsapp-float { display: none; }
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  max-width: 1180px;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 17px;
  margin: auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(4,21,34,.97);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}

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

.cookie-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(110,231,194,.09);
  color: var(--green-3);
}

.cookie-icon svg {
  width: 22px;
  height: 22px;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: .91rem;
}

.cookie-copy p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: .73rem;
  line-height: 1.5;
}

.cookie-copy a {
  color: var(--green-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-actions .button,
.cookie-dialog-actions .button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 10px;
  font-size: .74rem;
}

.button-cookie-primary {
  background: var(--green-2);
  color: #03261d;
}

.button-cookie-outline {
  border-color: rgba(255,255,255,.28);
  background: transparent;
  color: #fff;
}

.button-cookie-text {
  background: transparent;
  color: var(--green-3);
}

.cookie-dialog {
  width: min(calc(100% - 32px), 620px);
  max-height: min(85vh, 720px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.cookie-dialog::backdrop {
  background: rgba(0,13,23,.70);
  backdrop-filter: blur(4px);
}

.cookie-dialog-card {
  padding: 26px;
  border-radius: inherit;
  background: #fff;
}

.cookie-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.cookie-dialog-head span {
  color: var(--green);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cookie-dialog-head h2 {
  margin: 3px 0 0;
  font-size: 1.6rem;
  letter-spacing: -.035em;
}

.dialog-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--muted);
  cursor: pointer;
  font-size: 1.4rem;
}

.cookie-dialog-card > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .83rem;
}

.cookie-category {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cookie-category > div {
  display: flex;
  flex-direction: column;
}

.cookie-category strong {
  font-size: .88rem;
}

.cookie-category div span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
}

.always-on {
  flex-shrink: 0;
  color: var(--green);
  font-size: .7rem;
  font-weight: 750;
}

.cookie-category input {
  position: absolute;
  opacity: 0;
}

.switch {
  position: relative;
  width: 44px;
  height: 25px;
  flex: 0 0 44px;
  border-radius: 999px;
  background: #c9d3d7;
  cursor: pointer;
  transition: background .2s ease;
}

.switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.16);
  content: "";
  transition: transform .2s ease;
}

.cookie-category input:checked + .switch {
  background: var(--green);
}

.cookie-category input:checked + .switch::after {
  transform: translateX(19px);
}

.cookie-category input:focus-visible + .switch {
  outline: 3px solid rgba(46,125,246,.25);
  outline-offset: 2px;
}

.cookie-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.cookie-dialog .button-cookie-outline {
  border-color: var(--line);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: var(--cream);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(7,27,47,.96);
  color: #fff;
  backdrop-filter: blur(18px);
}

.legal-header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .brand-copy strong {
  color: #fff;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-3);
  font-size: .85rem;
  font-weight: 700;
}

.legal-back svg {
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
}

.legal-hero {
  padding: 72px 0 44px;
  background: linear-gradient(145deg, var(--ink), #0a3540);
  color: #fff;
}

.legal-hero h1 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -.05em;
  line-height: 1.05;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.62);
}

.legal-content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 60px;
  padding: 64px 0 92px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 7px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-nav strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.legal-nav a {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .77rem;
  transition: background .18s ease, color .18s ease;
}

.legal-nav a:hover {
  background: var(--mint);
  color: var(--green);
}

.legal-article {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-article section + section {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-article h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  letter-spacing: -.03em;
}

.legal-article h3 {
  margin: 24px 0 9px;
  font-size: 1.06rem;
}

.legal-article p,
.legal-article li {
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.75;
}

.legal-article ul,
.legal-article ol {
  padding-left: 21px;
}

.legal-article li + li {
  margin-top: 7px;
}

.legal-article a {
  color: var(--green);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0;
  padding: 17px 18px;
  border: 1px solid rgba(0,169,127,.18);
  border-radius: 13px;
  background: var(--mint);
}

.legal-callout svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: var(--green);
}

.legal-callout p {
  margin: 0;
}

.legal-meta {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 9px;
  border: 1px solid rgba(110,231,194,.18);
  border-radius: 999px;
  background: rgba(110,231,194,.07);
  color: var(--green-3);
  font-size: .7rem;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .85fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.7rem);
  }

  .trust-ribbon {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    flex-direction: column;
    gap: 2px;
  }

  .steps-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 36px;
  }

  .steps-list::before {
    display: none;
  }

  .roles-grid {
    grid-template-columns: 1fr 82px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.1fr .7fr .8fr 1.2fr;
    gap: 32px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 88px 0;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: calc(34px + var(--header-height));
    right: 16px;
    left: 16px;
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(7,27,47,.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .main-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: rgba(255,255,255,.06);
  }

  .hero {
    padding-top: 62px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 15px;
  }

  .hero-visual {
    max-width: 620px;
    width: 100%;
    margin: auto;
    padding-bottom: 72px;
  }

  .dashboard-shell {
    margin: auto;
  }

  .floating-card-one {
    right: 0;
  }

  .floating-card-two {
    left: 0;
  }

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

  .solution-banner {
    grid-template-columns: auto 1fr;
  }

  .solution-banner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .dual-impact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-connector {
    flex-direction: row;
  }

  .impact-connector span {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line), transparent);
  }

  .impact-connector svg {
    transform: rotate(90deg);
  }

  .simulator-layout,
  .lead-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .simulator-copy,
  .lead-copy {
    max-width: 760px;
  }

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

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

  .role-card {
    min-height: auto;
  }

  .roles-bridge {
    flex-direction: row;
    justify-content: center;
  }

  .roles-bridge svg {
    transform: rotate(90deg);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-heading {
    position: static;
    max-width: 700px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .simulator-copy h2,
  .lead-copy h2,
  .faq-heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .disclosure-inner {
    min-height: 31px;
    justify-content: center;
    text-align: center;
  }

  .disclosure-inner a {
    display: none;
  }

  .site-header {
    height: 66px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 1.03rem;
  }

  .brand-copy span {
    font-size: .65rem;
  }

  .main-nav {
    top: 97px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-microproof {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    padding: 34px 0 60px;
  }

  .dashboard-shell {
    padding: 19px;
    border-radius: 21px;
  }

  .dashboard-chart {
    gap: 7px;
  }

  .floating-card {
    display: none;
  }

  .trust-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
    padding: 22px 0;
  }

  .trust-item strong {
    font-size: .88rem;
  }

  .trust-item span {
    font-size: .66rem;
  }

  .problem-grid,
  .benefits-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .benefit-card {
    padding: 24px;
  }

  .benefit-card {
    min-height: 0;
  }

  .solution-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .solution-mark {
    width: 88px;
    height: 88px;
  }

  .solution-mark span {
    font-size: 2.1rem;
  }

  .impact-card {
    padding: 29px 24px;
  }

  .impact-number {
    font-size: 5rem;
  }

  .clarity-note {
    padding: 15px;
  }

  .simulator-card {
    padding: 24px 18px;
  }

  .simulator-results {
    grid-template-columns: 1fr;
  }

  .control-heading {
    align-items: flex-end;
  }

  .step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 17px;
    padding: 0;
    text-align: left;
  }

  .step-icon {
    grid-row: 1 / 4;
    width: 62px;
    height: 62px;
    margin: 0;
  }

  .step-number {
    top: -8px;
    left: 42px;
  }

  .step-card h3 {
    align-self: end;
    margin: 4px 0 5px;
  }

  .step-card p {
    grid-column: 2;
  }

  .roles-bridge {
    margin: 1px 0;
  }

  .role-card {
    padding: 28px 23px;
  }

  .accordion-item button {
    padding: 19px 0;
    font-size: .91rem;
  }

  .accordion-panel {
    padding-right: 12px;
  }

  .lead-copy {
    padding-top: 0;
  }

  .form-card-head,
  #leadForm {
    padding-right: 20px;
    padding-left: 20px;
  }

  .form-progress {
    padding-right: 20px;
    padding-left: 20px;
  }

  .field-grid.two,
  .field-grid.cep-grid,
  .field-grid.city-grid {
    grid-template-columns: 1fr;
  }

  .form-actions.split {
    gap: 8px;
  }

  .form-actions.split .button-primary {
    flex: 1;
  }

  .submit-helper {
    text-align: left;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0 38px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    text-align: center;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green-2), var(--green));
    color: #03261d;
    font-size: .92rem;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(0,0,0,.24);
  }

  .mobile-sticky-cta svg {
    width: 18px;
    height: 18px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 72px;
    left: 10px;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 15px;
  }

  .cookie-icon {
    width: 38px;
    height: 38px;
  }

  .cookie-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .cookie-actions .button-cookie-text {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .cookie-dialog-card {
    padding: 21px;
  }

  .cookie-category {
    gap: 12px;
  }

  .cookie-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-header-inner {
    min-height: 68px;
  }

  .legal-back span {
    display: none;
  }

  .legal-hero {
    padding: 56px 0 36px;
  }

  .legal-content {
    padding: 44px 0 74px;
  }

  .legal-nav {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }

  .legal-article {
    padding: 24px 20px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Legal pages do not use the mobile sticky CTA. */
@media (max-width: 680px) {
  body.legal-page { padding-bottom: 0; }
}

/* ===== Revisão PWA v2 — hierarquia comercial, acessibilidade e estados ===== */
.disclosure-separator {
  color: rgba(255,255,255,.28);
}

.impact-number.impact-number-text {
  top: 22px;
  right: 24px;
  max-width: 180px;
  color: rgba(255,255,255,.11);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .09em;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.impact-secondary .impact-number.impact-number-text {
  color: rgba(151,96,0,.34);
}

.impact-connector.impact-plus strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

.simulator-disclaimer {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(7,27,47,.10);
  border-radius: 10px;
  background: rgba(7,27,47,.035);
  color: var(--muted-2);
  font-size: .69rem;
  line-height: 1.55;
}

.conditional-group[hidden],
.cookie-category[hidden],
.install-app-button[hidden] {
  display: none !important;
}

.button:disabled {
  cursor: not-allowed;
  opacity: .68;
  transform: none;
}

.form-live:not(:empty) {
  min-height: 22px;
  margin-top: 12px;
  line-height: 1.5;
}

.form-live a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.install-app-button {
  color: var(--green-3);
  font-weight: 760;
}

@media (max-width: 900px) {
  .disclosure-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 10px;
    padding-block: 7px;
    text-align: center;
  }

  .disclosure-separator {
    display: none;
  }
}

@media (max-width: 680px) {
  .impact-number.impact-number-text {
    top: 18px;
    right: 20px;
    max-width: 145px;
    font-size: .61rem;
  }
}

/* Revision 2026-07-14: keep the native checkbox label fully clickable. */
.custom-checkbox,
.custom-checkbox svg {
  pointer-events: none;
}

/* Reliability first: all substantive content remains visible even if JavaScript,
   IntersectionObserver or animation initialization fails. */
.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Cookie choices remain equally easy to perceive and activate. */
.cookie-banner .button-cookie-outline {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}
