:root {
  --black: #000000;
  --ink: #3b3b3b;
  --muted: #3b3b3b;
  --line: rgba(59, 59, 59, 0.16);
  --white: #ffffff;
  --soft: #ffffff;
  --green: #59e721;
  --blue: #46b1e1;
  --panel: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "Albert Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

.brand-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 25;
  display: grid;
  grid-template-rows: 210px 1fr 120px;
  place-items: center;
  width: 72px;
  color: var(--white);
  background: var(--black);
  box-shadow: 18px 0 60px rgba(0, 0, 0, 0.12);
}

.rail-line {
  align-self: end;
  width: 1px;
  height: 96px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, var(--green), rgba(89, 231, 33, 0.1));
}

.rail-line::before {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: -3.5px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(89, 231, 33, 0.65);
}

.rail-message {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 280px;
}

.rail-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.35s ease;
}

.rail-text::first-letter {
  color: var(--green);
}

.rail-message.is-changing .rail-text {
  color: var(--white);
  opacity: 0.92;
  transform: rotate(180deg) translateY(-4px);
}

.rail-sweep {
  position: absolute;
  top: -18px;
  color: var(--green);
  font-size: 1rem;
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(89, 231, 33, 0.8));
  transform: rotate(90deg);
}

.rail-message.is-changing .rail-sweep {
  animation: rail-sweep 0.9s ease-in-out;
}

@keyframes rail-sweep {
  0% {
    top: -18px;
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    top: calc(100% + 18px);
    opacity: 0;
  }
}

.rail-mark {
  color: var(--green);
  font-size: 1rem;
  transform: rotate(90deg);
}

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

button,
textarea {
  font: inherit;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 168px;
  max-height: 70px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
  color: var(--muted);
}

.desktop-nav a,
.header-cta {
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.desktop-nav a {
  position: relative;
  padding: 9px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ink);
}

.desktop-nav a.is-active {
  font-weight: 800;
  background: rgba(89, 231, 33, 0.14);
}

.desktop-nav a.is-active::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 999px;
}

.section-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.74rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.section-indicator span {
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
}

.section-indicator strong {
  color: var(--ink);
}

.header-cta,
.cta-section a,
.prompt-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--black);
  font-weight: 700;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
  padding: clamp(32px, 5vw, 58px) clamp(20px, 4vw, 64px) 64px calc(clamp(20px, 4vw, 64px) + 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(70, 177, 225, 0.28), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #ffffff 48%, #ffffff 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.eyebrow,
.section-label,
.result-kicker {
  display: inline-flex;
  color: #59e721;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.35vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
  color: var(--ink);
  background:
    linear-gradient(
      105deg,
      var(--ink) 0%,
      var(--ink) 30%,
      var(--green) 44%,
      var(--blue) 58%,
      var(--green) 72%,
      var(--ink) 88%,
      var(--ink) 100%
    );
  background-size: 320% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ciclic-title-shift 5.5s ease-in-out infinite;
}

@keyframes ciclic-title-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-lede {
  max-width: 840px;
  color: #3b3b3b;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.5;
}

.diagnostic-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 960px;
}

.diagnostic-intro {
  max-width: 760px;
}

.diagnostic-intro span {
  display: block;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.12;
}

.diagnostic-intro p {
  margin: 6px 0 0;
  color: #3b3b3b;
  font-size: 1rem;
}

.conversation-card,
.result-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.conversation-card {
  order: 2;
  padding: 18px;
  overflow: hidden;
}

.assistant-row {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  margin: -18px -18px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px 8px 0 0;
}

.assistant-row[hidden] {
  display: none;
}

.assistant-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.assistant-dot {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(89, 231, 33, 0.16);
}

textarea {
  width: 100%;
  min-height: 108px;
  padding: 14px 16px;
  color: var(--ink);
  resize: vertical;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(70, 177, 225, 0.14);
}

.prompt-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
}

.hint {
  color: var(--muted);
  font-size: 0.9rem;
}

.result-panel {
  order: 1;
  min-height: 320px;
  max-height: 620px;
  overflow-y: auto;
  padding: 22px;
}

.result-panel.is-empty {
  display: none;
}

.empty-state {
  display: grid;
  min-height: 270px;
  align-content: center;
}

.result-panel h2 {
  margin: 8px 0 10px;
  font-size: 1.8rem;
}

.result-panel p,
.result-panel li {
  color: #3b3b3b;
  line-height: 1.5;
}

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

.diagnostic-section:first-child {
  border-top: 0;
}

.diagnostic-section h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.diagnostic-section ul {
  padding-left: 20px;
  margin: 0;
}

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

.opportunity-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.opportunity-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.capability-badge,
.priority-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 8px;
}

.capability-badge {
  color: #59e721;
  background: rgba(89, 231, 33, 0.16);
}

.priority-tag {
  color: #3b3b3b;
  background: rgba(0, 0, 0, 0.07);
}

.priority-high {
  color: #59e721;
  background: rgba(89, 231, 33, 0.24);
}

.priority-medium {
  color: #46b1e1;
  background: rgba(70, 177, 225, 0.18);
}

.opportunity-card h4 {
  margin: 0;
  font-size: 1rem;
}

.opportunity-card p {
  margin: 0;
}

.chat-thread {
  display: grid;
  gap: 14px;
}

.chat-message {
  display: grid;
  gap: 8px;
  max-width: 92%;
  padding: 14px;
  border-radius: 8px;
}

.chat-message p {
  margin: 0;
}

.message-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.user-message {
  justify-self: end;
  color: var(--white);
  background: var(--black);
}

.user-message .message-label,
.user-message p {
  color: rgba(255, 255, 255, 0.82);
}

.assistant-message {
  justify-self: start;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
}

.assistant-message .message-label {
  color: rgba(255, 255, 255, 0.82);
}

.assistant-message p {
  color: rgba(255, 255, 255, 0.82);
}

.consultative-response {
  display: grid;
  gap: 12px;
}

.consultative-response h3 {
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.consultative-response p {
  margin: 0;
}

.consultative-response .response-context {
  color: rgba(255, 255, 255, 0.74);
}

.follow-up-question {
  padding: 14px;
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}

.final-diagnosis {
  max-width: 100%;
  background: var(--white);
}

.diagnostic-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
}

.diagnostic-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.diagnostic-cta a {
  flex: 0 0 auto;
  padding: 12px 14px;
  color: var(--black);
  font-weight: 800;
  background: var(--green);
  border-radius: 8px;
}

.internal-profile {
  color: var(--muted);
}

.internal-profile pre {
  max-height: 220px;
  margin: 0;
  padding: 14px;
  overflow: auto;
  white-space: pre-wrap;
  color: #3b3b3b;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-capture-status {
  padding: 12px 14px;
  color: #3b3b3b;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(70, 177, 225, 0.12);
  border: 1px solid rgba(70, 177, 225, 0.28);
  border-radius: 8px;
}

.lead-capture-status.saved {
  color: #59e721;
  background: rgba(89, 231, 33, 0.13);
  border-color: rgba(89, 231, 33, 0.34);
}

.lead-capture-status.error {
  color: #3b3b3b;
  background: rgba(59, 59, 59, 0.09);
  border-color: rgba(59, 59, 59, 0.24);
}

.architecture-visual {
  position: absolute;
  top: 108px;
  right: clamp(18px, 3vw, 46px);
  width: min(460px, 34vw);
  aspect-ratio: 1;
  opacity: 0.82;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.architecture-visual::before,
.architecture-visual::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px dashed rgba(89, 231, 33, 0.22);
  border-radius: 50%;
}

.architecture-visual::after {
  inset: 29%;
  border-color: rgba(70, 177, 225, 0.18);
}

.architecture-visual::before {
  box-shadow: inset 0 0 80px rgba(89, 231, 33, 0.08);
}

.visual-node,
.visual-core {
  position: absolute;
  display: grid;
  place-items: center;
  font-weight: 800;
  border-radius: 999px;
  background-size: 260% 100%;
  animation: ciclic-shape-shift 6s ease-in-out infinite;
}

@keyframes ciclic-shape-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.visual-node {
  min-width: 82px;
  height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(70, 177, 225, 0.24), rgba(89, 231, 33, 0.26), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.11);
}

.visual-node::after {
  position: absolute;
  right: -9px;
  bottom: -7px;
  width: 16px;
  height: 16px;
  content: "";
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(89, 231, 33, 0.34);
}

.node-process::after,
.node-systems::after {
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(70, 177, 225, 0.34);
}

.node-ai {
  right: 6%;
  top: 48%;
}

.node-data {
  top: 2%;
  left: 39%;
}

.node-process {
  top: 22%;
  right: 1%;
}

.node-systems {
  top: 42%;
  left: 0;
}

.visual-core {
  top: 50%;
  left: 50%;
  width: 126px;
  height: 126px;
  padding: 14px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--black);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.74), transparent 36%),
    linear-gradient(115deg, rgba(70, 177, 225, 0.56), rgba(89, 231, 33, 0.64), rgba(70, 177, 225, 0.44));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 70px rgba(70, 177, 225, 0.16);
  font-size: 0.86rem;
  line-height: 1.15;
}

.section {
  padding: 84px clamp(20px, 4vw, 64px) 84px calc(clamp(20px, 4vw, 64px) + 72px);
}

.section-heading h2,
.cta-section h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

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

.section-subtitle {
  max-width: 720px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.card-grid,
.service-grid {
  display: grid;
  gap: 14px;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.problem-card,
.service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-title-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #59e721);
  border: 1px solid rgba(89, 231, 33, 0.34);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(89, 231, 33, 0.2);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon-data,
.card-icon-spark {
  background: linear-gradient(135deg, var(--blue), #46b1e1);
  border-color: rgba(70, 177, 225, 0.34);
  box-shadow: 0 12px 28px rgba(70, 177, 225, 0.2);
}

.card-icon-people {
  background: linear-gradient(135deg, #59e721, var(--green));
}

.problem-card h3,
.service-card h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.problem-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.service-card.is-transversal {
  grid-column: 1 / -1;
  position: relative;
  min-height: auto;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(89, 231, 33, 0.16), rgba(70, 177, 225, 0.14)),
    var(--white);
  border-color: rgba(89, 231, 33, 0.48);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.service-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: #59e721;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(89, 231, 33, 0.28);
  border: 1px solid rgba(89, 231, 33, 0.5);
  border-radius: 999px;
}

.insight-panel {
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.insight-panel summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #59e721;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.insight-panel summary::-webkit-details-marker {
  display: none;
}

.insight-panel summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--black);
  background: rgba(89, 231, 33, 0.42);
  border-radius: 50%;
}

.insight-panel[open] summary::after {
  content: "-";
}

.insight-body {
  display: grid;
  gap: 14px;
  padding-top: 14px;
}

.insight-body h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.insight-body p,
.insight-body li {
  color: #3b3b3b;
  font-size: 0.95rem;
  line-height: 1.48;
}

.insight-body ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.insight-block {
  padding: 12px;
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.insight-block strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.insight-block p {
  margin: 0;
}

.services-band .insight-body p,
.services-band .insight-body li {
  color: rgba(255, 255, 255, 0.74);
}

.services-band .insight-block strong {
  color: rgba(255, 255, 255, 0.9);
}

.services-band {
  background: var(--soft);
}

.use-cases-section {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(70, 177, 225, 0.08)),
    var(--white);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.use-case-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.use-case-video-card {
  align-content: start;
}

.use-case-video-shell {
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.use-case-video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.use-case-video-caption {
  margin: 0;
  color: #3b3b3b;
  line-height: 1.5;
}

.use-case-header {
  display: grid;
  gap: 10px;
}

.use-case-header span {
  justify-self: start;
  padding: 5px 9px;
  color: #3b3b3b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(89, 231, 33, 0.16);
  border-radius: 8px;
}

.use-case-header h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.use-case-summary {
  display: grid;
  gap: 12px;
}

.use-case-summary div,
.value-proof {
  padding: 14px;
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.use-case-summary strong,
.value-proof strong,
.use-case-detail h4 {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.use-case-summary p,
.use-case-detail p,
.use-case-detail li {
  margin: 0;
  color: #3b3b3b;
  line-height: 1.5;
}

.use-case-detail {
  border-top: 1px solid var(--line);
}

.use-case-detail summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #59e721;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.use-case-detail summary::-webkit-details-marker {
  display: none;
}

.use-case-detail summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--black);
  background: rgba(89, 231, 33, 0.42);
  border-radius: 50%;
}

.use-case-detail[open] summary::after {
  content: "-";
}

.use-case-detail-body {
  display: grid;
  gap: 16px;
  padding-top: 16px;
}

.use-case-detail ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.use-case-tags span {
  padding: 6px 9px;
  color: #46b1e1;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(70, 177, 225, 0.16);
  border-radius: 8px;
}

.team-section {
  background: var(--white);
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 26px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.team-stats div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--white);
}

.team-stats strong {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.12;
}

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

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 4px;
}

.country-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.flag {
  display: inline-block;
  width: 28px;
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 59, 59, 0.2);
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(59, 59, 59, 0.08);
}

.flag-cr {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 18'%3E%3Cpath fill='%23002b7f' d='M0 0h28v18H0z'/%3E%3Cpath fill='%23fff' d='M0 3h28v12H0z'/%3E%3Cpath fill='%23ce1126' d='M0 6h28v6H0z'/%3E%3C/svg%3E");
  background-size: cover;
}

.flag-ve {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 18'%3E%3Cpath fill='%23f4d03f' d='M0 0h28v6H0z'/%3E%3Cpath fill='%230033a0' d='M0 6h28v6H0z'/%3E%3Cpath fill='%23cf142b' d='M0 12h28v6H0z'/%3E%3Cg fill='%23fff'%3E%3Ccircle cx='7.7' cy='10.1' r='.58'/%3E%3Ccircle cx='9.4' cy='8.9' r='.58'/%3E%3Ccircle cx='11.4' cy='8.2' r='.58'/%3E%3Ccircle cx='13.4' cy='7.9' r='.58'/%3E%3Ccircle cx='15.4' cy='7.9' r='.58'/%3E%3Ccircle cx='17.4' cy='8.2' r='.58'/%3E%3Ccircle cx='19.4' cy='8.9' r='.58'/%3E%3Ccircle cx='21.1' cy='10.1' r='.58'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.flag-mx {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 18'%3E%3Cpath fill='%23006847' d='M0 0h9.33v18H0z'/%3E%3Cpath fill='%23fff' d='M9.33 0h9.34v18H9.33z'/%3E%3Cpath fill='%23ce1126' d='M18.67 0H28v18h-9.33z'/%3E%3Cg transform='translate(14 9)'%3E%3Cellipse rx='2.15' ry='2.45' fill='%23f2c94c' stroke='%23006847' stroke-width='.45'/%3E%3Cpath d='M-1.5.8c1 .65 2 .65 3 0' fill='none' stroke='%236b3f1d' stroke-width='.55' stroke-linecap='round'/%3E%3Cpath d='M-.5-1.2c.9.4 1.35 1.05 1.25 2' fill='none' stroke='%23006847' stroke-width='.55' stroke-linecap='round'/%3E%3Ccircle cx='.55' cy='-.55' r='.35' fill='%236b3f1d'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.flag-co {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 18'%3E%3Cpath fill='%23fcd116' d='M0 0h28v9H0z'/%3E%3Cpath fill='%23003893' d='M0 9h28v4.5H0z'/%3E%3Cpath fill='%23ce1126' d='M0 13.5h28V18H0z'/%3E%3C/svg%3E");
  background-size: cover;
}

.flag-us {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 18'%3E%3Cpath fill='%23fff' d='M0 0h28v18H0z'/%3E%3Cg fill='%23b22234'%3E%3Cpath d='M0 0h28v1.38H0zM0 2.77h28v1.38H0zM0 5.54h28v1.38H0zM0 8.31h28v1.38H0zM0 11.08h28v1.38H0zM0 13.85h28v1.38H0zM0 16.62h28V18H0z'/%3E%3C/g%3E%3Cpath fill='%233c3b6e' d='M0 0h11.2v9.69H0z'/%3E%3Cg fill='%23fff'%3E%3Ccircle cx='1.2' cy='1' r='.28'/%3E%3Ccircle cx='3' cy='1' r='.28'/%3E%3Ccircle cx='4.8' cy='1' r='.28'/%3E%3Ccircle cx='6.6' cy='1' r='.28'/%3E%3Ccircle cx='8.4' cy='1' r='.28'/%3E%3Ccircle cx='10.2' cy='1' r='.28'/%3E%3Ccircle cx='2.1' cy='2.1' r='.28'/%3E%3Ccircle cx='3.9' cy='2.1' r='.28'/%3E%3Ccircle cx='5.7' cy='2.1' r='.28'/%3E%3Ccircle cx='7.5' cy='2.1' r='.28'/%3E%3Ccircle cx='9.3' cy='2.1' r='.28'/%3E%3Ccircle cx='1.2' cy='3.2' r='.28'/%3E%3Ccircle cx='3' cy='3.2' r='.28'/%3E%3Ccircle cx='4.8' cy='3.2' r='.28'/%3E%3Ccircle cx='6.6' cy='3.2' r='.28'/%3E%3Ccircle cx='8.4' cy='3.2' r='.28'/%3E%3Ccircle cx='10.2' cy='3.2' r='.28'/%3E%3Ccircle cx='2.1' cy='4.3' r='.28'/%3E%3Ccircle cx='3.9' cy='4.3' r='.28'/%3E%3Ccircle cx='5.7' cy='4.3' r='.28'/%3E%3Ccircle cx='7.5' cy='4.3' r='.28'/%3E%3Ccircle cx='9.3' cy='4.3' r='.28'/%3E%3Ccircle cx='1.2' cy='5.4' r='.28'/%3E%3Ccircle cx='3' cy='5.4' r='.28'/%3E%3Ccircle cx='4.8' cy='5.4' r='.28'/%3E%3Ccircle cx='6.6' cy='5.4' r='.28'/%3E%3Ccircle cx='8.4' cy='5.4' r='.28'/%3E%3Ccircle cx='10.2' cy='5.4' r='.28'/%3E%3Ccircle cx='2.1' cy='6.5' r='.28'/%3E%3Ccircle cx='3.9' cy='6.5' r='.28'/%3E%3Ccircle cx='5.7' cy='6.5' r='.28'/%3E%3Ccircle cx='7.5' cy='6.5' r='.28'/%3E%3Ccircle cx='9.3' cy='6.5' r='.28'/%3E%3Ccircle cx='1.2' cy='7.6' r='.28'/%3E%3Ccircle cx='3' cy='7.6' r='.28'/%3E%3Ccircle cx='4.8' cy='7.6' r='.28'/%3E%3Ccircle cx='6.6' cy='7.6' r='.28'/%3E%3Ccircle cx='8.4' cy='7.6' r='.28'/%3E%3Ccircle cx='10.2' cy='7.6' r='.28'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.team-manifesto {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.team-manifesto p {
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  font-style: italic;
  line-height: 1.18;
}

.team-manifesto span {
  color: var(--muted);
  font-weight: 800;
}

.team-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.team-filter-group {
  display: grid;
  gap: 10px;
}

.team-filter-group > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-filter-pills button {
  min-height: 34px;
  padding: 0 12px;
  color: #3b3b3b;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.team-filter-pills button.is-active {
  color: var(--black);
  font-weight: 800;
  background: rgba(89, 231, 33, 0.7);
  border-color: rgba(89, 231, 33, 0.9);
}

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

.team-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.team-card:hover,
.team-card.is-expanded {
  border-color: rgba(89, 231, 33, 0.58);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.team-card.is-expanded {
  transform: translateY(-2px);
}

.team-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.team-avatar {
  display: grid;
  flex: 0 0 58px;
  place-items: center;
  width: 58px;
  height: 58px;
  font-weight: 900;
  border-radius: 50%;
}

.team-avatar.teal {
  color: #59e721;
  background: rgba(89, 231, 33, 0.16);
}

.team-avatar.purple {
  color: #46b1e1;
  background: rgba(70, 177, 225, 0.16);
}

.team-avatar.coral {
  color: #3b3b3b;
  background: rgba(59, 59, 59, 0.12);
}

.team-avatar.blue {
  color: #46b1e1;
  background: rgba(70, 177, 225, 0.16);
}

.team-avatar.amber {
  color: #3b3b3b;
  background: rgba(59, 59, 59, 0.12);
}

.team-avatar.pink {
  color: #3b3b3b;
  background: rgba(59, 59, 59, 0.12);
}

.team-card h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.team-card-top p,
.team-location {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.team-location::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--green);
  border-radius: 50%;
}

.team-hook {
  margin: 0;
  color: #3b3b3b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-style: italic;
  line-height: 1.48;
}

.team-skills,
.team-card-footer,
.team-footer,
.team-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-skills span {
  padding: 5px 8px;
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 999px;
}

.team-skills .skill-1 {
  color: #59e721;
  background: rgba(89, 231, 33, 0.16);
}

.team-skills .skill-2 {
  color: #46b1e1;
  background: rgba(70, 177, 225, 0.16);
}

.team-skills .skill-3 {
  color: #3b3b3b;
  background: rgba(0, 0, 0, 0.07);
}

.team-card-footer {
  align-items: center;
  justify-content: flex-start;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.team-card-footer span {
  color: var(--muted);
  font-size: 0.88rem;
}

.team-card-footer button,
.team-expanded button {
  min-height: 34px;
  padding: 0 11px;
  color: var(--black);
  font-weight: 800;
  background: rgba(89, 231, 33, 0.68);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.team-expanded {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.team-card.is-expanded .team-expanded {
  max-height: 900px;
  opacity: 1;
}

.team-expanded blockquote {
  margin: 8px 0 16px;
  padding-left: 14px;
  color: #3b3b3b;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  line-height: 1.5;
  border-left: 4px solid var(--green);
}

.team-facts {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.team-facts div {
  padding: 11px;
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.team-facts strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.team-facts p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.team-expanded a {
  display: inline-flex;
  margin-bottom: 14px;
  color: #59e721;
  font-weight: 800;
}

.team-footer {
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.team-footer a {
  color: var(--black);
  font-weight: 800;
}

.team-footer .secondary-link {
  color: #59e721;
}

.learning-section {
  background: var(--white);
}

.section-heading > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.5;
}

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

.recommended-learning-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.learning-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.diagnostic-learning .learning-card {
  background: rgba(255, 255, 255, 0.78);
}

.learning-card-header,
.learning-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.learning-card-header span,
.learning-card-header strong,
.learning-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  color: #3b3b3b;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(89, 231, 33, 0.16);
  border-radius: 8px;
}

.learning-card-header strong {
  color: #46b1e1;
  background: rgba(70, 177, 225, 0.18);
}

.learning-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.learning-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.learning-meta {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.learning-meta span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.learning-card a,
.learning-action {
  align-self: end;
  justify-self: start;
  padding: 10px 12px;
  color: var(--black);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  background: rgba(89, 231, 33, 0.82);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

body.modal-open {
  overflow: hidden;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.video-modal-copy {
  padding: 4px 48px 14px 4px;
}

.video-modal-copy span {
  color: #59e721;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-modal-copy h2 {
  margin: 4px 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.video-modal-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: 8px;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.method-steps article {
  padding: 24px 20px 0 0;
  border-right: 1px solid var(--line);
}

.method-steps article:last-child {
  border-right: 0;
}

.method-steps span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}

.method-steps p {
  color: var(--muted);
  line-height: 1.5;
}

.method-steps .insight-panel {
  margin-right: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .section-heading h2,
  .cta-section h2 {
    animation: none;
    background-position: 58% 50%;
  }

  .visual-node,
  .visual-core {
    animation: none;
    background-position: 58% 50%;
  }
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 76px clamp(20px, 4vw, 64px) 76px calc(clamp(20px, 4vw, 64px) + 72px);
  background: linear-gradient(135deg, rgba(89, 231, 33, 0.18), rgba(70, 177, 225, 0.2));
}

.cta-section p {
  max-width: 680px;
  color: #3b3b3b;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 64px) 34px calc(clamp(20px, 4vw, 64px) + 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 1080px) {
  .brand-rail {
    display: none;
  }

  .site-header,
  .hero,
  .section,
  .cta-section,
  .site-footer {
    padding-left: clamp(20px, 4vw, 64px);
  }

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

  .section-indicator {
    display: none;
  }

  .card-grid,
  .service-grid,
  .use-case-grid,
  .team-stats,
  .team-grid,
  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-visual {
    width: 520px;
    opacity: 0.38;
  }
}

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

  .site-header {
    padding-inline: 16px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero,
  .section,
  .cta-section {
    padding-inline: 16px;
  }

  .site-footer {
    padding-inline: 16px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .prompt-actions,
  .diagnostic-cta,
  .cta-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .prompt-actions button,
  .cta-section a {
    width: 100%;
  }

  .card-grid,
  .service-grid,
  .use-case-grid,
  .team-stats,
  .team-filters,
  .team-grid,
  .learning-grid,
  .recommended-learning-grid,
  .opportunity-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps {
    border-top: 0;
  }

  .method-steps article {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .architecture-visual {
    display: none;
  }
}

/* Premium consulting identity refresh */
:root {
  --black: #000000;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(70, 177, 225, 0.22);
  --white: #ffffff;
  --soft: #000000;
  --green: #59e721;
  --blue: #46b1e1;
  --violet: #46b1e1;
  --petrol: #000000;
  --panel: rgba(0, 0, 0, 0.72);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

body {
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 18% 0%, rgba(70, 177, 225, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(70, 177, 225, 0.14), transparent 24rem),
    linear-gradient(180deg, #000000 0%, #000000 48%, #000000 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(89, 231, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 177, 225, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 72%);
}

.brand-rail,
.site-footer {
  background: #000000;
}

.brand-rail {
  border-right: 1px solid rgba(89, 231, 33, 0.16);
  box-shadow: 18px 0 60px rgba(0, 0, 0, 0.28);
}

.rail-line {
  background: linear-gradient(180deg, var(--blue), rgba(70, 177, 225, 0.1));
}

.rail-line::before,
.rail-mark,
.rail-sweep {
  color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 26px rgba(70, 177, 225, 0.72);
}

.rail-mark,
.rail-sweep {
  background: transparent;
}

.rail-text::first-letter {
  color: var(--blue);
}

.site-header {
  background: #000000;
  border-bottom: 1px solid rgba(70, 177, 225, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: none;
}

.desktop-nav {
  color: rgba(255, 255, 255, 0.62);
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.section-indicator strong {
  color: #ffffff;
}

.desktop-nav a.is-active {
  background: rgba(70, 177, 225, 0.11);
}

.desktop-nav a.is-active::after {
  background: linear-gradient(90deg, var(--green), var(--blue), var(--violet));
}

.section-indicator {
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(70, 177, 225, 0.13);
}

.header-cta,
.cta-section a,
.prompt-actions button,
.diagnostic-cta a,
.learning-card a,
.learning-action,
.team-card-footer button,
.team-expanded button {
  color: #000000;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 14px 38px rgba(70, 177, 225, 0.18);
}

.hero {
  min-height: calc(100vh - 72px);
  align-content: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.84) 39%, rgba(0, 0, 0, 0.34) 72%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.94)),
    url("./assets/ciclic-complexity-hero.png") center / cover no-repeat;
}

.hero::before,
.section::before,
.cta-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(circle at 74% 32%, rgba(70, 177, 225, 0.18), transparent 24rem),
    linear-gradient(120deg, transparent 0 36%, rgba(89, 231, 33, 0.08) 47%, transparent 58%),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.038) 0 1px, transparent 1px 38px);
  mix-blend-mode: screen;
}

.hero-copy,
.diagnostic-shell {
  max-width: 760px;
}

.eyebrow,
.section-label,
.result-kicker {
  color: var(--blue);
  letter-spacing: 0.15em;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
  animation: none;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 5vw, 5.55rem);
  line-height: 0.98;
}

.hero-lede {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.55vw, 1.25rem);
}

.hero-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.hero-proof-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(70, 177, 225, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.diagnostic-intro span,
.section-heading h2,
.cta-section h2 {
  color: #ffffff;
}

.diagnostic-intro p,
.section-subtitle,
.section-heading > p,
.cta-section p {
  color: rgba(255, 255, 255, 0.68);
}

.conversation-card,
.result-panel,
.problem-card,
.service-card,
.use-case-card,
.team-card,
.learning-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.78));
  border-color: rgba(70, 177, 225, 0.15);
  box-shadow: var(--shadow);
}

.conversation-card,
.result-panel {
  backdrop-filter: blur(24px);
}

.assistant-row,
.user-message,
.diagnostic-cta {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.96), rgba(59, 59, 59, 0.94));
  border-bottom: 1px solid rgba(70, 177, 225, 0.18);
}

.assistant-dot {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(70, 177, 225, 0.16), 0 0 24px rgba(70, 177, 225, 0.54);
}

textarea,
.final-diagnosis,
.follow-up-question,
.opportunity-card,
.use-case-summary div,
.value-proof,
.insight-block,
.team-facts div,
.internal-profile pre {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(70, 177, 225, 0.14);
}

textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

textarea:focus {
  border-color: rgba(70, 177, 225, 0.72);
  box-shadow: 0 0 0 4px rgba(70, 177, 225, 0.13);
}

.result-panel p,
.result-panel li,
.problem-card p,
.service-card p,
.use-case-summary p,
.use-case-detail p,
.use-case-detail li,
.learning-card p,
.team-card-top p,
.team-location,
.team-stats span,
.team-facts p,
.hint,
.use-case-video-caption,
.internal-profile,
.priority-tag {
  color: rgba(255, 255, 255, 0.64);
}

.result-panel h2,
.problem-card h3,
.service-card h3,
.use-case-header h3,
.learning-card h3,
.team-card h3,
.method-steps h3 {
  color: #ffffff;
}

.architecture-visual {
  top: 15%;
  right: clamp(28px, 5vw, 82px);
  width: min(520px, 38vw);
  opacity: 0.52;
  border-color: rgba(70, 177, 225, 0.18);
  filter: drop-shadow(0 0 44px rgba(70, 177, 225, 0.18));
}

.architecture-visual::before {
  border-color: rgba(89, 231, 33, 0.22);
}

.architecture-visual::after {
  border-color: rgba(70, 177, 225, 0.28);
}

.visual-node {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border-color: rgba(70, 177, 225, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.visual-core {
  color: #000000;
  background: linear-gradient(135deg, rgba(89, 231, 33, 0.92), rgba(70, 177, 225, 0.86), rgba(70, 177, 225, 0.72));
}

.section {
  position: relative;
  background: rgba(0, 0, 0, 0.96);
  overflow: hidden;
}

.section::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(70, 177, 225, 0.11), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(70, 177, 225, 0.1), transparent 22rem);
}

.section > * {
  position: relative;
  z-index: 1;
}

.services-band,
.team-section,
.learning-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.98));
}

.use-cases-section,
.methodology {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.98));
}

.card-icon {
  color: #000000;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-color: rgba(89, 231, 33, 0.28);
}

.card-icon-data,
.card-icon-spark {
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.card-icon-people {
  background: linear-gradient(135deg, var(--green), #59e721);
}

.problem-card,
.service-card,
.use-case-card,
.learning-card,
.team-card {
  position: relative;
  overflow: hidden;
}

.problem-card::before,
.service-card::before,
.use-case-card::before,
.learning-card::before,
.team-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(70, 177, 225, 0.1), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 22px);
  opacity: 0.62;
  pointer-events: none;
}

.problem-card > *,
.service-card > *,
.use-case-card > *,
.learning-card > *,
.team-card > * {
  position: relative;
  z-index: 1;
}

.service-card.is-transversal {
  background:
    linear-gradient(135deg, rgba(89, 231, 33, 0.14), rgba(70, 177, 225, 0.1), rgba(70, 177, 225, 0.12)),
    rgba(0, 0, 0, 0.84);
  border-color: rgba(89, 231, 33, 0.3);
}

.service-badge,
.use-case-header span,
.learning-card-header span,
.learning-card-header strong,
.learning-tags span,
.capability-badge,
.use-case-tags span {
  color: #ffffff;
  background: rgba(70, 177, 225, 0.12);
  border: 1px solid rgba(70, 177, 225, 0.18);
}

.insight-panel {
  border-top-color: rgba(70, 177, 225, 0.14);
}

.insight-panel summary,
.use-case-detail summary,
.team-expanded a {
  color: var(--green);
}

.insight-panel summary::after,
.use-case-detail summary::after {
  color: #000000;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.capability-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.capability-tile {
  display: grid;
  gap: 13px;
  min-height: 320px;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(59, 59, 59, 0.88), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 80% 8%, rgba(70, 177, 225, 0.18), transparent 13rem);
  border: 1px solid rgba(70, 177, 225, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.capability-tile span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-tile h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.16;
}

.capability-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.45;
}

.capability-visual {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(70, 177, 225, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(70, 177, 225, 0.14);
  border-radius: 8px;
}

.capability-visual::before,
.capability-visual::after {
  position: absolute;
  content: "";
}

.capability-visual::before {
  inset: 20px;
  border: 1px solid rgba(70, 177, 225, 0.35);
  border-radius: 999px;
  box-shadow:
    36px 20px 0 -35px var(--green),
    84px 54px 0 -34px var(--blue),
    128px 16px 0 -35px var(--violet);
}

.capability-visual::after {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(89, 231, 33, 0.36) 22% 23%, transparent 23% 54%, rgba(70, 177, 225, 0.34) 54% 55%, transparent 55%),
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(255, 255, 255, 0.035) 17px 18px);
}

.capability-process .capability-visual::before {
  border-radius: 6px;
  box-shadow:
    44px 0 0 -38px var(--green),
    88px 36px 0 -38px var(--blue),
    130px 72px 0 -38px var(--green);
}

.capability-data .capability-visual::before {
  inset: 18px 28px;
  border-radius: 50%;
  box-shadow:
    22px 26px 0 -33px var(--green),
    78px 14px 0 -32px var(--blue),
    118px 62px 0 -32px var(--violet);
}

.capability-crm .capability-visual::after {
  background:
    radial-gradient(circle at 24% 42%, rgba(89, 231, 33, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 32%, rgba(70, 177, 225, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 68%, rgba(70, 177, 225, 0.42) 0 4px, transparent 5px),
    linear-gradient(110deg, transparent 0 22%, rgba(70, 177, 225, 0.25) 22% 23%, transparent 23% 65%, rgba(89, 231, 33, 0.24) 65% 66%, transparent 66%);
}

.capability-erp .capability-visual::after {
  background:
    linear-gradient(90deg, transparent 12%, rgba(89, 231, 33, 0.28) 12% 13%, transparent 13% 38%, rgba(70, 177, 225, 0.3) 38% 39%, transparent 39% 64%, rgba(70, 177, 225, 0.26) 64% 65%, transparent 65%),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(255, 255, 255, 0.04) 20px 21px);
}

.capability-change .capability-visual::before {
  inset: 28px 18px;
  border-radius: 999px;
  box-shadow:
    34px 8px 0 -34px var(--green),
    72px 20px 0 -34px var(--blue),
    112px 10px 0 -34px var(--violet);
}

.method-steps {
  border-top-color: rgba(70, 177, 225, 0.15);
}

.method-steps article {
  border-right-color: rgba(70, 177, 225, 0.15);
}

.team-stats {
  background: rgba(70, 177, 225, 0.14);
  border-color: rgba(70, 177, 225, 0.14);
}

.team-stats div,
.team-manifesto,
.team-filter-pills button {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(70, 177, 225, 0.14);
}

.team-manifesto p,
.team-hook,
.team-expanded blockquote {
  color: rgba(255, 255, 255, 0.9);
}

.team-filter-pills button.is-active {
  color: #000000;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-color: transparent;
}

.team-avatar.teal,
.team-avatar.purple,
.team-avatar.coral,
.team-avatar.blue,
.team-avatar.amber,
.team-avatar.pink,
.team-skills .skill-1,
.team-skills .skill-2,
.team-skills .skill-3 {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(70, 177, 225, 0.14);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(59, 59, 59, 0.98), rgba(0, 0, 0, 0.98)),
    radial-gradient(circle at 88% 18%, rgba(89, 231, 33, 0.22), transparent 22rem);
}

.cta-section::before {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(70, 177, 225, 0.18) 42% 43%, transparent 43%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1080px) {
  .capability-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .diagnostic-shell {
    max-width: 900px;
  }

  .hero {
    background-position: center;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 3rem;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.96)),
      url("./assets/ciclic-complexity-hero.png") center / cover no-repeat;
  }

  .capability-map {
    grid-template-columns: 1fr;
  }

  .capability-tile {
    min-height: auto;
  }
}

/* Balance pass: keep the premium hero, restore lighter editorial sections */
.hero {
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 38%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62)),
    url("./assets/ciclic-complexity-hero.png") center / cover no-repeat;
}

.hero::before {
  background:
    radial-gradient(circle at 72% 34%, rgba(70, 177, 225, 0.11), transparent 26rem),
    linear-gradient(120deg, transparent 0 42%, rgba(89, 231, 33, 0.05) 50%, transparent 60%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 55%, rgba(70, 177, 225, 0.24), transparent 18rem),
    linear-gradient(102deg, transparent 0 44%, rgba(70, 177, 225, 0.16) 52%, rgba(89, 231, 33, 0.18) 58%, transparent 68%),
    linear-gradient(118deg, transparent 0 50%, rgba(89, 231, 33, 0.11) 55%, transparent 64%);
  mix-blend-mode: screen;
}

.hero-copy {
  padding: clamp(12px, 2vw, 28px) 0;
  max-width: min(1180px, 86vw);
}

.hero h1 {
  max-width: 1180px;
  font-size: clamp(2.65rem, 3.95vw, 4.65rem);
}

.hero h1 span {
  white-space: nowrap;
}

.hero-lede,
.diagnostic-shell {
  max-width: min(920px, 86vw);
}

.diagnostic-intro {
  max-width: none;
}

.architecture-visual,
.capability-map {
  display: none;
}

#problemas,
.methodology,
.team-section,
.learning-section {
  color: #3b3b3b;
  background:
    radial-gradient(circle at 82% 10%, rgba(70, 177, 225, 0.1), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

#problemas::before,
.methodology::before,
.team-section::before,
.learning-section::before {
  background:
    linear-gradient(90deg, rgba(59, 59, 59, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(59, 59, 59, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.72;
}

#problemas .section-heading h2,
.methodology .section-heading h2,
.team-section .section-heading h2,
.learning-section .section-heading h2,
#problemas .problem-card h3,
.methodology .method-steps h3,
.team-section .team-card h3,
.learning-section .learning-card h3 {
  color: #3b3b3b;
}

#problemas .section-label,
.methodology .section-label,
.team-section .section-label,
.learning-section .section-label {
  color: #59e721;
}

#problemas .section-subtitle,
#problemas .section-heading > p,
.methodology .section-subtitle,
.methodology .section-heading > p,
.team-section .section-subtitle,
.team-section .section-heading > p,
.learning-section .section-subtitle,
.learning-section .section-heading > p {
  color: #3b3b3b;
}

#problemas .problem-card,
.team-section .team-card,
.learning-section .learning-card {
  color: #3b3b3b;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92));
  border-color: rgba(59, 59, 59, 0.1);
  box-shadow: 0 18px 58px rgba(59, 59, 59, 0.08);
}

#problemas .problem-card::before,
.team-section .team-card::before,
.learning-section .learning-card::before {
  background:
    linear-gradient(135deg, rgba(70, 177, 225, 0.08), transparent 42%),
    repeating-linear-gradient(90deg, rgba(59, 59, 59, 0.03) 0 1px, transparent 1px 26px);
}

#problemas .problem-card p,
.team-section .team-card-top p,
.team-section .team-location,
.team-section .team-hook,
.team-section .team-stats span,
.team-section .team-facts p,
.learning-section .learning-card p,
.learning-section .learning-meta span {
  color: #3b3b3b;
}

.learning-section .learning-card-header span,
.learning-section .learning-card-header strong,
.learning-section .learning-tags span {
  color: #3b3b3b;
  background: rgba(70, 177, 225, 0.15);
  border: 1px solid rgba(89, 231, 33, 0.24);
}

.learning-section .learning-card-header span {
  color: #59e721;
  background: rgba(89, 231, 33, 0.22);
}

.learning-section .learning-card-header strong {
  color: #46b1e1;
  background: rgba(70, 177, 225, 0.2);
}

.learning-section .learning-tags span {
  color: #3b3b3b;
  background: rgba(59, 59, 59, 0.07);
}

.diagnostic-learning .learning-card {
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.94));
  border-color: rgba(70, 177, 225, 0.18);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.diagnostic-learning .learning-card::before {
  background:
    radial-gradient(circle at 86% 12%, rgba(70, 177, 225, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(89, 231, 33, 0.08), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px);
}

.diagnostic-learning .learning-card h3,
.diagnostic-learning .learning-meta span {
  color: #ffffff;
}

.diagnostic-learning .learning-card p,
.diagnostic-learning .learning-meta p {
  color: rgba(255, 255, 255, 0.72);
}

.diagnostic-learning .learning-card-header span,
.diagnostic-learning .learning-card-header strong,
.diagnostic-learning .learning-tags span {
  color: #ffffff;
  background: rgba(70, 177, 225, 0.14);
  border: 1px solid rgba(70, 177, 225, 0.18);
}

.diagnostic-learning .learning-card-header span {
  color: #59e721;
  background: rgba(0, 0, 0, 0.92);
  border-color: rgba(89, 231, 33, 0.42);
}

.diagnostic-learning .learning-card-header strong {
  color: #46b1e1;
  background: rgba(0, 0, 0, 0.92);
  border-color: rgba(70, 177, 225, 0.42);
}

.diagnostic-learning .learning-tags span {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
}

.diagnostic-learning .learning-meta {
  border-color: rgba(70, 177, 225, 0.14);
}

.team-section .team-stats {
  background: rgba(59, 59, 59, 0.1);
  border-color: rgba(59, 59, 59, 0.1);
}

.team-section .team-stats div,
.team-section .team-manifesto,
.team-section .team-filter-pills button,
.team-section .team-facts div {
  color: #3b3b3b;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(59, 59, 59, 0.1);
}

.team-section .country-item {
  color: #3b3b3b;
}

.team-section .team-manifesto p,
.team-section .team-expanded blockquote {
  color: #3b3b3b;
}

.team-section .team-footer,
.team-section .team-card-footer,
.methodology .method-steps,
.methodology .method-steps article,
.learning-section .learning-meta {
  border-color: rgba(59, 59, 59, 0.11);
}

.team-section .team-footer a {
  color: #3b3b3b;
}

.methodology .method-steps p,
.methodology .insight-body p,
.methodology .insight-body li {
  color: #3b3b3b;
}

.methodology .insight-block {
  color: #3b3b3b;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(59, 59, 59, 0.1);
}

.methodology .insight-body h4,
.methodology .insight-block strong {
  color: #3b3b3b;
}

#problemas .insight-panel summary,
.methodology .insight-panel summary,
.team-section .insight-panel summary,
.learning-section .insight-panel summary {
  color: #59e721;
}

#problemas .insight-panel summary::after,
.methodology .insight-panel summary::after,
.team-section .insight-panel summary::after,
.learning-section .insight-panel summary::after {
  color: #000000;
  background: linear-gradient(135deg, #59e721, #46b1e1);
}

.team-section .team-skills .skill-1,
.team-section .team-skills .skill-2,
.team-section .team-skills .skill-3 {
  color: #3b3b3b;
  background: rgba(70, 177, 225, 0.16);
  border: 1px solid rgba(89, 231, 33, 0.22);
}

.team-section .team-skills .skill-1 {
  color: #59e721;
  background: rgba(89, 231, 33, 0.22);
}

.team-section .team-skills .skill-2 {
  color: #46b1e1;
  background: rgba(70, 177, 225, 0.18);
}

.team-section .team-filter-pills button {
  color: #3b3b3b;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(59, 59, 59, 0.18);
}

.team-section .team-filter-pills button.is-active {
  color: #000000;
  background: linear-gradient(135deg, #59e721, #46b1e1);
}

.services-band {
  background:
    radial-gradient(circle at 82% 12%, rgba(70, 177, 225, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.98));
}

.services-band .section-heading {
  margin-bottom: 24px;
}

.use-cases-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(70, 177, 225, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.98));
}

@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
      url("./assets/ciclic-complexity-hero.png") center / cover no-repeat;
  }

  .hero h1 span {
    white-space: normal;
  }
}
