/* =========================================================
   PACT V5 — HERO
   Direção: cinematic strategic interface
========================================================= */

:root {
  --bg: #050709;
  --surface: #0b0e12;

  --text: #f5f6f7;
  --text-soft: #a6adb7;
  --text-muted: #747c87;

  --accent: #d5ff3f;
  --accent-soft: rgba(213, 255, 63, 0.12);

  --line: rgba(255, 255, 255, 0.10);
  --line-light: rgba(255, 255, 255, 0.16);

  --container: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Manrope", sans-serif;

  background: var(--bg);
  color: var(--text);

  line-height: 1.6;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 50;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 9, 0.78),
      rgba(5, 7, 9, 0.25)
    );

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 64px), var(--container));

  min-height: 76px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;

  letter-spacing: -0.05em;

  flex-shrink: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.desktop-nav a {
  color: rgba(245, 246, 247, 0.66);

  font-size: 0.83rem;
  font-weight: 500;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-cta {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;

  border-radius: 999px;

  background: var(--accent);
  color: #080a0c;

  font-size: 0.82rem;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

  box-shadow:
    0 10px 35px rgba(213, 255, 63, 0.18);
}


/* =========================================================
   HERO BASE
========================================================= */

.hero {
  position: relative;

  width: 100%;

  min-height: 100svh;

  overflow: hidden;

  display: flex;
  align-items: center;

  isolation: isolate;

  background: var(--bg);
}


/* =========================================================
   VIDEO
========================================================= */

.hero-video-wrap {
  position: absolute;
  inset: 0;

  z-index: -5;

  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  transform: scale(1.02);
}


/* =========================================================
   VIDEO OVERLAYS
========================================================= */

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: -4;

  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 9, 0.96) 0%,
      rgba(5, 7, 9, 0.90) 25%,
      rgba(5, 7, 9, 0.66) 50%,
      rgba(5, 7, 9, 0.26) 75%,
      rgba(5, 7, 9, 0.20) 100%
    );
}

.hero-vignette {
  position: absolute;
  inset: 0;

  z-index: -3;

  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 9, 0.34) 0%,
      transparent 30%,
      transparent 66%,
      rgba(5, 7, 9, 0.82) 100%
    );
}

.hero-grid-effect {
  position: absolute;
  inset: 0;

  z-index: -2;

  opacity: 0.16;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );

  background-size: 76px 76px;

  -webkit-mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8),
      transparent 65%
    );

  mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8),
      transparent 65%
    );
}

.hero-glow {
  position: absolute;

  width: 520px;
  height: 520px;

  left: -260px;
  top: 45%;

  z-index: -1;

  border-radius: 50%;

  background: rgba(213, 255, 63, 0.08);

  filter: blur(150px);

  pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

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

  margin: 0 auto;

  padding-top: 110px;
  padding-bottom: 120px;
}

.hero-content {
  width: min(100%, 720px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 26px;

  color: rgba(245, 246, 247, 0.72);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 0 18px rgba(213, 255, 63, 0.65);
}


/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.hero-title {
  max-width: 720px;

  font-size: clamp(3.6rem, 5.5vw, 4.8rem);
  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.055em;
}

.hero-line {
  display: block;
}

.hero-line-accent {
  color: rgba(245, 246, 247, 0.56);
}

.hero-description {
  max-width: 610px;

  margin-top: 28px;

  color: rgba(245, 246, 247, 0.66);

  font-size: 1.04rem;
  font-weight: 400;

  line-height: 1.72;
}

.hero-description strong {
  color: rgba(245, 246, 247, 0.94);

  font-weight: 500;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.button {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  padding: 0 22px;

  border-radius: 999px;

  font-size: 0.88rem;
  font-weight: 600;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #080a0c;

  box-shadow:
    0 12px 40px rgba(213, 255, 63, 0.12);
}

.button-primary:hover {
  box-shadow:
    0 18px 50px rgba(213, 255, 63, 0.20);
}

.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-arrow svg {
  display: block;
}

.button-ghost {
  color: rgba(245, 246, 247, 0.82);

  border: 1px solid rgba(255, 255, 255, 0.13);

  background: rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);

  background: rgba(255, 255, 255, 0.065);
}


/* =========================================================
   PACT MINI SYSTEM — DESKTOP
========================================================= */

.hero-pact {
  margin-top: 58px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-pact-label {
  display: block;

  margin-bottom: 16px;

  color: rgba(245, 246, 247, 0.35);

  font-size: 0.62rem;
  font-weight: 600;

  letter-spacing: 0.13em;
}

.hero-pact-letters {
  display: flex;
  align-items: center;

  gap: 18px;
}

.hero-pact-item {
  display: flex;
  align-items: center;

  gap: 8px;
}

.hero-pact-item strong {
  color: var(--accent);

  font-size: 0.95rem;
  font-weight: 700;
}

.hero-pact-item span {
  color: rgba(245, 246, 247, 0.48);

  font-size: 0.72rem;
}

.hero-pact-divider {
  width: 1px;
  height: 16px;

  background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
  position: absolute;

  right: 42px;
  bottom: 34px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;
}

.scroll-indicator > span {
  color: rgba(245, 246, 247, 0.30);

  font-size: 0.57rem;
  font-weight: 600;

  letter-spacing: 0.16em;

  writing-mode: vertical-rl;
}

.scroll-line {
  position: relative;

  width: 1px;
  height: 54px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.12);
}

.scroll-line i {
  position: absolute;

  top: -20px;
  left: 0;

  width: 100%;
  height: 20px;

  background: var(--accent);
}


/* =========================================================
   TEMPORARY NEXT SECTION
========================================================= */

.v5-placeholder {
  min-height: 55vh;

  display: grid;
  place-items: center;

  background: var(--bg);
}

.v5-placeholder p {
  color: rgba(245, 246, 247, 0.18);

  font-size: 0.7rem;
  font-weight: 600;

  letter-spacing: 0.16em;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .desktop-nav {
    display: none;
  }

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

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

  .hero-title {
    font-size: clamp(3rem, 8vw, 4rem);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  /* HEADER */

  .site-header {
    background: rgba(5, 7, 9, 0.72);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .header-inner {
    width: calc(100% - 32px);

    min-height: 66px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .header-cta {
    display: none;
  }


  /* HERO */

  .hero {
  min-height: 100dvh;
  height: auto;

  align-items: flex-end;
}


  /* VIDEO */

  .hero-video {
    object-position: 60% center;

    transform: scale(1.04);
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 9, 0.36) 0%,
        rgba(5, 7, 9, 0.48) 24%,
        rgba(5, 7, 9, 0.72) 55%,
        rgba(5, 7, 9, 0.92) 82%,
        rgba(5, 7, 9, 0.98) 100%
      );
  }

  .hero-vignette {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 9, 0.16) 0%,
        transparent 24%,
        transparent 60%,
        rgba(5, 7, 9, 0.78) 100%
      );
  }

  .hero-grid-effect {
    opacity: 0.07;

    background-size: 54px 54px;
  }

  .hero-glow {
    width: 360px;
    height: 360px;

    left: -220px;
    top: 55%;

    filter: blur(120px);
  }


  /* CONTENT */

  .hero-container {
  width: calc(100% - 32px);

  padding-top: 120px;
  padding-bottom: 56px;
}

  .hero-content {
    width: 100%;

    max-width: 520px;
  }

  .hero-eyebrow {
    margin-bottom: 18px;

    font-size: 0.64rem;

    letter-spacing: 0.13em;
  }

  .eyebrow-dot {
    width: 6px;
    height: 6px;
  }


  /* TITLE */

  .hero-title {
    max-width: 500px;

    font-size: clamp(2.5rem, 10.8vw, 3.05rem);
    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -0.05em;
  }

  .hero-description {
    max-width: 480px;

    margin-top: 20px;

    font-size: 0.94rem;

    line-height: 1.65;
  }


  /* BUTTONS */

  .hero-actions {
    display: flex;

    flex-direction: column;
    align-items: stretch;

    gap: 16px;

    margin-top: 26px;
  }

  .button-primary {
    width: 100%;

    min-height: 56px;
  }

  .button-ghost {
    width: fit-content;

    min-height: auto;

    padding: 4px 0;

    border: 0;

    background: transparent;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    color: rgba(245, 246, 247, 0.64);

    justify-content: flex-start;
  }

  .button-ghost:hover {
    border: 0;

    background: transparent;
  }


  /* REMOVE MINI PACT FROM MOBILE HERO */

  .hero-pact {
    display: none;
  }


  /* REMOVE DESKTOP SCROLL LABEL */

  .scroll-indicator {
    display: none;
  }

}


/* =========================================================
   SHORT MOBILE SCREENS
   iPhones menores / navegador com barras abertas
========================================================= */

@media (max-width: 640px) and (max-height: 760px) {

  .hero-container {
  padding-top: 96px;
  padding-bottom: 32px;
}

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 9.8vw, 2.8rem);
  }

  .hero-description {
    margin-top: 16px;

    font-size: 0.88rem;
  }

  .hero-actions {
    margin-top: 20px;

    gap: 12px;
  }

  .button-primary {
    min-height: 52px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-description {
    font-size: 0.87rem;
  }

}
.hero-video,
.hero-content {
  will-change: transform, opacity;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

}

/* =========================================================
   MOBILE HERO — FINAL OVERRIDE
========================================================= */

@media (max-width: 640px) {

  .hero {
    height: auto !important;
    min-height: auto !important;

    display: block;

    padding: 0;
  }

  .hero-container {
    width: calc(100% - 32px);

    margin: 0 auto;

    padding-top: 360px !important;
    padding-bottom: 48px !important;
  }

  .hero-content {
    width: 100%;
    max-width: none;
  }

  .hero-pact {
    display: none !important;
  }

  .scroll-indicator {
    display: none !important;
  }
}
/* =========================================================
   PACT V5 — SCREEN 02
   MAIS FERRAMENTAS ≠ MAIS ESTRUTURA
========================================================= */

.tools-section {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #050709;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tools-stage {
  position: relative;

  min-height: 100svh;

  display: grid;
  place-items: center;

  overflow: hidden;

  isolation: isolate;
}


/* =========================================================
   ATMOSPHERE
========================================================= */

.tools-stage::before {
  content: "";

  position: absolute;

  width: 760px;
  height: 760px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(213, 255, 63, 0.055) 0%,
      rgba(213, 255, 63, 0.015) 38%,
      transparent 72%
    );

  filter: blur(30px);

  pointer-events: none;

  z-index: -3;
}

.tools-stage::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -4;

  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 9, 1) 0%,
      rgba(7, 10, 13, 0.96) 48%,
      rgba(5, 7, 9, 1) 100%
    );
}


/* =========================================================
   FLOATING WORDS
========================================================= */

.tools-cloud {
  position: absolute;
  inset: 0;

  z-index: -1;

  pointer-events: none;
}

.tool-word {
  position: absolute;

  color: rgba(245, 246, 247, 0.17);

  font-size: clamp(0.72rem, 1vw, 0.95rem);
  font-weight: 600;

  letter-spacing: 0.14em;

  white-space: nowrap;

  text-transform: uppercase;
}

.tool-word::before {
  content: "";

  position: absolute;

  width: 4px;
  height: 4px;

  left: -14px;
  top: 50%;

  transform: translateY(-50%);

  border-radius: 50%;

  background: rgba(213, 255, 63, 0.42);
}


/* positions */

.tool-word-1 {
  top: 18%;
  left: 10%;
}

.tool-word-2 {
  top: 22%;
  right: 16%;
}

.tool-word-3 {
  top: 48%;
  left: 6%;
}

.tool-word-4 {
  top: 43%;
  right: 7%;

  font-size: clamp(0.9rem, 1.5vw, 1.2rem);

  color: rgba(245, 246, 247, 0.22);
}

.tool-word-5 {
  bottom: 19%;
  left: 13%;
}

.tool-word-6 {
  bottom: 17%;
  right: 9%;
}

.tool-word-7 {
  top: 13%;
  left: 57%;

  color: rgba(245, 246, 247, 0.11);
}

.tool-word-8 {
  bottom: 10%;
  left: 47%;

  color: rgba(245, 246, 247, 0.12);
}


/* =========================================================
   CENTRAL MESSAGE
========================================================= */

.tools-content {
  position: relative;

  z-index: 3;

  width: min(calc(100% - 64px), 900px);

  margin: 0 auto;

  padding: 130px 0;

  text-align: center;
}

.tools-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-bottom: 26px;

  color: rgba(245, 246, 247, 0.44);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}

.tools-kicker::before {
  content: "";

  width: 22px;
  height: 1px;

  background: var(--accent);
}


/* =========================================================
   TITLE
========================================================= */

.tools-title {
  margin: 0 auto;

  max-width: 860px;

  font-size: clamp(3.5rem, 5.2vw, 4.5rem);
  font-weight: 500;

  line-height: 0.99;

  letter-spacing: -0.055em;
}

.tools-title span,
.tools-title strong {
  display: block;
}

.tools-title span {
  color: rgba(245, 246, 247, 0.94);
}

.tools-title strong {
  color: var(--accent);

  font-weight: 500;
}


/* =========================================================
   SECONDARY REVEAL
========================================================= */

.tools-reveal {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-top: 38px;
}

.tools-line {
  width: 46px;
  height: 1px;

  flex-shrink: 0;

  background: rgba(213, 255, 63, 0.62);
}

.tools-reveal p {
  color: rgba(245, 246, 247, 0.52);

  font-size: 1rem;
  font-weight: 400;

  line-height: 1.6;
}

.tools-reveal p strong {
  color: rgba(245, 246, 247, 0.92);

  font-weight: 500;
}


/* =========================================================
   SCREEN INDEX
========================================================= */

.tools-index {
  position: absolute;

  right: 4%;
  bottom: 3%;

  z-index: 0;

  color: rgba(245, 246, 247, 0.025);

  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 700;

  line-height: 0.8;

  letter-spacing: -0.08em;

  user-select: none;
}


/* =========================================================
   PLACEHOLDER AFTER SCREEN 02
========================================================= */

.v5-placeholder {
  min-height: 60vh;

  display: grid;
  place-items: center;

  background: #050709;

  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.v5-placeholder p {
  color: rgba(245, 246, 247, 0.12);

  font-size: 0.65rem;
  font-weight: 600;

  letter-spacing: 0.16em;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .tools-content {
    width: min(calc(100% - 44px), 820px);
  }

  .tools-title {
    font-size: clamp(3rem, 7vw, 4rem);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .tools-stage {
    min-height: 100svh;

    align-items: center;
  }

  .tools-stage::before {
    width: 460px;
    height: 460px;
  }


  /* WORDS */

  .tool-word {
    font-size: 0.62rem;

    letter-spacing: 0.12em;

    color: rgba(245, 246, 247, 0.12);
  }

  .tool-word::before {
    width: 3px;
    height: 3px;

    left: -10px;
  }

  .tool-word-1 {
    top: 14%;
    left: 10%;
  }

  .tool-word-2 {
    top: 21%;
    right: 9%;
  }

  .tool-word-3 {
    top: 38%;
    left: 6%;
  }

  .tool-word-4 {
    top: 35%;
    right: 7%;

    font-size: 0.76rem;
  }

  .tool-word-5 {
    bottom: 17%;
    left: 10%;
  }

  .tool-word-6 {
    bottom: 12%;
    right: 6%;
  }

  .tool-word-7,
  .tool-word-8 {
    display: none;
  }


  /* CONTENT */

  .tools-content {
    width: calc(100% - 32px);

    padding: 110px 0;

    text-align: left;
  }

  .tools-kicker {
    justify-content: flex-start;

    margin-bottom: 22px;

    font-size: 0.6rem;

    line-height: 1.5;
  }

  .tools-title {
    max-width: 520px;

    margin: 0;

    font-size: clamp(2.45rem, 10vw, 3rem);

    line-height: 1.02;

    letter-spacing: -0.05em;
  }

  .tools-reveal {
    justify-content: flex-start;
    align-items: flex-start;

    gap: 14px;

    margin-top: 30px;
  }

  .tools-line {
    width: 30px;

    margin-top: 12px;
  }

  .tools-reveal p {
    max-width: 280px;

    font-size: 0.92rem;
  }

  .tools-index {
    right: 18px;
    bottom: 18px;

    font-size: 5.5rem;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .tools-title {
    font-size: 2.35rem;
  }

}
/* =========================================================
   SCREEN 02 — MOBILE COMPOSITION FIX
========================================================= */

@media (max-width: 640px) {

  .tools-content {
    padding-top: 70px;
    padding-bottom: 70px;

    transform: translateY(-5vh);
  }

  .tools-reveal p {
    max-width: 310px;
  }

}
/* =========================================================
   SCREEN 02 — SCROLL CUE
========================================================= */

.tools-scroll-cue {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 18px;

  transform: translate(-50%, -50%);

  pointer-events: none;
}


/* ORBIT */

.tools-orbit {
  position: relative;

  width: 84px;
  height: 84px;

  display: grid;
  place-items: center;
}

.tools-orbit-core {
  position: relative;

  z-index: 3;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 0 12px rgba(213, 255, 63, 0.85),
    0 0 34px rgba(213, 255, 63, 0.38);
}

.tools-orbit-ring {
  position: absolute;

  left: 50%;
  top: 50%;

  border: 1px solid rgba(213, 255, 63, 0.22);

  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.tools-orbit-ring-1 {
  width: 44px;
  height: 44px;
}

.tools-orbit-ring-2 {
  width: 82px;
  height: 82px;

  border-color: rgba(213, 255, 63, 0.10);
}


/* LABEL */

.tools-scroll-label {
  color: rgba(245, 246, 247, 0.48);

  font-size: 0.6rem;
  font-weight: 600;

  letter-spacing: 0.17em;
}


/* PROGRESS */

.tools-scroll-progress {
  position: relative;

  width: 110px;
  height: 1px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.10);
}

.tools-scroll-progress i {
  position: absolute;

  inset: 0 auto 0 0;

  width: 100%;

  background: var(--accent);

  transform: scaleX(0);
  transform-origin: left center;
}


/* TOOL WORDS — MORE LEGIBLE */

.tool-word {
  color: rgba(245, 246, 247, 0.42);
}

.tool-word-4 {
  color: rgba(245, 246, 247, 0.48);
}

.tool-word-7,
.tool-word-8 {
  color: rgba(245, 246, 247, 0.32);
}


/* =========================================================
   MOBILE
========================================================= */

/* =========================================================
   SCREEN 02 — SCROLL CUE MOBILE
========================================================= */

@media (max-width: 640px) {

  .tools-scroll-cue {
    top: auto;
    bottom: 52px;
    left: 28px;
    right: auto;

    transform: none;

    align-items: flex-start;

    gap: 12px;
  }

  .tools-orbit {
    width: 58px;
    height: 58px;
  }

  .tools-orbit-ring-1 {
    width: 32px;
    height: 32px;
  }

  .tools-orbit-ring-2 {
    width: 56px;
    height: 56px;
  }

  .tools-scroll-label {
    font-size: 0.55rem;
  }

  .tools-scroll-progress {
    width: 130px;
  }

  .tool-word {
    color: rgba(245, 246, 247, 0.36);

    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.025);
  }

  .tool-word-4 {
    color: rgba(245, 246, 247, 0.44);
  }

}

/* =========================================================
   SCREEN 03 — PACT SYSTEM
========================================================= */

.pact-system-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 34% 48%,
      rgba(213, 255, 63, 0.045),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      #050709 0%,
      #070a0d 50%,
      #050709 100%
    );

  border-top: 1px solid rgba(255, 255, 255, 0.055);
}


.pact-system-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 18%,
      black 82%,
      transparent
    );

  opacity: 0.45;
}


.pact-system-stage {
  position: relative;
  z-index: 1;

  width: min(1380px, calc(100% - 80px));

  margin: 0 auto;

  min-height: 100vh;

  padding: 130px 0 100px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(390px, 0.72fr);

  column-gap: clamp(60px, 7vw, 130px);

  align-items: center;
}



/* =========================================================
   INTRO
========================================================= */

.pact-system-intro {
  grid-column: 1 / -1;

  max-width: 780px;

  margin-bottom: 80px;
}


.pact-system-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #d5ff3f;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.pact-system-kicker::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 16px rgba(213, 255, 63, 0.32);
}


.pact-system-title {
  margin: 22px 0 20px;

  color: #f6f7f8;

  font-size:
    clamp(3.15rem, 5vw, 4.9rem);

  line-height: 0.98;

  letter-spacing: -0.055em;

  font-weight: 500;
}


.pact-system-title span {
  display: block;

  color: #d5ff3f;
}


.pact-system-description {
  max-width: 600px;

  margin: 0;

  color: rgba(246, 247, 248, 0.58);

  font-size: 1.05rem;

  line-height: 1.7;
}



/* =========================================================
   SYSTEM INTERFACE
========================================================= */

.pact-system-interface {
  position: relative;

  width: 100%;
  min-height: 610px;

  display: flex;
  align-items: center;
  justify-content: center;

  isolation: isolate;
}



/* ambient glow */

.pact-system-interface::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(213, 255, 63, 0.07) 0%,
      rgba(213, 255, 63, 0.025) 34%,
      transparent 70%
    );

  filter: blur(8px);

  pointer-events: none;
}



/* =========================================================
   CORE
========================================================= */

.pact-core {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 210px;
  height: 210px;

  transform: translate(-50%, -50%);

  display: grid;
  place-items: center;

  z-index: 4;
}


.pact-core-ring {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  pointer-events: none;
}


.pact-core-ring-1 {
  width: 100%;
  height: 100%;

  border:
    1px solid rgba(213, 255, 63, 0.26);

  box-shadow:
    0 0 42px rgba(213, 255, 63, 0.035);
}


.pact-core-ring-2 {
  width: 155px;
  height: 155px;

  border:
    1px solid rgba(255, 255, 255, 0.08);
}


.pact-core-inner {
  position: relative;

  width: 128px;
  height: 128px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(213, 255, 63, 0.12),
      rgba(11, 15, 18, 0.96) 58%
    );

  border:
    1px solid rgba(213, 255, 63, 0.3);

  box-shadow:
    0 0 45px rgba(213, 255, 63, 0.08),
    inset 0 0 35px rgba(213, 255, 63, 0.025);
}


.pact-core-label {
  color:
    rgba(246, 247, 248, 0.38);

  font-size: 0.54rem;

  letter-spacing: 0.18em;

  font-weight: 600;
}


.pact-core-inner strong {
  margin: 5px 0 7px;

  color: #f6f7f8;

  font-size: 2.15rem;

  line-height: 1;

  letter-spacing: -0.06em;

  font-weight: 600;
}


.pact-core-status {
  max-width: 88px;

  color: #d5ff3f;

  font-size: 0.46rem;

  line-height: 1.35;

  letter-spacing: 0.1em;

  font-weight: 700;
}



/* =========================================================
   CONNECTIONS
========================================================= */

.pact-connection {
  position: absolute;

  z-index: 1;

  display: block;

  background:
    linear-gradient(
      90deg,
      rgba(213, 255, 63, 0.05),
      rgba(213, 255, 63, 0.32),
      rgba(213, 255, 63, 0.05)
    );

  opacity: 0.55;

  pointer-events: none;
}


.pact-connection-p,
.pact-connection-t {
  width: 1px;
  height: 105px;

  left: 50%;

  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0.05),
      rgba(213, 255, 63, 0.35),
      rgba(213, 255, 63, 0.05)
    );
}


.pact-connection-p {
  top: calc(50% - 206px);
}


.pact-connection-t {
  top: calc(50% + 102px);
}


.pact-connection-a,
.pact-connection-c {
  width: 125px;
  height: 1px;

  top: 50%;
}


.pact-connection-a {
  left: calc(50% - 228px);
}


.pact-connection-c {
  left: calc(50% + 103px);
}



/* =========================================================
   PACT NODES
========================================================= */

.pact-node {
  position: absolute;
  z-index: 5;

  border: 0;

  padding: 0;

  background: transparent;

  color: inherit;

  font: inherit;

  cursor: pointer;

  display: flex;
  align-items: center;

  gap: 13px;

  text-align: left;

  transition:
    opacity 280ms ease,
    transform 280ms ease;
}


.pact-node-letter {
  width: 56px;
  height: 56px;

  flex: 0 0 56px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  color:
    rgba(246, 247, 248, 0.56);

  font-size: 1.1rem;

  font-weight: 600;

  border:
    1px solid rgba(255, 255, 255, 0.11);

  background:
    rgba(11, 14, 17, 0.88);

  backdrop-filter: blur(12px);

  transition:
    color 280ms ease,
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease,
    transform 280ms ease;
}


.pact-node-copy {
  display: flex;
  flex-direction: column;

  gap: 4px;
}


.pact-node-copy strong {
  color:
    rgba(246, 247, 248, 0.76);

  font-size: 0.88rem;

  font-weight: 600;

  letter-spacing: -0.015em;

  transition: color 280ms ease;
}


.pact-node-copy small {
  color:
    rgba(246, 247, 248, 0.34);

  font-size: 0.7rem;

  font-weight: 400;
}



/* positions */

.pact-node-p {
  left: 50%;
  top: 26px;

  transform:
    translateX(-28px);

  flex-direction: column;

  text-align: center;
}


.pact-node-p .pact-node-copy {
  align-items: center;
}


.pact-node-a {
  left: 20px;
  top: 50%;

  transform:
    translateY(-28px);
}


.pact-node-c {
  right: 8px;
  top: 50%;

  transform:
    translateY(-28px);
}


.pact-node-c .pact-node-letter {
  order: 2;
}


.pact-node-c .pact-node-copy {
  text-align: right;
}


.pact-node-t {
  left: 50%;
  bottom: 24px;

  transform:
    translateX(-28px);

  flex-direction: column-reverse;

  text-align: center;
}


.pact-node-t .pact-node-copy {
  align-items: center;
}



/* ACTIVE */

.pact-node.active .pact-node-letter {
  color: #07090c;

  background: #d5ff3f;

  border-color: #d5ff3f;

  box-shadow:
    0 0 0 7px rgba(213, 255, 63, 0.05),
    0 0 34px rgba(213, 255, 63, 0.16);
}


.pact-node.active .pact-node-copy strong {
  color: #f6f7f8;
}


.pact-node:hover .pact-node-letter {
  border-color:
    rgba(213, 255, 63, 0.5);

  color: #d5ff3f;
}


.pact-node.active:hover .pact-node-letter {
  color: #07090c;
}



/* =========================================================
   CONTENT PANEL
========================================================= */

.pact-panel {
  position: relative;

  min-height: 520px;

  padding:
    54px 50px 48px;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  background:
    linear-gradient(
      145deg,
      rgba(18, 22, 26, 0.78),
      rgba(10, 13, 16, 0.52)
    );

  backdrop-filter: blur(18px);

  overflow: hidden;
}


.pact-panel::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 92px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 18px rgba(213, 255, 63, 0.24);
}


.pact-panel::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -100px;
  bottom: -120px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.035);

  filter: blur(40px);

  pointer-events: none;
}


.pact-panel-content {
  display: none;
}


.pact-panel-content.active {
  display: flex;
  flex-direction: column;

  min-height: 415px;
}


.pact-panel-index {
  display: block;

  margin-bottom: auto;

  color: #d5ff3f;

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.14em;
}


.pact-panel-main {
  margin-top: 85px;
}


.pact-panel-main h3 {
  max-width: 480px;

  margin: 0;

  color: #f6f7f8;

  font-size:
    clamp(2rem, 2.75vw, 2.75rem);

  line-height: 1.06;

  letter-spacing: -0.045em;

  font-weight: 500;
}


.pact-panel-main p {
  max-width: 470px;

  margin:
    22px 0 0;

  color:
    rgba(246, 247, 248, 0.50);

  font-size: 0.96rem;

  line-height: 1.7;
}



/* =========================================================
   TAGS
========================================================= */

.pact-panel-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 36px;
}


.pact-panel-tags span {
  padding:
    8px 11px;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  background:
    rgba(255, 255, 255, 0.022);

  color:
    rgba(246, 247, 248, 0.48);

  font-size: 0.68rem;

  font-weight: 500;

  letter-spacing: 0.015em;
}



/* =========================================================
   SYSTEM FOOTER
========================================================= */

.pact-system-footer {
  grid-column: 1 / -1;

  margin-top: 88px;

  padding-top: 26px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  display: flex;
  align-items: center;

  gap: 18px;

  color:
    rgba(246, 247, 248, 0.32);

  font-size: 0.62rem;

  font-weight: 600;

  letter-spacing: 0.11em;
}


.pact-system-footer i {
  color:
    rgba(213, 255, 63, 0.45);

  font-style: normal;
}


.pact-system-footer strong {
  margin-left: auto;

  color: #d5ff3f;

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.13em;
}



/* SCREEN NUMBER */

.pact-system-index {
  position: absolute;

  right: -12px;
  bottom: 40px;

  z-index: -1;

  color:
    rgba(255, 255, 255, 0.018);

  font-size: 11rem;

  line-height: 0.8;

  font-weight: 500;

  letter-spacing: -0.08em;

  pointer-events: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .pact-system-stage {
    width:
      min(920px, calc(100% - 48px));

    grid-template-columns: 1fr;

    row-gap: 60px;
  }


  .pact-system-interface {
    min-height: 620px;
  }


  .pact-panel {
    min-height: auto;
  }


  .pact-panel-content.active {
    min-height: 390px;
  }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .pact-system-stage {
    width:
      calc(100% - 32px);

    min-height: auto;

    padding:
      92px 0 72px;

    display: block;
  }


  /* INTRO */

  .pact-system-intro {
    margin-bottom: 58px;
  }


  .pact-system-kicker {
    font-size: 0.64rem;
  }


  .pact-system-kicker::before {
    width: 28px;
  }


  .pact-system-title {
    margin-top: 18px;

    font-size:
      clamp(2.65rem, 13vw, 3.45rem);

    line-height: 0.98;
  }


  .pact-system-description {
    max-width: 340px;

    font-size: 0.94rem;

    line-height: 1.65;
  }



  /* =======================================================
     MOBILE SYSTEM
  ======================================================= */

  .pact-system-interface {
    min-height: auto;

    display: grid;

    grid-template-columns:
      repeat(4, 1fr);

    column-gap: 7px;
    row-gap: 34px;

    padding: 0;
  }


  .pact-system-interface::before {
    width: 250px;
    height: 250px;

    top: 90px;
  }


  /* hide desktop connections */

  .pact-connection {
    display: none;
  }



  /* CORE */

  .pact-core {
    position: relative;

    left: auto;
    top: auto;

    grid-column: 1 / -1;

    width: 166px;
    height: 166px;

    margin:
      0 auto 10px;

    transform: none;
  }


  .pact-core-ring-2 {
    width: 122px;
    height: 122px;
  }


  .pact-core-inner {
    width: 104px;
    height: 104px;
  }


  .pact-core-inner strong {
    font-size: 1.78rem;
  }


  .pact-core-label {
    font-size: 0.45rem;
  }


  .pact-core-status {
    font-size: 0.4rem;
  }



  /* MOBILE NODES */

  .pact-node,
  .pact-node-p,
  .pact-node-a,
  .pact-node-c,
  .pact-node-t {
    position: relative;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    transform: none;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    gap: 8px;

    text-align: center;
  }


  .pact-node-letter {
    width: 52px;
    height: 52px;

    flex-basis: 52px;

    font-size: 1rem;
  }


  .pact-node-copy {
    align-items: center;
  }


  .pact-node-copy strong {
    font-size: 0.62rem;
  }


  .pact-node-copy small {
    display: none;
  }


  .pact-node-c .pact-node-letter {
    order: initial;
  }


  .pact-node-c .pact-node-copy {
    text-align: center;
  }



  /* =======================================================
     MOBILE PANEL
  ======================================================= */

  .pact-panel {
    min-height: 0;

    margin-top: 48px;

    padding:
      32px 24px 28px;
  }


  .pact-panel-content.active {
    min-height: 0;
  }


  .pact-panel-index {
    margin-bottom: 54px;

    font-size: 0.62rem;
  }


  .pact-panel-main {
    margin-top: 0;
  }


  .pact-panel-main h3 {
    font-size:
      clamp(2rem, 9.2vw, 2.55rem);

    line-height: 1.04;
  }


  .pact-panel-main p {
    margin-top: 18px;

    font-size: 0.9rem;
  }


  .pact-panel-tags {
    margin-top: 28px;

    gap: 6px;
  }


  .pact-panel-tags span {
    padding:
      7px 9px;

    font-size: 0.62rem;
  }



  /* FOOTER */

  .pact-system-footer {
    margin-top: 52px;

    padding-top: 22px;

    display: flex;
    flex-wrap: wrap;

    gap: 9px 11px;

    font-size: 0.53rem;

    line-height: 1.6;
  }


  .pact-system-footer strong {
    flex-basis: 100%;

    margin:
      8px 0 0;

    font-size: 0.58rem;
  }


  .pact-system-index {
    right: -8px;
    bottom: 18px;

    font-size: 7rem;
  }

}
/* =========================================================
   SCREEN 03 — INTERACTIVE STATES
========================================================= */

/* conexão ativa */

.pact-connection {
  transition:
    opacity 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.pact-connection.active {
  opacity: 1;

  background: #d5ff3f;

  box-shadow:
    0 0 8px rgba(213, 255, 63, 0.45),
    0 0 24px rgba(213, 255, 63, 0.18);
}


/* deixa os pilares não selecionados um pouco mais discretos */

.pact-node:not(.active) {
  opacity: 0.72;
}

.pact-node:not(.active):hover {
  opacity: 1;
}


/* selecionado */

.pact-node.active {
  opacity: 1;
}


/* acessibilidade + sensação de botão */

.pact-node:focus-visible {
  outline: none;
}

.pact-node:focus-visible .pact-node-letter {
  outline: 2px solid rgba(213, 255, 63, 0.65);
  outline-offset: 5px;
}


/* painel preparado para transições */

.pact-panel-content {
  will-change: transform, opacity;
}

.pact-core-inner,
.pact-core-ring {
  will-change: transform, opacity;
}


/* MOBILE */

@media (max-width: 640px) {

  .pact-node:not(.active) {
    opacity: 0.62;
  }

  .pact-node.active {
    opacity: 1;
  }

}
/* =========================================================
   SCREEN 04 — IMPLEMENTATION
========================================================= */

.implementation-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(213, 255, 63, 0.035),
      transparent 28%
    ),
    #050709;

  border-top:
    1px solid rgba(255, 255, 255, 0.055);
}


/* subtle vertical architecture */

.implementation-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent 24.9%,
      rgba(255, 255, 255, 0.025) 25%,
      transparent 25.1%,
      transparent 49.9%,
      rgba(255, 255, 255, 0.025) 50%,
      transparent 50.1%,
      transparent 74.9%,
      rgba(255, 255, 255, 0.025) 75%,
      transparent 75.1%
    );

  opacity: 0.55;
}


.implementation-stage {
  position: relative;
  z-index: 1;

  width:
    min(1280px, calc(100% - 80px));

  margin: 0 auto;

  padding:
    140px 0 110px;
}



/* =========================================================
   INTRO
========================================================= */

.implementation-intro {
  max-width: 920px;
}


.implementation-kicker {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: #d5ff3f;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.implementation-kicker::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 15px rgba(213, 255, 63, 0.32);
}


.implementation-title {
  margin:
    24px 0 0;

  max-width: 900px;

  color: #f6f7f8;

  font-size:
    clamp(3.4rem, 5.6vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.058em;

  font-weight: 500;
}


.implementation-title span {
  color:
    rgba(246, 247, 248, 0.42);
}


.implementation-title strong {
  display: block;

  margin-top: 7px;

  color: #d5ff3f;

  font-weight: 500;
}


.implementation-description {
  max-width: 570px;

  margin-top: 30px;

  color:
    rgba(246, 247, 248, 0.52);

  font-size: 1rem;

  line-height: 1.72;
}



/* =========================================================
   SELECTOR
========================================================= */

.implementation-selector {
  margin-top: 92px;
}


.implementation-selector-label {
  display: block;

  margin-bottom: 18px;

  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.61rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}


.implementation-tabs {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}


.implementation-tab {
  position: relative;

  min-height: 94px;

  padding:
    0 24px;

  border: 0;
  border-right:
    1px solid rgba(255, 255, 255, 0.07);

  background: transparent;

  color: inherit;

  cursor: pointer;

  display: flex;
  align-items: center;

  gap: 14px;

  text-align: left;

  transition:
    background 260ms ease,
    opacity 260ms ease;
}


.implementation-tab:last-child {
  border-right: 0;
}


.implementation-tab strong {
  color:
    rgba(246, 247, 248, 0.28);

  font-size: 1.35rem;
  font-weight: 600;

  transition:
    color 260ms ease;
}


.implementation-tab span {
  color:
    rgba(246, 247, 248, 0.45);

  font-size: 0.78rem;
  font-weight: 500;

  transition:
    color 260ms ease;
}


.implementation-tab::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -1px;

  height: 2px;

  background: #d5ff3f;

  transform: scaleX(0);

  transform-origin:
    left center;

  transition:
    transform 300ms ease;
}


.implementation-tab:hover {
  background:
    rgba(255, 255, 255, 0.018);
}


.implementation-tab:hover strong {
  color:
    rgba(213, 255, 63, 0.72);
}


.implementation-tab.active {
  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0.035),
      transparent
    );
}


.implementation-tab.active::after {
  transform: scaleX(1);
}


.implementation-tab.active strong {
  color: #d5ff3f;
}


.implementation-tab.active span {
  color: #f6f7f8;
}



/* =========================================================
   IMPLEMENTATION VIEW
========================================================= */

.implementation-view {
  position: relative;

  min-height: 650px;

  margin-top: 72px;

  overflow: hidden;

  display: grid;

  grid-template-columns:
    minmax(280px, 0.7fr)
    minmax(0, 1.3fr);

  align-items: stretch;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}



/* =========================================================
   GIANT LETTER
========================================================= */

.implementation-letter {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 650px;

  overflow: hidden;

  color:
    rgba(213, 255, 63, 0.06);

  font-size:
    clamp(18rem, 31vw, 28rem);

  line-height: 0.72;

  font-weight: 500;

  letter-spacing: -0.1em;

  user-select: none;

  border-right:
    1px solid rgba(255, 255, 255, 0.06);
}


.implementation-letter::before {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.045);

  filter: blur(75px);
}



/* =========================================================
   PANELS
========================================================= */

.implementation-panel {
  display: none;
}


.implementation-panel.active {
  min-height: 650px;

  padding:
    64px 0 58px 68px;

  display: flex;
  flex-direction: column;
}


.implementation-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding-right: 10px;
}


.implementation-index {
  color: #d5ff3f;

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.implementation-category {
  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.62rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}


.implementation-panel-copy {
  max-width: 670px;

  margin-top: 95px;
}


.implementation-panel-copy h3 {
  margin: 0;

  color: #f6f7f8;

  font-size:
    clamp(2.7rem, 4.1vw, 4.15rem);

  line-height: 1.01;

  letter-spacing: -0.052em;

  font-weight: 500;
}


.implementation-panel-copy p {
  max-width: 535px;

  margin-top: 26px;

  color:
    rgba(246, 247, 248, 0.48);

  font-size: 0.98rem;

  line-height: 1.72;
}



/* =========================================================
   CAPABILITIES
========================================================= */

.implementation-capabilities {
  margin-top: auto;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.065);
}


.implementation-capabilities span {
  min-height: 52px;

  display: flex;
  align-items: center;

  padding:
    0 16px 0 0;

  color:
    rgba(246, 247, 248, 0.48);

  font-size: 0.77rem;
  font-weight: 500;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.055);
}


.implementation-capabilities span:nth-child(odd) {
  border-right:
    1px solid rgba(255, 255, 255, 0.055);
}


.implementation-capabilities span:nth-child(even) {
  padding-left: 24px;
}


.implementation-capabilities span::before {
  content: "";

  width: 4px;
  height: 4px;

  flex: 0 0 4px;

  margin-right: 11px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.5);
}



/* =========================================================
   PRINCIPLE
========================================================= */

.implementation-principle {
  position: relative;

  max-width: 990px;

  margin:
    110px auto 0;

  padding:
    52px 0 8px 88px;
}


.implementation-principle-line {
  position: absolute;

  left: 0;
  top: 62px;

  width: 54px;
  height: 1px;

  background: #d5ff3f;
}


.implementation-principle p {
  margin: 0;

  color:
    rgba(246, 247, 248, 0.46);

  font-size:
    clamp(1.45rem, 2.2vw, 2.1rem);

  line-height: 1.35;

  letter-spacing: -0.025em;
}


.implementation-principle p strong {
  color:
    rgba(246, 247, 248, 0.9);

  font-weight: 500;
}


.implementation-principle-answer {
  margin-top: 8px !important;

  color:
    rgba(246, 247, 248, 0.82) !important;
}


.implementation-principle-answer strong {
  color: #d5ff3f !important;
}



/* =========================================================
   SCREEN NUMBER
========================================================= */

.implementation-screen-index {
  position: absolute;

  right: -18px;
  bottom: 18px;

  z-index: -1;

  color:
    rgba(255, 255, 255, 0.016);

  font-size: 11rem;

  line-height: 0.8;

  font-weight: 500;

  letter-spacing: -0.08em;

  user-select: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .implementation-stage {
    width:
      min(900px, calc(100% - 48px));
  }


  .implementation-view {
    grid-template-columns:
      250px 1fr;
  }


  .implementation-panel.active {
    padding-left: 48px;
  }


  .implementation-panel-copy {
    margin-top: 70px;
  }

}



/* =========================================================
   SCREEN 04 — MOBILE
========================================================= */

@media (max-width: 640px) {

  .implementation-stage {
    width:
      calc(100% - 32px);

    padding:
      94px 0 76px;
  }


  /* INTRO */

  .implementation-kicker {
    font-size: 0.61rem;
  }


  .implementation-kicker::before {
    width: 27px;
  }


  .implementation-title {
    margin-top: 18px;

    font-size:
      clamp(2.65rem, 12.8vw, 3.4rem);

    line-height: 0.99;
  }


  .implementation-title strong {
    margin-top: 5px;
  }


  .implementation-description {
    max-width: 340px;

    margin-top: 23px;

    font-size: 0.91rem;

    line-height: 1.65;
  }



  /* SELECTOR */

  .implementation-selector {
    margin-top: 64px;
  }


  .implementation-selector-label {
    margin-bottom: 14px;

    font-size: 0.55rem;
  }


  .implementation-tabs {
    grid-template-columns:
      repeat(4, 1fr);
  }


  .implementation-tab {
    min-width: 0;
    min-height: 78px;

    padding:
      0 4px;

    flex-direction: column;
    justify-content: center;

    gap: 4px;

    text-align: center;
  }


  .implementation-tab strong {
    font-size: 1.1rem;
  }


  .implementation-tab span {
    max-width: 76px;

    overflow: hidden;

    font-size: 0.52rem;

    text-overflow: ellipsis;

    white-space: nowrap;
  }



  /* VIEW */

  .implementation-view {
    min-height: 0;

    margin-top: 42px;

    display: block;
  }


  /* GIANT LETTER */

  .implementation-letter {
    min-height: 260px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);

    font-size: 15rem;
  }


  .implementation-letter::before {
    width: 220px;
    height: 220px;
  }



  /* PANEL */

  .implementation-panel.active {
    min-height: 0;

    padding:
      32px 0 0;

    display: block;
  }


  .implementation-panel-head {
    padding: 0;
  }


  .implementation-index,
  .implementation-category {
    font-size: 0.56rem;
  }


  .implementation-panel-copy {
    margin-top: 52px;
  }


  .implementation-panel-copy h3 {
    font-size:
      clamp(2.25rem, 10.3vw, 2.9rem);

    line-height: 1.02;
  }


  .implementation-panel-copy p {
    max-width: 340px;

    margin-top: 20px;

    font-size: 0.89rem;

    line-height: 1.65;
  }



  /* CAPABILITIES */

  .implementation-capabilities {
    margin-top: 44px;

    grid-template-columns: 1fr;
  }


  .implementation-capabilities span {
    min-height: 48px;

    padding: 0 !important;

    border-right: 0 !important;

    font-size: 0.72rem;
  }



  /* PRINCIPLE */

  .implementation-principle {
    margin-top: 80px;

    padding:
      38px 0 0;
  }


  .implementation-principle-line {
    left: 0;
    top: 0;

    width: 42px;
  }


  .implementation-principle p {
    font-size:
      clamp(1.3rem, 6vw, 1.65rem);

    line-height: 1.38;
  }


  .implementation-principle-answer {
    margin-top:
      10px !important;
  }


  .implementation-screen-index {
    right: -8px;

    font-size: 7rem;
  }

}

/* =========================================================
   SCREEN 04 — DESKTOP COMPOSITION REFINEMENT
========================================================= */

@media (min-width: 1001px) {

  .implementation-selector {
    margin-top: 72px;
  }

  .implementation-view {
    min-height: 560px;
    margin-top: 48px;
  }

  .implementation-letter {
    min-height: 560px;

    font-size:
      clamp(16rem, 27vw, 24rem);
  }

  .implementation-panel.active {
    min-height: 560px;

    padding:
      48px 0 42px 56px;
  }

  .implementation-panel-copy {
    margin-top: 58px;
  }

  .implementation-panel-copy h3 {
    font-size:
      clamp(2.6rem, 3.7vw, 3.75rem);
  }

  .implementation-capabilities span {
    min-height: 46px;
  }

  .implementation-principle {
    margin-top: 76px;
  }

}

/* =========================================================
   SCREEN 04 — INTERACTIVE STATES
========================================================= */

.implementation-panel,
.implementation-letter {
  will-change: transform, opacity;
}

.implementation-tab {
  -webkit-tap-highlight-color: transparent;
}

.implementation-tab:focus-visible {
  outline: none;
}

.implementation-tab:focus-visible::before {
  content: "";

  position: absolute;

  inset: 8px;

  border:
    1px solid rgba(213, 255, 63, 0.42);

  pointer-events: none;
}


/* capacidades respondem suavemente */

.implementation-capabilities span {
  transition:
    color 240ms ease,
    background 240ms ease;
}

.implementation-capabilities span:hover {
  color:
    rgba(246, 247, 248, 0.78);

  background:
    rgba(213, 255, 63, 0.018);
}


/* mobile */

@media (max-width: 640px) {

  .implementation-tab {
    touch-action: manipulation;
  }

}

/* =========================================================
   SCREEN 05 — PRIORITY
========================================================= */

.priority-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 67% 48%,
      rgba(213, 255, 63, 0.045),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #050709 0%,
      #070a0d 52%,
      #050709 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.055);
}


/* subtle architecture */

.priority-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );

  background-size:
    80px 80px;

  opacity: 0.33;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 14%,
      black 86%,
      transparent
    );
}


.priority-stage {
  position: relative;
  z-index: 1;

  width:
    min(1280px, calc(100% - 80px));

  margin:
    0 auto;

  padding:
    140px 0 112px;
}



/* =========================================================
   INTRO
========================================================= */

.priority-intro {
  max-width: 960px;
}


.priority-kicker {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: #d5ff3f;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.priority-kicker::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 16px rgba(213, 255, 63, 0.32);
}


.priority-title {
  max-width: 960px;

  margin:
    24px 0 0;

  color: #f6f7f8;

  font-size:
    clamp(3.5rem, 5.8vw, 5.35rem);

  line-height: 0.98;

  letter-spacing: -0.06em;

  font-weight: 500;
}


.priority-title span {
  color:
    rgba(246, 247, 248, 0.38);
}


.priority-title strong {
  display: block;

  margin-top: 8px;

  color: #d5ff3f;

  font-weight: 500;
}



/* =========================================================
   FLOW
========================================================= */

.priority-flow {
  position: relative;

  margin-top: 110px;

  display: grid;

  grid-template-columns:
    minmax(190px, 0.72fr)
    90px
    minmax(280px, 0.95fr)
    minmax(350px, 1.18fr);

  align-items: stretch;

  min-height: 620px;

  border-top:
    1px solid rgba(255, 255, 255, 0.075);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.075);
}



/* =========================================================
   ORIGIN
========================================================= */

.priority-origin {
  position: relative;

  padding:
    54px 34px 48px 0;

  display: flex;
  flex-direction: column;

  justify-content: center;
}


.priority-origin-label {
  position: absolute;

  left: 0;
  top: 34px;

  color:
    rgba(246, 247, 248, 0.27);

  font-size: 0.61rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}


.priority-origin-core {
  position: relative;

  width: 174px;
  height: 174px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.09);

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(213, 255, 63, 0.08),
      rgba(10, 13, 16, 0.76) 55%,
      rgba(5, 7, 9, 0.9)
    );

  box-shadow:
    0 0 60px rgba(213, 255, 63, 0.035);
}


.priority-origin-core::before,
.priority-origin-core::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}


.priority-origin-core::before {
  width: 126px;
  height: 126px;

  border:
    1px solid rgba(213, 255, 63, 0.14);
}


.priority-origin-core::after {
  width: 204px;
  height: 204px;

  border:
    1px solid rgba(255, 255, 255, 0.035);
}


.priority-origin-core span {
  color: #f6f7f8;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}


.priority-origin p {
  max-width: 205px;

  margin-top: 38px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.82rem;

  line-height: 1.65;
}



/* =========================================================
   PATH
========================================================= */

.priority-path {
  position: relative;

  min-height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}


.priority-path-line {
  position: absolute;

  top: 50%;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05),
      rgba(213, 255, 63, 0.3),
      rgba(255, 255, 255, 0.07)
    );
}


.priority-path-point {
  position: absolute;

  top: 50%;

  width: 5px;
  height: 5px;

  margin-top: -2px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.46);
}


.priority-path-point-1 {
  left: 12%;
}


.priority-path-point-2 {
  left: 48%;
}


.priority-path-point-3 {
  right: 9%;
}


.priority-path-signal {
  position: absolute;

  left: 10%;
  top: 50%;

  width: 20px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 12px rgba(213, 255, 63, 0.55);
}



/* =========================================================
   DIAGNOSIS
========================================================= */

.priority-diagnosis {
  position: relative;

  padding:
    54px 42px;

  border-left:
    1px solid rgba(255, 255, 255, 0.06);

  border-right:
    1px solid rgba(255, 255, 255, 0.06);
}


.priority-diagnosis-label {
  color: #d5ff3f;

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.priority-diagnosis h3 {
  max-width: 300px;

  margin:
    30px 0 42px;

  color: #f6f7f8;

  font-size:
    clamp(1.85rem, 2.4vw, 2.5rem);

  line-height: 1.07;

  letter-spacing: -0.045em;

  font-weight: 500;
}


.priority-diagnosis h3 strong {
  display: block;

  color: #d5ff3f;

  font-weight: 500;
}



/* =========================================================
   DIAGNOSIS OPTIONS
========================================================= */

.priority-diagnosis-options {
  display: flex;
  flex-direction: column;
}


.priority-diagnosis-item {
  position: relative;

  min-height: 76px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding:
    13px 8px;

  border-top:
    1px solid rgba(255, 255, 255, 0.055);

  opacity: 0.48;
}


.priority-diagnosis-item:last-child {
  border-bottom:
    1px solid rgba(255, 255, 255, 0.055);
}


.priority-diagnosis-item > span {
  width: 38px;
  height: 38px;

  flex:
    0 0 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  color:
    rgba(246, 247, 248, 0.58);

  font-size: 0.75rem;
  font-weight: 700;
}


.priority-diagnosis-item > div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}


.priority-diagnosis-item strong {
  color:
    rgba(246, 247, 248, 0.75);

  font-size: 0.78rem;
  font-weight: 600;
}


.priority-diagnosis-item small {
  color:
    rgba(246, 247, 248, 0.34);

  font-size: 0.64rem;

  line-height: 1.45;
}



/* ACTIVE DIAGNOSIS */

.priority-diagnosis-item.active {
  opacity: 1;

  background:
    linear-gradient(
      90deg,
      rgba(213, 255, 63, 0.055),
      transparent
    );
}


.priority-diagnosis-item.active::before {
  content: "";

  position: absolute;

  left: 0;
  top: 18%;

  width: 2px;
  height: 64%;

  background: #d5ff3f;

  box-shadow:
    0 0 14px rgba(213, 255, 63, 0.4);
}


.priority-diagnosis-item.active > span {
  color: #050709;

  border-color: #d5ff3f;

  background: #d5ff3f;

  box-shadow:
    0 0 24px rgba(213, 255, 63, 0.12);
}


.priority-diagnosis-item.active strong {
  color: #f6f7f8;
}


.priority-diagnosis-item.active small {
  color:
    rgba(246, 247, 248, 0.52);
}



/* =========================================================
   PRESCRIPTION
========================================================= */

.priority-prescription {
  position: relative;

  padding:
    54px 0 0 52px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(213, 255, 63, 0.025),
      transparent 48%
    );
}


.priority-prescription::before {
  content: "";

  position: absolute;

  right: -120px;
  top: 120px;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.035);

  filter: blur(65px);

  pointer-events: none;
}


.priority-prescription-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-right: 12px;
}


.priority-prescription-top span {
  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.57rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}


.priority-prescription-top strong {
  color: #d5ff3f;

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.13em;
}



/* =========================================================
   PRESCRIPTION MAIN
========================================================= */

.priority-prescription-main {
  position: relative;

  margin-top: 90px;

  padding-right: 28px;
}


.priority-prescription-index {
  display: block;

  margin-bottom: 19px;

  color:
    rgba(213, 255, 63, 0.48);

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.priority-prescription-main h3 {
  max-width: 470px;

  margin: 0;

  color: #f6f7f8;

  font-size:
    clamp(2.55rem, 3.8vw, 3.7rem);

  line-height: 1.02;

  letter-spacing: -0.052em;

  font-weight: 500;
}


.priority-prescription-main h3 strong {
  display: block;

  color: #d5ff3f;

  font-weight: 500;
}


.priority-prescription-main p {
  max-width: 430px;

  margin-top: 28px;

  color:
    rgba(246, 247, 248, 0.48);

  font-size: 0.86rem;

  line-height: 1.7;
}



/* =========================================================
   PRESCRIPTION ACTIONS
========================================================= */

.priority-prescription-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;

  margin-top: 34px;

  padding-right: 20px;
}


.priority-prescription-actions span {
  padding:
    8px 11px;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  color:
    rgba(246, 247, 248, 0.5);

  background:
    rgba(255, 255, 255, 0.018);

  font-size: 0.66rem;
  font-weight: 500;
}



/* =========================================================
   NEXT STEP
========================================================= */

.priority-prescription-result {
  margin-top: auto;

  min-height: 98px;

  padding:
    20px 30px 20px 0;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  display: flex;
  flex-direction: column;

  justify-content: center;

  gap: 5px;
}


.priority-prescription-result span {
  color:
    rgba(246, 247, 248, 0.25);

  font-size: 0.54rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}


.priority-prescription-result strong {
  max-width: 450px;

  color:
    rgba(246, 247, 248, 0.82);

  font-size: 0.78rem;
  font-weight: 500;

  line-height: 1.55;
}



/* =========================================================
   PRINCIPLE
========================================================= */

.priority-principle {
  max-width: 980px;

  margin:
    120px auto 0;

  text-align: center;
}


.priority-principle p {
  margin: 0;

  color:
    rgba(246, 247, 248, 0.35);

  font-size:
    clamp(1.7rem, 2.7vw, 2.6rem);

  line-height: 1.25;

  letter-spacing: -0.035em;
}


.priority-principle strong {
  display: block;

  margin-top: 8px;

  color: #f6f7f8;

  font-size:
    clamp(2rem, 3.4vw, 3.25rem);

  line-height: 1.17;

  letter-spacing: -0.045em;

  font-weight: 500;
}


.priority-principle strong::after {
  content: "";

  display: block;

  width: 54px;
  height: 1px;

  margin:
    34px auto 0;

  background: #d5ff3f;

  box-shadow:
    0 0 18px rgba(213, 255, 63, 0.3);
}



/* =========================================================
   SCREEN NUMBER
========================================================= */

.priority-screen-index {
  position: absolute;

  right: -15px;
  bottom: 24px;

  z-index: -1;

  color:
    rgba(255, 255, 255, 0.016);

  font-size: 11rem;

  line-height: 0.8;

  font-weight: 500;

  letter-spacing: -0.08em;

  user-select: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .priority-stage {
    width:
      min(920px, calc(100% - 48px));
  }


  .priority-flow {
    grid-template-columns:
      220px 70px 1fr;

    min-height: auto;
  }


  .priority-prescription {
    grid-column:
      1 / -1;

    min-height: 520px;

    padding:
      52px;

    border-top:
      1px solid rgba(255, 255, 255, 0.07);
  }


  .priority-prescription-main {
    margin-top: 68px;
  }


  .priority-prescription-result {
    margin-top: 70px;
  }

}



/* =========================================================
   SCREEN 05 — MOBILE
========================================================= */

@media (max-width: 640px) {

  .priority-stage {
    width:
      calc(100% - 32px);

    padding:
      94px 0 76px;
  }



  /* INTRO */

  .priority-kicker {
    font-size: 0.59rem;
  }


  .priority-kicker::before {
    width: 26px;
  }


  .priority-title {
    margin-top: 18px;

    font-size:
      clamp(2.7rem, 12.7vw, 3.45rem);

    line-height: 0.99;
  }


  .priority-title strong {
    margin-top: 8px;
  }



  /* FLOW */

  .priority-flow {
    margin-top: 76px;

    display: block;

    min-height: 0;

    border-bottom: 0;
  }



  /* ORIGIN */

  .priority-origin {
    min-height: 390px;

    padding:
      76px 0 58px;

    align-items: center;

    text-align: center;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.065);
  }


  .priority-origin-label {
    top: 28px;
    left: 0;

    width: 100%;

    text-align: left;
  }


  .priority-origin-core {
    width: 150px;
    height: 150px;
  }


  .priority-origin-core::before {
    width: 110px;
    height: 110px;
  }


  .priority-origin-core::after {
    width: 180px;
    height: 180px;
  }


  .priority-origin p {
    max-width: 280px;

    margin-top: 42px;

    font-size: 0.78rem;
  }



  /* PATH BECOMES VERTICAL */

  .priority-path {
    min-height: 110px;
  }


  .priority-path-line {
    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05),
        rgba(213, 255, 63, 0.32),
        rgba(255, 255, 255, 0.06)
      );
  }


  .priority-path-point {
    left: 50% !important;
    right: auto !important;
    top: auto;

    margin:
      0 0 0 -2px;
  }


  .priority-path-point-1 {
    top: 12px;
  }


  .priority-path-point-2 {
    top: 50%;
  }


  .priority-path-point-3 {
    bottom: 12px;
  }


  .priority-path-signal {
    left: 50%;
    top: 12px;

    width: 1px;
    height: 26px;

    margin-left: 0;
  }



  /* DIAGNOSIS */

  .priority-diagnosis {
    padding:
      42px 0 48px;

    border-left: 0;
    border-right: 0;

    border-top:
      1px solid rgba(255, 255, 255, 0.065);

    border-bottom:
      1px solid rgba(255, 255, 255, 0.065);
  }


  .priority-diagnosis h3 {
    max-width: 300px;

    margin:
      25px 0 35px;

    font-size:
      clamp(2rem, 9.5vw, 2.55rem);
  }


  .priority-diagnosis-item {
    min-height: 72px;

    padding:
      12px 6px;
  }



  /* PRESCRIPTION */

  .priority-prescription {
    min-height: 0;

    padding:
      48px 0 0;

    border-top: 0;

    background:
      linear-gradient(
        180deg,
        rgba(213, 255, 63, 0.025),
        transparent 45%
      );
  }


  .priority-prescription-top {
    align-items: flex-start;
  }


  .priority-prescription-top span,
  .priority-prescription-top strong {
    font-size: 0.53rem;
  }


  .priority-prescription-main {
    margin-top: 62px;

    padding-right: 0;
  }


  .priority-prescription-main h3 {
    font-size:
      clamp(2.45rem, 11vw, 3rem);
  }


  .priority-prescription-main p {
    max-width: 340px;

    margin-top: 22px;

    font-size: 0.83rem;
  }


  .priority-prescription-actions {
    margin-top: 30px;

    padding-right: 0;
  }


  .priority-prescription-result {
    min-height: 112px;

    margin-top: 58px;

    padding:
      22px 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.065);
  }



  /* PRINCIPLE */

  .priority-principle {
    margin-top: 86px;

    text-align: left;
  }


  .priority-principle p {
    font-size:
      clamp(1.45rem, 7vw, 1.9rem);
  }


  .priority-principle strong {
    margin-top: 10px;

    font-size:
      clamp(1.85rem, 8vw, 2.25rem);
  }


  .priority-principle strong::after {
    margin:
      30px 0 0;
  }


  .priority-screen-index {
    right: -7px;

    font-size: 7rem;
  }

}

/* =========================================================
   SCREEN 05 — DIAGNOSTIC MOTION STATES
========================================================= */

.priority-origin-core,
.priority-path-signal,
.priority-diagnosis-item,
.priority-prescription-top,
.priority-prescription-main,
.priority-prescription-actions,
.priority-prescription-result {
  will-change: transform, opacity;
}


.priority-diagnosis-item {
  transition:
    opacity 260ms ease,
    background 260ms ease;
}


.priority-diagnosis-item > span {
  transition:
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}


.priority-diagnosis-item strong,
.priority-diagnosis-item small {
  transition:
    color 260ms ease;
}


/* estado momentâneo durante a análise */

.priority-diagnosis-item.scanning {
  opacity: 0.88;
}


.priority-diagnosis-item.scanning > span {
  color: #d5ff3f;

  border-color:
    rgba(213, 255, 63, 0.55);

  background:
    rgba(213, 255, 63, 0.045);

  box-shadow:
    0 0 24px rgba(213, 255, 63, 0.08);

  transform: scale(1.06);
}
/* =========================================================
   SCREEN 06 — STRATEGIC REASONING
========================================================= */

.reasoning-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(213, 255, 63, 0.038),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #050709 0%,
      #070a0d 48%,
      #050709 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.055);
}


/* subtle grid */

.reasoning-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.017) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.017) 1px,
      transparent 1px
    );

  background-size:
    78px 78px;

  opacity: 0.32;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 14%,
      black 88%,
      transparent
    );
}


.reasoning-stage {
  position: relative;
  z-index: 1;

  width:
    min(1280px, calc(100% - 80px));

  margin:
    0 auto;

  padding:
    140px 0 118px;
}



/* =========================================================
   INTRO
========================================================= */

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


.reasoning-kicker {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: #d5ff3f;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.reasoning-kicker::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 16px rgba(213, 255, 63, 0.32);
}


.reasoning-title {
  max-width: 900px;

  margin:
    24px 0 0;

  color: #f6f7f8;

  font-size:
    clamp(3.4rem, 5.6vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.058em;

  font-weight: 500;
}


.reasoning-title span {
  display: block;

  color: #d5ff3f;
}



/* =========================================================
   BUSINESS SIGNAL
========================================================= */

.reasoning-signal {
  position: relative;

  max-width: 760px;

  margin:
    118px auto 0;

  padding:
    56px 40px 70px;

  text-align: center;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);

  background:
    radial-gradient(
      circle at 50% 55%,
      rgba(213, 255, 63, 0.04),
      transparent 55%
    );
}


.reasoning-signal-label {
  display: block;

  margin-bottom: 28px;

  color:
    rgba(246, 247, 248, 0.3);

  font-size: 0.6rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}


.reasoning-signal blockquote {
  margin: 0;

  color: #f6f7f8;

  font-size:
    clamp(3rem, 5.2vw, 4.9rem);

  line-height: 0.98;

  letter-spacing: -0.055em;

  font-style: normal;
  font-weight: 500;
}


.reasoning-signal blockquote strong {
  display: block;

  color: #d5ff3f;

  font-weight: 500;
}


.reasoning-signal-pulse {
  position: absolute;

  left: 50%;
  bottom: -6px;

  width: 11px;
  height: 11px;

  transform:
    translateX(-50%);

  border-radius: 50%;

  background: #d5ff3f;

  box-shadow:
    0 0 0 8px rgba(213, 255, 63, 0.045),
    0 0 28px rgba(213, 255, 63, 0.35);
}



/* =========================================================
   REASONING SYSTEM
========================================================= */

.reasoning-system {
  position: relative;

  margin-top: 0;

  padding-top: 130px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.065);
}



/* horizontal branching line */

.reasoning-system::before {
  content: "";

  position: absolute;

  left: 16.666%;
  right: 16.666%;
  top: 70px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(213, 255, 63, 0.08),
      rgba(213, 255, 63, 0.36),
      rgba(213, 255, 63, 0.08)
    );
transform: scaleX(var(--reasoning-line-progress, 1));

  transform-origin: center;

  transition: transform 300ms ease;
   
}



/* =========================================================
   TRUNK
========================================================= */

.reasoning-trunk {
  position: absolute;

  left: 50%;
  top: 0;

  width: 1px;
  height: 70px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0.52),
      rgba(213, 255, 63, 0.12)
    );
}


.reasoning-trunk span {
  position: absolute;

  left: 50%;
  bottom: -4px;

  width: 7px;
  height: 7px;

  transform:
    translateX(-50%);

  border-radius: 50%;

  background: #d5ff3f;

  box-shadow:
    0 0 18px rgba(213, 255, 63, 0.38);
}



/* =========================================================
   BRANCH
========================================================= */

.reasoning-branch {
  position: relative;

  min-height: 640px;

  padding:
    60px 38px 44px;

  display: flex;
  flex-direction: column;

  border-right:
    1px solid rgba(255, 255, 255, 0.06);
}


.reasoning-branch:last-child {
  border-right: 0;
}


/* small vertical connector */

.reasoning-branch::before {
  content: "";

  position: absolute;

  left: 50%;
  top: -60px;

  width: 1px;
  height: 60px;

  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0.26),
      rgba(255, 255, 255, 0.06)
    );
}



/* =========================================================
   BRANCH HEAD
========================================================= */

.reasoning-branch-head {
  min-height: 108px;

  display: flex;
  align-items: flex-start;

  gap: 16px;
}


.reasoning-letter {
  width: 52px;
  height: 52px;

  flex:
    0 0 52px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #d5ff3f;

  font-size: 1rem;
  font-weight: 700;

  border:
    1px solid rgba(213, 255, 63, 0.26);

  background:
    rgba(213, 255, 63, 0.025);

  box-shadow:
    0 0 24px rgba(213, 255, 63, 0.035);
}


.reasoning-branch-head > div {
  padding-top: 2px;
}


.reasoning-area {
  display: block;

  margin-bottom: 8px;

  color:
    rgba(213, 255, 63, 0.62);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.reasoning-branch-head strong {
  display: block;

  max-width: 280px;

  color: #f6f7f8;

  font-size:
    clamp(1.3rem, 1.8vw, 1.75rem);

  line-height: 1.12;

  letter-spacing: -0.035em;

  font-weight: 500;
}



/* =========================================================
   BRANCH BODY
========================================================= */

.reasoning-branch-body {
  display: flex;
  flex-direction: column;

  flex: 1;

  margin-top: 38px;
}


.reasoning-branch-body > p {
  max-width: 315px;

  margin: 0;

  color:
    rgba(246, 247, 248, 0.43);

  font-size: 0.82rem;

  line-height: 1.68;
}



/* =========================================================
   QUESTION
========================================================= */

.reasoning-question {
  margin-top: 54px;

  padding:
    23px 0;

  border-top:
    1px solid rgba(255, 255, 255, 0.06);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);
}


.reasoning-question > span {
  display: block;

  margin-bottom: 10px;

  color:
    rgba(246, 247, 248, 0.25);

  font-size: 0.53rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}


.reasoning-question strong {
  display: block;

  max-width: 320px;

  color:
    rgba(246, 247, 248, 0.76);

  font-size: 0.8rem;
  font-weight: 500;

  line-height: 1.6;
}



/* =========================================================
   POSSIBLE PRESCRIPTION
========================================================= */

.reasoning-answer {
  margin-top: auto;

  padding-top: 34px;
}


.reasoning-answer > span {
  display: block;

  margin-bottom: 14px;

  color:
    rgba(246, 247, 248, 0.25);

  font-size: 0.53rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}


.reasoning-answer > div {
  display: flex;
  flex-wrap: wrap;

  gap: 6px;
}


.reasoning-answer small {
  padding:
    7px 9px;

  border:
    1px solid rgba(255, 255, 255, 0.07);

  color:
    rgba(246, 247, 248, 0.48);

  background:
    rgba(255, 255, 255, 0.018);

  font-size: 0.62rem;
  font-weight: 500;
}



/* subtle individual atmospheres */

.reasoning-branch-a {
  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0.018),
      transparent 45%
    );
}


.reasoning-branch-c {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.012),
      transparent 45%
    );
}


.reasoning-branch-t {
  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0.012),
      transparent 45%
    );
}



/* =========================================================
   CONCLUSION
========================================================= */

.reasoning-conclusion {
  position: relative;

  max-width: 940px;

  margin:
    132px auto 0;

  padding-top: 56px;

  text-align: center;
}


.reasoning-conclusion-line {
  position: absolute;

  left: 50%;
  top: 0;

  width: 1px;
  height: 34px;

  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0),
      #d5ff3f
    );
}


.reasoning-conclusion p {
  margin: 0;

  color:
    rgba(246, 247, 248, 0.4);

  font-size:
    clamp(2rem, 3.4vw, 3.25rem);

  line-height: 1.12;

  letter-spacing: -0.045em;
}


.reasoning-conclusion p span {
  color:
    rgba(246, 247, 248, 0.75);
}


.reasoning-conclusion > strong {
  display: block;

  margin-top: 7px;

  color: #d5ff3f;

  font-size:
    clamp(3rem, 5.5vw, 5rem);

  line-height: 1;

  letter-spacing: -0.06em;

  font-weight: 500;
}


.reasoning-conclusion > small {
  display: block;

  max-width: 520px;

  margin:
    34px auto 0;

  color:
    rgba(246, 247, 248, 0.4);

  font-size: 0.82rem;

  line-height: 1.7;
}



/* =========================================================
   SCREEN INDEX
========================================================= */

.reasoning-screen-index {
  position: absolute;

  right: -16px;
  bottom: 22px;

  z-index: -1;

  color:
    rgba(255, 255, 255, 0.016);

  font-size: 11rem;

  line-height: 0.8;

  letter-spacing: -0.08em;

  font-weight: 500;

  user-select: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .reasoning-stage {
    width:
      min(920px, calc(100% - 48px));
  }


  .reasoning-branch {
    padding:
      52px 24px 40px;
  }


  .reasoning-branch-head {
    flex-direction: column;

    min-height: 150px;
  }

}



/* =========================================================
   SCREEN 06 — MOBILE
========================================================= */

@media (max-width: 640px) {

  .reasoning-stage {
    width:
      calc(100% - 32px);

    padding:
      94px 0 76px;
  }



  /* INTRO */

  .reasoning-kicker {
    font-size: 0.58rem;
  }


  .reasoning-kicker::before {
    width: 26px;
  }


  .reasoning-title {
    margin-top: 18px;

    font-size:
      clamp(2.7rem, 12.7vw, 3.45rem);

    line-height: 0.99;
  }



  /* SIGNAL */

  .reasoning-signal {
    margin-top: 78px;

    padding:
      46px 10px 58px;
  }


  .reasoning-signal-label {
    margin-bottom: 23px;

    font-size: 0.55rem;
  }


  .reasoning-signal blockquote {
    font-size:
      clamp(2.75rem, 13vw, 3.55rem);
  }



  /* SYSTEM */

  .reasoning-system {
    padding-top: 94px;

    display: block;

    border-bottom: 0;
  }


  .reasoning-system::before {
    display: none;
  }


  .reasoning-trunk {
    height: 94px;
  }



  /* BRANCH */

  .reasoning-branch {
    min-height: 0;

    padding:
      50px 0 56px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.065);
  }


  .reasoning-branch::before {
    left: 26px;
    top: -24px;

    height: 24px;
  }


  .reasoning-branch-head {
    min-height: 0;

    flex-direction: row;

    gap: 15px;
  }


  .reasoning-letter {
    width: 50px;
    height: 50px;

    flex-basis: 50px;
  }


  .reasoning-area {
    font-size: 0.54rem;
  }


  .reasoning-branch-head strong {
    max-width: 260px;

    font-size:
      clamp(1.4rem, 6.7vw, 1.75rem);
  }



  /* BODY */

  .reasoning-branch-body {
    margin-top: 34px;
  }


  .reasoning-branch-body > p {
    max-width: 330px;

    font-size: 0.79rem;
  }


  .reasoning-question {
    margin-top: 38px;
  }


  .reasoning-answer {
    margin-top: 34px;
  }



  /* CONCLUSION */

  .reasoning-conclusion {
    margin-top: 90px;

    padding-top: 47px;

    text-align: left;
  }


  .reasoning-conclusion-line {
    left: 0;

    height: 30px;
  }


  .reasoning-conclusion p {
    font-size:
      clamp(1.8rem, 8.2vw, 2.25rem);
  }


  .reasoning-conclusion > strong {
    margin-top: 8px;

    font-size:
      clamp(2.8rem, 12vw, 3.5rem);
  }


  .reasoning-conclusion > small {
    max-width: 320px;

    margin:
      28px 0 0;

    font-size: 0.78rem;
  }


  .reasoning-screen-index {
    right: -7px;

    font-size: 7rem;
  }

}
/* =========================================================
   SCREEN 06 — REASONING MOTION STATES
========================================================= */

.reasoning-branch,
.reasoning-letter,
.reasoning-branch-body,
.reasoning-trunk,
.reasoning-conclusion {
  will-change: transform, opacity;
}


.reasoning-branch {
  transition:
    opacity 280ms ease,
    background 280ms ease;
}


/* ramo sendo investigado */

.reasoning-branch.is-active {
  opacity: 1;

  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0.045),
      transparent 48%
    );
}


.reasoning-branch.is-active .reasoning-letter {
  color: #050709;

  background: #d5ff3f;

  border-color: #d5ff3f;

  box-shadow:
    0 0 0 7px rgba(213, 255, 63, 0.04),
    0 0 28px rgba(213, 255, 63, 0.17);
}


/* outros caminhos perdem força */

.reasoning-branch.is-muted {
  opacity: 0.24;
}


/* mobile não deixa os ramos apagados demais */

@media (max-width: 640px) {

  .reasoning-branch.is-muted {
    opacity: 0.34;
  }

}
/* =========================================================
   SCREEN 07 — PROJECT PACT
========================================================= */

.project-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 48% 40%,
      rgba(213, 255, 63, 0.035),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #050709 0%,
      #070a0d 50%,
      #050709 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.055);
}


.project-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    );

  background-size: 84px 84px;

  opacity: 0.28;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 14%,
      black 88%,
      transparent
    );
}


.project-stage {
  position: relative;
  z-index: 1;

  width:
    min(1280px, calc(100% - 80px));

  margin: 0 auto;

  padding:
    140px 0 112px;
}



/* =========================================================
   INTRO
========================================================= */

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


.project-kicker {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: #d5ff3f;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.project-kicker::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 16px rgba(213, 255, 63, 0.32);
}


.project-title {
  max-width: 900px;

  margin:
    24px 0 0;

  color: #f6f7f8;

  font-size:
    clamp(3.4rem, 5.6vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.058em;

  font-weight: 500;
}


.project-title span {
  display: block;

  color: #d5ff3f;
}


.project-description {
  max-width: 570px;

  margin-top: 28px;

  color:
    rgba(246, 247, 248, 0.5);

  font-size: 0.98rem;

  line-height: 1.72;
}



/* =========================================================
   JOURNEY
========================================================= */

.project-journey {
  position: relative;

  margin-top: 108px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    86px 28px;

  padding:
    30px 0 10px;
}



/* =========================================================
   PROGRESS
========================================================= */

.project-progress {
  position: absolute;

  left: 8%;
  right: 8%;
  top: 87px;

  height: 1px;

  z-index: 0;
}


.project-progress-base {
  position: absolute;
  inset: 0;

  background:
    rgba(255, 255, 255, 0.07);
}


.project-progress-active {
  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      #d5ff3f,
      rgba(213, 255, 63, 0.45)
    );

  transform:
    scaleX(0.18);

  transform-origin:
    left center;

  box-shadow:
    0 0 18px rgba(213, 255, 63, 0.22);
}


.project-progress-signal {
  position: absolute;

  left: 18%;
  top: 50%;

  width: 9px;
  height: 9px;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background: #d5ff3f;

  box-shadow:
    0 0 0 7px rgba(213, 255, 63, 0.04),
    0 0 24px rgba(213, 255, 63, 0.35);
}



/* =========================================================
   STEP
========================================================= */

.project-step {
  position: relative;

  z-index: 2;

  min-height: 290px;

  padding:
    0 26px 26px 0;

  opacity: 0.42;
}


.project-step:nth-of-type(5),
.project-step:nth-of-type(6),
.project-step:nth-of-type(7) {
  transform:
    translateY(18px);
}


.project-step-marker {
  position: relative;

  width: 60px;
  height: 60px;

  margin-bottom: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  background:
    #090c0f;
}


.project-step-marker span {
  color:
    rgba(246, 247, 248, 0.5);

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.08em;
}


.project-step-content {
  max-width: 320px;
}


.project-step-label {
  display: block;

  margin-bottom: 14px;

  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.project-step h3 {
  margin: 0;

  color: #f6f7f8;

  font-size:
    clamp(1.55rem, 2vw, 2rem);

  line-height: 1.08;

  letter-spacing: -0.04em;

  font-weight: 500;
}


.project-step p {
  max-width: 300px;

  margin-top: 17px;

  color:
    rgba(246, 247, 248, 0.4);

  font-size: 0.78rem;

  line-height: 1.68;
}



/* ACTIVE STEP */

.project-step.active {
  opacity: 1;
}


.project-step.active .project-step-marker {
  border-color: #d5ff3f;

  background:
    #d5ff3f;

  box-shadow:
    0 0 0 8px rgba(213, 255, 63, 0.04),
    0 0 30px rgba(213, 255, 63, 0.12);
}


.project-step.active .project-step-marker span {
  color: #050709;
}


.project-step.active .project-step-label {
  color: #d5ff3f;
}



/* =========================================================
   SECOND ROW CONNECTION
========================================================= */

.project-step:nth-of-type(5)::before,
.project-step:nth-of-type(6)::before,
.project-step:nth-of-type(7)::before {
  content: "";

  position: absolute;

  top: -44px;
  left: 30px;

  width: 1px;
  height: 36px;

  background:
    rgba(255, 255, 255, 0.08);
}



/* =========================================================
   OUTPUT
========================================================= */

.project-output {
  margin-top: 120px;

  padding-top: 58px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}


.project-output-heading {
  max-width: 610px;
}


.project-output-heading > span {
  color: #d5ff3f;

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.project-output-heading h3 {
  margin-top: 18px;

  color: #f6f7f8;

  font-size:
    clamp(2.3rem, 3.5vw, 3.6rem);

  line-height: 1.05;

  letter-spacing: -0.05em;

  font-weight: 500;
}



/* =========================================================
   OUTPUT SYSTEM
========================================================= */

.project-output-system {
  margin-top: 52px;

  display: grid;

  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

  align-items: center;

  gap: 20px;
}


.project-output-item {
  min-height: 118px;

  padding:
    24px 20px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.project-output-item span {
  color:
    rgba(246, 247, 248, 0.27);

  font-size: 0.54rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}


.project-output-item strong {
  margin-top: 9px;

  color:
    rgba(246, 247, 248, 0.8);

  font-size: 0.82rem;
  font-weight: 500;

  line-height: 1.5;
}


.project-output-system > i {
  color:
    rgba(213, 255, 63, 0.46);

  font-style: normal;

  font-size: 1.1rem;
}



/* =========================================================
   PRINCIPLE
========================================================= */

.project-principle {
  position: relative;

  max-width: 900px;

  margin:
    116px auto 0;

  padding-top: 52px;

  text-align: center;
}


.project-principle-line {
  position: absolute;

  left: 50%;
  top: 0;

  width: 1px;
  height: 30px;

  background:
    linear-gradient(
      180deg,
      transparent,
      #d5ff3f
    );
}


.project-principle p {
  margin: 0;

  color:
    rgba(246, 247, 248, 0.38);

  font-size:
    clamp(1.7rem, 2.7vw, 2.55rem);

  line-height: 1.24;

  letter-spacing: -0.035em;
}


.project-principle strong {
  display: block;

  margin-top: 8px;

  color: #d5ff3f;

  font-size:
    clamp(2.2rem, 3.8vw, 3.6rem);

  line-height: 1.1;

  letter-spacing: -0.05em;

  font-weight: 500;
}



/* =========================================================
   SCREEN INDEX
========================================================= */

.project-screen-index {
  position: absolute;

  right: -16px;
  bottom: 24px;

  z-index: -1;

  color:
    rgba(255, 255, 255, 0.016);

  font-size: 11rem;

  line-height: 0.8;

  letter-spacing: -0.08em;

  font-weight: 500;

  user-select: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .project-stage {
    width:
      min(920px, calc(100% - 48px));
  }


  .project-journey {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      70px 40px;
  }


  .project-progress {
    display: none;
  }


  .project-step:nth-of-type(5),
  .project-step:nth-of-type(6),
  .project-step:nth-of-type(7) {
    transform: none;
  }


  .project-step:nth-of-type(5)::before,
  .project-step:nth-of-type(6)::before,
  .project-step:nth-of-type(7)::before {
    display: none;
  }


  .project-output-system {
    grid-template-columns:
      1fr 1fr;

    gap: 0;
  }


  .project-output-system > i {
    display: none;
  }

}



/* =========================================================
   SCREEN 07 — MOBILE
========================================================= */

@media (max-width: 640px) {

  .project-stage {
    width:
      calc(100% - 32px);

    padding:
      94px 0 76px;
  }


  /* INTRO */

  .project-kicker {
    font-size: 0.59rem;
  }


  .project-kicker::before {
    width: 26px;
  }


  .project-title {
    margin-top: 18px;

    font-size:
      clamp(2.7rem, 12.7vw, 3.45rem);

    line-height: 0.99;
  }


  .project-description {
    max-width: 340px;

    margin-top: 22px;

    font-size: 0.89rem;

    line-height: 1.65;
  }



  /* JOURNEY */

  .project-journey {
    margin-top: 78px;

    padding: 0;

    display: block;
  }


  .project-progress {
    display: block;

    left: 25px;
    right: auto;
    top: 0;
    bottom: 0;

    width: 1px;
    height: 100%;
  }


  .project-progress-base,
  .project-progress-active {
    width: 1px;
    height: 100%;
  }


  .project-progress-active {
    transform:
      scaleY(0.18);

    transform-origin:
      top center;
  }


  .project-progress-signal {
    left: 50%;
    top: 18%;
  }



  /* STEPS */

  .project-step,
  .project-step:nth-of-type(5),
  .project-step:nth-of-type(6),
  .project-step:nth-of-type(7) {
    min-height: 0;

    padding:
      0 0 66px 74px;

    transform: none;
  }


  .project-step::before,
  .project-step:nth-of-type(5)::before,
  .project-step:nth-of-type(6)::before,
  .project-step:nth-of-type(7)::before {
    display: none;
  }


  .project-step-marker {
    position: absolute;

    left: 0;
    top: 0;

    width: 52px;
    height: 52px;

    margin: 0;
  }


  .project-step-content {
    max-width: 300px;
  }


  .project-step-label {
    padding-top: 2px;

    font-size: 0.54rem;
  }


  .project-step h3 {
    font-size:
      clamp(1.65rem, 7.3vw, 2rem);
  }


  .project-step p {
    max-width: 290px;

    font-size: 0.76rem;
  }



  /* OUTPUT */

  .project-output {
    margin-top: 50px;

    padding-top: 44px;
  }


  .project-output-heading h3 {
    font-size:
      clamp(2.1rem, 9vw, 2.6rem);
  }


  .project-output-system {
    margin-top: 38px;

    display: block;
  }


  .project-output-item {
    min-height: 94px;

    padding:
      20px 0;
  }



  /* PRINCIPLE */

  .project-principle {
    margin-top: 84px;

    padding-top: 44px;

    text-align: left;
  }


  .project-principle-line {
    left: 0;

    height: 28px;
  }


  .project-principle p {
    font-size:
      clamp(1.5rem, 7vw, 1.9rem);
  }


  .project-principle strong {
    margin-top: 10px;

    font-size:
      clamp(2rem, 9vw, 2.6rem);
  }


  .project-screen-index {
    right: -8px;

    font-size: 7rem;
  }

}
/* =========================================================
   SCREEN 07 — JOURNEY MOTION
========================================================= */

.project-step {
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.project-step.completed {
  opacity: 0.68;
}

.project-step.completed .project-step-marker {
  border-color:
    rgba(213, 255, 63, 0.32);
}

.project-step.completed .project-step-marker span {
  color:
    rgba(213, 255, 63, 0.72);
}

.project-step.completed .project-step-label {
  color:
    rgba(213, 255, 63, 0.48);
}


/* sinal poderá viajar fora da linha */

.project-progress {
  overflow: visible;
}

.project-progress-signal {
  left: 0;
  top: 0;

  will-change: transform;
}

.project-progress-active {
  will-change: transform;
}


/* MOBILE */

@media (max-width: 640px) {

  .project-progress-signal {
    left: 50%;
    top: 0;
  }

}
/* =========================================================
   SCREEN 07 — CINEMATIC JOURNEY VIEWPORT
========================================================= */

@media (min-width: 1001px) {

  .project-journey-viewport {
    position: relative;

    height: 620px;
min-height: 620px;

    margin-top: 108px;

    overflow: hidden;
  }


  .project-journey-viewport .project-journey {
    margin-top: 0;
  }


  .project-step {
    overflow: visible;
  }


  .project-step-content {
    position: relative;

    z-index: 3;

    overflow: visible;

    opacity: 1 !important;
    visibility: visible !important;
  }


  .project-step h3,
  .project-step p,
  .project-step-label {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .project-output {
    margin-top: 55px;
  }
   
}


/* =========================================================
   TABLET / MOBILE — NATURAL FLOW
========================================================= */

@media (max-width: 1000px) {

  .project-journey-viewport {
    height: auto;
    min-height: 0;

    margin-top: 0;

    overflow: visible;
  }

}

/* =========================================================
   SCREEN 08 — DIAGNÓSTICO PACT
========================================================= */

.diagnostic-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 73% 42%,
      rgba(213, 255, 63, 0.04),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #050709 0%,
      #070a0d 50%,
      #050709 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.055);
}


/* GRID AMBIENTE */

.diagnostic-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    );

  background-size: 82px 82px;

  opacity: 0.3;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 12%,
      black 88%,
      transparent
    );
}


.diagnostic-stage {
  position: relative;
  z-index: 1;

  width:
    min(1280px, calc(100% - 80px));

  margin: 0 auto;

  padding:
    140px 0 112px;
}



/* =========================================================
   INTRO
========================================================= */

.diagnostic-intro {
  max-width: 930px;
}


.diagnostic-kicker {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: #d5ff3f;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.diagnostic-kicker::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 16px rgba(213, 255, 63, 0.32);
}


.diagnostic-title {
  max-width: 930px;

  margin-top: 24px;

  color: #f6f7f8;

  font-size:
    clamp(3.4rem, 5.6vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.058em;

  font-weight: 500;
}


.diagnostic-title span {
  display: block;

  color: #d5ff3f;
}


.diagnostic-description {
  max-width: 610px;

  margin-top: 28px;

  color:
    rgba(246, 247, 248, 0.5);

  font-size: 0.98rem;

  line-height: 1.72;
}



/* =========================================================
   INTERFACE
========================================================= */

.diagnostic-interface {
  margin-top: 104px;

  display: grid;

  grid-template-columns:
    minmax(320px, 0.78fr)
    minmax(0, 1.22fr);

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);

  min-height: 720px;
}



/* =========================================================
   OVERVIEW
========================================================= */

.diagnostic-overview {
  position: relative;

  padding:
    46px 50px 48px 0;

  border-right:
    1px solid rgba(255, 255, 255, 0.065);

  display: flex;
  flex-direction: column;
}


.diagnostic-overview::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  left: -110px;
  top: 170px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.035);

  filter: blur(80px);

  pointer-events: none;
}


.diagnostic-overview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.diagnostic-overview-top > span {
  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.59rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}


.diagnostic-overview-top > small {
  color:
    rgba(246, 247, 248, 0.22);

  font-size: 0.53rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}



/* =========================================================
   SCORE
========================================================= */

.diagnostic-score {
  margin-top: auto;
  margin-bottom: auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}


.diagnostic-score-orbit {
  position: relative;

  width: 260px;
  height: 260px;

  display: grid;
  place-items: center;
}


.diagnostic-score-ring {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;
}


.diagnostic-score-ring-1 {
  width: 100%;
  height: 100%;

  border:
    1px solid rgba(213, 255, 63, 0.18);
}


.diagnostic-score-ring-2 {
  width: 190px;
  height: 190px;

  border:
    1px solid rgba(255, 255, 255, 0.065);
}


.diagnostic-score-core {
  position: relative;

  width: 142px;
  height: 142px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(213, 255, 63, 0.1),
      rgba(8, 11, 14, 0.96) 62%
    );

  border:
    1px solid rgba(213, 255, 63, 0.26);

  box-shadow:
    0 0 45px rgba(213, 255, 63, 0.06);
}


.diagnostic-score-core > span {
  color:
    rgba(246, 247, 248, 0.36);

  font-size: 0.5rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}


.diagnostic-score-core strong {
  margin-top: 5px;

  color: #d5ff3f;

  font-size: 3.5rem;

  line-height: 1;

  letter-spacing: -0.07em;

  font-weight: 500;
}


.diagnostic-score-core small {
  margin-top: 3px;

  color:
    rgba(246, 247, 248, 0.34);

  font-size: 0.58rem;
}


.diagnostic-score > p {
  max-width: 320px;

  margin-top: 36px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.8rem;

  line-height: 1.68;
}



/* =========================================================
   MATURITY
========================================================= */

.diagnostic-status {
  padding-top: 28px;

  border-top:
    1px solid rgba(255, 255, 255, 0.065);

  display: flex;
  flex-direction: column;

  gap: 7px;
}


.diagnostic-status span {
  color:
    rgba(246, 247, 248, 0.24);

  font-size: 0.53rem;
  font-weight: 600;

  letter-spacing: 0.14em;
}


.diagnostic-status strong {
  color:
    rgba(246, 247, 248, 0.76);

  font-size: 0.8rem;
  font-weight: 500;
}



/* =========================================================
   ANALYSIS
========================================================= */

.diagnostic-analysis {
  padding:
    46px 0 46px 56px;

  display: flex;
  flex-direction: column;
}


.diagnostic-analysis-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-right: 4px;
}


.diagnostic-analysis-head > span {
  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.59rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}


.diagnostic-analysis-head > small {
  color:
    rgba(213, 255, 63, 0.55);

  font-size: 0.55rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}



/* =========================================================
   PILLARS
========================================================= */

.diagnostic-pillar {
  padding:
    25px 0 24px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);

  opacity: 0.68;

  transition:
    opacity 280ms ease,
    background 280ms ease;
}


.diagnostic-pillar:first-of-type {
  margin-top: 30px;

  border-top:
    1px solid rgba(255, 255, 255, 0.06);
}


.diagnostic-pillar-head {
  display: grid;

  grid-template-columns:
    48px minmax(0, 1fr) auto;

  align-items: center;

  gap: 16px;
}


.diagnostic-pillar-letter {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  color:
    rgba(246, 247, 248, 0.55);

  font-size: 0.76rem;
  font-weight: 700;

  transition:
    color 280ms ease,
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}


.diagnostic-pillar-head > div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}


.diagnostic-pillar-head small {
  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.52rem;
  font-weight: 600;

  letter-spacing: 0.13em;
}


.diagnostic-pillar-head strong {
  color:
    rgba(246, 247, 248, 0.75);

  font-size: 0.8rem;
  font-weight: 500;
}


.diagnostic-pillar-score {
  color:
    rgba(246, 247, 248, 0.34);

  font-size: 0.78rem;
  font-weight: 600;
}



/* =========================================================
   SCORE BAR
========================================================= */

.diagnostic-bar {
  position: relative;

  height: 2px;

  margin:
    18px 0 0 64px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.06);
}


.diagnostic-bar-fill {
  display: block;

  width: 100%;
  height: 100%;

  background:
    rgba(246, 247, 248, 0.26);

  transform:
    scaleX(0);

  transform-origin:
    left center;

  transition:
    background 280ms ease;
}



/* CRITICAL */

.diagnostic-pillar-critical {
  opacity: 1;

  background:
    linear-gradient(
      90deg,
      rgba(213, 255, 63, 0.045),
      transparent 58%
    );
}


.diagnostic-pillar-critical .diagnostic-pillar-letter {
  color: #050709;

  background: #d5ff3f;

  border-color: #d5ff3f;

  box-shadow:
    0 0 0 7px rgba(213, 255, 63, 0.04),
    0 0 25px rgba(213, 255, 63, 0.16);
}


.diagnostic-pillar-critical
.diagnostic-pillar-head small {
  color:
    rgba(213, 255, 63, 0.68);
}


.diagnostic-pillar-critical
.diagnostic-pillar-head strong {
  color: #f6f7f8;
}


.diagnostic-pillar-critical
.diagnostic-pillar-score {
  color: #d5ff3f;
}


.diagnostic-pillar-critical
.diagnostic-bar-fill {
  background: #d5ff3f;
}



/* =========================================================
   BOTTLENECK
========================================================= */

.diagnostic-bottleneck {
  margin-top: auto;

  padding-top: 34px;

  display: grid;

  grid-template-columns:
    116px minmax(0, 1fr);

  gap: 28px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}


.diagnostic-bottleneck-signal {
  min-height: 142px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-right:
    1px solid rgba(255, 255, 255, 0.07);
}


.diagnostic-bottleneck-signal span {
  max-width: 84px;

  color:
    rgba(246, 247, 248, 0.26);

  font-size: 0.48rem;
  font-weight: 600;

  line-height: 1.5;

  letter-spacing: 0.12em;

  text-align: center;
}


.diagnostic-bottleneck-signal strong {
  margin-top: 10px;

  color: #d5ff3f;

  font-size: 3.8rem;

  line-height: 1;

  font-weight: 500;
}


.diagnostic-bottleneck-copy > span {
  color: #d5ff3f;

  font-size: 0.57rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.diagnostic-bottleneck-copy h3 {
  max-width: 570px;

  margin-top: 11px;

  color: #f6f7f8;

  font-size:
    clamp(1.6rem, 2.4vw, 2.3rem);

  line-height: 1.08;

  letter-spacing: -0.04em;

  font-weight: 500;
}


.diagnostic-bottleneck-copy p {
  max-width: 520px;

  margin-top: 16px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.76rem;

  line-height: 1.65;
}



/* =========================================================
   DELIVERY
========================================================= */

.diagnostic-delivery {
  margin-top: 118px;

  padding-top: 54px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}


.diagnostic-delivery-head span {
  color:
    rgba(213, 255, 63, 0.7);

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.diagnostic-delivery-grid {
  margin-top: 42px;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.065);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.065);
}


.diagnostic-delivery-item {
  min-height: 150px;

  padding:
    30px 26px;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid rgba(255, 255, 255, 0.06);
}


.diagnostic-delivery-item:last-child {
  border-right: 0;
}


.diagnostic-delivery-item span {
  color:
    rgba(213, 255, 63, 0.5);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


.diagnostic-delivery-item strong {
  max-width: 230px;

  color:
    rgba(246, 247, 248, 0.78);

  font-size: 0.9rem;
  font-weight: 500;

  line-height: 1.5;
}



/* =========================================================
   CTA
========================================================= */

.diagnostic-cta {
  margin-top: 112px;

  padding:
    52px 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 60px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.diagnostic-cta > div {
  max-width: 690px;
}


.diagnostic-cta > div > span {
  color:
    rgba(213, 255, 63, 0.68);

  font-size: 0.59rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.diagnostic-cta h3 {
  margin-top: 18px;

  color: #f6f7f8;

  font-size:
    clamp(2.3rem, 3.7vw, 3.7rem);

  line-height: 1.05;

  letter-spacing: -0.05em;

  font-weight: 500;
}


.diagnostic-cta-button {
  min-height: 58px;

  flex-shrink: 0;

  padding:
    0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  border-radius: 999px;

  background: #d5ff3f;

  color: #050709;

  font-size: 0.82rem;
  font-weight: 700;

  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}


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

  box-shadow:
    0 14px 42px rgba(213, 255, 63, 0.16);
}



/* =========================================================
   SCREEN NUMBER
========================================================= */

.diagnostic-screen-index {
  position: absolute;

  right: -16px;
  bottom: 20px;

  z-index: -1;

  color:
    rgba(255, 255, 255, 0.016);

  font-size: 11rem;

  line-height: 0.8;

  letter-spacing: -0.08em;

  font-weight: 500;

  user-select: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .diagnostic-stage {
    width:
      min(920px, calc(100% - 48px));
  }


  .diagnostic-interface {
    grid-template-columns: 1fr;
  }


  .diagnostic-overview {
    min-height: 560px;

    padding:
      46px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.065);
  }


  .diagnostic-analysis {
    padding:
      46px 0;
  }


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


  .diagnostic-delivery-item:nth-child(2) {
    border-right: 0;
  }


  .diagnostic-delivery-item:nth-child(-n+2) {
    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);
  }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .diagnostic-stage {
    width:
      calc(100% - 32px);

    padding:
      94px 0 76px;
  }


  .diagnostic-kicker {
    font-size: 0.59rem;
  }


  .diagnostic-kicker::before {
    width: 26px;
  }


  .diagnostic-title {
    margin-top: 18px;

    font-size:
      clamp(2.7rem, 12.7vw, 3.45rem);

    line-height: 0.99;
  }


  .diagnostic-description {
    max-width: 340px;

    margin-top: 22px;

    font-size: 0.89rem;

    line-height: 1.65;
  }



  /* INTERFACE */

  .diagnostic-interface {
    margin-top: 76px;

    min-height: 0;

    display: block;
  }



  /* OVERVIEW */

  .diagnostic-overview {
    min-height: 520px;

    padding:
      34px 0 40px;
  }


  .diagnostic-overview-top {
    align-items: flex-start;
  }


  .diagnostic-overview-top > small {
    max-width: 115px;

    text-align: right;

    line-height: 1.5;
  }


  .diagnostic-score-orbit {
    width: 220px;
    height: 220px;
  }


  .diagnostic-score-ring-2 {
    width: 158px;
    height: 158px;
  }


  .diagnostic-score-core {
    width: 124px;
    height: 124px;
  }


  .diagnostic-score-core strong {
    font-size: 3rem;
  }


  .diagnostic-score > p {
    max-width: 295px;

    margin-top: 30px;

    font-size: 0.76rem;
  }



  /* ANALYSIS */

  .diagnostic-analysis {
    padding:
      38px 0 0;
  }


  .diagnostic-pillar {
    padding:
      23px 0;
  }


  .diagnostic-pillar-head {
    grid-template-columns:
      44px minmax(0, 1fr) auto;

    gap: 13px;
  }


  .diagnostic-pillar-letter {
    width: 42px;
    height: 42px;
  }


  .diagnostic-pillar-head strong {
    font-size: 0.74rem;
  }


  .diagnostic-bar {
    margin-left: 57px;
  }



  /* BOTTLENECK */

  .diagnostic-bottleneck {
    margin-top: 44px;

    padding-top: 34px;

    display: block;
  }


  .diagnostic-bottleneck-signal {
    width: 100%;

    min-height: 0;

    padding-bottom: 26px;

    flex-direction: row;

    justify-content: flex-start;

    gap: 18px;

    border-right: 0;
    border-bottom:
      1px solid rgba(255, 255, 255, 0.065);
  }


  .diagnostic-bottleneck-signal span {
    max-width: none;

    text-align: left;
  }


  .diagnostic-bottleneck-signal strong {
    margin-top: 0;

    font-size: 2.7rem;
  }


  .diagnostic-bottleneck-copy {
    padding-top: 30px;
  }


  .diagnostic-bottleneck-copy h3 {
    font-size:
      clamp(1.75rem, 8vw, 2.2rem);
  }



  /* DELIVERY */

  .diagnostic-delivery {
    margin-top: 86px;

    padding-top: 42px;
  }


  .diagnostic-delivery-grid {
    margin-top: 34px;

    display: block;
  }


  .diagnostic-delivery-item {
    min-height: 112px;

    padding:
      24px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);
  }


  .diagnostic-delivery-item:last-child {
    border-bottom: 0;
  }



  /* CTA */

  .diagnostic-cta {
    margin-top: 82px;

    padding:
      42px 0;

    display: block;
  }


  .diagnostic-cta h3 {
    margin-top: 16px;

    font-size:
      clamp(2.1rem, 9.5vw, 2.7rem);
  }


  .diagnostic-cta-button {
    width: 100%;

    min-height: 58px;

    margin-top: 34px;
  }


  .diagnostic-screen-index {
    right: -8px;

    font-size: 7rem;
  }

}

/* =========================================================
   SCREEN 09 — AUTOR DO MÉTODO
========================================================= */

.author-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 25% 45%,
      rgba(213, 255, 63, 0.045),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #050709 0%,
      #070a0d 52%,
      #050709 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.055);
}


/* ambient architecture */

.author-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent 24.9%,
      rgba(255, 255, 255, 0.02) 25%,
      transparent 25.1%,
      transparent 49.9%,
      rgba(255, 255, 255, 0.02) 50%,
      transparent 50.1%,
      transparent 74.9%,
      rgba(255, 255, 255, 0.02) 75%,
      transparent 75.1%
    );

  opacity: 0.45;
}


.author-stage {
  position: relative;
  z-index: 1;

  width:
    min(1280px, calc(100% - 80px));

  margin: 0 auto;

  padding:
    140px 0 112px;
}



/* =========================================================
   INTRO
========================================================= */

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


.author-kicker {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: #d5ff3f;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.author-kicker::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 16px rgba(213, 255, 63, 0.32);
}


.author-title {
  max-width: 900px;

  margin-top: 24px;

  color: #f6f7f8;

  font-size:
    clamp(3.4rem, 5.6vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.058em;

  font-weight: 500;
}


.author-title span {
  display: block;

  color:
    rgba(246, 247, 248, 0.38);
}



/* =========================================================
   MAIN COMPOSITION
========================================================= */

.author-composition {
  margin-top: 108px;

  display: grid;

  grid-template-columns:
    minmax(360px, 0.9fr)
    minmax(0, 1.1fr);

  gap:
    clamp(60px, 7vw, 110px);

  align-items: stretch;
}



/* =========================================================
   IMAGE
========================================================= */

.author-visual {
  position: relative;
}


.author-image-wrap {
  position: relative;

  min-height: 720px;

  overflow: hidden;

  background:
    #0b0e11;

  border:
    1px solid rgba(255, 255, 255, 0.065);
}


.author-image-wrap::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 9, 0.04),
      transparent 48%,
      rgba(5, 7, 9, 0.82) 100%
    );
}


.author-image-wrap::after {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 92px;
  height: 2px;

  z-index: 3;

  background: #d5ff3f;

  box-shadow:
    0 0 24px rgba(213, 255, 63, 0.28);
}


.author-image {
  width: 100%;
  height: 720px;

  display: block;

  object-fit: cover;
  object-position: center top;

  filter:
    saturate(0.9)
    contrast(1.03);

  transform: scale(1.015);
}


.author-visual-caption {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 26px;

  z-index: 4;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;
}


.author-visual-caption > span {
  color: #d5ff3f;

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.author-visual-caption > strong {
  max-width: 160px;

  color:
    rgba(246, 247, 248, 0.72);

  font-size: 0.72rem;
  font-weight: 500;

  line-height: 1.45;

  text-align: right;
}



/* =========================================================
   CONTENT
========================================================= */

.author-content {
  min-height: 720px;

  padding:
    28px 0 20px;

  display: flex;
  flex-direction: column;
}



/* =========================================================
   MANIFESTO
========================================================= */

.author-manifesto {
  position: relative;

  padding-bottom: 48px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.author-manifesto-index {
  display: block;

  margin-bottom: 42px;

  color:
    rgba(213, 255, 63, 0.55);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.13em;
}


.author-manifesto p {
  max-width: 620px;

  margin: 0;

  color:
    rgba(246, 247, 248, 0.44);

  font-size:
    clamp(2rem, 3vw, 3rem);

  line-height: 1.15;

  letter-spacing: -0.04em;
}


.author-manifesto p + p {
  margin-top: 18px;
}


.author-manifesto strong {
  color: #f6f7f8;

  font-weight: 500;
}



/* =========================================================
   BODY COPY
========================================================= */

.author-copy {
  max-width: 600px;

  margin-top: 52px;
}


.author-copy p {
  margin: 0;

  color:
    rgba(246, 247, 248, 0.46);

  font-size: 0.9rem;

  line-height: 1.78;
}


.author-copy p + p {
  margin-top: 19px;
}


.author-copy strong {
  color:
    rgba(246, 247, 248, 0.9);

  font-weight: 500;
}



/* =========================================================
   SIGNATURE
========================================================= */

.author-signature {
  margin-top: auto;

  padding-top: 34px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;
}


.author-signature > div {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.author-signature > div strong {
  color: #f6f7f8;

  font-size: 0.86rem;
  font-weight: 600;
}


.author-signature > div span {
  color:
    rgba(246, 247, 248, 0.32);

  font-size: 0.62rem;

  letter-spacing: 0.08em;
}


.author-signature-mark {
  color:
    rgba(213, 255, 63, 0.12);

  font-size: 3.6rem;
  font-weight: 700;

  line-height: 0.8;

  letter-spacing: -0.07em;
}



/* =========================================================
   PRINCIPLES
========================================================= */

.author-principles {
  margin-top: 118px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.author-principle {
  min-height: 210px;

  padding:
    34px 30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-right:
    1px solid rgba(255, 255, 255, 0.06);
}


.author-principle:last-child {
  border-right: 0;
}


.author-principle span {
  color:
    rgba(213, 255, 63, 0.48);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


.author-principle strong {
  max-width: 280px;

  color:
    rgba(246, 247, 248, 0.82);

  font-size:
    clamp(1.35rem, 1.9vw, 1.8rem);

  line-height: 1.22;

  letter-spacing: -0.035em;

  font-weight: 500;
}



/* =========================================================
   CLOSING
========================================================= */

.author-closing {
  max-width: 930px;

  margin:
    118px auto 0;

  text-align: center;
}


.author-closing > span {
  color:
    rgba(213, 255, 63, 0.62);

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.author-closing p {
  margin-top: 24px;

  color:
    rgba(246, 247, 248, 0.34);

  font-size:
    clamp(2rem, 3.4vw, 3.25rem);

  line-height: 1.16;

  letter-spacing: -0.045em;
}


.author-closing strong {
  display: block;

  margin-top: 8px;

  color: #d5ff3f;

  font-weight: 500;
}



/* =========================================================
   SCREEN INDEX
========================================================= */

.author-screen-index {
  position: absolute;

  right: -16px;
  bottom: 20px;

  z-index: -1;

  color:
    rgba(255, 255, 255, 0.016);

  font-size: 11rem;

  line-height: 0.8;

  letter-spacing: -0.08em;

  font-weight: 500;

  user-select: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .author-stage {
    width:
      min(920px, calc(100% - 48px));
  }


  .author-composition {
    grid-template-columns:
      minmax(300px, 0.8fr)
      minmax(0, 1.2fr);

    gap: 48px;
  }


  .author-image-wrap,
  .author-image {
    height: 650px;
    min-height: 650px;
  }


  .author-content {
    min-height: 650px;
  }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .author-stage {
    width:
      calc(100% - 32px);

    padding:
      94px 0 76px;
  }


  .author-kicker {
    font-size: 0.59rem;
  }


  .author-kicker::before {
    width: 26px;
  }


  .author-title {
    margin-top: 18px;

    font-size:
      clamp(2.7rem, 12.7vw, 3.45rem);

    line-height: 0.99;
  }



  /* COMPOSITION */

  .author-composition {
    margin-top: 72px;

    display: block;
  }



  /* IMAGE */

  .author-image-wrap {
    min-height: 500px;
    height: 500px;
  }


  .author-image {
    height: 500px;

    object-position: center top;
  }


  .author-visual-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }


  .author-visual-caption > strong {
    max-width: 130px;

    font-size: 0.65rem;
  }



  /* CONTENT */

  .author-content {
    min-height: 0;

    padding:
      52px 0 0;
  }


  .author-manifesto {
    padding-bottom: 38px;
  }


  .author-manifesto-index {
    margin-bottom: 30px;
  }


  .author-manifesto p {
    font-size:
      clamp(1.8rem, 8.3vw, 2.3rem);
  }


  .author-copy {
    margin-top: 40px;
  }


  .author-copy p {
    font-size: 0.84rem;
  }


  .author-signature {
    margin-top: 46px;
  }


  .author-signature-mark {
    font-size: 2.8rem;
  }



  /* PRINCIPLES */

  .author-principles {
    margin-top: 86px;

    display: block;
  }


  .author-principle {
    min-height: 150px;

    padding:
      26px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);
  }


  .author-principle:last-child {
    border-bottom: 0;
  }


  .author-principle strong {
    max-width: 290px;

    font-size:
      clamp(1.35rem, 6.5vw, 1.7rem);
  }



  /* CLOSING */

  .author-closing {
    margin-top: 86px;

    text-align: left;
  }


  .author-closing p {
    font-size:
      clamp(1.8rem, 8vw, 2.3rem);
  }


  .author-closing strong {
    margin-top: 10px;
  }


  .author-screen-index {
    right: -8px;

    font-size: 7rem;
  }

}

/* =========================================================
   SCREEN 10 — DIAGNÓSTICO PACT / ENTRY
========================================================= */

.assessment-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 76% 38%,
      rgba(213, 255, 63, 0.045),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #050709 0%,
      #070a0d 50%,
      #050709 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.055);
}

.assessment-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    );

  background-size: 84px 84px;

  opacity: 0.28;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 12%,
      black 90%,
      transparent
    );
}

.assessment-stage {
  position: relative;
  z-index: 1;

  width:
    min(1280px, calc(100% - 80px));

  margin: 0 auto;

  padding:
    140px 0 112px;
}


/* =========================================================
   ENTRY
========================================================= */

.assessment-entry {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(420px, 0.92fr);

  gap:
    clamp(70px, 8vw, 130px);

  align-items: stretch;
}

.assessment-entry-copy {
  padding-top: 18px;
}

.assessment-kicker {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: #d5ff3f;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.assessment-kicker::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d5ff3f;

  box-shadow:
    0 0 16px rgba(213, 255, 63, 0.32);
}

.assessment-title {
  max-width: 760px;

  margin-top: 24px;

  color: #f6f7f8;

  font-size:
    clamp(3.8rem, 6vw, 5.7rem);

  line-height: 0.97;

  letter-spacing: -0.06em;

  font-weight: 500;
}

.assessment-title span {
  display: block;

  color: #d5ff3f;
}

.assessment-description {
  max-width: 620px;

  margin-top: 30px;

  color:
    rgba(246, 247, 248, 0.5);

  font-size: 1rem;

  line-height: 1.72;
}


/* =========================================================
   BENEFITS
========================================================= */

.assessment-benefits {
  margin-top: 76px;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}

.assessment-benefit {
  min-height: 126px;

  padding:
    24px 22px 24px 0;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.055);
}

.assessment-benefit:nth-child(odd) {
  border-right:
    1px solid rgba(255, 255, 255, 0.055);

  padding-right: 28px;
}

.assessment-benefit:nth-child(even) {
  padding-left: 28px;
}

.assessment-benefit:nth-last-child(-n+2) {
  border-bottom: 0;
}

.assessment-benefit span {
  color:
    rgba(213, 255, 63, 0.48);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}

.assessment-benefit strong {
  max-width: 250px;

  color:
    rgba(246, 247, 248, 0.78);

  font-size: 0.9rem;
  font-weight: 500;

  line-height: 1.5;
}


/* =========================================================
   START PANEL
========================================================= */

.assessment-start-panel {
  position: relative;

  min-height: 720px;

  padding:
    34px 34px 30px;

  display: flex;
  flex-direction: column;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  background:
    linear-gradient(
      145deg,
      rgba(16, 20, 24, 0.82),
      rgba(8, 11, 14, 0.58)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  overflow: hidden;
}

.assessment-start-panel::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100px;
  height: 2px;

  background: #d5ff3f;

  box-shadow:
    0 0 24px rgba(213, 255, 63, 0.26);
}

.assessment-start-panel::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -120px;
  top: 140px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.04);

  filter: blur(70px);

  pointer-events: none;
}


/* =========================================================
   START HEAD
========================================================= */

.assessment-start-head {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 24px;
}

.assessment-start-head > div {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.assessment-start-head > div > span {
  color:
    rgba(246, 247, 248, 0.76);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.assessment-start-head > div > small {
  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.52rem;

  letter-spacing: 0.12em;
}

.assessment-start-status {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color:
    rgba(213, 255, 63, 0.6);

  font-size: 0.52rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.assessment-start-status i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #d5ff3f;

  box-shadow:
    0 0 16px rgba(213, 255, 63, 0.55);
}


/* =========================================================
   MINI SYSTEM
========================================================= */

.assessment-start-system {
  position: relative;

  min-height: 330px;

  margin-top: 26px;

  display: grid;
  place-items: center;
}

.assessment-start-orbit {
  position: relative;

  width: 250px;
  height: 250px;

  display: grid;
  place-items: center;
}

.assessment-start-ring {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;
}

.assessment-start-ring-1 {
  width: 100%;
  height: 100%;

  border:
    1px solid rgba(213, 255, 63, 0.18);
}

.assessment-start-ring-2 {
  width: 180px;
  height: 180px;

  border:
    1px solid rgba(255, 255, 255, 0.07);
}

.assessment-start-core {
  width: 126px;
  height: 126px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(213, 255, 63, 0.11),
      rgba(7, 10, 13, 0.96) 62%
    );

  border:
    1px solid rgba(213, 255, 63, 0.28);

  box-shadow:
    0 0 42px rgba(213, 255, 63, 0.07);
}

.assessment-start-core span {
  color:
    rgba(246, 247, 248, 0.32);

  font-size: 0.48rem;
  font-weight: 600;

  letter-spacing: 0.15em;
}

.assessment-start-core strong {
  margin-top: 4px;

  color: #f6f7f8;

  font-size: 2.2rem;

  line-height: 1;

  letter-spacing: -0.06em;

  font-weight: 600;
}

.assessment-start-core small {
  margin-top: 8px;

  color: #d5ff3f;

  font-size: 0.48rem;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.assessment-start-node {
  position: absolute;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  background:
    rgba(9, 12, 15, 0.92);

  color:
    rgba(246, 247, 248, 0.58);

  font-size: 0.7rem;
  font-weight: 700;
}

.assessment-start-node-p {
  top: -10px;
  left: 50%;

  transform:
    translateX(-50%);
}

.assessment-start-node-a {
  left: -10px;
  top: 50%;

  transform:
    translateY(-50%);
}

.assessment-start-node-c {
  right: -10px;
  top: 50%;

  transform:
    translateY(-50%);
}

.assessment-start-node-t {
  bottom: -10px;
  left: 50%;

  transform:
    translateX(-50%);
}


/* =========================================================
   START COPY
========================================================= */

.assessment-start-copy {
  position: relative;
  z-index: 2;

  margin-top: 10px;
}

.assessment-start-copy h3 {
  max-width: 460px;

  color: #f6f7f8;

  font-size:
    clamp(2rem, 2.8vw, 2.75rem);

  line-height: 1.06;

  letter-spacing: -0.045em;

  font-weight: 500;
}

.assessment-start-copy p {
  max-width: 430px;

  margin-top: 16px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.8rem;

  line-height: 1.68;
}


/* =========================================================
   START META
========================================================= */

.assessment-start-meta {
  margin-top: 30px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.065);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.065);
}

.assessment-start-meta > div {
  min-height: 76px;

  padding:
    16px 12px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  gap: 5px;

  border-right:
    1px solid rgba(255, 255, 255, 0.055);
}

.assessment-start-meta > div:last-child {
  border-right: 0;
}

.assessment-start-meta span {
  color:
    rgba(246, 247, 248, 0.24);

  font-size: 0.49rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}

.assessment-start-meta strong {
  color:
    rgba(246, 247, 248, 0.78);

  font-size: 0.72rem;
  font-weight: 500;
}


/* =========================================================
   START BUTTON
========================================================= */

.assessment-start-button {
  width: 100%;

  min-height: 58px;

  margin-top: 28px;

  padding:
    0 22px;

  border: 0;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #d5ff3f;
  color: #050709;

  cursor: pointer;

  font-size: 0.84rem;
  font-weight: 700;

  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

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

  box-shadow:
    0 14px 42px rgba(213, 255, 63, 0.17);
}

.assessment-start-privacy {
  display: block;

  max-width: 380px;

  margin:
    14px auto 0;

  color:
    rgba(246, 247, 248, 0.24);

  font-size: 0.55rem;

  line-height: 1.5;

  text-align: center;
}


/* =========================================================
   APP
========================================================= */

.assessment-app {
  min-height: 720px;

  padding-top: 8px;
}

.assessment-app[hidden],
.assessment-result[hidden] {
  display: none !important;
}


/* =========================================================
   APP HEADER
========================================================= */

.assessment-app-header {
  display: grid;

  grid-template-columns:
    180px minmax(0, 1fr) 44px;

  align-items: center;

  gap: 40px;

  padding-bottom: 28px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}

.assessment-app-brand {
  display: flex;
  align-items: baseline;

  gap: 10px;
}

.assessment-app-brand strong {
  color: #d5ff3f;

  font-size: 1rem;
  font-weight: 700;

  letter-spacing: -0.04em;
}

.assessment-app-brand span {
  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.52rem;
  font-weight: 600;

  letter-spacing: 0.13em;
}

.assessment-progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 10px;
}

.assessment-progress-copy span {
  color:
    rgba(246, 247, 248, 0.4);

  font-size: 0.55rem;
  font-weight: 600;

  letter-spacing: 0.13em;
}

.assessment-progress-copy strong {
  color: #d5ff3f;

  font-size: 0.62rem;
  font-weight: 700;
}

.assessment-progress-track {
  position: relative;

  height: 2px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.07);
}

.assessment-progress-track span {
  display: block;

  width: 100%;
  height: 100%;

  background: #d5ff3f;

  transform:
    scaleX(0);

  transform-origin:
    left center;

  box-shadow:
    0 0 18px rgba(213, 255, 63, 0.22);
}

.assessment-close {
  width: 42px;
  height: 42px;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.02);

  color:
    rgba(246, 247, 248, 0.5);

  cursor: pointer;

  font-size: 1.1rem;
}


/* =========================================================
   PHASES
========================================================= */

.assessment-phases {
  margin-top: 34px;

  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.055);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.055);
}

.assessment-phase {
  min-height: 82px;

  padding:
    16px 12px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  gap: 6px;

  border-right:
    1px solid rgba(255, 255, 255, 0.05);

  opacity: 0.34;
}

.assessment-phase:last-child {
  border-right: 0;
}

.assessment-phase > span {
  color:
    rgba(213, 255, 63, 0.52);

  font-size: 0.62rem;
  font-weight: 700;
}

.assessment-phase > strong {
  color:
    rgba(246, 247, 248, 0.56);

  font-size: 0.54rem;
  font-weight: 600;

  letter-spacing: 0.08em;
}

.assessment-phase.active {
  opacity: 1;

  background:
    linear-gradient(
      180deg,
      rgba(213, 255, 63, 0.035),
      transparent
    );
}

.assessment-phase.active > span {
  color: #d5ff3f;
}

.assessment-phase.active > strong {
  color: #f6f7f8;
}


/* =========================================================
   QUESTION STAGE
========================================================= */

.assessment-question-stage {
  min-height: 480px;

  display: flex;
  align-items: center;

  padding:
    76px 0 66px;
}

.assessment-question {
  width: min(100%, 860px);

  margin: 0 auto;
}

.assessment-question-eyebrow {
  display: block;

  margin-bottom: 18px;

  color: #d5ff3f;

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.assessment-question h3 {
  max-width: 800px;

  color: #f6f7f8;

  font-size:
    clamp(2.8rem, 4.7vw, 4.5rem);

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 500;
}

.assessment-question > p {
  max-width: 620px;

  margin-top: 22px;

  color:
    rgba(246, 247, 248, 0.43);

  font-size: 0.9rem;

  line-height: 1.7;
}


/* =========================================================
   ANSWER AREA
========================================================= */

.assessment-answer-area {
  margin-top: 42px;
}


/* future option cards */

.assessment-option-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 10px;
}

.assessment-option {
  min-height: 72px;

  padding:
    18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  background:
    rgba(255, 255, 255, 0.018);

  color:
    rgba(246, 247, 248, 0.72);

  cursor: pointer;

  text-align: left;

  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.assessment-option:hover {
  transform:
    translateY(-1px);

  border-color:
    rgba(213, 255, 63, 0.28);

  background:
    rgba(213, 255, 63, 0.025);
}

.assessment-option.selected {
  border-color:
    rgba(213, 255, 63, 0.5);

  background:
    rgba(213, 255, 63, 0.055);

  color: #f6f7f8;
}


/* future text fields */

.assessment-field {
  width: 100%;

  min-height: 60px;

  padding:
    0 18px;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  background:
    rgba(255, 255, 255, 0.02);

  color: #f6f7f8;

  outline: none;

  font: inherit;
}

.assessment-field::placeholder {
  color:
    rgba(246, 247, 248, 0.22);
}

.assessment-field:focus {
  border-color:
    rgba(213, 255, 63, 0.42);

  box-shadow:
    0 0 0 3px rgba(213, 255, 63, 0.03);
}


/* =========================================================
   NAVIGATION
========================================================= */

.assessment-navigation {
  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 30px;

  padding-top: 28px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}

.assessment-back-button,
.assessment-next-button {
  min-height: 48px;

  padding:
    0 18px;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  background:
    rgba(255, 255, 255, 0.018);

  color:
    rgba(246, 247, 248, 0.62);

  cursor: pointer;

  display: inline-flex;
  align-items: center;

  gap: 12px;

  font-size: 0.72rem;
  font-weight: 600;
}

.assessment-back-button {
  justify-self: start;
}

.assessment-next-button {
  justify-self: end;
}

.assessment-next-button:not(:disabled) {
  border-color:
    rgba(213, 255, 63, 0.32);

  background:
    rgba(213, 255, 63, 0.045);

  color: #d5ff3f;
}

.assessment-back-button:disabled,
.assessment-next-button:disabled {
  opacity: 0.28;

  cursor: not-allowed;
}

.assessment-navigation-index {
  display: flex;
  align-items: baseline;

  gap: 7px;
}

.assessment-navigation-index span {
  color: #d5ff3f;

  font-size: 0.78rem;
  font-weight: 700;
}

.assessment-navigation-index small {
  color:
    rgba(246, 247, 248, 0.22);

  font-size: 0.58rem;
}

.assessment-navigation-index strong {
  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.62rem;
  font-weight: 600;
}


/* =========================================================
   SCREEN NUMBER
========================================================= */

.assessment-screen-index {
  position: absolute;

  right: -16px;
  bottom: 20px;

  z-index: -1;

  color:
    rgba(255, 255, 255, 0.016);

  font-size: 11rem;

  line-height: 0.8;

  letter-spacing: -0.08em;

  font-weight: 500;

  user-select: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .assessment-stage {
    width:
      min(920px, calc(100% - 48px));
  }

  .assessment-entry {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .assessment-start-panel {
    min-height: 680px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .assessment-stage {
    width:
      calc(100% - 32px);

    padding:
      94px 0 76px;
  }

  .assessment-entry {
    display: block;
  }

  .assessment-kicker {
    font-size: 0.59rem;
  }

  .assessment-kicker::before {
    width: 26px;
  }

  .assessment-title {
    margin-top: 18px;

    font-size:
      clamp(2.75rem, 12.8vw, 3.5rem);

    line-height: 0.99;
  }

  .assessment-description {
    max-width: 340px;

    margin-top: 22px;

    font-size: 0.89rem;

    line-height: 1.65;
  }

  .assessment-benefits {
    margin-top: 58px;

    display: block;
  }

  .assessment-benefit,
  .assessment-benefit:nth-child(odd),
  .assessment-benefit:nth-child(even) {
    min-height: 100px;

    padding:
      20px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.055);
  }

  .assessment-benefit:last-child {
    border-bottom: 0;
  }

  .assessment-start-panel {
    min-height: 0;

    margin-top: 70px;

    padding:
      28px 22px 24px;
  }

  .assessment-start-head {
    display: block;
  }

  .assessment-start-status {
    margin-top: 16px;
  }

  .assessment-start-system {
    min-height: 290px;

    margin-top: 20px;
  }

  .assessment-start-orbit {
    width: 220px;
    height: 220px;
  }

  .assessment-start-ring-2 {
    width: 158px;
    height: 158px;
  }

  .assessment-start-core {
    width: 116px;
    height: 116px;
  }

  .assessment-start-core strong {
    font-size: 2rem;
  }

  .assessment-start-copy h3 {
    font-size:
      clamp(2rem, 9.5vw, 2.55rem);
  }

  .assessment-start-meta {
    grid-template-columns: 1fr;
  }

  .assessment-start-meta > div {
    min-height: 64px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.055);
  }

  .assessment-start-meta > div:last-child {
    border-bottom: 0;
  }

  .assessment-app {
    min-height: 0;
  }

  .assessment-app-header {
    grid-template-columns:
      1fr 42px;

    gap: 20px;
  }

  .assessment-app-progress {
    grid-column:
      1 / -1;

    grid-row: 2;
  }

  .assessment-close {
    grid-column: 2;
    grid-row: 1;
  }

  .assessment-phases {
    margin-top: 26px;

    grid-template-columns:
      repeat(5, minmax(54px, 1fr));

    overflow-x: auto;
  }

  .assessment-phase {
    min-height: 68px;

    padding:
      12px 8px;
  }

  .assessment-phase > strong {
    font-size: 0.46rem;
  }

  .assessment-question-stage {
    min-height: 0;

    padding:
      62px 0 52px;
  }

  .assessment-question h3 {
    font-size:
      clamp(2.4rem, 11vw, 3.05rem);
  }

  .assessment-question > p {
    max-width: 330px;

    font-size: 0.84rem;
  }

  .assessment-answer-area {
    margin-top: 34px;
  }

  .assessment-option-grid {
    grid-template-columns: 1fr;
  }

  .assessment-navigation {
    grid-template-columns:
      1fr auto;

    gap:
      20px 12px;
  }

  .assessment-navigation-index {
    grid-column:
      1 / -1;

    grid-row: 1;

    justify-content: center;
  }

  .assessment-back-button {
    grid-column: 1;
    grid-row: 2;
  }

  .assessment-next-button {
    grid-column: 2;
    grid-row: 2;
  }

  .assessment-screen-index {
    right: -8px;

    font-size: 7rem;
  }

}
/* =========================================================
   ASSESSMENT — CONTEXT COMPLETE
========================================================= */

.assessment-context-complete {
  min-height: 118px;

  padding:
    26px 28px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  gap: 8px;

  border:
    1px solid rgba(213, 255, 63, 0.18);

  background:
    linear-gradient(
      90deg,
      rgba(213, 255, 63, 0.045),
      transparent
    );
}

.assessment-context-complete span {
  color:
    rgba(213, 255, 63, 0.62);

  font-size: 0.55rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.assessment-context-complete strong {
  color: #f6f7f8;

  font-size:
    clamp(1.7rem, 2.8vw, 2.5rem);

  line-height: 1.1;

  letter-spacing: -0.04em;

  font-weight: 500;
}
/* =========================================================
   ASSESSMENT — PHASE TRANSITIONS
========================================================= */

.assessment-transition-button {
  width: 100%;

  min-height: 56px;

  margin-top: 28px;

  padding:
    0 20px;

  border:
    1px solid rgba(213, 255, 63, 0.34);

  background:
    rgba(213, 255, 63, 0.055);

  color: #d5ff3f;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  font-size: 0.76rem;
  font-weight: 700;

  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}


.assessment-transition-button:hover {
  transform:
    translateY(-1px);

  border-color:
    rgba(213, 255, 63, 0.6);

  background:
    rgba(213, 255, 63, 0.085);
}



.assessment-phase-complete {
  min-height: 150px;

  padding:
    26px;

  display: flex;
  align-items: center;

  gap: 24px;

  border:
    1px solid rgba(213, 255, 63, 0.16);

  background:
    linear-gradient(
      90deg,
      rgba(213, 255, 63, 0.045),
      transparent 68%
    );
}


.assessment-phase-complete-mark {
  width: 74px;
  height: 74px;

  flex:
    0 0 74px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #d5ff3f;
  color: #050709;

  box-shadow:
    0 0 0 8px rgba(213, 255, 63, 0.035),
    0 0 30px rgba(213, 255, 63, 0.12);

  font-size: 1.3rem;
  font-weight: 700;
}


.assessment-phase-complete > div:last-child {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.assessment-phase-complete span {
  color:
    rgba(213, 255, 63, 0.62);

  font-size: 0.55rem;
  font-weight: 700;

  letter-spacing: 0.13em;
}


.assessment-phase-complete strong {
  color: #f6f7f8;

  font-size: 1.25rem;
  font-weight: 500;
}


.assessment-phase-complete small {
  max-width: 420px;

  margin-top: 4px;

  color:
    rgba(246, 247, 248, 0.34);

  font-size: 0.68rem;

  line-height: 1.55;
}


@media (max-width: 640px) {

  .assessment-phase-complete {
    align-items: flex-start;

    padding:
      22px 18px;

    gap: 18px;
  }


  .assessment-phase-complete-mark {
    width: 58px;
    height: 58px;

    flex-basis: 58px;
  }

}

/* =========================================================
   ASSESSMENT — PROCESSING
========================================================= */

.assessment-processing {
  min-height: 180px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  gap: 8px;

  border:
    1px solid rgba(213, 255, 63, 0.14);

  background:
    radial-gradient(
      circle,
      rgba(213, 255, 63, 0.05),
      transparent 65%
    );
}


.assessment-processing-ring {
  width: 50px;
  height: 50px;

  margin-bottom: 14px;

  border-radius: 50%;

  border:
    1px solid rgba(213, 255, 63, 0.16);

  border-top-color:
    #d5ff3f;

  animation:
    pactProcessing 900ms linear infinite;
}


@keyframes pactProcessing {

  to {
    transform:
      rotate(360deg);
  }

}


.assessment-processing strong {
  color: #d5ff3f;

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-processing small {
  color:
    rgba(246, 247, 248, 0.34);

  font-size: 0.65rem;
}



/* =========================================================
   ASSESSMENT RESULT
========================================================= */

.assessment-result {
  padding:
    18px 0 40px;
}


.assessment-result-header {
  padding-bottom: 64px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-kicker {
  color: #d5ff3f;

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.assessment-result-heading {
  margin-top: 38px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 60px;
}


.assessment-result-heading h2 {
  color: #f6f7f8;

  font-size:
    clamp(3rem, 5vw, 5rem);

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 500;
}


.assessment-result-heading p {
  margin-top: 15px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.86rem;
}


.assessment-result-score {
  min-width: 190px;

  text-align: right;
}


.assessment-result-score span {
  display: block;

  color:
    rgba(246, 247, 248, 0.3);

  font-size: 0.55rem;

  letter-spacing: 0.13em;
}


.assessment-result-score strong {
  color: #d5ff3f;

  font-size: 5rem;

  line-height: 0.9;

  font-weight: 500;

  letter-spacing: -0.07em;
}


.assessment-result-score small {
  color:
    rgba(246, 247, 248, 0.32);
}


.assessment-result-maturity {
  margin-top: 48px;

  display: flex;
  flex-direction: column;

  gap: 5px;
}


.assessment-result-maturity span {
  color:
    rgba(246, 247, 248, 0.25);

  font-size: 0.53rem;

  letter-spacing: 0.13em;
}


.assessment-result-maturity strong {
  color:
    rgba(246, 247, 248, 0.8);

  font-size: 0.9rem;

  font-weight: 500;
}



/* PILLARS */

.assessment-result-pillars {
  margin-top: 72px;
}


.assessment-result-pillar {
  padding:
    24px 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);
}


.assessment-result-pillar-head {
  display: grid;

  grid-template-columns:
    48px 1fr auto;

  align-items: center;

  gap: 16px;
}


.assessment-result-pillar-head > span {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.09);

  color:
    rgba(246, 247, 248, 0.6);

  font-size: 0.74rem;

  font-weight: 700;
}


.assessment-result-pillar-head strong {
  color:
    rgba(246, 247, 248, 0.72);

  font-size: 0.74rem;

  font-weight: 600;

  letter-spacing: 0.08em;
}


.assessment-result-pillar-head b {
  color:
    rgba(246, 247, 248, 0.52);

  font-size: 0.82rem;
}


.assessment-result-pillar.is-bottleneck
.assessment-result-pillar-head > span {
  color: #050709;

  background: #d5ff3f;

  border-color: #d5ff3f;
}


.assessment-result-pillar.is-bottleneck
.assessment-result-pillar-head b {
  color: #d5ff3f;
}


.assessment-result-bar {
  height: 2px;

  margin:
    17px 0 0 64px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.06);
}


.assessment-result-bar i {
  display: block;

  width: 100%;
  height: 100%;

  transform-origin:
    left center;

  background:
    rgba(246, 247, 248, 0.35);
}


.assessment-result-pillar.is-bottleneck
.assessment-result-bar i {
  background: #d5ff3f;
}



/* BOTTLENECK */

.assessment-result-bottleneck {
  margin-top: 96px;

  padding:
    54px 0;

  display: grid;

  grid-template-columns:
    180px minmax(0, 1fr);

  gap: 54px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-bottleneck-mark {
  display: flex;
  flex-direction: column;

  justify-content: center;

  border-right:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-bottleneck-mark span,
.assessment-result-area {
  color:
    rgba(213, 255, 63, 0.68);

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-result-bottleneck-mark strong {
  margin-top: 10px;

  color: #d5ff3f;

  font-size: 5rem;

  line-height: 1;

  font-weight: 500;
}


.assessment-result-bottleneck h3 {
  max-width: 760px;

  margin-top: 12px;

  color: #f6f7f8;

  font-size:
    clamp(2.3rem, 4vw, 3.8rem);

  line-height: 1.03;

  letter-spacing: -0.05em;

  font-weight: 500;
}


.assessment-result-bottleneck p {
  max-width: 700px;

  margin-top: 24px;

  color:
    rgba(246, 247, 248, 0.46);

  font-size: 0.88rem;

  line-height: 1.75;
}



/* READING */

.assessment-result-reading {
  max-width: 850px;

  margin:
    88px auto 0;

  text-align: center;
}


.assessment-result-reading > span,
.assessment-result-actions > span,
.assessment-result-avoid > span {
  color:
    rgba(213, 255, 63, 0.64);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-result-reading p {
  margin-top: 24px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size:
    clamp(1.7rem, 2.7vw, 2.5rem);

  line-height: 1.3;

  letter-spacing: -0.035em;
}


.assessment-result-reading strong {
  color: #f6f7f8;

  font-weight: 500;
}



/* ACTIONS */

.assessment-result-actions {
  margin-top: 96px;
}


.assessment-result-action-grid {
  margin-top: 34px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-action {
  min-height: 210px;

  padding:
    30px;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid rgba(255, 255, 255, 0.06);
}


.assessment-result-action:last-child {
  border-right: 0;
}


.assessment-result-action span {
  color:
    rgba(213, 255, 63, 0.5);

  font-size: 0.62rem;

  font-weight: 700;
}


.assessment-result-action strong {
  color:
    rgba(246, 247, 248, 0.8);

  font-size: 0.94rem;

  line-height: 1.55;

  font-weight: 500;
}



/* DON'T PRIORITIZE */

.assessment-result-avoid {
  margin-top: 76px;

  padding:
    34px;

  border-left:
    2px solid #d5ff3f;

  background:
    rgba(213, 255, 63, 0.025);
}


.assessment-result-avoid strong {
  display: block;

  max-width: 780px;

  margin-top: 13px;

  color:
    rgba(246, 247, 248, 0.78);

  font-size: 1rem;

  line-height: 1.6;

  font-weight: 500;
}



/* CTA */

.assessment-result-cta {
  margin-top: 100px;

  padding:
    52px 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 60px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-cta > div {
  max-width: 700px;
}


.assessment-result-cta > div > span {
  color: #d5ff3f;

  font-size: 0.58rem;

  letter-spacing: 0.14em;
}


.assessment-result-cta h3 {
  margin-top: 16px;

  color: #f6f7f8;

  font-size:
    clamp(2.2rem, 3.8vw, 3.7rem);

  line-height: 1.04;

  letter-spacing: -0.05em;

  font-weight: 500;
}


.assessment-result-cta p {
  max-width: 560px;

  margin-top: 20px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.84rem;

  line-height: 1.7;
}


.assessment-result-contact {
  min-height: 58px;

  flex-shrink: 0;

  padding:
    0 24px;

  border: 0;
  border-radius: 999px;

  display: flex;
  align-items: center;

  gap: 22px;

  background: #d5ff3f;
  color: #050709;

  cursor: pointer;

  font-size: 0.78rem;

  font-weight: 700;
}


.assessment-result-restart {
  margin-top: 32px;

  border: 0;

  background: transparent;

  color:
    rgba(246, 247, 248, 0.34);

  cursor: pointer;

  font-size: 0.7rem;
}



/* MOBILE */

@media (max-width: 640px) {

  .assessment-result-heading {
    display: block;
  }


  .assessment-result-score {
    margin-top: 44px;

    text-align: left;
  }


  .assessment-result-bottleneck {
    display: block;
  }


  .assessment-result-bottleneck-mark {
    padding-bottom: 30px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.07);
  }


  .assessment-result-bottleneck > div:last-child {
    padding-top: 32px;
  }


  .assessment-result-reading {
    text-align: left;
  }


  .assessment-result-action-grid {
    display: block;
  }


  .assessment-result-action {
    min-height: 150px;

    padding:
      26px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);
  }


  .assessment-result-cta {
    display: block;
  }


  .assessment-result-contact {
    width: 100%;

    margin-top: 34px;

    justify-content: space-between;
  }

}

/* =========================================================
   PACT ASSESSMENT — PROCESSING
========================================================= */

.assessment-processing {
  min-height: 190px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 8px;

  text-align: center;

  border:
    1px solid rgba(213, 255, 63, 0.14);

  background:
    radial-gradient(
      circle,
      rgba(213, 255, 63, 0.055),
      transparent 66%
    );
}


.assessment-processing-ring {
  width: 52px;
  height: 52px;

  margin-bottom: 14px;

  border-radius: 50%;

  border:
    1px solid rgba(213, 255, 63, 0.16);

  border-top-color:
    #d5ff3f;

  box-shadow:
    0 0 30px rgba(213, 255, 63, 0.08);

  animation:
    pactAssessmentProcessing
    900ms
    linear
    infinite;
}


@keyframes pactAssessmentProcessing {

  to {
    transform:
      rotate(360deg);
  }

}


.assessment-processing strong {
  color: #d5ff3f;

  font-size: 0.63rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-processing small {
  color:
    rgba(246, 247, 248, 0.34);

  font-size: 0.65rem;
}



/* =========================================================
   RESULT — BASE
========================================================= */

.assessment-result {
  position: relative;

  padding:
    18px 0 40px;
}



/* =========================================================
   RESULT — HEADER
========================================================= */

.assessment-result-header {
  padding:
    18px 0 64px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-kicker {
  color: #d5ff3f;

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.assessment-result-heading {
  margin-top: 38px;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 60px;
}


.assessment-result-heading > div:first-child {
  max-width: 780px;
}


.assessment-result-heading h2 {
  color: #f6f7f8;

  font-size:
    clamp(3.4rem, 5.6vw, 5.4rem);

  line-height: 0.98;

  letter-spacing: -0.058em;

  font-weight: 500;
}


.assessment-result-heading p {
  max-width: 580px;

  margin-top: 18px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.86rem;

  line-height: 1.65;
}



/* SCORE */

.assessment-result-score {
  min-width: 190px;

  flex-shrink: 0;

  text-align: right;
}


.assessment-result-score span {
  display: block;

  margin-bottom: 8px;

  color:
    rgba(246, 247, 248, 0.3);

  font-size: 0.54rem;
  font-weight: 600;

  letter-spacing: 0.13em;
}


.assessment-result-score strong {
  color: #d5ff3f;

  font-size:
    clamp(4.6rem, 7vw, 6.4rem);

  line-height: 0.82;

  letter-spacing: -0.075em;

  font-weight: 500;
}


.assessment-result-score small {
  margin-left: 5px;

  color:
    rgba(246, 247, 248, 0.3);

  font-size: 0.62rem;
}



/* MATURITY */

.assessment-result-maturity {
  margin-top: 50px;

  display: flex;
  flex-direction: column;

  gap: 6px;
}


.assessment-result-maturity span {
  color:
    rgba(246, 247, 248, 0.25);

  font-size: 0.52rem;
  font-weight: 600;

  letter-spacing: 0.13em;
}


.assessment-result-maturity strong {
  color:
    rgba(246, 247, 248, 0.82);

  font-size: 0.92rem;
  font-weight: 500;
}



/* =========================================================
   RESULT — PILLARS
========================================================= */

.assessment-result-pillars {
  margin-top: 76px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-pillar {
  padding:
    25px 0 24px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);

  transition:
    opacity 240ms ease,
    background 240ms ease;
}


.assessment-result-pillar-head {
  display: grid;

  grid-template-columns:
    48px minmax(0, 1fr) auto;

  align-items: center;

  gap: 16px;
}


.assessment-result-pillar-head > span {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.09);

  color:
    rgba(246, 247, 248, 0.6);

  font-size: 0.74rem;
  font-weight: 700;
}


.assessment-result-pillar-head strong {
  color:
    rgba(246, 247, 248, 0.72);

  font-size: 0.72rem;
  font-weight: 600;

  letter-spacing: 0.09em;
}


.assessment-result-pillar-head b {
  color:
    rgba(246, 247, 248, 0.48);

  font-size: 0.84rem;
  font-weight: 600;
}



/* BAR */

.assessment-result-bar {
  height: 2px;

  margin:
    18px 0 0 64px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.06);
}


.assessment-result-bar i {
  display: block;

  width: 100%;
  height: 100%;

  transform:
    scaleX(0);

  transform-origin:
    left center;

  background:
    rgba(246, 247, 248, 0.34);
}



/* BOTTLENECK PILLAR */

.assessment-result-pillar.is-bottleneck {
  background:
    linear-gradient(
      90deg,
      rgba(213, 255, 63, 0.035),
      transparent 55%
    );
}


.assessment-result-pillar.is-bottleneck
.assessment-result-pillar-head > span {
  background: #d5ff3f;

  border-color: #d5ff3f;

  color: #050709;

  box-shadow:
    0 0 0 7px rgba(213, 255, 63, 0.035),
    0 0 30px rgba(213, 255, 63, 0.12);
}


.assessment-result-pillar.is-bottleneck
.assessment-result-pillar-head strong {
  color: #f6f7f8;
}


.assessment-result-pillar.is-bottleneck
.assessment-result-pillar-head b {
  color: #d5ff3f;
}


.assessment-result-pillar.is-bottleneck
.assessment-result-bar i {
  background: #d5ff3f;
}



/* =========================================================
   RESULT — BOTTLENECK
========================================================= */

.assessment-result-bottleneck {
  margin-top: 98px;

  padding:
    56px 0;

  display: grid;

  grid-template-columns:
    180px minmax(0, 1fr);

  gap: 54px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-bottleneck-mark {
  display: flex;
  flex-direction: column;

  justify-content: center;

  padding-right: 38px;

  border-right:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-bottleneck-mark span {
  max-width: 110px;

  color:
    rgba(246, 247, 248, 0.3);

  font-size: 0.53rem;
  font-weight: 600;

  line-height: 1.5;

  letter-spacing: 0.13em;
}


.assessment-result-bottleneck-mark strong {
  margin-top: 13px;

  color: #d5ff3f;

  font-size: 5rem;

  line-height: 0.9;

  letter-spacing: -0.06em;

  font-weight: 500;
}


.assessment-result-area {
  color: #d5ff3f;

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-result-bottleneck h3 {
  max-width: 790px;

  margin-top: 14px;

  color: #f6f7f8;

  font-size:
    clamp(2.4rem, 4.1vw, 3.9rem);

  line-height: 1.03;

  letter-spacing: -0.052em;

  font-weight: 500;
}


.assessment-result-bottleneck p {
  max-width: 720px;

  margin-top: 25px;

  color:
    rgba(246, 247, 248, 0.46);

  font-size: 0.88rem;

  line-height: 1.78;
}



/* =========================================================
   RESULT — STRATEGIC READING
========================================================= */

.assessment-result-reading {
  max-width: 900px;

  margin:
    94px auto 0;

  text-align: center;
}


.assessment-result-reading > span {
  color:
    rgba(213, 255, 63, 0.66);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-result-reading p {
  margin-top: 25px;

  color:
    rgba(246, 247, 248, 0.4);

  font-size:
    clamp(1.8rem, 3vw, 2.65rem);

  line-height: 1.28;

  letter-spacing: -0.038em;
}


.assessment-result-reading strong {
  color: #f6f7f8;

  font-weight: 500;
}



/* =========================================================
   RESULT — RECOMMENDED MOVES
========================================================= */

.assessment-result-actions {
  margin-top: 102px;
}


.assessment-result-actions > span {
  color:
    rgba(213, 255, 63, 0.66);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-result-action-grid {
  margin-top: 36px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-action {
  min-height: 220px;

  padding:
    30px;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid rgba(255, 255, 255, 0.06);
}


.assessment-result-action:last-child {
  border-right: 0;
}


.assessment-result-action span {
  color:
    rgba(213, 255, 63, 0.52);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.08em;
}


.assessment-result-action strong {
  max-width: 320px;

  color:
    rgba(246, 247, 248, 0.82);

  font-size: 0.94rem;
  font-weight: 500;

  line-height: 1.58;
}



/* =========================================================
   RESULT — DON'T PRIORITIZE
========================================================= */

.assessment-result-avoid {
  margin-top: 80px;

  padding:
    36px 38px;

  border-left:
    2px solid #d5ff3f;

  background:
    linear-gradient(
      90deg,
      rgba(213, 255, 63, 0.035),
      transparent 70%
    );
}


.assessment-result-avoid > span {
  color:
    rgba(213, 255, 63, 0.66);

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-result-avoid strong {
  display: block;

  max-width: 820px;

  margin-top: 14px;

  color:
    rgba(246, 247, 248, 0.8);

  font-size: 1rem;
  font-weight: 500;

  line-height: 1.65;
}



/* =========================================================
   RESULT — CTA
========================================================= */

.assessment-result-cta {
  margin-top: 106px;

  padding:
    56px 0;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 60px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-result-cta > div {
  max-width: 720px;
}


.assessment-result-cta > div > span {
  color: #d5ff3f;

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-result-cta h3 {
  margin-top: 17px;

  color: #f6f7f8;

  font-size:
    clamp(2.3rem, 4vw, 3.8rem);

  line-height: 1.03;

  letter-spacing: -0.052em;

  font-weight: 500;
}


.assessment-result-cta p {
  max-width: 570px;

  margin-top: 21px;

  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.84rem;

  line-height: 1.72;
}


.assessment-result-contact {
  min-height: 60px;

  flex-shrink: 0;

  padding:
    0 25px;

  border: 0;
  border-radius: 999px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 22px;

  background: #d5ff3f;

  color: #050709;

  cursor: pointer;

  font-size: 0.78rem;
  font-weight: 700;

  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}


.assessment-result-contact:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 14px 42px rgba(213, 255, 63, 0.17);
}



/* RESTART */

.assessment-result-restart {
  margin-top: 32px;

  padding: 0;

  border: 0;

  background: transparent;

  color:
    rgba(246, 247, 248, 0.34);

  cursor: pointer;

  font-size: 0.7rem;

  text-decoration: underline;

  text-underline-offset: 4px;
}



/* =========================================================
   RESULT — MOBILE
========================================================= */

@media (max-width: 640px) {

  .assessment-result {
    padding-top: 6px;
  }


  .assessment-result-header {
    padding-bottom: 48px;
  }


  .assessment-result-heading {
    margin-top: 30px;

    display: block;
  }


  .assessment-result-heading h2 {
    font-size:
      clamp(2.8rem, 13vw, 3.7rem);
  }


  .assessment-result-score {
    margin-top: 48px;

    text-align: left;
  }


  .assessment-result-score strong {
    font-size: 5.3rem;
  }


  .assessment-result-maturity {
    margin-top: 38px;
  }



  /* PILLARS */

  .assessment-result-pillars {
    margin-top: 58px;
  }


  .assessment-result-pillar-head {
    grid-template-columns:
      44px minmax(0, 1fr) auto;

    gap: 13px;
  }


  .assessment-result-bar {
    margin-left: 57px;
  }



  /* BOTTLENECK */

  .assessment-result-bottleneck {
    margin-top: 72px;

    padding:
      44px 0;

    display: block;
  }


  .assessment-result-bottleneck-mark {
    padding:
      0 0 30px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.07);
  }


  .assessment-result-bottleneck-mark strong {
    font-size: 4rem;
  }


  .assessment-result-bottleneck > div:last-child {
    padding-top: 34px;
  }


  .assessment-result-bottleneck h3 {
    font-size:
      clamp(2.1rem, 10vw, 2.8rem);
  }



  /* READING */

  .assessment-result-reading {
    margin-top: 72px;

    text-align: left;
  }


  .assessment-result-reading p {
    font-size:
      clamp(1.7rem, 8.4vw, 2.25rem);
  }



  /* ACTIONS */

  .assessment-result-actions {
    margin-top: 76px;
  }


  .assessment-result-action-grid {
    display: block;
  }


  .assessment-result-action {
    min-height: 150px;

    padding:
      26px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);
  }


  .assessment-result-action:last-child {
    border-bottom: 0;
  }



  /* AVOID */

  .assessment-result-avoid {
    margin-top: 62px;

    padding:
      28px 22px;
  }



  /* CTA */

  .assessment-result-cta {
    margin-top: 78px;

    padding:
      44px 0;

    display: block;
  }


  .assessment-result-cta h3 {
    font-size:
      clamp(2.1rem, 9.8vw, 2.8rem);
  }


  .assessment-result-contact {
    width: 100%;

    margin-top: 36px;

    justify-content: space-between;
  }

}

/* =========================================================
   PACT REPORT V2 — INTELLIGENCE
========================================================= */

.assessment-intelligence {
  margin-top: 78px;

  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}


.assessment-radar-card,
.assessment-executive-card {
  min-height: 480px;

  padding:
    34px;
}


.assessment-radar-card {
  border-right:
    1px solid rgba(255, 255, 255, 0.065);
}


.assessment-report-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


.assessment-report-block-head > span {
  color:
    rgba(213, 255, 63, 0.7);

  font-size: 0.57rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}


.assessment-report-block-head > small {
  color:
    rgba(246, 247, 248, 0.22);

  font-size: 0.5rem;
  font-weight: 600;

  letter-spacing: 0.11em;
}



/* RADAR */

.assessment-radar {
  position: relative;

  width:
    min(360px, 100%);

  margin:
    46px auto 0;
}


.assessment-radar svg {
  width: 100%;
  height: auto;

  display: block;

  overflow: visible;
}


.assessment-radar-grid {
  fill:
    rgba(255, 255, 255, 0.008);

  stroke:
    rgba(255, 255, 255, 0.065);

  stroke-width: 1;
}


.assessment-radar-grid-outer {
  stroke:
    rgba(213, 255, 63, 0.12);
}


.assessment-radar-axis {
  stroke:
    rgba(255, 255, 255, 0.045);

  stroke-width: 1;
}


.assessment-radar-data {
  fill:
    rgba(213, 255, 63, 0.085);

  stroke: #d5ff3f;

  stroke-width: 1.5;

  filter:
    drop-shadow(
      0 0 10px
      rgba(213, 255, 63, 0.12)
    );
}


.assessment-radar-label {
  position: absolute;

  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    #090c0f;

  border:
    1px solid rgba(213, 255, 63, 0.18);

  color: #d5ff3f;

  font-size: 0.6rem;
  font-weight: 700;
}


.assessment-radar-label-p {
  left: 50%;
  top: -3px;

  transform:
    translateX(-50%);
}


.assessment-radar-label-a {
  right: -3px;
  top: 50%;

  transform:
    translateY(-50%);
}


.assessment-radar-label-c {
  left: 50%;
  bottom: -3px;

  transform:
    translateX(-50%);
}


.assessment-radar-label-t {
  left: -3px;
  top: 50%;

  transform:
    translateY(-50%);
}



/* EXECUTIVE */

.assessment-executive-grid {
  margin-top: 46px;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.06);

  border-left:
    1px solid rgba(255, 255, 255, 0.06);
}


.assessment-executive-metric {
  min-height: 172px;

  padding:
    24px;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid rgba(255, 255, 255, 0.06);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);
}


.assessment-executive-metric > span {
  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.5rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}


.assessment-executive-metric > strong {
  margin-top: auto;

  color: #f6f7f8;

  font-size:
    clamp(2.1rem, 3vw, 3.1rem);

  line-height: 0.95;

  letter-spacing: -0.05em;

  font-weight: 500;
}


.assessment-executive-metric
.assessment-executive-word {
  max-width: 220px;

  font-size:
    clamp(1.35rem, 2vw, 1.9rem);

  line-height: 1.05;
}


.assessment-executive-metric > small {
  margin-top: 10px;

  color:
    rgba(246, 247, 248, 0.3);

  font-size: 0.58rem;

  line-height: 1.45;
}


.assessment-executive-metric.is-critical
> strong {
  color: #d5ff3f;
}



/* =========================================================
   MICRODIAGNOSTIC
========================================================= */

.assessment-microdiagnostic {
  margin-top: 96px;
}


.assessment-micro-grid {
  margin-top: 36px;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 1px;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid rgba(255, 255, 255, 0.055);
}


.assessment-micro-card {
  min-height: 360px;

  padding:
    30px;

  background:
    #070a0d;
}


.assessment-micro-card.is-bottleneck {
  background:
    linear-gradient(
      145deg,
      rgba(213, 255, 63, 0.045),
      #070a0d 62%
    );
}


.assessment-micro-card-head {
  display: flex;
  align-items: center;

  gap: 16px;

  padding-bottom: 24px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);
}


.assessment-micro-card-head > span {
  width: 46px;
  height: 46px;

  flex:
    0 0 46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.09);

  color:
    rgba(246, 247, 248, 0.58);

  font-size: 0.72rem;
  font-weight: 700;
}


.assessment-micro-card.is-bottleneck
.assessment-micro-card-head > span {
  background: #d5ff3f;

  border-color: #d5ff3f;

  color: #050709;
}


.assessment-micro-card-head > div {
  display: flex;
  flex-direction: column;

  gap: 4px;
}


.assessment-micro-card-head small {
  color:
    rgba(246, 247, 248, 0.28);

  font-size: 0.5rem;
  font-weight: 600;

  letter-spacing: 0.11em;
}


.assessment-micro-card-head strong {
  color:
    rgba(246, 247, 248, 0.8);

  font-size: 0.86rem;

  font-weight: 500;
}


.assessment-micro-list {
  margin-top: 28px;
}


.assessment-micro-item + .assessment-micro-item {
  margin-top: 25px;
}


.assessment-micro-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.assessment-micro-copy span {
  color:
    rgba(246, 247, 248, 0.5);

  font-size: 0.72rem;
}


.assessment-micro-copy strong {
  color:
    rgba(246, 247, 248, 0.65);

  font-size: 0.7rem;

  font-weight: 600;
}


.assessment-micro-bar {
  height: 2px;

  margin-top: 9px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.055);
}


.assessment-micro-bar i {
  display: block;

  width: 100%;
  height: 100%;

  transform-origin:
    left center;

  background:
    rgba(246, 247, 248, 0.34);
}


.assessment-micro-card.is-bottleneck
.assessment-micro-bar i {
  background: #d5ff3f;
}



/* MOBILE */

@media (max-width: 640px) {

  .assessment-intelligence {
    display: block;
  }


  .assessment-radar-card,
  .assessment-executive-card {
    min-height: 0;

    padding:
      28px 0;
  }


  .assessment-radar-card {
    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.065);
  }


  .assessment-radar {
    width:
      min(310px, 90%);
  }


  .assessment-executive-grid {
    grid-template-columns: 1fr;
  }


  .assessment-executive-metric {
    min-height: 135px;
  }


  .assessment-microdiagnostic {
    margin-top: 72px;
  }


  .assessment-micro-grid {
    display: block;

    background: transparent;

    border: 0;
  }


  .assessment-micro-card {
    min-height: 0;

    padding:
      28px 0;

    border-top:
      1px solid rgba(255, 255, 255, 0.06);
  }


  .assessment-micro-card:last-child {
    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);
  }

}

/* =========================================================
   PACT REPORT V2 — MOTION POLISH
========================================================= */

.assessment-radar-data {
  transform-box: fill-box;
  transform-origin: center;
}


.assessment-radar {
  isolation: isolate;
}


.assessment-radar::before {
  content: "";

  position: absolute;

  inset: 18%;

  z-index: -1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(213, 255, 63, 0.055),
      transparent 68%
    );

  filter: blur(18px);

  pointer-events: none;
}


.assessment-executive-metric,
.assessment-micro-card {
  will-change:
    transform,
    opacity;
}


.assessment-micro-bar i,
.assessment-result-bar i {
  will-change:
    transform;
}
/* =========================================================
   PACT — LEAD CAPTURE
========================================================= */

.assessment-lead-capture {
  width: 100%;
  max-width: 620px;

  padding-top: 6px;
}


.assessment-lead-status {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 36px;

  color:
    rgba(213, 255, 63, 0.62);

  font-size: 0.54rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.assessment-lead-status-dot {
  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  border-radius: 50%;

  background: #d5ff3f;

  box-shadow:
    0 0 16px
    rgba(213, 255, 63, 0.45);
}


.assessment-lead-heading {
  margin-bottom: 38px;
}


.assessment-lead-heading > span {
  color:
    rgba(246, 247, 248, 0.27);

  font-size: 0.52rem;
  font-weight: 600;

  letter-spacing: 0.13em;
}


.assessment-lead-heading > strong {
  display: block;

  margin-top: 10px;

  color: #f6f7f8;

  font-size:
    clamp(
      1.7rem,
      3vw,
      2.5rem
    );

  line-height: 1.05;

  letter-spacing:
    -0.04em;

  font-weight: 500;
}


.assessment-lead-heading p {
  max-width: 470px;

  margin-top: 12px;

  color:
    rgba(246, 247, 248, 0.38);

  font-size: 0.76rem;

  line-height: 1.6;
}



/* FIELD */

.assessment-lead-field {
  position: relative;

  padding:
    18px 0 13px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.09);
}


.assessment-lead-field + .assessment-lead-field {
  margin-top: 10px;
}


.assessment-lead-field label {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 8px;

  color:
    rgba(246, 247, 248, 0.3);

  font-size: 0.5rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}


.assessment-lead-field label small {
  color:
    rgba(246, 247, 248, 0.18);

  font-size: 0.48rem;
  font-weight: 500;

  letter-spacing: 0.04em;

  text-transform: lowercase;
}


.assessment-lead-field input {
  width: 100%;

  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  color: #f6f7f8;

  font: inherit;

  font-size:
    clamp(
      1.25rem,
      2vw,
      1.6rem
    );

  letter-spacing:
    -0.025em;
}


.assessment-lead-field input::placeholder {
  color:
    rgba(246, 247, 248, 0.16);
}


.assessment-lead-field:focus-within {
  border-bottom-color:
    rgba(213, 255, 63, 0.55);
}



/* FEEDBACK */

.assessment-lead-feedback {
  min-height: 20px;

  margin-top: 10px;

  color:
    rgba(255, 170, 130, 0.72);

  font-size: 0.62rem;
}



/* BUTTON */

.assessment-lead-submit {
  width: 100%;
  min-height: 62px;

  margin-top: 20px;

  padding:
    0 23px;

  border: 0;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #d5ff3f;

  color: #050709;

  cursor: pointer;

  font-size: 0.78rem;
  font-weight: 700;

  transition:
    opacity 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}


.assessment-lead-submit:not(:disabled):hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 14px 40px
    rgba(213, 255, 63, 0.15);
}


.assessment-lead-submit:disabled {
  opacity: 0.22;

  cursor: not-allowed;
}


.assessment-lead-privacy {
  display: block;

  max-width: 470px;

  margin-top: 14px;

  color:
    rgba(246, 247, 248, 0.2);

  font-size: 0.54rem;

  line-height: 1.55;
}



/* MOBILE */

@media (max-width: 640px) {

  .assessment-lead-capture {
    max-width: none;
  }


  .assessment-lead-status {
    margin-bottom: 28px;
  }


  .assessment-lead-heading {
    margin-bottom: 30px;
  }


  .assessment-lead-submit {
    min-height: 58px;

    margin-top: 18px;
  }

}

/* =========================================================
   FOOTER — PACT
========================================================= */

.pact-footer {
  position: relative;
  overflow: hidden;
  padding: 0 5vw;
  background: #050709;
  color: #f6f7f8;
}

.pact-footer::before {
  content: "";

  position: absolute;

  left: 14%;
  bottom: -220px;

  width: 480px;
  height: 480px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(213, 255, 63, 0.035),
      transparent 68%
    );

  filter: blur(40px);

  pointer-events: none;
}

.pact-footer-shell {
  position: relative;

  max-width: 1180px;

  margin: 0 auto;

  padding: 90px 0 34px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}

/* =========================================================
   TOP
========================================================= */

.pact-footer-top {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(0, 1fr)
    minmax(0, 0.8fr);

  gap: 70px;

  align-items: start;
}

/* BRAND */

.pact-footer-logo {
  display: inline-block;

  color: #f6f7f8;

  text-decoration: none;

  font-size: 1.65rem;

  font-weight: 700;

  letter-spacing: -0.06em;
}

.pact-footer-positioning {
  margin-top: 18px;

  color:
    rgba(246, 247, 248, 0.56);

  font-size: 0.82rem;

  line-height: 1.5;
}

.pact-footer-pillars {
  margin-top: 28px;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 8px;

  color:
    rgba(246, 247, 248, 0.25);

  font-size: 0.54rem;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.pact-footer-pillars i {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.58);
}

/* =========================================================
   MANIFESTO
========================================================= */

.pact-footer-manifesto {
  padding-top: 4px;
}

.pact-footer-manifesto > span,
.pact-footer-author > span {
  display: block;

  color:
    rgba(213, 255, 63, 0.58);

  font-size: 0.52rem;

  font-weight: 700;

  letter-spacing: 0.14em;
}

.pact-footer-manifesto strong {
  display: block;

  margin-top: 18px;

  color:
    rgba(246, 247, 248, 0.9);

  font-size:
    clamp(
      1.45rem,
      2.2vw,
      2rem
    );

  line-height: 1.16;

  letter-spacing: -0.045em;

  font-weight: 500;
}

/* =========================================================
   AUTHOR
========================================================= */

.pact-footer-author {
  padding-top: 4px;
}

.pact-footer-author strong {
  display: block;

  margin-top: 18px;

  color:
    rgba(246, 247, 248, 0.86);

  font-size: 0.86rem;

  font-weight: 500;
}

.pact-footer-author p {
  max-width: 220px;

  margin-top: 8px;

  color:
    rgba(246, 247, 248, 0.32);

  font-size: 0.67rem;

  line-height: 1.6;
}

/* =========================================================
   DIVIDER
========================================================= */

.pact-footer-divider {
  height: 1px;

  margin: 72px 0 29px;

  background:
    rgba(255, 255, 255, 0.06);
}

/* =========================================================
   BOTTOM
========================================================= */

.pact-footer-bottom {
  display: grid;

  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 40px;
}

/* COPYRIGHT */

.pact-footer-copyright {
  display: flex;

  align-items: center;

  gap: 8px;

  white-space: nowrap;
}

.pact-footer-copyright span {
  color:
    rgba(246, 247, 248, 0.42);

  font-size: 0.58rem;

  font-weight: 600;

  letter-spacing: 0.05em;
}

.pact-footer-copyright small {
  color:
    rgba(246, 247, 248, 0.19);

  font-size: 0.56rem;
}

/* LINKS */

.pact-footer-links {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 26px;
}

.pact-footer-links a,
.pact-footer-link-disabled {
  position: relative;

  color:
    rgba(246, 247, 248, 0.35);

  font-size: 0.59rem;

  font-weight: 500;

  text-decoration: none;

  transition:
    color 180ms ease;
}

.pact-footer-links a {
  display: inline-flex;

  align-items: center;

  gap: 5px;
}

.pact-footer-links a span {
  color:
    rgba(213, 255, 63, 0.45);

  font-size: 0.58rem;

  transition:
    transform 180ms ease;
}

.pact-footer-links a:hover {
  color: #f6f7f8;
}

.pact-footer-links a:hover span {
  transform:
    translate(
      2px,
      -2px
    );
}

.pact-footer-link-disabled {
  cursor: default;

  opacity: 0.62;
}

/* STATUS */

.pact-footer-status {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 8px;

  white-space: nowrap;
}

.pact-footer-status > span {
  width: 5px;
  height: 5px;

  flex: 0 0 5px;

  border-radius: 50%;

  background: #d5ff3f;

  box-shadow:
    0 0 12px
    rgba(213, 255, 63, 0.28);
}

.pact-footer-status small {
  color:
    rgba(246, 247, 248, 0.22);

  font-size: 0.49rem;

  font-weight: 600;

  letter-spacing: 0.1em;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .pact-footer {
    padding: 0 22px;
  }

  .pact-footer-shell {
    padding: 68px 0 28px;
  }

  .pact-footer-top {
    display: block;
  }

  .pact-footer-logo {
    font-size: 1.55rem;
  }

  .pact-footer-pillars {
    max-width: 310px;

    line-height: 1.8;
  }

  .pact-footer-manifesto {
    margin-top: 58px;
  }

  .pact-footer-manifesto strong {
    margin-top: 15px;

    font-size: 1.65rem;
  }

  .pact-footer-author {
    margin-top: 50px;
  }

  .pact-footer-author p {
    max-width: 260px;
  }

  .pact-footer-divider {
    margin: 54px 0 26px;
  }

  .pact-footer-bottom {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 30px;
  }

  .pact-footer-copyright {
    flex-direction: column;

    align-items: flex-start;

    gap: 4px;
  }

  .pact-footer-links {
    flex-wrap: wrap;

    justify-content: flex-start;

    gap: 18px 24px;
  }

  .pact-footer-status {
    justify-content: flex-start;
  }

}

/* =========================================================
   PACT CONVERSATION ENGINE
========================================================= */

.pact-conversation-entry-actions {
  display: flex;
  flex-direction: column;

  align-items: stretch;

  gap: 13px;

  flex-shrink: 0;
}


.pact-report-whatsapp {
  padding: 0;

  border: 0;

  background: transparent;

  color:
    rgba(246, 247, 248, 0.28);

  cursor: pointer;

  font: inherit;

  font-size: 0.62rem;

  transition:
    color 180ms ease;
}


.pact-report-whatsapp:hover {
  color:
    rgba(246, 247, 248, 0.72);
}



/* =========================================================
   CONVERSATION
========================================================= */

.pact-conversation {
  position: relative;

  max-width: 820px;

  margin:
    110px auto 40px;

  border:
    1px solid rgba(255, 255, 255, 0.07);

  background:
    linear-gradient(
      180deg,
      rgba(11, 15, 18, 0.98),
      rgba(6, 9, 11, 0.98)
    );

  box-shadow:
    0 30px 100px
    rgba(0, 0, 0, 0.26);
}


.pact-conversation::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(213, 255, 63, 0.035),
      transparent 34%
    );
}



/* =========================================================
   HEADER
========================================================= */

.pact-conversation-header {
  position: relative;

  z-index: 1;

  min-height: 82px;

  padding:
    18px 22px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.065);
}


.pact-conversation-identity {
  display: flex;

  align-items: center;

  gap: 13px;
}


.pact-conversation-avatar {
  width: 43px;
  height: 43px;

  flex:
    0 0 43px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.085);

  border:
    1px solid rgba(213, 255, 63, 0.18);

  color: #d5ff3f;

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing:
    -0.02em;
}


.pact-conversation-identity > div:last-child {
  display: flex;

  flex-direction: column;

  gap: 4px;
}


.pact-conversation-identity strong {
  color:
    rgba(246, 247, 248, 0.92);

  font-size: 0.74rem;

  font-weight: 600;
}


.pact-conversation-identity span {
  color:
    rgba(246, 247, 248, 0.3);

  font-size: 0.55rem;
}


.pact-conversation-stage {
  display: flex;

  align-items: center;

  gap: 8px;
}


.pact-conversation-stage > span {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #d5ff3f;

  box-shadow:
    0 0 14px
    rgba(213, 255, 63, 0.3);
}


.pact-conversation-stage small {
  color:
    rgba(246, 247, 248, 0.25);

  font-size: 0.48rem;

  font-weight: 600;

  letter-spacing:
    0.11em;
}



/* =========================================================
   MESSAGES
========================================================= */

.pact-conversation-messages {
  position: relative;

  z-index: 1;

  min-height: 280px;

  padding:
    42px 30px 20px;

  display: flex;

  flex-direction: column;

  gap: 12px;
}


.pact-chat-message {
  width: 100%;

  display: flex;
}


.pact-chat-message-diego {
  justify-content: flex-start;
}


.pact-chat-message-lead {
  justify-content: flex-end;
}


.pact-chat-bubble {
  max-width: 76%;

  padding:
    14px 17px;

  font-size: 0.76rem;

  line-height: 1.62;
}


.pact-chat-message-diego
.pact-chat-bubble {
  border:
    1px solid rgba(255, 255, 255, 0.065);

  border-radius:
    5px 17px 17px 17px;

  background:
    rgba(255, 255, 255, 0.025);

  color:
    rgba(246, 247, 248, 0.72);
}


.pact-chat-message-lead
.pact-chat-bubble {
  border-radius:
    17px 5px 17px 17px;

  background:
    #d5ff3f;

  color:
    #050709;

  font-weight: 500;
}



/* =========================================================
   TYPING
========================================================= */

.pact-chat-typing {
  width: fit-content;

  min-width: 56px;
  height: 36px;

  padding:
    0 14px;

  display: flex;

  align-items: center;

  gap: 4px;

  border:
    1px solid rgba(255, 255, 255, 0.055);

  border-radius:
    5px 15px 15px 15px;

  background:
    rgba(255, 255, 255, 0.02);
}


.pact-chat-typing span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background:
    rgba(213, 255, 63, 0.55);

  animation:
    pactTypingDot
    900ms
    ease-in-out
    infinite;
}


.pact-chat-typing span:nth-child(2) {
  animation-delay:
    120ms;
}


.pact-chat-typing span:nth-child(3) {
  animation-delay:
    240ms;
}


@keyframes pactTypingDot {

  0%,
  60%,
  100% {
    opacity: 0.24;
    transform:
      translateY(0);
  }

  30% {
    opacity: 1;
    transform:
      translateY(-3px);
  }

}



/* =========================================================
   OPTIONS
========================================================= */

.pact-conversation-options {
  position: relative;

  z-index: 1;

  padding:
    20px 30px 30px;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 8px;
}


.pact-chat-option {
  min-height: 54px;

  padding:
    0 16px;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  border-radius: 3px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  background:
    rgba(255, 255, 255, 0.018);

  color:
    rgba(246, 247, 248, 0.66);

  cursor: pointer;

  font: inherit;

  font-size: 0.68rem;

  text-align: left;

  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}


.pact-chat-option small {
  color:
    rgba(213, 255, 63, 0.45);

  font-size: 0.66rem;
}


.pact-chat-option:hover {
  transform:
    translateY(-1px);

  border-color:
    rgba(213, 255, 63, 0.24);

  background:
    rgba(213, 255, 63, 0.035);

  color:
    #f6f7f8;
}



/* STARTED */

#pactConversationStart.is-started {
  opacity: 0.35;

  cursor: default;
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .pact-conversation-entry-actions {
    width: 100%;

    margin-top: 34px;
  }


  .pact-conversation {
    margin-top: 76px;
  }


  .pact-conversation-header {
    min-height: 74px;

    padding:
      15px;
  }


  .pact-conversation-stage small {
    display: none;
  }


  .pact-conversation-messages {
    min-height: 260px;

    padding:
      32px 15px 16px;

    gap: 10px;
  }


  .pact-chat-bubble {
    max-width: 88%;

    padding:
      13px 15px;

    font-size:
      0.74rem;
  }


  .pact-conversation-options {
    padding:
      18px 15px 22px;

    grid-template-columns:
      1fr;
  }


  .pact-chat-option {
    min-height: 53px;
  }

}
/* =========================================================
   PACT CHAT — HUMAN EXPERIENCE
========================================================= */

.pact-conversation {
  max-width: 760px;
}


.pact-conversation-messages {
  min-height: 320px;
  max-height: 520px;

  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color:
    rgba(213, 255, 63, 0.16)
    transparent;

  scroll-behavior: smooth;
}


.pact-conversation-messages::-webkit-scrollbar {
  width: 4px;
}


.pact-conversation-messages::-webkit-scrollbar-track {
  background: transparent;
}


.pact-conversation-messages::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background:
    rgba(213, 255, 63, 0.14);
}



/* EVENT */

.pact-chat-event {
  margin:
    3px 0 18px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  color:
    rgba(246, 247, 248, 0.2);
}


.pact-chat-event > span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background:
    #d5ff3f;

  box-shadow:
    0 0 10px
    rgba(213, 255, 63, 0.25);
}


.pact-chat-event small {
  font-size: 0.51rem;

  letter-spacing: 0.04em;
}



/* TYPING WRAPPER */

.pact-chat-typing-wrap {
  display: flex;

  align-items: center;

  gap: 10px;

  width: fit-content;
}


.pact-chat-typing-wrap > small {
  color:
    rgba(246, 247, 248, 0.18);

  font-size: 0.51rem;
}



/* MORE NATURAL BUBBLES */

.pact-chat-message-diego
.pact-chat-bubble {
  max-width: 68%;
}


.pact-chat-message-lead
.pact-chat-bubble {
  max-width: 64%;
}


@media (max-width: 640px) {

  .pact-conversation {
    max-width: 100%;
  }


  .pact-conversation-messages {
    min-height: 300px;
    max-height: 470px;
  }


  .pact-chat-message-diego
  .pact-chat-bubble,
  .pact-chat-message-lead
  .pact-chat-bubble {
    max-width: 88%;
  }

}
/* =========================================================
   PACT CONVERSATION — FIXED PREMIUM WINDOW
========================================================= */

/*
  A janela inteira tem tamanho estável.
  Ela NÃO cresce conforme surgem mensagens.
*/

.pact-conversation {
  position: relative;

  width: min(760px, 100%);

  height: min(680px, 72dvh);

  margin:
    82px auto 44px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.085);

  border-radius: 24px;

  background:
    #080c0e;

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(213, 255, 63, 0.015);

  isolation: isolate;
}


/*
  Importantíssimo:
  mantém o elemento realmente escondido
  antes de clicar em "Continuar análise".
*/

.pact-conversation[hidden] {
  display: none !important;
}



/* =========================================================
   SUBTLE CHAT BACKGROUND
========================================================= */

.pact-conversation::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -2;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 14% 4%,
      rgba(213, 255, 63, 0.035),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #0a0e10 0%,
      #070a0c 100%
    );
}


.pact-conversation::after {
  content: "";

  position: absolute;

  inset: 76px 0 0;

  z-index: -1;

  pointer-events: none;

  opacity: 0.18;

  background-image:
    radial-gradient(
      rgba(255, 255, 255, 0.08) 0.6px,
      transparent 0.6px
    );

  background-size:
    20px 20px;
}



/* =========================================================
   HEADER — FIXED
========================================================= */

.pact-conversation-header {
  position: relative;

  z-index: 5;

  flex:
    0 0 78px;

  min-height: 78px;

  padding:
    0 22px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.065);

  background:
    rgba(9, 13, 15, 0.96);

  backdrop-filter:
    blur(16px);
}


.pact-conversation-identity {
  display: flex;

  align-items: center;

  gap: 12px;
}


.pact-conversation-avatar {
  width: 42px;
  height: 42px;

  flex:
    0 0 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(213, 255, 63, 0.15),
      rgba(213, 255, 63, 0.045)
    );

  border:
    1px solid rgba(213, 255, 63, 0.22);

  color: #d5ff3f;

  font-size: 0.62rem;
  font-weight: 700;

  box-shadow:
    0 0 28px
    rgba(213, 255, 63, 0.045);
}


.pact-conversation-identity > div:last-child {
  display: flex;
  flex-direction: column;

  gap: 4px;
}


.pact-conversation-identity strong {
  color: #f6f7f8;

  font-size: 0.76rem;
  font-weight: 600;
}


.pact-conversation-identity span {
  color:
    rgba(246, 247, 248, 0.32);

  font-size: 0.54rem;
}


.pact-conversation-stage {
  display: flex;

  align-items: center;

  gap: 8px;
}


.pact-conversation-stage > span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #d5ff3f;

  box-shadow:
    0 0 14px
    rgba(213, 255, 63, 0.42);
}


.pact-conversation-stage small {
  color:
    rgba(246, 247, 248, 0.26);

  font-size: 0.47rem;
  font-weight: 700;

  letter-spacing: 0.11em;
}



/* =========================================================
   MESSAGES — ONLY THIS AREA SCROLLS
========================================================= */

.pact-conversation-messages {
  position: relative;

  flex:
    1 1 auto;

  min-height: 0;

  padding:
    28px 24px 22px;

  display: flex;
  flex-direction: column;

  gap: 9px;

  overflow-y: auto;
  overflow-x: hidden;

  scroll-behavior: smooth;

  scrollbar-width: thin;

  scrollbar-color:
    rgba(213, 255, 63, 0.12)
    transparent;
}


.pact-conversation-messages::-webkit-scrollbar {
  width: 4px;
}


.pact-conversation-messages::-webkit-scrollbar-track {
  background: transparent;
}


.pact-conversation-messages::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background:
    rgba(213, 255, 63, 0.13);
}



/* =========================================================
   SYSTEM EVENT
========================================================= */

.pact-chat-event {
  width: 100%;

  margin:
    2px 0 17px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  color:
    rgba(246, 247, 248, 0.2);
}


.pact-chat-event > span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background:
    #d5ff3f;

  box-shadow:
    0 0 10px
    rgba(213, 255, 63, 0.28);
}


.pact-chat-event small {
  font-size: 0.5rem;

  letter-spacing: 0.035em;
}



/* =========================================================
   MESSAGE ROW
========================================================= */

.pact-chat-message {
  width: 100%;

  display: flex;
}


.pact-chat-message-diego {
  justify-content: flex-start;
}


.pact-chat-message-lead {
  justify-content: flex-end;
}



/* =========================================================
   MESSAGE BUBBLES
========================================================= */

.pact-chat-bubble {
  width: fit-content;

  max-width: 72%;

  padding:
    11px 14px;

  font-size: 0.75rem;

  line-height: 1.55;

  letter-spacing:
    -0.01em;
}


.pact-chat-message-diego
.pact-chat-bubble {
  border:
    1px solid rgba(255, 255, 255, 0.065);

  border-radius:
    5px 17px 17px 17px;

  background:
    rgba(18, 23, 26, 0.96);

  color:
    rgba(246, 247, 248, 0.78);

  box-shadow:
    0 8px 24px
    rgba(0, 0, 0, 0.08);
}


.pact-chat-message-lead
.pact-chat-bubble {
  border-radius:
    17px 5px 17px 17px;

  background:
    #d5ff3f;

  color:
    #050709;

  font-weight: 500;

  box-shadow:
    0 8px 30px
    rgba(213, 255, 63, 0.06);
}



/* =========================================================
   TYPING
========================================================= */

.pact-chat-typing-wrap {
  width: fit-content;

  display: flex;

  align-items: center;

  gap: 9px;

  margin-top: 2px;
}


.pact-chat-typing {
  min-width: 52px;
  height: 32px;

  padding:
    0 12px;

  display: flex;

  align-items: center;

  gap: 4px;

  border:
    1px solid rgba(255, 255, 255, 0.055);

  border-radius:
    5px 14px 14px 14px;

  background:
    rgba(18, 23, 26, 0.94);
}


.pact-chat-typing-wrap > small {
  color:
    rgba(246, 247, 248, 0.18);

  font-size: 0.49rem;
}



/* =========================================================
   QUICK REPLIES — FIXED BOTTOM TRAY
========================================================= */

.pact-conversation-options {
  position: relative;

  z-index: 6;

  flex:
    0 0 auto;

  max-height: 190px;

  padding:
    13px 18px 18px;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 7px;

  overflow-y: auto;

  border-top:
    1px solid rgba(255, 255, 255, 0.065);

  background:
    rgba(8, 12, 14, 0.98);

  backdrop-filter:
    blur(16px);
}


/*
  Quando ainda não existem respostas,
  a bandeja desaparece completamente
  e as mensagens ganham todo o espaço.
*/

.pact-conversation-options:empty {
  display: none;
}


.pact-conversation-options:not(:empty)::before {
  content:
    "Escolha uma resposta";

  grid-column:
    1 / -1;

  margin:
    0 0 3px;

  color:
    rgba(246, 247, 248, 0.2);

  font-size: 0.48rem;
  font-weight: 600;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}



/* =========================================================
   QUICK REPLY BUTTON
========================================================= */

.pact-chat-option {
  min-height: 48px;

  padding:
    10px 13px;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  border-radius: 11px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 14px;

  background:
    rgba(255, 255, 255, 0.022);

  color:
    rgba(246, 247, 248, 0.68);

  cursor: pointer;

  font: inherit;

  font-size: 0.65rem;

  line-height: 1.35;

  text-align: left;

  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}


.pact-chat-option small {
  flex-shrink: 0;

  color:
    rgba(213, 255, 63, 0.62);

  font-size: 0.66rem;
}


.pact-chat-option:hover {
  transform:
    translateY(-1px);

  border-color:
    rgba(213, 255, 63, 0.25);

  background:
    rgba(213, 255, 63, 0.038);

  color: #f6f7f8;
}



/* =========================================================
   MOBILE — CHAT WINDOW
========================================================= */

@media (max-width: 640px) {

  .pact-conversation {
    width:
      calc(100vw - 24px);

    height:
      min(680px, 78dvh);

    margin:
      58px auto 30px;

    border-radius: 20px;
  }


  .pact-conversation-header {
    flex:
      0 0 70px;

    min-height: 70px;

    padding:
      0 14px;
  }


  .pact-conversation-avatar {
    width: 38px;
    height: 38px;

    flex:
      0 0 38px;
  }


  .pact-conversation-stage small {
    display: none;
  }


  .pact-conversation-messages {
    padding:
      20px 13px 15px;

    gap: 8px;
  }


  .pact-chat-bubble {
    max-width: 86%;

    padding:
      10px 12px;

    font-size: 0.72rem;

    line-height: 1.5;
  }


  .pact-chat-typing-wrap > small {
    display: none;
  }


  .pact-conversation-options {
    max-height: 210px;

    padding:
      11px 11px 13px;

    grid-template-columns:
      1fr;

    gap: 6px;
  }


  .pact-chat-option {
    min-height: 46px;

    border-radius: 10px;

    font-size: 0.64rem;
  }

}
