@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/geist/Geist-Variable.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif/InstrumentSerif-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif/InstrumentSerif-Italic.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/jetbrains-mono/JetBrainsMono-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/jetbrains-mono/JetBrainsMono-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/jetbrains-mono/JetBrainsMono-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif Fallback";
  font-style: normal;
  font-weight: 400;
  src: local("Georgia");
  size-adjust: 75%;
}

@font-face {
  font-family: "Instrument Serif Fallback";
  font-style: italic;
  font-weight: 400;
  src: local("Georgia Italic"), local("Georgia");
  size-adjust: 75%;
}

:root {
  --ink: #08142b;
  --deep: #0c1e3e;
  --pine: #172b52;
  --lime: #c3d609;
  --lime-soft: #eff5b8;
  --paper: #fcfdff;
  --fog: #f3f5f9;
  --mist: #dde3ec;
  --line: #dde1e8;
  --line-dark: rgba(252, 253, 255, 0.17);
  --text: #20283a;
  --text-2: #5b6275;
  --text-on-dark: #fcfdff;
  --text-on-dark-2: #b8c3d8;
  --radius: 6px;
  --header-height: 64px;
  --header-offset: 12px;
  --site-card-lift: -4px;
  --site-card-arrow-shift: 3px;
  --site-card-motion-duration: 240ms;
  --site-card-motion-ease: cubic-bezier(.22, 1, .36, 1);
  --site-card-active-border: rgba(12, 30, 62, 0.34);
  --site-card-active-shadow: 0 24px 52px -40px rgba(8, 20, 43, 0.62);
  --site-card-active-border-dark: rgba(195, 214, 9, 0.42);
  --site-card-active-shadow-dark: 0 24px 52px -40px rgba(0, 0, 0, 0.72);
  --header-surface: rgba(12, 30, 62, 0.72);
  --header-surface-over-hero: rgba(12, 30, 62, 0.38);
  --font-sans: "Geist", Arial, sans-serif;
  --font-serif: "Instrument Serif", "Instrument Serif Fallback", Georgia, serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.solution-column[id] {
  scroll-margin-top: calc(var(--header-height) + 36px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.home-page,
.home-page .section,
.home-page .final-cta {
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

body.modal-is-open {
  overflow: hidden;
}

body.hermes-drawer-is-open {
  width: 100%;
  position: fixed;
  right: 0;
  left: 0;
}

button,
input,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 em,
h2 em {
  font-style: italic;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 1px solid var(--lime);
  outline-offset: 3px;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: var(--header-offset);
  z-index: 100;
  height: var(--header-height);
  margin-top: var(--header-offset);
  margin-bottom: calc(-1 * (var(--header-height) + var(--header-offset)));
  background: transparent;
  color: var(--text-on-dark);
  pointer-events: none;
  transition: height 220ms ease;
}

.header-inner {
  width: min(1280px, calc(100% - 40px));
  height: 100%;
  padding: 0 20px 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--header-surface);
  border: 1px solid rgba(252, 253, 255, 0.22);
  border-radius: 12px;
  box-shadow: 0 18px 46px -24px rgba(0, 0, 0, 0.82);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
  transition: width 220ms ease, padding 220ms ease, border-radius 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-over-hero .header-inner {
  background: var(--header-surface-over-hero);
  border-color: rgba(252, 253, 255, 0.16);
  box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.55);
}

.site-header.is-compact {
  height: 54px;
}

.site-header.is-compact .header-inner {
  width: min(1180px, calc(100% - 48px));
  padding-right: 16px;
  padding-left: 22px;
  border-radius: 10px;
}

.site-header.is-compact .brand-wordmark {
  width: 72px;
}

.site-header.is-compact .desktop-nav {
  gap: 24px;
}

.site-header.is-compact .login-link,
.site-header.is-compact .header-actions .header-cta {
  min-height: 34px;
}

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

.brand-wordmark {
  width: 82px;
  aspect-ratio: 981 / 452;
  display: block;
  transition: width 220ms ease;
}

.brand-wordmark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.group-candidate-page .brand-wordmark-group {
  width: 172px;
  aspect-ratio: 1660 / 540;
}

.group-candidate-page .site-header.is-compact .brand-wordmark-group {
  width: 150px;
}

.group-candidate-page .desktop-nav {
  gap: 22px;
}

.group-candidate-page .header-actions {
  gap: 12px;
}

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

.desktop-nav a,
.login-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a {
  color: rgba(252, 253, 255, 0.84);
}

.login-link {
  color: var(--text-on-dark);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.login-link:hover {
  color: var(--lime);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle,
.mobile-theme-toggle {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(252, 253, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 20, 43, 0.18);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.theme-toggle:hover,
.mobile-theme-toggle:hover,
.theme-toggle[aria-pressed="true"],
.mobile-theme-toggle[aria-pressed="true"] {
  border-color: var(--lime);
  color: var(--lime);
}

.theme-toggle-icon {
  font-size: 14px;
  line-height: 1;
}

.mobile-theme-toggle {
  width: 100%;
  margin-top: 18px;
  border-color: var(--line-dark);
  border-radius: 4px;
}

.login-link {
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(252, 253, 255, 0.28);
  border-radius: 999px;
  color: var(--paper);
}

.login-link:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.header-actions .header-cta {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
}

.header-cta-compact {
  display: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-large {
  min-height: 52px;
  padding: 0 24px;
}

.button-lime {
  background: var(--lime);
  color: var(--deep);
}

.button-lime:hover {
  background: #d0e114;
}

.site-header.is-over-hero .header-actions .header-cta {
  border-color: rgba(252, 253, 255, 0.38);
  background: rgba(252, 253, 255, 0.08);
  color: var(--paper);
}

.site-header.is-over-hero .header-actions .header-cta:hover,
.site-header.is-over-hero .header-actions .header-cta:focus-visible {
  border-color: var(--lime);
  background: rgba(8, 20, 43, 0.42);
  color: var(--lime);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button-ghost {
  border-color: rgba(252, 253, 255, 0.45);
  color: var(--paper);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--paper);
  background: rgba(252, 253, 255, 0.08);
}

.button-deep {
  background: var(--deep);
  color: var(--paper);
}

.button-deep:hover {
  background: var(--pine);
}

.button-secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--deep);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-button {
  display: none;
}

.mobile-nav {
  width: min(390px, calc(100vw - 40px));
  position: absolute;
  top: calc(100% + 8px);
  right: max(20px, calc((100vw - 1280px) / 2));
  padding: 28px 32px 36px;
  background: rgba(8, 20, 43, 0.97);
  border: 1px solid rgba(252, 253, 255, 0.2);
  border-radius: 10px;
  display: grid;
  gap: 0;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: auto;
}

.mobile-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark-2);
  text-decoration: none;
}

.mobile-nav .button {
  margin-top: 22px;
  color: var(--deep);
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--deep);
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(8, 20, 43, 0.84) 0%,
    rgba(8, 20, 43, 0.72) 42%,
    rgba(8, 20, 43, 0.36) 70%,
    rgba(8, 20, 43, 0.14) 100%
  );
}

.hero-video-controls {
  position: absolute;
  bottom: 28px;
  right: max(32px, calc((100vw - 1180px) / 2));
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-play-button,
.hero-sound-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(252, 253, 255, 0.42);
  border-radius: 4px;
  background: rgba(8, 20, 43, 0.72);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero-play-button:hover,
.hero-sound-button:hover {
  border-color: var(--lime);
  background: rgba(8, 20, 43, 0.92);
}

.hero-play-button[aria-pressed="true"],
.hero-sound-button[aria-pressed="true"] {
  border-color: rgba(252, 253, 255, 0.62);
  background: rgba(8, 20, 43, 0.92);
  color: var(--paper);
}

.hero-sound-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero-inner {
  min-height: inherit;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(150px, 16vh, 180px);
  padding-bottom: 72px;
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  margin-bottom: 18px;
  color: #657083;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1 {
  margin-bottom: 25px;
  color: var(--paper);
  font-size: 72px;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--lime);
}

.hero-copy > p {
  max-width: 660px;
  margin-bottom: 0;
  color: #d9e0ed;
  font-size: 19px;
  line-height: 1.62;
}

.hero-ai {
  width: min(50vw, 660px);
}

.hero-copy > .hero-ai {
  margin-top: auto;
}

.hero-ai-form {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 5px 6px 5px 16px;
  border: 1px solid rgba(252, 253, 255, 0.74);
  border-radius: 999px;
  background: rgba(252, 253, 255, 0.96);
  box-shadow: 0 12px 30px rgba(8, 20, 43, 0.22);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.hero-ai-form:focus-within {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(195, 214, 9, 0.16), 0 12px 30px rgba(8, 20, 43, 0.22);
}

.hero-ai-mark {
  color: #778300;
  font-size: 18px;
  line-height: 1;
}

.hero-ai-form input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.hero-ai-form input::placeholder {
  color: #596276;
  opacity: 1;
}

.hero-ai-submit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--deep);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hero-ai-submit:not(:disabled):hover {
  border-color: #d9eb18;
  background: #d9eb18;
  transform: translateY(-1px);
}

.hero-ai-submit:disabled {
  cursor: not-allowed;
  transform: none;
}

.hero-ai[data-hermes-state="not-ready"] .hero-ai-submit,
.hero-ai[data-hermes-state="not-connected"] .hero-ai-submit,
.hero-ai[data-hermes-state="error"] .hero-ai-submit,
.hermes-drawer-shell[data-hermes-state="not-ready"] .hero-ai-submit,
.hermes-drawer-shell[data-hermes-state="not-connected"] .hero-ai-submit,
.hermes-drawer-shell[data-hermes-state="error"] .hero-ai-submit {
  border-color: #d5dae3;
  background: #e4e7ec;
  color: #687185;
}

.hero-ai[data-hermes-state="pending"] .hero-ai-submit,
.hermes-drawer-shell[data-hermes-state="pending"] .hero-ai-submit {
  cursor: wait;
  opacity: 0.72;
}

.hero-ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.hero-ai-suggestions button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(252, 253, 255, 0.42);
  border-radius: 999px;
  background: rgba(8, 20, 43, 0.42);
  color: #d9e0ed;
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

@media (min-width: 1041px) {
  .hero-copy {
    justify-content: flex-end;
    transform: translateY(clamp(24px, 4vh, 40px));
  }

  .hero-copy > .hero-ai {
    margin-top: 24px;
    margin-bottom: clamp(140px, 16vh, 160px);
  }
}

.hero-ai-suggestions button:hover {
  border-color: var(--lime);
  background: rgba(12, 30, 62, 0.78);
  color: var(--paper);
}

.hero-ai-response {
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(252, 253, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 20, 43, 0.82);
  color: var(--paper);
}

.section {
  padding: 104px 0;
}

.section-light {
  background: var(--paper);
}

.section-fog {
  background: var(--fog);
}

.section-deep {
  background: var(--deep);
  color: var(--paper);
}

.section-heading h2,
.product-heading h2,
.capabilities-heading h2,
.governance-layout h2,
.founders-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 54px;
  line-height: 1.05;
  text-wrap: balance;
}

.product-heading > p,
.founders-heading > p {
  margin-bottom: 0;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.7;
}

.centered-heading {
  max-width: 790px;
  margin: 0 auto 64px;
  text-align: center;
}

.front-doors-section {
  padding-top: 78px;
}

.front-doors-section .centered-heading {
  max-width: 720px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.solution-column {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid #cbd2dd;
  border-radius: 8px;
  background: var(--paper);
}

.solution-column + .solution-column {
  border-left: 1px solid #cbd2dd;
}

.solution-door-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
  color: #657083;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.capability-icon,
.success-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--deep);
  color: var(--lime);
}

.solution-brand {
  width: 154px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.solution-brand-wordmark {
  width: 150px;
  height: auto;
  display: block;
}

.solution-brand-wordmark img {
  width: 150px;
  height: auto;
  display: block;
}

.solution-logo-dark {
  display: none !important;
}

.solution-brand-subtitle {
  width: 150px;
  margin-top: 2px;
  font-size: 17px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
}

.solution-brand-seguros .solution-brand-subtitle {
  color: var(--deep);
}

.solution-brand-beneficios .solution-brand-subtitle {
  color: var(--lime);
}

.solution-column h3 {
  max-width: 430px;
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.12;
}

.solution-column ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.solution-column li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 15px;
}

.solution-column li svg {
  flex: 0 0 auto;
  color: var(--deep);
}

.benefits-home-summary {
  margin: -12px 0 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.5;
}

.solution-door-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.solution-door-link:hover { color: var(--pine); }

.beneficios-page { background: var(--fog); }

.benefits-hero {
  padding: 0;
  overflow: hidden;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
  transform: translateX(0);
}

@media (min-width: 1041px) {
  html.benefits-entry-pending .benefits-hero {
    transform: translateX(-12px);
  }

  html.benefits-entry-active .benefits-hero {
    transform: translateX(0);
    transition: transform 240ms cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
  }
}

.benefits-hero-primary { background: var(--deep); }
.benefits-hero-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr); align-items: stretch; }
.benefits-hero-copy { min-height: 570px; display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--header-height) + 88px) clamp(52px, 5vw, 84px) 68px 0; }
.benefits-hero h1 { max-width: 700px; margin: 14px 0 22px; color: var(--paper); font-family: var(--font-serif); font-size: clamp(52px, 5.4vw, 76px); font-weight: 400; line-height: .98; text-wrap: balance; }
.benefits-hero-copy > p { max-width: 600px; margin: 0; color: var(--text-on-dark-2); font-size: 19px; line-height: 1.55; }
.benefits-hero .eyebrow { color: var(--lime); }
.benefits-hero-brand { min-height: 570px; position: relative; z-index: 0; display: flex; flex-direction: column; justify-content: space-between; padding: calc(var(--header-height) + 82px) 0 62px clamp(42px, 4.5vw, 66px); background: var(--paper); color: var(--ink); }
.benefits-hero-brand::after { content: ''; width: 100vw; position: absolute; z-index: -1; inset: 0 auto 0 100%; background: var(--paper); }
.benefits-vertical-lockup {
  width: clamp(190px, 19vw, 240px);
}
.benefits-vertical-lockup img { width: 100%; height: auto; display: block; }
.benefits-vertical-lockup span { display: block; margin-top: 4px; color: var(--lime); font-size: clamp(24px, 2.2vw, 30px); font-weight: 650; line-height: 1; text-align: center; }
.benefits-vertical-kicker { margin: 0; color: var(--text-2); font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.benefits-vertical-kicker::before { content: ''; height: 1px; display: block; margin-bottom: 18px; background: var(--line); }
.benefits-vertical-kicker span { display: block; }

.benefits-hero-choice { background: var(--fog); color: var(--ink); }
.benefits-choice-layout { min-height: 144px; display: grid; grid-template-columns: minmax(210px, .78fr) minmax(0, 2.22fr); }
.benefits-choice-heading { display: flex; flex-direction: column; justify-content: center; padding: 26px 36px 26px 0; border-right: 1px solid var(--line); }
.benefits-choice-heading h2 { max-width: 240px; margin: 8px 0 0; color: var(--ink); font-family: var(--font-serif); font-size: 31px; font-weight: 400; line-height: 1.02; }
.benefits-units { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.benefits-unit-card { min-width: 0; min-height: 144px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 24px 28px; border: 0; background: transparent; color: var(--ink); cursor: pointer; font: inherit; text-align: left; transition: background-color 160ms ease, color 160ms ease; }
.benefits-unit-card + .benefits-unit-card { border-left: 1px solid var(--line); }
.benefits-unit-card.is-selected { background: var(--deep); color: var(--paper); }
.benefits-unit-index { align-self: start; color: var(--text-2); font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; line-height: 1.5; }
.benefits-unit-copy { min-width: 0; display: grid; gap: 5px; }
.benefits-unit-copy strong { font-size: 20px; font-weight: 560; line-height: 1.1; }
.benefits-unit-copy small { color: var(--text-2); font-size: 13px; line-height: 1.35; }
.benefits-unit-meta { align-self: stretch; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; color: var(--text-2); font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.benefits-unit-meta b { color: var(--ink); font-family: var(--font-sans); font-size: 18px; font-weight: 400; }
.benefits-unit-card.is-selected .benefits-unit-index,
.benefits-unit-card.is-selected .benefits-unit-meta,
.benefits-unit-card.is-selected .benefits-unit-meta b { color: var(--lime); }
.benefits-unit-card.is-selected .benefits-unit-copy small { color: var(--text-on-dark-2); }

.benefits-detail-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 86px; align-items: start; }
.benefits-detail-grid h2, .benefits-active h2, .benefits-final h2 { margin: 14px 0 22px; color: var(--ink); font-family: var(--font-serif); font-size: clamp(40px, 4.8vw, 62px); font-weight: 400; line-height: 1.02; text-wrap: balance; }
.benefits-lead { max-width: 610px; margin: 0 0 32px; color: var(--text-2); font-size: 18px; line-height: 1.62; }
.benefits-list { padding: 30px; border: 1px solid var(--line); border-radius: 8px; }
.benefits-list h3 { margin: 0 0 18px; color: var(--ink); font-size: 15px; }
.benefits-list h3:not(:first-child) { margin-top: 30px; }
.benefits-list ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.benefits-list li { padding-left: 20px; position: relative; color: var(--text-2); line-height: 1.45; }
.benefits-list li::before { content: '✓'; position: absolute; left: 0; color: var(--lime); font-weight: 700; }
.benefits-list p { margin: 0; color: var(--text-2); line-height: 1.55; }
.benefits-detail-grid-dark h2, .benefits-detail-grid-dark .benefits-lead, .benefits-detail-grid-dark .benefits-list h3 { color: var(--paper); }
.benefits-detail-grid-dark .benefits-lead { color: var(--text-on-dark-2); }
.benefits-detail-grid-dark .benefits-list { border-color: rgba(252,253,255,.2); background: rgba(252,253,255,.04); }
.benefits-detail-grid-dark .benefits-list li, .benefits-detail-grid-dark .benefits-list p { color: var(--text-on-dark-2); }
.benefits-active { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.benefits-active h2 { margin-bottom: 0; }
.benefits-active > p { margin: 0; color: var(--text-2); font-size: 18px; line-height: 1.65; }
.benefits-final { text-align: center; }
.benefits-final .site-shell { max-width: 760px; }
.benefits-final-actions { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }

@media (max-width: 760px) {
  .benefits-hero-grid { width: calc(100% - 32px); display: flex; flex-direction: column; }
  .benefits-hero-brand { min-height: 0; order: 1; padding: calc(var(--header-height) + 28px) 0 16px; }
  .benefits-hero-brand::before { content: ''; width: 100vw; position: absolute; z-index: -1; inset: 0 100% 0 auto; background: var(--paper); }
  .benefits-vertical-lockup { width: 142px; }
  .benefits-vertical-lockup span { margin-top: 1px; font-size: 20px; text-align: left; }
  .benefits-vertical-kicker { margin-top: 16px; font-size: 8px; letter-spacing: .1em; }
  .benefits-vertical-kicker::before { margin-bottom: 9px; }
  .benefits-hero-copy { min-height: 0; order: 2; padding: 30px 0 34px; }
  .benefits-hero h1 { margin: 10px 0 16px; font-size: clamp(42px, 12vw, 48px); line-height: .95; }
  .benefits-hero-copy > p { font-size: 16px; line-height: 1.45; }
  .benefits-choice-layout { width: calc(100% - 32px); min-height: 0; display: block; }
  .benefits-choice-heading { padding: 17px 0 13px; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefits-choice-heading h2 { max-width: none; margin-top: 5px; font-size: 26px; }
  .benefits-units, .benefits-detail-grid, .benefits-active { grid-template-columns: 1fr; }
  .benefits-unit-card { min-height: 76px; gap: 13px; padding: 13px 0; }
  .benefits-unit-card + .benefits-unit-card { border-top: 1px solid var(--line); border-left: 0; }
  .benefits-unit-copy { gap: 2px; }
  .benefits-unit-copy strong { font-size: 17px; }
  .benefits-unit-copy small { font-size: 12px; }
  .benefits-unit-meta { min-width: 42px; }
  .benefits-detail-grid { gap: 42px; }
  .benefits-final-actions { align-items: stretch; flex-direction: column; }
}

.product-section {
  padding-bottom: 86px;
}

.product-heading,
.founders-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 84px;
  align-items: end;
  margin-bottom: 36px;
}

.product-heading h2,
.founders-heading h2 {
  color: var(--paper);
}

.product-heading > p,
.founders-heading > p {
  color: var(--text-on-dark-2);
}

.segmented-control {
  width: fit-content;
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  padding: 4px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
}

.segmented-control button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--text-on-dark-2);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.segmented-control button.active {
  background: var(--paper);
  color: var(--deep);
}

.product-figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: visible;
  background: transparent;
}

.product-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.product-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.product-benefits span {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark-2);
  font-size: 14px;
}

.product-benefits svg,
.product-benefits b {
  color: var(--lime);
}

.capabilities-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.capabilities-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.capabilities-heading p,
.governance-layout > div > p,
.final-cta p {
  margin: 24px 0 0;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}

.capabilities-list {
  display: grid;
  gap: 24px;
}

.capability-card {
  position: relative;
  min-height: 310px;
  padding: 32px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px -36px rgba(8, 20, 43, 0.45);
  scroll-margin-top: calc(var(--header-height) + 32px);
}

.capability-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 32px;
  width: 54px;
  height: 2px;
  background: var(--lime);
}

.capability-card-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.capability-summary {
  min-width: 0;
}

.capability-title {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}

.capability-intro {
  max-width: 570px;
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.capability-detail-grid {
  margin: 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  border-top: 1px solid var(--line);
}

.capability-detail-grid div {
  min-width: 0;
}

.capability-detail-grid dt {
  color: var(--deep);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.capability-detail-grid dd {
  margin: 8px 0 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.55;
}

.governance-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
  align-items: center;
}

.governance-points {
  border-top: 1px solid #cbd2dd;
}

.governance-points > div {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #cbd2dd;
  color: var(--ink);
  font-weight: 550;
}

.governance-points svg,
.governance-points b {
  color: var(--deep);
  flex: 0 0 auto;
}

.governance-section.section-deep .governance-layout h2 {
  color: var(--paper);
}

.governance-section.section-deep .governance-layout > div > p {
  color: var(--text-on-dark-2);
}

.governance-section.section-deep .governance-points {
  border-color: var(--line-dark);
}

.governance-section.section-deep .governance-points > div {
  border-color: var(--line-dark);
  color: var(--paper);
}

.governance-section.section-deep .governance-points b {
  color: var(--lime);
}

.founders-section {
  padding-bottom: 112px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.founder-card {
  position: relative;
  min-width: 0;
  margin: 0;
  perspective: 1200px;
}

.founder-card-inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 460ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.founder-card.is-flipped .founder-card-inner {
  transform: rotateY(180deg);
}

.founder-card-face {
  grid-area: 1 / 1;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--header-surface);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.founder-card-front {
  transform: rotateY(0deg);
}

.founder-card-back {
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transform: rotateY(180deg);
  background: var(--paper);
  color: var(--ink);
}

.founder-photo-button {
  position: relative;
  width: 100%;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  background: var(--paper);
  color: inherit;
  cursor: pointer;
}

.founder-photo-button picture {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.founder-photo-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 16%;
  transition: transform 260ms ease, filter 260ms ease;
}

.founder-photo-button:hover img,
.founder-photo-button:focus-visible img {
  transform: scale(1.015);
  filter: contrast(1.04);
}

.founder-photo-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: var(--header-surface);
  color: var(--paper);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.founder-card-meta {
  min-height: 80px;
  padding: 18px;
  border-top: 1px solid var(--line-dark);
}

.founder-card-front h3 {
  margin: 0 0 4px;
  color: var(--paper);
  font-size: 16px;
}

.founder-card-meta p {
  margin: 0;
  color: var(--text-on-dark-2);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.founder-card-back h3 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
}

.founder-card-back .founder-card-role {
  margin: 0;
  color: var(--deep);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.founder-card-back .founder-card-bio {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
}

.founder-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.founder-card-actions a,
.founder-card-actions button {
  min-height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.founder-card-actions a:hover,
.founder-card-actions button:hover {
  color: #667300;
}

/* Padrão RIZQ de movimento para cards do site público. */
.site-motion-card {
  transform: translateY(0);
  transition:
    transform var(--site-card-motion-duration) var(--site-card-motion-ease),
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow var(--site-card-motion-duration) var(--site-card-motion-ease);
}

.site-motion-card [data-card-motion-arrow] {
  display: inline-block;
  transform: translateX(0);
  transition: transform var(--site-card-motion-duration) var(--site-card-motion-ease);
}

@media (min-width: 761px) {
  .site-motion-card:focus-visible,
  .site-motion-card--composite:focus-within {
    z-index: 1;
    border-color: var(--site-card-active-border);
    box-shadow: var(--site-card-active-shadow);
    transform: translateY(var(--site-card-lift));
  }

  .benefits-unit-card.site-motion-card:focus-visible {
    box-shadow:
      inset 0 0 0 1px var(--site-card-active-border),
      var(--site-card-active-shadow);
  }

  .site-motion-card:focus-visible [data-card-motion-arrow],
  .site-motion-card--composite:focus-within [data-card-motion-arrow] {
    transform: translateX(var(--site-card-arrow-shift));
  }

  html[data-theme="dark"] .home-page .site-motion-card:focus-visible,
  html[data-theme="dark"] .home-page .site-motion-card--composite:focus-within {
    border-color: var(--site-card-active-border-dark);
    box-shadow: var(--site-card-active-shadow-dark);
  }
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  .benefits-unit-card:not(.is-selected):hover {
    background: var(--paper);
  }

  .site-motion-card:hover {
    z-index: 1;
    border-color: var(--site-card-active-border);
    box-shadow: var(--site-card-active-shadow);
    transform: translateY(var(--site-card-lift));
  }

  .benefits-unit-card.site-motion-card:hover {
    box-shadow:
      inset 0 0 0 1px var(--site-card-active-border),
      var(--site-card-active-shadow);
  }

  .site-motion-card:hover [data-card-motion-arrow] {
    transform: translateX(var(--site-card-arrow-shift));
  }

  html[data-theme="dark"] .home-page .site-motion-card:hover {
    border-color: var(--site-card-active-border-dark);
    box-shadow: var(--site-card-active-shadow-dark);
  }
}

.final-cta {
  padding: 78px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.final-cta-inner > div {
  max-width: 760px;
}

.final-cta h2 {
  font-size: 48px;
}

.site-footer {
  padding: 80px 0 48px;
  background:
    radial-gradient(900px 680px at 6% 96%, rgba(195, 214, 9, 0.04) 0%, transparent 56%),
    var(--ink);
  color: var(--paper);
}

.footer-panel {
  padding: 54px 54px 34px;
  background: rgba(10, 25, 50, 0.62);
  border: 1px solid rgba(252, 253, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 24px 54px -34px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  display: grid;
  gap: 48px;
}

.footer-wordmark {
  width: 86px;
}

.group-candidate-page .footer-wordmark.brand-wordmark-group {
  width: 188px;
}

.footer-brand p {
  max-width: 270px;
  margin: 22px 0 0;
  color: var(--text-on-dark-2);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
}

.footer-brand p em {
  font-style: italic;
}

.group-candidate-disclaimer {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(195, 214, 9, 0.28);
  border-radius: 6px;
  background: rgba(195, 214, 9, 0.05);
  color: #d9e0ed;
  font-size: 12px;
  line-height: 1.55;
}

.footer-socials {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(252, 253, 255, 0.2);
  border-radius: 4px;
  color: var(--text-on-dark-2);
  transition: border-color 160ms ease, color 160ms ease;
}

.footer-socials a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.footer-socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-socials svg[fill="none"] {
  fill: none;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-on-dark-2);
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--lime);
}

.footer-divider {
  height: 1px;
  margin: 44px 0 24px;
  background: var(--line-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: #8794ac;
  font-family: var(--font-mono);
  font-size: 10px;
}

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

.footer-legal-links a {
  color: #9ba7bb;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--lime);
}

.footer-disclaimer {
  max-width: 920px;
  margin: 22px 0 0;
  color: #8794ac;
  font-size: 11px;
  line-height: 1.7;
}

.hermes-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 220ms ease;
}

.hermes-drawer-backdrop[hidden] {
  display: none;
}

.hermes-drawer-backdrop.is-open {
  opacity: 1;
}

.hermes-drawer {
  width: min(480px, 100%);
  height: 100svh;
  height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.26);
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.hermes-drawer-backdrop.is-open .hermes-drawer {
  transform: translateX(0);
}

.hermes-drawer-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hermes-drawer-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.hermes-drawer-header > div {
  display: grid;
  gap: 2px;
}

.hermes-drawer-brand {
  color: var(--deep);
  font-size: 16px;
  font-weight: 700;
}

.hermes-drawer-role {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hermes-drawer-close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--fog);
  color: var(--deep);
  cursor: pointer;
  font-size: 20px;
}

.hermes-drawer-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 42px 28px 30px;
}

.hermes-drawer-body .eyebrow {
  margin-bottom: 12px;
  color: #778300;
}

.hermes-drawer-body h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.02;
}

.hermes-drawer-body > p:not(.visually-hidden) {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
}

.hermes-drawer-suggestions {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.hermes-drawer-suggestions button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.hermes-drawer-suggestions button:hover {
  border-color: var(--lime);
  background: var(--fog);
  color: var(--deep);
}

.hermes-drawer-response {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--fog);
  color: var(--text-2);
}

.hermes-drawer-footer {
  padding: 18px 28px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.hermes-drawer-footer .hero-ai-form {
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-left: 18px;
  border-color: var(--line);
  background: var(--fog);
  box-shadow: none;
}

.hermes-drawer-footer .hero-ai-submit {
  width: 46px;
  min-height: 46px;
  padding: 0;
}

.hermes-human-link {
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}

html[data-theme="dark"] .home-page .hermes-drawer {
  border-left: 1px solid rgba(252, 253, 255, 0.16);
  background: #090909;
  color: var(--paper);
}

html[data-theme="dark"] .home-page .hermes-drawer-header,
html[data-theme="dark"] .home-page .hermes-drawer-footer {
  border-color: rgba(252, 253, 255, 0.16);
  background: #090909;
}

html[data-theme="dark"] .home-page .hermes-drawer-brand,
html[data-theme="dark"] .home-page .hermes-drawer-body h2,
html[data-theme="dark"] .home-page .hermes-human-link {
  color: var(--paper);
}

html[data-theme="dark"] .home-page .hermes-drawer-role,
html[data-theme="dark"] .home-page .hermes-drawer-body > p:not(.visually-hidden),
html[data-theme="dark"] .home-page .hermes-drawer-suggestions button {
  color: var(--text-on-dark-2);
}

html[data-theme="dark"] .home-page .hermes-drawer-close,
html[data-theme="dark"] .home-page .hermes-drawer-footer .hero-ai-form,
html[data-theme="dark"] .home-page .hermes-drawer-response {
  border-color: rgba(252, 253, 255, 0.16);
  background: #111;
  color: var(--paper);
}

html[data-theme="dark"] .home-page .hermes-drawer-footer input {
  color: var(--paper);
}

html[data-theme="dark"] .home-page .hermes-drawer-footer input::placeholder {
  color: var(--text-on-dark-2);
}

html[data-theme="dark"] .home-page .hermes-drawer-suggestions button {
  border-color: rgba(252, 253, 255, 0.18);
}

html[data-theme="dark"] .home-page .hermes-drawer-suggestions button:hover {
  border-color: var(--lime);
  background: #111;
  color: var(--paper);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 20, 43, 0.82);
  backdrop-filter: blur(7px);
}

.access-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--deep);
  cursor: pointer;
}

.modal-progress {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-right: 50px;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.access-modal h2 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.08;
}

.modal-intro,
.modal-success > p {
  margin-bottom: 24px;
  color: var(--text-2);
  font-size: 14px;
}

.form-fields {
  display: grid;
  gap: 8px;
}

.form-location-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.4fr);
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-fields label,
.form-fields legend {
  color: var(--deep);
  font-size: 12px;
  font-weight: 650;
}

.form-fields label > span,
.form-fields legend > span {
  color: #717a8c;
  font-weight: 500;
}

.form-fields input:not([type="checkbox"]),
.form-fields select {
  width: 100%;
  min-height: 48px;
  margin-bottom: 9px;
  padding: 0 13px;
  border: 1px solid #cbd2dd;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.form-fields fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid #cbd2dd;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-fields legend {
  padding: 0 6px;
}

.form-fields fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-weight: 500;
}

.form-fields input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--lime);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.privacy-note {
  margin: 16px 0 0;
  color: #717a8c;
  font-size: 11px;
}

.privacy-note a {
  color: var(--deep);
  font-weight: 650;
}

.form-error {
  margin: 14px 0 0;
  color: #a51f2b;
  font-size: 13px;
}

.modal-success {
  padding: 18px 0 4px;
}

.modal-success .success-icon {
  margin-bottom: 28px;
}

.modal-success .eyebrow {
  margin-bottom: 0;
}

.modal-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

html[data-theme="dark"],
html[data-theme="dark"] body.home-page {
  background: #000;
}

html[data-theme="dark"] body.home-page {
  color: var(--paper);
}

html[data-theme="dark"] .home-page .section-fog {
  background: #000;
}

html[data-theme="dark"] .home-page .section-light,
html[data-theme="dark"] .home-page .section-deep,
html[data-theme="dark"] .home-page .final-cta,
html[data-theme="dark"] .home-page .site-footer {
  background: #000;
}

html[data-theme="dark"] .home-page {
  --header-surface: rgba(0, 0, 0, 0.72);
  --header-surface-over-hero: rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] .home-page .header-inner {
  background: var(--header-surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme="dark"] .home-page .site-header.is-over-hero .header-inner {
  background: var(--header-surface-over-hero);
}

html[data-theme="dark"] .home-page .hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.72) 42%,
    rgba(0, 0, 0, 0.34) 72%,
    rgba(0, 0, 0, 0.14) 100%
  );
}

html[data-theme="dark"] .home-page .mobile-nav {
  background: rgba(0, 0, 0, 0.97);
}

html[data-theme="dark"] .home-page .footer-panel {
  background: rgba(8, 8, 8, 0.78);
}

html[data-theme="dark"] .home-page .hero-play-button,
html[data-theme="dark"] .home-page .hero-sound-button,
html[data-theme="dark"] .home-page .hero-ai-response {
  background: rgba(0, 0, 0, 0.82);
}

html[data-theme="dark"] .home-page .hero-play-button:hover,
html[data-theme="dark"] .home-page .hero-sound-button:hover,
html[data-theme="dark"] .home-page .hero-play-button[aria-pressed="true"],
html[data-theme="dark"] .home-page .hero-sound-button[aria-pressed="true"] {
  background: rgba(0, 0, 0, 0.94);
}

html[data-theme="dark"] .home-page .section-heading h2,
html[data-theme="dark"] .home-page .capabilities-heading h2,
html[data-theme="dark"] .home-page .governance-layout h2,
html[data-theme="dark"] .home-page .final-cta h2,
html[data-theme="dark"] .home-page .capability-title {
  color: var(--paper);
}

html[data-theme="dark"] .home-page .section-heading .eyebrow,
html[data-theme="dark"] .home-page .capabilities-heading .eyebrow,
html[data-theme="dark"] .home-page .governance-layout .eyebrow,
html[data-theme="dark"] .home-page .final-cta .eyebrow {
  color: var(--lime);
}

html[data-theme="dark"] .home-page .capabilities-heading p,
html[data-theme="dark"] .home-page .capability-intro,
html[data-theme="dark"] .home-page .capability-detail-grid dd,
html[data-theme="dark"] .home-page .governance-layout > div > p,
html[data-theme="dark"] .home-page .final-cta p {
  color: var(--text-on-dark-2);
}

html[data-theme="dark"] .home-page .solution-column {
  border-color: var(--line-dark);
  background: rgba(252, 253, 255, 0.04);
}

html[data-theme="dark"] .home-page .solution-column h3 {
  color: var(--paper);
}

html[data-theme="dark"] .home-page .solution-column li,
html[data-theme="dark"] .home-page .benefits-home-summary,
html[data-theme="dark"] .home-page .solution-door-topline {
  color: var(--text-on-dark-2);
}

html[data-theme="dark"] .home-page .solution-door-link,
html[data-theme="dark"] .home-page .solution-brand-beneficios .solution-brand-subtitle {
  color: var(--lime);
}

html[data-theme="dark"] .home-page .solution-brand-seguros .solution-brand-subtitle {
  color: var(--paper);
}

html[data-theme="dark"] .home-page .solution-logo-light {
  display: none !important;
}

html[data-theme="dark"] .home-page .solution-logo-dark {
  display: block !important;
}

html[data-theme="dark"] .home-page .capability-card,
html[data-theme="dark"] .home-page .capability-detail-grid,
html[data-theme="dark"] .home-page .governance-points,
html[data-theme="dark"] .home-page .governance-points > div,
html[data-theme="dark"] .home-page .final-cta {
  border-color: var(--line-dark);
}

html[data-theme="dark"] .home-page .capability-card {
  background: rgba(252, 253, 255, 0.04);
  box-shadow: none;
}

html[data-theme="dark"] .home-page .capability-icon {
  border: 1px solid rgba(195, 214, 9, 0.42);
  background: rgba(195, 214, 9, 0.08);
}

html[data-theme="dark"] .home-page .capability-detail-grid dt,
html[data-theme="dark"] .home-page .governance-points b {
  color: var(--lime);
}

html[data-theme="dark"] .home-page .governance-points > div {
  color: var(--paper);
}

html[data-theme="dark"] .home-page .final-cta .button-deep {
  background: var(--lime);
  color: var(--deep);
}

@media (max-width: 1040px) {
  .site-shell {
    width: min(100% - 48px, 960px);
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-ai {
    width: min(100%, 660px);
  }

  .section-heading h2,
  .product-heading h2,
  .capabilities-heading h2,
  .governance-layout h2,
  .founders-heading h2 {
    font-size: 46px;
  }

  .product-heading,
  .founders-heading {
    gap: 48px;
  }

  .capabilities-layout,
  .governance-layout {
    gap: 58px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --header-offset: 8px;
  }

  .site-shell {
    width: calc(100% - 40px);
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header .header-inner {
    width: calc(100% - 20px);
    padding: 0 12px 0 18px;
    border-radius: 10px;
    gap: 14px;
  }

  .site-header.is-compact {
    height: 56px;
  }

  .site-header.is-compact .header-inner {
    width: calc(100% - 20px);
    padding-right: 12px;
    padding-left: 18px;
  }

  .mobile-nav {
    width: calc(100vw - 20px);
    right: 10px;
    padding: 22px 20px 26px;
  }

  .brand-link .brand-wordmark {
    width: 74px;
  }

  .group-candidate-page .brand-link .brand-wordmark-group {
    width: 142px;
  }

  .site-header.is-compact .brand-link .brand-wordmark {
    width: 66px;
  }

  .group-candidate-page .site-header.is-compact .brand-link .brand-wordmark-group {
    width: 128px;
  }

  .login-link,
  .header-cta,
  .theme-toggle {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .site-header.is-after-hero .header-actions .header-cta {
    min-height: 38px;
    display: inline-flex;
    padding: 0 14px;
    font-size: 12px;
  }

  .site-header.is-after-hero .header-cta-full {
    display: none;
  }

  .site-header.is-after-hero .header-cta-compact {
    display: inline;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    max-height: none;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(8, 20, 43, 0.84) 0%,
      rgba(8, 20, 43, 0.74) 60%,
      rgba(8, 20, 43, 0.58) 100%
    );
  }

  .hero-inner {
    padding-top: 116px;
    padding-bottom: 104px;
  }

  .hero-video-controls {
    bottom: 18px;
    right: 20px;
  }

  .hero-play-button,
  .hero-sound-button {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 1.02;
  }

  .hero-copy > p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-ai {
    width: 100%;
  }

  .hero-ai-form {
    min-height: 58px;
    gap: 8px;
    padding: 5px 6px 5px 15px;
  }

  .hero-ai-mark {
    font-size: 17px;
  }

  .hero-ai-form input {
    min-height: 46px;
    font-size: 16px;
  }

  .hero-ai-submit {
    min-height: 46px;
    gap: 8px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-ai-suggestions {
    gap: 7px;
    margin-top: 9px;
  }

  .hero-ai-suggestions button {
    min-height: 32px;
    padding: 0 11px;
    font-size: 11px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .product-heading h2,
  .capabilities-heading h2,
  .governance-layout h2,
  .founders-heading h2,
  .final-cta h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .product-heading,
  .founders-heading,
  .capabilities-layout,
  .governance-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .product-heading,
  .founders-heading {
    margin-bottom: 42px;
  }

  .product-heading > p,
  .founders-heading > p {
    font-size: 15px;
  }

  .centered-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .front-doors-section {
    padding-top: 58px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-column,
  .solution-column + .solution-column {
    padding: 28px;
    border: 1px solid #cbd2dd;
  }

  .solution-column + .solution-column {
    border-top: 1px solid #cbd2dd;
  }

  .solution-column h3 {
    font-size: 30px;
  }

  .segmented-control {
    width: 100%;
  }

  .segmented-control button {
    flex: 1;
    padding: 0 8px;
  }

  .product-benefits {
    grid-template-columns: 1fr;
  }

  .product-benefits span {
    min-height: 48px;
    border-bottom: 1px solid var(--line-dark);
  }

  .capabilities-heading {
    position: static;
  }

  .capabilities-list {
    gap: 14px;
  }

  .capability-card {
    min-height: 0;
    padding: 22px;
    gap: 22px;
  }

  .capability-card::before {
    left: 22px;
  }

  .capability-card-header {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

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

  .capability-title {
    font-size: 23px;
  }

  .capability-intro {
    font-size: 13px;
    line-height: 1.5;
  }

  .capability-detail-grid {
    padding-top: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .founders-grid {
    gap: 10px;
  }

  .founder-card-meta {
    padding: 13px;
  }

  .founder-card-front h3 {
    font-size: 14px;
  }

  .founder-card-meta p {
    font-size: 9px;
  }

  .founder-card-back {
    padding: 22px;
  }

  .final-cta {
    padding: 62px 0;
  }

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

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

  .site-footer {
    padding: 56px 0 38px;
  }

  .footer-panel {
    padding: 38px 28px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 26px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .access-modal {
    padding: 28px 22px;
  }

  .hermes-drawer {
    width: 100%;
  }

  .hermes-drawer-header {
    min-height: 76px;
    padding: 16px 20px;
  }

  .hermes-drawer-body {
    padding: 30px 20px 24px;
  }

  .hermes-drawer-body h2 {
    font-size: 38px;
  }

  .hermes-drawer-footer {
    padding: 14px 20px max(18px, env(safe-area-inset-bottom));
  }

  .access-modal h2 {
    padding-right: 24px;
    font-size: 32px;
  }

  .form-fields fieldset {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

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

@media (max-width: 420px) {
  .site-shell {
    width: calc(100% - 32px);
  }

  .mobile-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-ai-form {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-left: 13px;
  }

  .hero-ai-submit {
    padding: 0 13px;
  }

  .hero-ai-submit span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero-video-controls {
    right: 16px;
    left: 16px;
    justify-content: flex-end;
  }

  .hero-play-button,
  .hero-sound-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 9px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .founders-grid {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
  }

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

  .footer-panel {
    padding: 34px 22px 26px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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

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

  .benefits-hero,
  html.benefits-entry-pending .benefits-hero,
  html.benefits-entry-active .benefits-hero {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .site-motion-card,
  .site-motion-card:hover,
  .site-motion-card:focus-visible,
  .site-motion-card--composite:focus-within,
  .site-motion-card [data-card-motion-arrow] {
    transform: none !important;
    transition: none !important;
  }
}
