:root {
  --ink: #f7f8ff;
  --ink-2: #d7ddf6;
  --muted: #98a2c8;
  --line: rgba(124, 142, 255, .22);
  --paper: #070914;
  --panel: #0d1122;
  --panel-2: #121733;
  --white: #ffffff;
  --cyan: #00e6ff;
  --blue: #2478ff;
  --violet: #774cff;
  --magenta: #d93cff;
  --brand-gradient: linear-gradient(90deg, var(--magenta), var(--violet) 48%, var(--blue) 74%, var(--cyan));
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 60, 255, .13), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(0, 230, 255, .11), transparent 30%),
    var(--paper);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(520px, auto) 1fr auto auto;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(5, 7, 16, .88);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

.brand-wordmark {
  display: block;
  width: clamp(310px, 31vw, 500px);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(36, 120, 255, .24));
}

.hero-symbol {
  display: block;
  flex: 0 0 auto;
  border-radius: 8px;
  background-image: url("assets/logo-humantix.png");
  background-repeat: no-repeat;
  background-position: 50% 34%;
  box-shadow: 0 0 24px rgba(36, 120, 255, .25);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: currentColor;
  font-size: 14px;
}

.nav a {
  opacity: .82;
}

.nav a:hover {
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(0, 230, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  color: var(--ink-2);
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.language-switch button.active {
  color: var(--white);
  background: var(--brand-gradient);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 750;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  border: 0;
  background: var(--brand-gradient);
  box-shadow: 0 14px 36px rgba(36, 120, 255, .26);
}

.btn.primary {
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow: 0 14px 36px rgba(36, 120, 255, .26);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #030511;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  top: 176px;
  right: clamp(12px, 2.4vw, 44px);
  bottom: auto;
  left: auto;
  width: min(36vw, 620px);
  height: clamp(230px, 28vw, 400px);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: .98;
  transform: none;
  filter: saturate(1.36) contrast(1.12) brightness(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 17, .98) 0%, rgba(3, 5, 17, .91) 48%, rgba(3, 5, 17, .32) 76%, rgba(3, 5, 17, .08) 100%),
    linear-gradient(0deg, rgba(3, 5, 17, .74), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(810px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 128px;
}

.hero-symbol {
  width: clamp(62px, 8vw, 86px);
  height: clamp(62px, 8vw, 86px);
  background-size: clamp(140px, 18vw, 196px) clamp(140px, 18vw, 196px);
}

.hero-word {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 850;
  letter-spacing: .27em;
  line-height: 1;
  text-shadow: 0 0 28px rgba(0, 230, 255, .22);
}

.hero-word span {
  color: var(--blue);
  letter-spacing: .18em;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--cyan);
}

.hero-content > .eyebrow {
  margin-left: clamp(14px, 2vw, 28px);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.14;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(0, 0, 0, .42);
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.14;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.btn {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .09);
}

.microcopy {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  line-height: 1.55;
}

.proof-heading {
  padding: 34px clamp(22px, 4vw, 54px) 18px;
  background: rgba(13, 17, 34, .92);
  border-top: 1px solid var(--line);
}

.proof-heading .eyebrow {
  margin: 0;
  font-size: 15px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(124, 142, 255, .18);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 168px;
  padding: 34px clamp(22px, 4vw, 54px);
  background: rgba(13, 17, 34, .92);
}

.proof-icon {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 20px;
  padding: 0 10px;
  color: var(--white);
  border: 1px solid rgba(0, 230, 255, .45);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(217, 60, 255, .22), rgba(0, 230, 255, .14));
  font-size: 12px;
  font-weight: 900;
}

.proof-strip strong {
  display: block;
  font-size: 19px;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.section,
.industry-section,
.platform-section,
.cta-section,
.problem-section,
.platform-console-section,
.services-section,
.readiness-section {
  padding: clamp(76px, 10vw, 130px) clamp(18px, 6vw, 88px);
}

.intro-grid,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.lead-block p,
.platform-copy p,
.cta-section p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--cyan);
  font-weight: 800;
}

.section-visual,
.wide-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 230, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
}

.section-visual::after,
.wide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(217, 60, 255, .12), transparent 38%),
    linear-gradient(315deg, rgba(0, 230, 255, .12), transparent 44%);
}

.section-visual img,
.wide-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}

.diagnostic-visual {
  grid-column: 1 / -1;
  height: clamp(300px, 40vw, 520px);
  margin-top: clamp(14px, 2vw, 28px);
}

.wide-visual {
  height: clamp(280px, 36vw, 460px);
  margin: 0 0 clamp(28px, 5vw, 56px);
}

.services-visual {
  height: clamp(280px, 35vw, 440px);
  margin-bottom: clamp(24px, 4vw, 42px);
}

.problem-section {
  background:
    linear-gradient(180deg, rgba(7, 9, 20, 1), rgba(13, 17, 34, .98)),
    var(--paper);
}

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

.comparison-grid article,
.service-grid article,
.readiness-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
}

.comparison-grid article {
  min-height: 250px;
  padding: 26px;
}

.comparison-grid small,
.service-grid span,
.readiness-card span,
.console-topline {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-grid strong {
  display: block;
  margin: 26px 0 14px;
  font-size: 24px;
}

.comparison-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.question-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(124, 142, 255, .2);
}

.question-heading {
  padding: 34px clamp(22px, 4vw, 54px) 18px;
  background: #080b19;
  border-top: 1px solid rgba(124, 142, 255, .2);
}

.question-heading .eyebrow {
  margin: 0;
  font-size: 15px;
}

.question-band article {
  min-height: 320px;
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background: #080b19;
}

.question-band article:nth-child(2) {
  background: #0b1027;
}

.question-band article:nth-child(3) {
  background: #110b27;
}

.question-band span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand-gradient);
  font-weight: 900;
}

.question-band p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 38px;
}

#modelo {
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

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

.process-card {
  min-height: 190px;
  padding: 22px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.process-card:hover,
.process-card.active {
  transform: translateY(-3px);
  border-color: rgba(0, 230, 255, .62);
  box-shadow: var(--shadow);
}

.process-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand-gradient);
  font-weight: 900;
}

.process-card strong,
.process-card small {
  display: block;
}

.process-card small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.process-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 18px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 230, 255, .2);
  background:
    linear-gradient(135deg, rgba(217, 60, 255, .18), rgba(36, 120, 255, .16), rgba(0, 230, 255, .08)),
    #080b19;
}

.process-detail p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.62;
}

.process-detail ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.8;
}

.platform-console-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 230, 255, .13), transparent 34%),
    #050714;
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.console-layout,
.readiness-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.console-copy h3 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.console-copy p,
.readiness-section p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.console-copy ul,
.readiness-card ul {
  margin: 26px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .84);
  line-height: 1.9;
}

.console-card {
  min-height: 430px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(0, 230, 255, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(217, 60, 255, .12), rgba(36, 120, 255, .12), rgba(0, 230, 255, .06)),
    rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.console-topline strong {
  color: var(--white);
}

.console-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.console-matrix div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(3, 5, 17, .48);
}

.console-matrix small,
.console-matrix strong {
  display: block;
}

.console-matrix small {
  color: var(--muted);
}

.console-matrix strong {
  margin-top: 8px;
  font-size: 20px;
}

.console-alert {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(0, 230, 255, .22);
  border-radius: var(--radius);
  background: rgba(0, 230, 255, .08);
}

.console-alert span {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 18px rgba(0, 230, 255, .52);
}

.console-alert p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  line-height: 1.5;
}

.console-bars {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.console-bars i {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: var(--brand-gradient);
}

.console-bars .bar-long {
  width: 78%;
}

.console-bars .bar-short {
  width: 54%;
}

.console-bars .bar-mid {
  width: 68%;
}

.services-section {
  background: #080b19;
  padding-top: clamp(34px, 4vw, 58px);
}

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

.service-grid article {
  min-height: 260px;
  padding: 24px;
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border: 1px solid rgba(0, 230, 255, .35);
  border-radius: var(--radius);
  background: rgba(0, 230, 255, .08);
}

.service-grid h3 {
  margin-top: 28px;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.industry-section {
  background:
    linear-gradient(180deg, rgba(13, 17, 34, .98), rgba(7, 9, 20, 1)),
    var(--paper);
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tab {
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  cursor: pointer;
}

.tab.active {
  color: var(--white);
  border-color: transparent;
  background: var(--brand-gradient);
  font-weight: 800;
}

.industry-panel {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 28px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 230, 255, .18);
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
}

.industry-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.metric-stack {
  display: grid;
  gap: 10px;
}

.metric-stack span {
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  border: 1px solid rgba(0, 230, 255, .18);
  background: rgba(0, 230, 255, .08);
  font-weight: 800;
}

.committee {
  background: #090c1a;
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.committee-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
}

.committee-grid strong,
.committee-grid span {
  display: block;
}

.committee-grid strong {
  margin-bottom: 18px;
  font-size: 20px;
}

.committee-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.readiness-section {
  background:
    linear-gradient(135deg, rgba(217, 60, 255, .13), transparent 48%),
    #090c1a;
}

.readiness-card {
  padding: clamp(26px, 4vw, 40px);
}

.readiness-card strong {
  display: block;
  margin-top: 18px;
  font-size: 28px;
}

.readiness-card .btn {
  margin-top: 28px;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: 50px;
  color: var(--white);
  padding-top: clamp(34px, 4vw, 58px);
  background:
    linear-gradient(135deg, rgba(217, 60, 255, .12), transparent 42%),
    linear-gradient(315deg, rgba(0, 230, 255, .13), transparent 46%),
    #030511;
}

.platform-copy {
  align-self: center;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.capability-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.capability-grid span {
  display: block;
  width: 36px;
  height: 6px;
  margin-bottom: 32px;
  border-radius: 99px;
  background: var(--brand-gradient);
}

.capability-grid p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.55;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 230, 255, .18);
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.full {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: rgba(255, 255, 255, .72);
  background: #030511;
}

footer strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 88px;
  }

  .nav {
    display: none;
  }

  .brand .hero-symbol {
    width: 58px;
    height: 58px;
    background-size: 132px 132px;
  }

  .brand-wordmark {
    width: min(50vw, 390px);
  }

  .hero {
    min-height: 860px;
  }

  .hero-media {
    top: 116px;
    right: clamp(18px, 4vw, 42px);
    bottom: auto;
    width: min(58vw, 560px);
    height: 300px;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 230px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 17, 22, .94) 0%, rgba(10, 17, 22, .82) 56%, rgba(10, 17, 22, .48) 100%);
  }

  .proof-strip,
  .question-band,
  .process,
  .comparison-grid,
  .console-layout,
  .service-grid,
  .committee-grid,
  .capability-grid,
  .intro-grid,
  .industry-panel,
  .platform-section,
  .cta-section,
  .readiness-section,
  .process-detail {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
    padding: 12px 16px;
    gap: 8px;
  }

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

  .language-switch {
    padding: 2px;
  }

  .language-switch button {
    min-width: 30px;
    min-height: 30px;
    font-size: 11px;
  }

  .brand {
    gap: 10px;
  }

  .brand .hero-symbol {
    width: 42px;
    height: 42px;
    background-size: 96px 96px;
  }

  .brand-wordmark {
    display: none;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    top: 88px;
    right: 16px;
    width: min(72vw, 360px);
    height: 220px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-actions,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .committee-grid,
  .capability-grid,
  .console-matrix {
    grid-template-columns: 1fr;
  }

  .hero-word {
    letter-spacing: .12em;
  }
}
