:root {
  --ink: #0b1e2c;
  --ink-soft: #163448;
  --green-dark: #043e36;
  --green: #00773e;
  --green-bright: #56b130;
  --red: #d71412;
  --red-dark: #8f1414;
  --paper: #f4f5f0;
  --paper-deep: #e7eae3;
  --white: #ffffff;
  --muted: #64717a;
  --line: rgba(11, 30, 44, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --header-height: 82px;
  --shadow: 0 24px 70px rgba(3, 27, 24, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  color: var(--white);
  background: var(--red);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 128px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 0.25s ease;
}

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

.site-grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(244, 245, 240, 0.94);
  box-shadow: 0 10px 40px rgba(3, 27, 24, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::after {
  background: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-mark {
  width: 52px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.main-nav > a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 40%, rgba(86, 177, 48, 0.13), transparent 27%),
    linear-gradient(120deg, #061c28 0%, #062f31 62%, #043e36 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, black 25%, black 100%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.025) 12px 14px);
}

.hero-stripe {
  position: absolute;
  z-index: 0;
  top: -12%;
  right: 20%;
  width: 180px;
  height: 128%;
  opacity: 0.14;
  background: var(--red);
  transform: skewX(-18deg);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 0.88fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  height: 100%;
  padding-top: var(--header-height);
}

.hero-copy {
  padding-top: 28px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: #a9db77;
}

.eyebrow-line {
  width: 44px;
  height: 2px;
  background: var(--green-bright);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
}

.headline-accent {
  position: relative;
  display: inline-block;
  color: var(--white);
}

.headline-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10px;
  bottom: 5px;
  left: -8px;
  height: 28%;
  background: var(--red);
  transform: skewX(-12deg);
}

.hero-text {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(215, 20, 18, 0.26);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.button-primary:hover {
  background: #ed1c19;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover {
  border-color: var(--green-bright);
  background: rgba(86, 177, 48, 0.08);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.hero-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 570px);
  justify-self: end;
}

.risk-board {
  position: relative;
  width: 100%;
  padding: 18px 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(2, 22, 25, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.risk-board::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(215, 20, 18, 0.55);
}

.board-topline,
.board-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.board-topline {
  padding: 2px 4px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.58);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b9e886;
}

.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(86, 177, 48, 0.11);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(86, 177, 48, 0); }
}

.risk-radar {
  width: 100%;
  max-height: 55vh;
  min-height: 380px;
}

.radar-grid path,
.radar-ring,
.radar-axis {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.radar-ring {
  stroke-dasharray: 5 9;
}

.radar-axis {
  stroke-dasharray: 3 12;
}

.radar-sweep {
  fill: rgba(86, 177, 48, 0.12);
  transform-origin: center;
}

.monitor-path path {
  fill: none;
  stroke: #c3f18f;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.monitor-path circle {
  fill: var(--green-bright);
  stroke: #dcffc1;
  stroke-width: 3;
}

.risk-marker circle {
  fill: rgba(215, 20, 18, 0.9);
  stroke: #ff8b88;
  stroke-width: 2;
}

.risk-marker path {
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
}

.marker-two {
  opacity: 0.7;
}

.board-legend {
  justify-content: flex-start;
  padding: 12px 4px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.06em;
}

.board-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.board-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-safe { background: var(--green-bright); }
.legend-risk { background: var(--red); }
.legend-line { background: #c3f18f; }

.hero-stamp {
  position: absolute;
  right: -32px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 168px;
  min-height: 88px;
  padding: 14px;
  border: 2px solid var(--white);
  color: var(--white);
  background: var(--red);
  box-shadow: 12px 12px 0 rgba(4, 62, 54, 0.8);
  transform: rotate(-2deg);
}

.hero-stamp span {
  align-self: stretch;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}

.hero-stamp strong {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 0.98;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 1px;
  background: var(--green-bright);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0% { transform: translateX(-40px); }
  100% { transform: translateX(78px); }
}

.impact-strip {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, #b80f10 0%, var(--red) 50%, #e31816 100%);
  transform: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(11, 30, 44, 0.08);
  box-shadow: 0 8px 18px rgba(143, 20, 20, 0.12);
}

.impact-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding-block: 15px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.impact-track i {
  color: #ff9d99;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-intro {
  max-width: 900px;
}

.section-intro h2,
.services-sticky h2,
.training-heading h2,
.principles-title h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-intro h2 span {
  color: var(--green);
}

.split-intro {
  display: grid;
  grid-template-columns: 0.8fr 2.1fr 1.15fr;
  gap: 42px;
  align-items: start;
  max-width: none;
  padding-bottom: 66px;
  border-bottom: 1px solid var(--line);
}

.split-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.manifesto {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(11, 30, 44, 0.04) 50%, transparent 50.05%),
    var(--paper);
}

.manifesto::before {
  content: "MONITORA";
  position: absolute;
  top: 180px;
  right: -40px;
  color: rgba(11, 30, 44, 0.025);
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(90deg) translateX(100%);
  transform-origin: top right;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.mission-block,
.vision-block,
.values-block {
  position: relative;
  min-height: 390px;
  padding: clamp(34px, 4vw, 58px);
  background: var(--paper);
}

.mission-block {
  color: var(--white);
  background: var(--green-dark);
}

.vision-block {
  background: var(--white);
}

.block-index {
  position: absolute;
  top: 30px;
  right: 34px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 116px;
  font-weight: 800;
  line-height: 1;
}

.vision-block .block-index,
.values-block .block-index {
  color: rgba(11, 30, 44, 0.07);
}

.block-label,
.mini-label {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-block .block-label {
  color: #a9db77;
}

.vision-block .block-label,
.values-block .block-label {
  color: var(--green);
}

.mission-block h3,
.vision-block h3 {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 100px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-transform: uppercase;
}

.values-block {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  min-height: 0;
}

.values-heading {
  position: relative;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.values-list li:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.values-list li:nth-child(even) {
  padding-left: 24px;
}

.values-list span {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
}

.services {
  background: var(--white);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.52fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.services-sticky {
  position: sticky;
  top: 120px;
}

.services-sticky h2 {
  font-size: clamp(42px, 4.5vw, 66px);
}

.services-sticky > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: var(--muted);
}

.text-link,
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.text-link span,
.inline-cta span {
  color: var(--red);
  font-size: 18px;
}

.service-list {
  border-top: 1px solid var(--ink);
}

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

.service-item summary {
  display: grid;
  grid-template-columns: 62px 1fr 40px;
  gap: 18px;
  align-items: center;
  min-height: 108px;
  cursor: pointer;
  list-style: none;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-number {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.service-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.25s ease, border 0.25s ease, transform 0.35s ease;
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item[open] .service-toggle {
  border-color: var(--red);
  background: var(--red);
  transform: rotate(45deg);
}

.service-item[open] .service-toggle::before,
.service-item[open] .service-toggle::after {
  background: var(--white);
}

.service-content {
  padding: 0 0 52px 80px;
}

.service-lead {
  max-width: 740px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.service-columns,
.agent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.82fr);
  gap: 28px;
}

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

.check-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  transform: rotate(45deg);
}

.check-list.compact li {
  padding-top: 9px;
  padding-bottom: 9px;
}

.check-list.two-col {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
}

.esocial-box {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background: var(--green-dark);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.esocial-box::after {
  content: "eS";
  position: absolute;
  right: -2px;
  bottom: -26px;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
}

.esocial-box > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 14px 0 22px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.05;
  text-transform: uppercase;
}

.esocial-box ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  line-height: 1.5;
}

.esocial-box b {
  display: inline-block;
  min-width: 50px;
  color: #b9e886;
}

.agent-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.agent-grid .mini-label {
  margin-bottom: 10px;
}

.method {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.method-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(215, 20, 18, 0.8) 58% 61%, transparent 61%),
    repeating-linear-gradient(90deg, transparent 0 97px, rgba(255, 255, 255, 0.08) 97px 98px),
    repeating-linear-gradient(0deg, transparent 0 97px, rgba(255, 255, 255, 0.05) 97px 98px);
}

.method::after {
  content: "04";
  position: absolute;
  top: -130px;
  right: -20px;
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-display);
  font-size: 420px;
  font-weight: 800;
  line-height: 1;
}

.method .container {
  position: relative;
  z-index: 1;
}

.section-kicker.light {
  color: #b9e886;
}

.method-intro {
  display: grid;
  grid-template-columns: 0.7fr 2fr 1fr;
  gap: 44px;
  align-items: start;
  max-width: none;
}

.method-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 84px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.method-steps li {
  position: relative;
  min-height: 390px;
  padding: 30px;
  background: rgba(11, 30, 44, 0.84);
  transition: background 0.3s ease, transform 0.3s ease;
}

.method-steps li:hover {
  z-index: 1;
  background: var(--green-dark);
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 800;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 62px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #b9e886;
  transform: rotate(45deg);
}

.step-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-45deg);
}

.method-steps h3 {
  margin: 66px 0 12px;
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.training {
  background: var(--paper);
}

.training-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.training-heading > p {
  margin: 0;
  color: var(--muted);
}

.training-board {
  border-top: 2px solid var(--ink);
}

.training-header,
.training-row {
  display: grid;
  grid-template-columns: 140px 1fr 170px;
  gap: 24px;
  align-items: center;
}

.training-header {
  min-height: 54px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.training-row {
  position: relative;
  min-height: 74px;
  border-top: 1px solid var(--line);
  transition: padding 0.28s ease, color 0.28s ease;
}

.training-row::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--green-dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}

.training-row:hover {
  z-index: 1;
  padding-inline: 18px;
  color: var(--white);
}

.training-row:hover::before {
  transform: scaleY(1);
}

.training-row strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 28px;
}

.training-row span {
  font-size: 13px;
  font-weight: 700;
}

.training-row em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-row:hover em {
  color: rgba(255, 255, 255, 0.6);
}

.principles {
  padding-top: 0;
  background: var(--paper);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principles-title,
.principle {
  min-height: 330px;
  padding: 38px;
  background: var(--white);
}

.principles-title {
  color: var(--white);
  background: var(--red);
}

.principles-title .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.principles-title h2 {
  margin-top: 88px;
  font-size: clamp(38px, 4vw, 56px);
}

.principle {
  position: relative;
  transition: background 0.28s ease;
}

.principle:hover {
  background: #f9faf7;
}

.principle > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.principle h3 {
  margin: 128px 0 14px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact {
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
}

.contact-cut {
  position: absolute;
  top: -20%;
  right: -110px;
  width: 460px;
  height: 150%;
  background: var(--red);
  transform: skewX(-14deg);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.9fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 680px;
  font-size: clamp(48px, 5.3vw, 76px);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-channels {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.contact-channels a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.contact-channels svg {
  width: 34px;
  fill: none;
  stroke: #b9e886;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channels span {
  display: grid;
}

.contact-channels small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-channels strong {
  font-size: 14px;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.form-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 6px rgba(86, 177, 48, 0.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form label > span:first-child {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-row.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11, 30, 44, 0.25);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input,
.contact-form select {
  height: 46px;
}

.contact-form textarea {
  min-height: 94px;
  padding-top: 10px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: rgba(86, 177, 48, 0.035);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #98a0a5;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.privacy-check span {
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.button-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  color: var(--white);
  background: var(--ink);
}

.button-submit:hover {
  background: var(--green-dark);
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
}


.faq {
  background:
    linear-gradient(180deg, rgba(244, 245, 240, 0.96), rgba(231, 234, 227, 0.92)),
    repeating-linear-gradient(90deg, rgba(11, 30, 44, 0.04) 0 1px, transparent 1px 84px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(11, 30, 44, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
}

.privacy-check a,
.footer-links a[href="privacidade.html"] {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-page {
  min-height: 100vh;
  padding: 72px 0;
  background: var(--paper);
}

.privacy-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
}

.privacy-card h2 {
  margin: 34px 0 10px;
  font-size: 18px;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
}

.privacy-card a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  color: var(--white);
  background: #061823;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.85fr 1fr;
  gap: 50px;
  padding-block: 76px 58px;
}

.footer-brand img {
  width: 210px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-label {
  margin: 0 0 20px;
  color: #a9db77;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-links a,
.footer-contact > a:not(.footer-button) {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact > a:not(.footer-button):hover {
  color: var(--white);
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-top: 22px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-button span {
  color: var(--red);
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-bottom a:hover {
  color: #a9db77;
}

.whatsapp-float {
  position: fixed;
  z-index: 990;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #0b1e2c 0%, #00773e 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(4, 62, 54, 0.28);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #163448 0%, #00884a 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(4, 62, 54, 0.34);
}

.whatsapp-float svg {
  width: 28px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-bubble {
  position: absolute;
  right: calc(100% + 12px);
  width: max-content;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(11, 30, 44, 0.18);
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.whatsapp-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  background: var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float:hover .whatsapp-bubble {
  opacity: 1;
  transform: translateX(0);
}

.toast {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 96px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

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

:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

/* Conteúdo continua visível mesmo se a biblioteca de animação não carregar. */
.js .reveal {
  opacity: 1;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 40px, 980px);
  }

  .hero {
    min-height: 820px;
    height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.85fr;
    min-height: 820px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(56px, 7vw, 78px);
  }

  .risk-radar {
    min-height: 340px;
  }

  .hero-stamp {
    right: -10px;
  }

  .split-intro,
  .method-intro {
    grid-template-columns: 0.55fr 1.8fr;
  }

  .split-intro > p:last-child,
  .method-intro > p:last-child {
    grid-column: 2;
  }

  .services-layout {
    gap: 60px;
  }

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

  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .principles-title {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .principles-title h2 {
    margin-top: 50px;
  }

  .contact-layout {
    grid-template-columns: 0.8fr 1fr;
    gap: 52px;
  }

  .footer-main {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px 24px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }

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

  .main-nav > a {
    width: 100%;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 28px;
    text-transform: uppercase;
  }

  .nav-cta {
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    border: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 12px !important;
  }

  .hero {
    min-height: 1040px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 1040px;
    padding-top: 100px;
    padding-bottom: 120px;
  }

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

  .hero-visual {
    width: min(100%, 560px);
    justify-self: center;
  }

  .hero-stamp {
    right: 4px;
  }

  .scroll-cue {
    left: 24px;
  }

  .split-intro,
  .method-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-intro > p:last-child,
  .method-intro > p:last-child {
    grid-column: auto;
  }

  .manifesto-layout {
    grid-template-columns: 1fr;
  }

  .values-block {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-sticky {
    position: static;
  }

  .training-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .principles-title {
    grid-column: 1 / -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-cut {
    top: 46%;
    right: -190px;
  }

  .contact-form {
    width: min(100%, 680px);
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 32px);
  }

  .section {
    padding-block: 88px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .hero-text {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-tags {
    margin-top: 26px;
  }

  .hero-visual {
    margin-top: 12px;
  }

  .risk-board {
    padding: 12px;
  }

  .risk-radar {
    min-height: 290px;
  }

  .board-topline,
  .board-legend {
    font-size: 8px;
  }

  .board-legend {
    flex-wrap: wrap;
  }

  .hero-stamp {
    right: -2px;
    bottom: 18px;
    width: 142px;
    min-height: 76px;
  }

  .hero-stamp span {
    font-size: 23px;
  }

  .hero-stamp strong {
    font-size: 14px;
  }

  .scroll-cue {
    display: none;
  }

  .impact-track {
    font-size: 17px;
  }

  .section-intro h2,
  .services-sticky h2,
  .training-heading h2,
  .principles-title h2,
  .contact-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .split-intro {
    padding-bottom: 44px;
  }

  .manifesto-layout {
    margin-top: 48px;
  }

  .mission-block,
  .vision-block,
  .values-block {
    min-height: 320px;
    padding: 28px;
  }

  .mission-block h3,
  .vision-block h3 {
    margin-top: 86px;
    font-size: 36px;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .values-list li:nth-child(odd),
  .values-list li:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .service-item summary {
    grid-template-columns: 38px 1fr 36px;
    gap: 10px;
    min-height: 92px;
  }

  .service-title {
    font-size: 29px;
  }

  .service-content {
    padding: 0 0 38px;
  }

  .service-columns,
  .agent-grid {
    grid-template-columns: 1fr;
  }

  .check-list.two-col {
    grid-template-columns: 1fr;
  }

  .method-steps {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .method-steps li {
    min-height: 300px;
  }

  .method-steps h3 {
    margin-top: 54px;
  }

  .training-header {
    display: none;
  }

  .training-row {
    grid-template-columns: 78px 1fr;
    gap: 14px;
    min-height: 90px;
    padding-block: 12px;
  }

  .training-row em {
    grid-column: 2;
    margin-top: -12px;
  }

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

  .principles-title,
  .principle {
    min-height: 280px;
    padding: 30px;
  }

  .principles-title {
    grid-column: auto;
  }

  .principle h3 {
    margin-top: 96px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .field-row.two-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
    padding-block: 62px 42px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-bubble {
    display: none;
  }
}

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

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


/* Ajustes solicitados em 2026-08-10 — Monitora */
.brand {
  min-width: 0;
}

.brand span {
  min-width: 0;
}

.brand small {
  display: block;
  max-width: clamp(210px, 24vw, 390px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(8px, 0.78vw, 10px);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}




/* Correção do subtítulo da marca no header branco — 2026-08-10 */
.site-header.is-compact .brand small,
.site-header.is-scrolled .brand small,
.site-header.scrolled .brand small,
.site-header.header-scrolled .brand small,
.site-header.sticky-active .brand small {
  color: rgba(11, 30, 44, 0.68);
}

.site-header.is-compact .brand small:hover,
.site-header.is-scrolled .brand small:hover,
.site-header.scrolled .brand small:hover,
.site-header.header-scrolled .brand small:hover,
.site-header.sticky-active .brand small:hover {
  color: var(--ink);
}


/* Correção definitiva dos cards do banner — 2026-08-10
   Mantém os 4 blocos fluídos e impede sobreposição em notebooks/resoluções baixas. */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: min(100%, 620px);
  overflow: visible;
}

.hero-tags span {
  flex: 0 1 auto;
  max-width: 100%;
  min-width: 0;
  padding: 8px 13px;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

/* Em larguras intermediárias, ocupa duas colunas reais dentro da área disponível. */
@media (max-width: 1280px) {
  .hero-tags {
    max-width: min(100%, 500px);
  }

  .hero-tags span {
    flex: 1 1 calc(50% - 10px);
  }
}

/* Antes do layout virar uma coluna, reduzimos o peso visual para não encostar no radar. */
@media (max-width: 1100px) {
  .hero-tags {
    max-width: 100%;
  }

  .hero-tags span {
    flex: 1 1 calc(50% - 10px);
    padding-inline: 10px;
    font-size: 10px;
  }
}

@media (max-width: 760px) {
  .brand small {
    max-width: 230px;
    font-size: 8px;
    letter-spacing: 0.055em;
  }

  .hero-tags span {
    flex: 1 1 calc(50% - 10px);
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .brand small {
    max-width: 178px;
  }

  .hero-tags span {
    flex-basis: 100%;
  }
}


@media (max-width: 900px) {
  .risk-board-illustration {
    padding: 18px;
  }

  .hero-diagram-shell {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .risk-board-illustration {
    padding: 12px;
  }

  .hero-diagram-shell {
    min-height: 250px;
  }

  .hero-diagram-orbit {
    inset: 12%;
  }
}


/* Hero premium com imagem estratégica do cliente — 2026-08-10 */
@media (min-width: 1181px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.06fr);
    gap: clamp(36px, 5vw, 84px);
  }
}

.hero-visual-premium {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 760px);
  justify-self: end;
}

.hero-showcase {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 26px 0 34px;
  background:
    radial-gradient(circle at 48% 46%, rgba(86, 177, 48, 0.16) 0%, rgba(86, 177, 48, 0.06) 26%, rgba(86, 177, 48, 0.01) 52%, transparent 72%),
    linear-gradient(180deg, rgba(5, 22, 33, 0.14), rgba(5, 22, 33, 0.02));
  isolation: isolate;
}

.hero-showcase-grid {
  position: absolute;
  inset: 8% 5%;
  z-index: 0;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 82%);
  pointer-events: none;
}

.hero-showcase-glow {
  position: absolute;
  inset: 10% 10%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(86, 177, 48, 0.34) 0%, rgba(86, 177, 48, 0.16) 22%, rgba(86, 177, 48, 0.05) 44%, transparent 68%);
  filter: blur(18px);
  animation: premiumGlowPulse 5.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-showcase-ring {
  position: absolute;
  inset: 8%;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(195, 241, 143, 0.26);
  pointer-events: none;
}

.hero-showcase-ring-a {
  animation: premiumRingFloat 10s linear infinite;
}

.hero-showcase-ring-b {
  inset: 14%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.18);
  animation: premiumRingReverse 16s linear infinite;
}

.hero-showcase-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 118%;
  max-width: 980px;
  height: auto;
  margin-left: -5%;
  object-fit: contain;
  filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.34));
  transform-origin: center;
  animation: premiumDiagramFloat 6s ease-in-out infinite;
}

.hero-float-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 146px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7, 23, 31, 0.56);
  box-shadow: 0 16px 34px rgba(0,0,0,0.20);
  backdrop-filter: blur(10px);
  color: var(--white);
  text-transform: uppercase;
}

.hero-float-note strong {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 0.95;
  letter-spacing: 0.05em;
}

.hero-float-note span {
  color: rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
}

.hero-float-note::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 6px rgba(86, 177, 48, 0.16);
}

.hero-float-note-top {
  top: 10px;
  left: 50%;
  min-width: 164px;
  transform: translateX(-50%);
  text-align: center;
}

.hero-float-note-top::before {
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
}

.hero-float-note-left {
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
  text-align: right;
}

.hero-float-note-left::before {
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-float-note-right {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  text-align: left;
}

.hero-float-note-right::before {
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-float-note-bottom {
  bottom: 10px;
  left: 50%;
  min-width: 172px;
  transform: translateX(-50%);
  text-align: center;
}

.hero-float-note-bottom::before {
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
}

@keyframes premiumDiagramFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.015);
  }
}

@keyframes premiumGlowPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes premiumRingFloat {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes premiumRingReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@media (max-width: 1280px) {
  .hero-visual-premium {
    width: min(100%, 690px);
  }

  .hero-showcase {
    min-height: 480px;
  }

  .hero-showcase-image {
    width: 114%;
    margin-left: -4%;
  }

  .hero-float-note-left {
    left: 8px;
  }

  .hero-float-note-right {
    right: 8px;
  }
}

@media (max-width: 1100px) {
  .hero-showcase {
    min-height: 450px;
  }

  .hero-float-note {
    min-width: 128px;
    padding: 10px 12px;
  }

  .hero-float-note strong {
    font-size: 16px;
  }

  .hero-float-note span {
    font-size: 9px;
  }
}

@media (max-width: 900px) {
  .hero-visual-premium {
    width: min(100%, 640px);
    justify-self: center;
  }

  .hero-showcase {
    min-height: 460px;
    padding-bottom: 24px;
  }

  .hero-showcase-image {
    width: 112%;
    margin-left: -3%;
  }
}

@media (max-width: 680px) {
  .hero-showcase {
    min-height: 370px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-showcase-image {
    width: 114%;
    margin-left: -5%;
  }

  .hero-float-note {
    min-width: 0;
    padding: 8px 10px;
  }

  .hero-float-note strong {
    font-size: 14px;
  }

  .hero-float-note span {
    font-size: 8px;
  }

  .hero-float-note-top,
  .hero-float-note-bottom {
    min-width: 144px;
  }
}

@media (max-width: 520px) {
  .hero-showcase {
    min-height: 300px;
  }

  .hero-showcase-grid,
  .hero-showcase-ring,
  .hero-float-note {
    display: none;
  }

  .hero-showcase-image {
    width: 118%;
    margin-left: -9%;
  }
}


/* Ajuste fino de escala dos títulos — 2026-08-11
   Redução moderada para deixar o site mais elegante e confortável em telas menores. */
.section-intro h2,
.services-sticky h2,
.training-heading h2,
.principles-title h2,
.contact-copy h2 {
  font-size: clamp(34px, 4.15vw, 58px);
  line-height: 0.98;
}

.manifesto h3,
.mission-block h3,
.vision-block h3 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.02;
}

.service-title {
  font-size: clamp(23px, 2.65vw, 40px);
  line-height: 1.02;
}

.principle-card h3,
.training-card h3,
.method-card h3,
.faq-list summary {
  font-size: clamp(17px, 1.45vw, 22px);
}

.contact-copy h2 {
  max-width: 760px;
}

@media (max-width: 760px) {
  .section-intro h2,
  .services-sticky h2,
  .training-heading h2,
  .principles-title h2,
  .contact-copy h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .mission-block h3,
  .vision-block h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .service-title {
    font-size: clamp(22px, 7.2vw, 32px);
  }
}
