:root {
  --bg: #ece7de;
  --bg-soft: #f6f2ea;
  --panel: #0f1f2d;
  --panel-soft: #183247;
  --card: rgba(255, 252, 246, 0.84);
  --card-strong: rgba(255, 252, 246, 0.94);
  --text: #16212b;
  --text-soft: rgba(22, 33, 43, 0.72);
  --text-dark: #f5efe6;
  --text-dark-soft: rgba(245, 239, 230, 0.74);
  --line: rgba(22, 33, 43, 0.1);
  --line-dark: rgba(245, 239, 230, 0.1);
  --gold: #bf8b4a;
  --gold-deep: #99652d;
  --teal: #2b6f73;
  --shadow-lg: 0 42px 120px rgba(11, 18, 25, 0.24);
  --shadow-md: 0 24px 58px rgba(11, 18, 25, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(820px 480px at 0% 0%, rgba(191, 139, 74, 0.2), transparent 62%),
    radial-gradient(720px 460px at 100% 10%, rgba(43, 111, 115, 0.18), transparent 58%),
    linear-gradient(180deg, #f7f2ea 0%, #ece6dc 42%, #f3eee6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 33, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 43, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  opacity: 0.55;
}

::selection {
  background: rgba(191, 139, 74, 0.22);
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: "Sora", "IBM Plex Sans", sans-serif;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.16;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

a {
  color: inherit;
}

strong {
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(191, 139, 74, 0.75);
  outline-offset: 4px;
}

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--panel);
  color: var(--text-dark);
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(22, 33, 43, 0.06);
  box-shadow: 0 10px 32px rgba(11, 18, 25, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

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

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 33, 43, 0.1);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.86);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  font-size: 1rem;
  line-height: 1;
}

.lang-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(22, 33, 43, 0.84);
}

.nav-link,
.nav-cta {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-link {
  color: rgba(22, 33, 43, 0.72);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: rgba(22, 33, 43, 0.05);
}

.nav-cta,
.button.primary {
  border: 1px solid rgba(191, 139, 74, 0.3);
  background: linear-gradient(135deg, #a36e34, #cb9a58);
  color: #fff7ec;
  box-shadow: 0 14px 28px rgba(153, 101, 45, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.menu-bars {
  display: block;
  width: 18px;
  height: 12px;
  margin: 0 auto;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 2px;
  background-repeat: no-repeat;
}

.hero,
.section,
.cta-premium {
  position: relative;
}

.hero {
  padding: 1.2rem 0 2rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.hero::before {
  width: 440px;
  height: 440px;
  left: -120px;
  top: 20px;
  background: rgba(191, 139, 74, 0.18);
}

.hero::after {
  width: 560px;
  height: 560px;
  right: -160px;
  top: -140px;
  background: rgba(43, 111, 115, 0.2);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
  gap: 1.8rem;
  align-items: stretch;
  min-height: 70vh;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 3% 42% 8% 0;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.hero-copy,
.hero-card,
.platform-shell,
.capability-command,
.cta-inner {
  animation: rise 0.6s ease both;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.1rem 2rem 1.7rem;
  min-width: 0;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 72px rgba(255, 255, 255, 0.18) inset;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 1.2rem auto auto 1.2rem;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(191, 139, 74, 0));
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(43, 111, 115, 0.18), transparent 70%);
  pointer-events: none;
}

.badge,
.eyebrow,
.panel-label,
.dashboard-eyebrow,
.card-kicker,
.platform-label,
.platform-kicker,
.proof-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid rgba(22, 33, 43, 0.08);
  margin-bottom: 1.1rem;
  box-shadow: 0 12px 30px rgba(22, 33, 43, 0.06);
}

.hero-intro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.85rem;
}

.hero-intro-row span,
.hero-summary-list span,
.monitor-list span,
.hero-card-footer span,
.capability-flow span,
.cta-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-intro-row span {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(22, 33, 43, 0.08);
  color: rgba(22, 33, 43, 0.78);
  font-size: 0.88rem;
}

.hero-intro-row span::before,
.hero-summary-list span::before,
.hero-card-footer span::before,
.capability-flow span::before,
.cta-proof span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(191, 139, 74, 0.14);
}

.lead {
  max-width: 40ch;
  font-size: 1rem;
  font-size: 1.08rem;
  color: rgba(22, 33, 43, 0.76);
}

.action-row,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  align-items: center;
}

.hero-actions {
  margin: 1.6rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button-whatsapp {
  position: relative;
  gap: 0.65rem;
  border-color: rgba(43, 111, 115, 0.28);
  background: linear-gradient(135deg, rgba(22, 52, 70, 0.96), rgba(43, 111, 115, 0.92));
  color: #eef7f4;
  box-shadow: 0 18px 34px rgba(18, 53, 63, 0.22);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: linear-gradient(135deg, rgba(20, 46, 63, 1), rgba(38, 99, 103, 0.98));
  border-color: rgba(191, 139, 74, 0.36);
}

.button-whatsapp::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
  background-color: rgba(255, 247, 236, 0.96);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.02 3.2C9.05 3.2 3.4 8.8 3.4 15.7c0 2.43.7 4.76 2.03 6.76L3.2 28.8l6.52-2.1a12.9 12.9 0 0 0 6.3 1.62h.01c6.96 0 12.58-5.6 12.58-12.5S22.99 3.2 16.02 3.2Zm0 22.98h-.01a10.8 10.8 0 0 1-5.5-1.5l-.4-.24-3.87 1.24 1.26-3.75-.26-.39a10.62 10.62 0 0 1-1.65-5.7c0-5.87 4.81-10.64 10.43-10.64 5.75 0 10.43 4.76 10.43 10.62 0 5.87-4.69 10.65-10.43 10.65Zm5.72-8.03c-.31-.15-1.85-.9-2.14-1-.29-.1-.5-.15-.72.15-.21.3-.82 1-1.01 1.2-.19.2-.37.22-.69.07-.31-.15-1.32-.48-2.51-1.53-.93-.82-1.56-1.83-1.74-2.14-.18-.3-.02-.47.13-.62.14-.14.31-.37.46-.55.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.72-1.72-.98-2.36-.26-.62-.52-.53-.72-.54h-.61c-.2 0-.52.07-.8.37-.27.3-1.05 1.02-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.13 3.4 5.26 4.63 2.61 1.03 3.14.82 3.7.77.56-.05 1.85-.75 2.11-1.48.27-.72.27-1.34.19-1.47-.08-.12-.29-.2-.6-.35Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.02 3.2C9.05 3.2 3.4 8.8 3.4 15.7c0 2.43.7 4.76 2.03 6.76L3.2 28.8l6.52-2.1a12.9 12.9 0 0 0 6.3 1.62h.01c6.96 0 12.58-5.6 12.58-12.5S22.99 3.2 16.02 3.2Zm0 22.98h-.01a10.8 10.8 0 0 1-5.5-1.5l-.4-.24-3.87 1.24 1.26-3.75-.26-.39a10.62 10.62 0 0 1-1.65-5.7c0-5.87 4.81-10.64 10.43-10.64 5.75 0 10.43 4.76 10.43 10.62 0 5.87-4.69 10.65-10.43 10.65Zm5.72-8.03c-.31-.15-1.85-.9-2.14-1-.29-.1-.5-.15-.72.15-.21.3-.82 1-1.01 1.2-.19.2-.37.22-.69.07-.31-.15-1.32-.48-2.51-1.53-.93-.82-1.56-1.83-1.74-2.14-.18-.3-.02-.47.13-.62.14-.14.31-.37.46-.55.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.72-1.72-.98-2.36-.26-.62-.52-.53-.72-.54h-.61c-.2 0-.52.07-.8.37-.27.3-1.05 1.02-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.13 3.4 5.26 4.63 2.61 1.03 3.14.82 3.7.77.56-.05 1.85-.75 2.11-1.48.27-.72.27-1.34.19-1.47-.08-.12-.29-.2-.6-.35Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  box-shadow: 0 0 0 3px rgba(191, 139, 74, 0.16);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.card:hover {
  transform: translateY(-2px);
}

.hero-summary {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 33, 43, 0.12);
}

.hero-summary-head strong {
  display: block;
  max-width: 42ch;
  line-height: 1.35;
}

.hero-summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin-top: 0.85rem;
}

.hero-summary-list span {
  color: rgba(22, 33, 43, 0.78);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, rgba(191, 139, 74, 0.18) 0 2px, transparent 2px 100%),
    radial-gradient(360px 220px at 12% 12%, rgba(191, 139, 74, 0.2), transparent 70%),
    radial-gradient(520px 280px at 100% 0%, rgba(43, 111, 115, 0.22), transparent 64%),
    linear-gradient(180deg, #132534 0%, #0d1822 100%);
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
}

.hero-card::before,
.platform-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-card::before {
  background-image:
    linear-gradient(rgba(245, 239, 230, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 230, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
  padding: 1.9rem;
}

.hero-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.38rem 0.74rem 0.38rem 0.46rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 239, 230, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-status::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.07);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 16'%3E%3Cpolygon points='6,1 20,1 13,6 0,6' fill='%230c3d78'/%3E%3Cpolygon points='7,9 19,9 12,14 0,14' fill='%230c3d78'/%3E%3Cpolygon points='16,1 20,1 13,6 10,6' fill='%23bf8b4a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-card .panel-label,
.hero-card .dashboard-eyebrow {
  color: rgba(245, 239, 230, 0.55);
}

.hero-card .big,
.hero-card strong {
  color: var(--text-dark);
}

.hero-card p {
  color: var(--text-dark-soft);
}

.big {
  font-size: 1.18rem;
  line-height: 1.45;
  max-width: none;
}

.prompt-shell {
  display: grid;
  gap: 0;
  border-radius: 26px;
  border: 1px solid rgba(245, 239, 230, 0.1);
  background: rgba(6, 14, 21, 0.46);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.prompt-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.prompt-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(245, 239, 230, 0.22);
}

.prompt-bar span:first-child {
  background: #d6904d;
}

.prompt-bar span:nth-child(2) {
  background: #2b6f73;
}

.prompt-bar span:nth-child(3) {
  background: rgba(245, 239, 230, 0.34);
}

.prompt-window {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.2rem 1.3rem;
  min-height: 252px;
  font-family: "IBM Plex Mono", "IBM Plex Sans", monospace;
}

.prompt-line,
.prompt-answer {
  margin: 0;
}

.prompt-line {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  color: rgba(245, 239, 230, 0.88);
  font-size: 0.98rem;
}

.prompt-sign {
  color: var(--gold);
  font-weight: 700;
}

.prompt-question,
.prompt-answer {
  min-height: 3.2em;
}

.prompt-question::after,
.prompt-answer::after {
  content: "";
  display: inline-block;
  width: 0.62ch;
  height: 1.05em;
  margin-left: 0.16rem;
  transform: translateY(0.16em);
  background: rgba(245, 239, 230, 0.7);
  animation: blink 1s steps(1) infinite;
}

.prompt-response {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background:
    radial-gradient(240px 160px at 100% 0%, rgba(43, 111, 115, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.04);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.prompt-response.is-transitioning {
  opacity: 0.32;
  transform: translateY(6px);
}

.prompt-response.is-live {
  box-shadow: 0 0 0 1px rgba(43, 111, 115, 0.14) inset;
}

.prompt-meta {
  margin: 0;
  color: rgba(191, 139, 74, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}

.prompt-answer {
  color: rgba(245, 239, 230, 0.82);
  line-height: 1.7;
  font-size: 0.96rem;
}

.prompt-tags,
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.prompt-tags span,
.expertise-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 239, 230, 0.84);
  font-size: 0.84rem;
}

.expertise-grid {
  padding-top: 0.2rem;
}

.expertise-grid span {
  background: rgba(255, 255, 255, 0.05);
}

.hero-graphic {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background:
    radial-gradient(160px 120px at 0% 100%, rgba(191, 139, 74, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-graphic img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.98;
  animation: float 7s ease-in-out infinite;
  transform: scale(1.02);
}

.hero-monitor {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.85rem;
}

.monitor-card,
.dashboard-card,
.stat {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.monitor-list {
  display: grid;
  gap: 0.65rem;
}

.monitor-list span {
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 239, 230, 0.82);
}

.hero-dashboard,
.stats {
  display: grid;
  gap: 0.85rem;
}

.hero-dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.stat-number {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Sora", sans-serif;
  color: var(--text-dark);
  font-size: 1.02rem;
}

.stat-label {
  color: rgba(245, 239, 230, 0.68);
}

.section {
  padding: 1.2rem 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 33, 43, 0.12), transparent);
}

.section-head {
  display: grid;
  gap: 0.28rem;
  margin-bottom: 1.35rem;
  max-width: 72rem;
}

.section-head p:last-child {
  max-width: 62ch;
}

#contacto .section-head {
  max-width: 64rem;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
}

#contacto .section-head h2 {
  max-width: 24ch;
  margin-bottom: 0;
}

#contacto .section-head p:last-child {
  max-width: 52ch;
  margin: 0;
}

.eyebrow,
.card-kicker,
.platform-kicker {
  color: var(--gold-deep);
}

.section--platform {
  padding: 3.6rem 0;
}

.section--platform .container {
  position: relative;
}

.section--platform .section-head {
  margin-bottom: 1.6rem;
}

.section--platform .section-head h2,
.section--platform .section-head p {
  color: var(--text-dark);
}

.section--platform .eyebrow {
  color: rgba(245, 239, 230, 0.58);
}

.section--platform::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background:
    radial-gradient(720px 320px at 0% 0%, rgba(191, 139, 74, 0.16), transparent 58%),
    radial-gradient(780px 360px at 100% 0%, rgba(43, 111, 115, 0.18), transparent 56%),
    linear-gradient(180deg, #11212f 0%, #0c1822 100%);
  z-index: -1;
}

.section--platform::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 239, 230, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 230, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  pointer-events: none;
}

.platform-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.35rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(420px 240px at 100% 0%, rgba(43, 111, 115, 0.22), transparent 64%),
    linear-gradient(180deg, rgba(18, 34, 48, 0.94) 0%, rgba(11, 22, 31, 0.98) 100%);
  box-shadow: 0 44px 110px rgba(8, 14, 20, 0.34);
}

.platform-shell::before {
  background-image:
    linear-gradient(rgba(245, 239, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 230, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
}

.platform-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  padding: 1.7rem;
  border-radius: 26px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background:
    radial-gradient(320px 180px at 0% 0%, rgba(191, 139, 74, 0.22), transparent 68%),
    linear-gradient(180deg, #173042 0%, #10202d 100%);
  color: var(--text-dark);
  min-height: 220px;
}

.platform-core::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.platform-core strong,
.platform-core p,
.platform-label {
  color: inherit;
}

.platform-label,
.platform-kicker {
  color: rgba(245, 239, 230, 0.56);
}

.platform-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.platform-node {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem 1.15rem 1.2rem 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.platform-node::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}

.platform-node strong {
  color: var(--text-dark);
}

.platform-node p {
  margin: 0;
  color: rgba(245, 239, 230, 0.72);
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0 4rem;
}

.platform-links span {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(191, 139, 74, 0.9), rgba(43, 111, 115, 0.3));
}

.section--intro {
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(191, 139, 74, 0.08), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.3rem;
  align-items: stretch;
}

.card,
.contact-card,
input,
textarea {
  backdrop-filter: blur(14px);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 33, 43, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 243, 0.82));
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card::before,
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(191, 139, 74, 0));
}

.card::after,
.hero-summary::after,
.hero-card::after,
.platform-shell::after,
.cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 38%);
  pointer-events: none;
}

.capability-command {
  display: grid;
  gap: 1.1rem;
  padding: 1.9rem;
  border-color: rgba(245, 239, 230, 0.08);
  background:
    radial-gradient(360px 220px at 0% 0%, rgba(191, 139, 74, 0.22), transparent 64%),
    linear-gradient(180deg, #172d3d 0%, #10202d 100%);
  color: var(--text-dark);
  box-shadow: 0 34px 90px rgba(10, 18, 26, 0.22);
}

.capability-command h3,
.capability-command p,
.capability-command .card-kicker {
  color: inherit;
}

.capability-command .card-kicker,
.capability-note--dark .card-kicker {
  color: rgba(245, 239, 230, 0.56);
}

.capability-flow {
  display: grid;
  gap: 0.8rem;
}

.capability-flow span {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 239, 230, 0.84);
}

.capability-notes {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.capability-note {
  padding: 1.1rem 1.1rem 1.1rem 1.4rem;
  border: 1px solid rgba(22, 33, 43, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 36px rgba(22, 33, 43, 0.05);
  border-top: 1px solid rgba(22, 33, 43, 0.08);
  position: relative;
}

.capability-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}

.capability-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.capability-note p {
  margin: 0;
}

.capability-note--dark {
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(280px 160px at 100% 0%, rgba(43, 111, 115, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(24, 42, 57, 0.96), rgba(19, 33, 45, 0.96));
}

.capability-note--dark strong,
.capability-note--dark p {
  color: var(--text-dark);
}

.cta-premium {
  padding: 1.8rem 0 2.8rem;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 239, 230, 0.12);
  background:
    radial-gradient(420px 260px at 0% 22%, rgba(191, 139, 74, 0.24), transparent 66%),
    radial-gradient(420px 260px at 100% 0%, rgba(43, 111, 115, 0.26), transparent 62%),
    linear-gradient(180deg, #152431 0%, #101c27 100%);
  color: var(--text-dark);
  box-shadow: 0 50px 120px rgba(10, 18, 26, 0.28);
}

.cta-inner h2,
.cta-inner p,
.cta-inner .eyebrow {
  color: inherit;
}

.cta-inner::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 35%),
    radial-gradient(260px 160px at 100% 0%, rgba(43, 111, 115, 0.16), transparent 60%);
}

.cta-copy {
  display: grid;
  gap: 0.36rem;
  max-width: 30rem;
}

.cta-proof {
  display: grid;
  gap: 0.7rem;
  min-width: 220px;
}

.cta-proof span {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(245, 239, 230, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 239, 230, 0.84);
}

.cta-inner .button:not(.primary) {
  border-color: rgba(245, 239, 230, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dark);
}

.grid {
  display: grid;
  gap: 0.7rem;
}

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

.list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.list li + li {
  margin-top: 0.45rem;
}

.form {
  display: grid;
  gap: 0.65rem;
}

label span {
  display: block;
  margin-bottom: 0.28rem;
  color: rgba(22, 33, 43, 0.86);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(22, 33, 43, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 128px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(22, 33, 43, 0.42);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(191, 139, 74, 0.44);
  box-shadow: 0 0 0 4px rgba(191, 139, 74, 0.12);
}

.muted {
  margin: 0;
  color: var(--text-soft);
}

.text-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.site-footer {
  padding: 0.95rem 0 1.2rem;
  border-top: 1px solid rgba(22, 33, 43, 0.08);
  background: rgba(251, 248, 243, 0.98);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 340px);
}

.footer-logo {
  width: min(100%, 250px);
  max-height: 72px;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.92;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1040px) {
  .container {
    width: min(var(--max), calc(100% - 2rem));
  }

  h1 {
    font-size: clamp(2.5rem, 6.2vw, 4rem);
    max-width: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner::before {
    inset: 1% 0 8% 0;
  }

  .hero-summary-list,
  .hero-dashboard,
  .hero-monitor,
  .stats,
  .platform-grid,
  .platform-links,
  .capability-layout {
    grid-template-columns: 1fr;
  }

  .prompt-window {
    min-height: auto;
  }

  .hero-card {
    transform: none;
  }

  .hero-copy {
    padding: 1.6rem 1.5rem 1.35rem;
    align-items: center;
    text-align: center;
  }

  .lead {
    max-width: none;
  }

  .action-row,
  .hero-actions,
  .cta-actions {
    justify-content: center;
    gap: 0.75rem;
  }

  .action-row .button,
  .hero-actions .button,
  .cta-actions .button {
    width: auto;
    max-width: 100%;
    min-width: 260px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  #contacto .section-head {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .brand-logo {
    height: 46px;
  }

  h1,
  h2 {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
    line-height: 1.02;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem;
    border-radius: 22px;
    border: 1px solid rgba(22, 33, 43, 0.1);
    background: rgba(250, 245, 238, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease;
  }

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

  .nav-link,
  .nav-cta,
  .lang-switch {
    text-align: center;
  }

  .hero-copy,
  .hero-card-inner,
  .platform-shell,
  .card,
  .cta-inner {
    padding: 1.15rem;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .action-row .button,
  .hero-actions .button,
  .cta-actions .button {
    width: auto;
    max-width: 100%;
    min-width: min(260px, 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    width: 100%;
  }
}

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

  .site-nav,
  .nav-link,
  .nav-cta,
  .button,
  .card {
    transition: none;
  }

  .hero-copy,
  .hero-card,
  .platform-shell,
  .capability-command,
  .cta-inner,
  .hero-graphic img {
    animation: none;
  }
}
