/* Grupo R Strong — Institutional site */
:root {
  --green-dark: #052C29;
  --green-inst: #16483F;
  --green-mid: #3F7565;
  --green-light: #B8E2C5;
  --black: #151515;
  --gray-dark: #353535;
  --gray-light: #F3F5F4;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(5, 44, 41, 0.08);
  --shadow-hover: 0 18px 48px rgba(5, 44, 41, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 78px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Sora", sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.25em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  user-select: none;
  overflow: hidden;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-inst); text-decoration: none; }
a:hover { color: var(--green-dark); }
button, input, select, textarea { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--green-dark);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 300;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.25rem); font-weight: 200; }
h2 { font-size: clamp(2.2rem, 4vw, 3.25rem); font-weight: 300; }
h3 { font-size: clamp(1.45rem, 2.4vw, 1.85rem); font-weight: 400; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.eyebrow-icon {
  font-size: 1.05rem !important;
  color: var(--green-inst);
  animation: iconPulse 2.8s ease-in-out infinite;
}

.lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-dark);
  max-width: 36rem;
}
.section-sub {
  color: var(--gray-dark);
  max-width: 42rem;
  margin: 0 auto;
  opacity: 0.88;
  font-weight: 300;
}
.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn .material-symbols-outlined {
  font-size: 1.15rem;
  transition: transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover .material-symbols-outlined { transform: translateX(2px); }
.btn-primary:hover .material-symbols-outlined { transform: translateX(3px) scale(1.08); }
.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green-inst));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(5, 44, 41, 0.22);
}
.btn-primary:hover { color: var(--white); box-shadow: 0 12px 28px rgba(5, 44, 41, 0.28); }
.btn-outline {
  background: transparent;
  border-color: var(--green-inst);
  color: var(--green-inst);
}
.btn-outline:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.btn-ghost {
  background: var(--gray-light);
  color: var(--green-dark);
}
.btn-ghost:hover { background: var(--green-light); color: var(--green-dark); }
.btn-sm { min-height: 42px; padding: 0.55rem 1rem; font-size: 0.88rem; }
.btn[disabled], .btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: rgba(5, 44, 41, 0.08);
  box-shadow: 0 8px 30px rgba(5, 44, 41, 0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}
.nav a {
  color: var(--gray-dark);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--green-mid);
  transition: right 0.3s var(--ease);
}
.nav a:hover { color: var(--green-dark); }
.nav a:hover::after { right: 0; }
.header-cta { margin-left: 0.5rem; white-space: nowrap; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 22px;
  background: var(--green-dark); margin-inline: auto;
  transition: 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  --mx: 0.5;
  --my: 0.5;
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #F4F9F6 0%, #FFFFFF 42%, #EAF3EE 100%);
  z-index: 0;
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(
      40% 38% at calc(18% + (var(--mx) - 0.5) * 22%) calc(28% + (var(--my) - 0.5) * 16%),
      rgba(184, 226, 197, 0.7),
      transparent 70%
    ),
    radial-gradient(
      36% 34% at calc(82% + (var(--mx) - 0.5) * 20%) calc(22% + (var(--my) - 0.5) * 14%),
      rgba(63, 117, 101, 0.28),
      transparent 68%
    ),
    radial-gradient(
      42% 40% at calc(55% + (var(--mx) - 0.5) * 12%) calc(78% + (var(--my) - 0.5) * 10%),
      rgba(22, 72, 63, 0.18),
      transparent 70%
    ),
    radial-gradient(
      28% 26% at calc(70% + (var(--mx) - 0.5) * 16%) calc(58% + (var(--my) - 0.5) * 12%),
      rgba(184, 226, 197, 0.4),
      transparent 65%
    );
  filter: blur(2px);
  animation: heroMeshShift 16s ease-in-out infinite;
  pointer-events: none;
}
.hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: multiply;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-aurora-a {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  left: calc(2% + (var(--mx) - 0.5) * 8%);
  top: calc(4% + (var(--my) - 0.5) * 6%);
  background: radial-gradient(circle, rgba(184, 226, 197, 0.85) 0%, transparent 70%);
  animation: auroraDriftA 12s ease-in-out infinite;
}
.hero-aurora-b {
  width: min(50vw, 460px);
  height: min(50vw, 460px);
  right: calc(0% + (0.5 - var(--mx)) * 9%);
  top: calc(30% + (var(--my) - 0.5) * 10%);
  background: radial-gradient(circle, rgba(63, 117, 101, 0.4) 0%, transparent 68%);
  animation: auroraDriftB 15s ease-in-out infinite;
}
.hero-aurora-c {
  width: min(44vw, 400px);
  height: min(44vw, 400px);
  left: calc(38% + (var(--mx) - 0.5) * 12%);
  bottom: calc(2% + (0.5 - var(--my)) * 8%);
  background: radial-gradient(circle, rgba(5, 44, 41, 0.22) 0%, transparent 70%);
  animation: auroraDriftC 18s ease-in-out infinite;
}
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.hero-beam {
  position: absolute;
  top: -20%;
  left: -30%;
  width: 40%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(184, 226, 197, 0.22) 50%,
    rgba(255, 255, 255, 0.08) 60%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: heroBeamSweep 9s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.hero-grid-lines {
  position: absolute;
  inset: -8%;
  background-image:
    linear-gradient(rgba(5, 44, 41, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 44, 41, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: translate3d(
    calc((var(--mx) - 0.5) * -28px),
    calc((var(--my) - 0.5) * -20px),
    0
  ) perspective(600px) rotateX(8deg);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, black 15%, transparent 72%);
  opacity: 0.7;
  animation: heroGridDrift 24s linear infinite;
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 70% at 50% 45%, transparent 35%, rgba(5, 44, 41, 0.06) 100%);
  pointer-events: none;
}
.hero-simple {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  text-align: center;
}
.hero-simple .hero-copy {
  max-width: 38rem;
}
.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--green-mid);
}
.hero-simple h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  font-weight: 200;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--green-dark);
}
.hero-line {
  margin: 1.15rem auto 0;
  max-width: 28rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--gray-dark);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero-simple .hero-actions {
  justify-content: center;
  margin-top: 2rem;
}
.hero-anim {
  opacity: 0;
  transform: translateY(1.15rem);
  animation: heroTextIn 0.9s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 0.18s + 0.15s);
}
@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroMeshShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.06) rotate(1.5deg); }
}
@keyframes auroraDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  33% { transform: translate(8%, 10%) scale(1.14); opacity: 1; }
  66% { transform: translate(-5%, 6%) scale(0.92); opacity: 0.7; }
}
@keyframes auroraDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  40% { transform: translate(-10%, 8%) scale(1.12); opacity: 1; }
  75% { transform: translate(6%, -6%) scale(0.95); opacity: 0.65; }
}
@keyframes auroraDriftC {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(7%, -10%) scale(1.18); opacity: 1; }
}
@keyframes heroBeamSweep {
  0% { transform: skewX(-18deg) translateX(-20%); opacity: 0; }
  15% { opacity: 0.9; }
  50% { transform: skewX(-18deg) translateX(180%); opacity: 0.55; }
  100% { transform: skewX(-18deg) translateX(220%); opacity: 0; }
}
@keyframes heroGridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 64px 64px, 64px 64px; }
}

/* Ecosystem orbit */
.ecosystem-orbit {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: perspective(800px) rotateX(var(--orbit-tilt, 0deg));
  transition: transform 0.4s var(--ease);
}
.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.orbit-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 176px; height: 96px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(5, 44, 41, 0.08);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  z-index: 2;
  animation: centerGlow 3.5s ease-in-out infinite;
  padding: 0.55rem 0.75rem;
}
.orbit-center img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}
.orbit-node {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
  padding: 0;
  overflow: visible;
  transform: translate(-50%, -50%) scale(1);
  transition:
    transform 0.4s var(--ease),
    filter 0.4s ease,
    opacity 0.35s ease;
  cursor: pointer;
  z-index: 3;
  animation: nodeEnter 0.7s var(--ease) both;
  will-change: transform;
}
.orbit-node-media {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(5, 44, 41, 0.12);
  transition:
    box-shadow 0.4s var(--ease),
    border-color 0.35s ease,
    transform 0.4s var(--ease);
}
.orbit-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.orbit-node:nth-child(3) { animation-delay: 0.05s; }
.orbit-node:nth-child(4) { animation-delay: 0.1s; }
.orbit-node:nth-child(5) { animation-delay: 0.15s; }
.orbit-node:nth-child(6) { animation-delay: 0.2s; }
.orbit-node:nth-child(7) { animation-delay: 0.25s; }
.orbit-node:nth-child(8) { animation-delay: 0.3s; }
.orbit-node:nth-child(9) { animation-delay: 0.35s; }

.orbit-node:hover,
.orbit-node.active {
  transform: translate(-50%, -50%) scale(1.14);
  z-index: 5;
  filter: none;
  opacity: 1;
}
.orbit-node:hover .orbit-node-media,
.orbit-node.active .orbit-node-media {
  border-color: var(--green-light);
  box-shadow:
    0 0 0 4px rgba(184, 226, 197, 0.45),
    0 18px 40px rgba(5, 44, 41, 0.22);
}
.orbit-node:hover img,
.orbit-node.active img {
  transform: scale(1.1);
}

/* Dim siblings while one is hovered/active */
.ecosystem-diagram.is-hovering .orbit-node:not(:hover):not(.active),
.ecosystem-orbit.is-hovering .orbit-node:not(:hover):not(.active) {
  opacity: 0.42;
  filter: grayscale(0.3);
  transform: translate(-50%, -50%) scale(0.92);
}

.orbit-svg .orbit-line {
  transition: stroke 0.35s ease, stroke-opacity 0.35s ease, stroke-width 0.35s ease;
}
.orbit-svg .orbit-dot {
  transition: opacity 0.35s ease;
}

.orbit-node .node-label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.orbit-node:hover .node-label,
.orbit-node.active .node-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.orbit-pulse {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 12px var(--green-mid);
  offset-path: path(var(--path));
  animation: travel 5.5s linear infinite;
}
@keyframes travel {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.ecosystem-mobile-cards { display: none; gap: 0.85rem; }
.mobile-card img { width: 48px; height: 36px; object-fit: contain; }
.mobile-card strong { display: block; color: var(--green-dark); font-size: 0.95rem; }
.mobile-card > div span { font-size: 0.8rem; color: var(--gray-dark); }

/* About */
.about {
  position: relative;
  overflow: hidden;
  background: #052C29;
  color: rgba(255, 255, 255, 0.78);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}
.about-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 8% 20%, rgba(184, 226, 197, 0.22), transparent 60%),
    radial-gradient(ellipse 45% 55% at 92% 80%, rgba(63, 117, 101, 0.45), transparent 55%),
    linear-gradient(160deg, #052C29 0%, #0A3A35 45%, #16483F 100%);
  pointer-events: none;
}
.about-inner { position: relative; z-index: 1; }
.about-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.about-intro {
  max-width: 36rem;
}
.about-intro .eyebrow {
  color: var(--green-light);
}
.about-intro .eyebrow-icon {
  color: var(--green-light);
}
.about-intro h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 200;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.about-intro .reveal-item {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.14s);
}
.about-intro .reveal-item.in {
  opacity: 1;
  transform: none;
}
.about-lead {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184, 226, 197, 0.22);
}
.stat {
  position: relative;
  padding: 1.75rem 1.35rem 0.25rem 0;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), color 0.3s ease;
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.stat.reveal.in {
  opacity: 1;
  transform: none;
}
.stat:not(:last-child) {
  border-right: 1px solid rgba(184, 226, 197, 0.14);
  padding-right: 1.5rem;
  margin-right: 1.5rem;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 200;
  color: var(--green-light);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.65rem;
}
.stat > span:last-child {
  display: block;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
  max-width: 9.5rem;
}
.stat:hover strong {
  color: #fff;
  transition: color 0.3s ease;
}

/* Ecosystem interactive */
.ecosystem { background: var(--white); }
.ecosystem-desktop {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.ecosystem-diagram {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: perspective(800px) rotateX(var(--orbit-tilt, 0deg));
  transition: transform 0.4s var(--ease);
}
.ecosystem-panel {
  min-height: 280px;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(5, 44, 41, 0.08);
  box-shadow: var(--shadow);
}
.panel-hint {
  color: var(--green-mid);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.panel-top {
  position: relative;
  margin-bottom: 1.1rem;
}
.panel-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #151515;
  border: 1px solid rgba(5, 44, 41, 0.08);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}
.ecosystem-panel .panel-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  margin-bottom: 0;
  display: block;
}
.ecosystem-panel .panel-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184, 226, 197, 0.85);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 1.15rem !important;
}
.icon-svg {
  display: inline-grid;
  place-items: center;
  line-height: 1;
  font-size: 1.15em;
}
.icon-svg svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
}
.ecosystem-panel .category {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--green-mid); font-weight: 700; margin: 0 0 0.35rem;
}
.ecosystem-panel h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
}
.ecosystem-panel p { margin: 0 0 1.25rem; }
.ecosystem-slider {
  display: none;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.eco-slide {
  flex: 0 0 min(82vw, 320px);
  scroll-snap-align: start;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(5, 44, 41, 0.08);
  box-shadow: var(--shadow);
}
.eco-slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.eco-slide-head img {
  width: 100%;
  max-width: 160px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
  border: 1px solid rgba(5, 44, 41, 0.08);
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  margin-bottom: 0;
}

/* Companies */
.companies {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(184, 226, 197, 0.28), transparent 55%),
    linear-gradient(180deg, #F7FAF8, var(--white));
}
.company-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.companies-head .reveal-item,
.integration-head .reveal-item {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.14s);
}
.companies-head .reveal-item.in,
.integration-head .reveal-item.in {
  opacity: 1;
  transform: none;
}
.company-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(5, 44, 41, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(2.25rem) scale(0.97);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.4s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.09s);
}
.company-card.reveal.in {
  opacity: 1;
  transform: none;
}
.company-card:hover {
  transform: translateY(-6px);
  border-color: rgba(63, 117, 101, 0.35);
  box-shadow: 0 22px 48px rgba(5, 44, 41, 0.1);
}
.company-card.reveal.in:hover {
  transform: translateY(-6px);
  transition-delay: 0s;
}

.company-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #151515;
  isolation: isolate;
}
.company-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 72%, rgba(5, 44, 41, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}
.company-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.company-card:hover .company-media img {
  transform: scale(1.05);
}

.company-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.35rem 1.5rem;
  flex: 1;
}
.company-category {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-mid);
  font-weight: 400;
}
.company-body h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.company-desc {
  margin: 0;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.solutions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0.15rem;
  padding: 0;
  list-style: none;
}
.solutions-list li {
  font-size: 0.72rem;
  line-height: 1.3;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  background: rgba(5, 44, 41, 0.04);
  color: var(--green-dark);
  font-weight: 400;
  border: 1px solid rgba(5, 44, 41, 0.06);
}
.company-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}
.company-actions .company-site {
  flex: 1;
  min-width: 0;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.company-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.company-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 44, 41, 0.06);
  color: var(--green-dark);
  border: 1px solid rgba(5, 44, 41, 0.08);
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.company-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
.company-social:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.company-social-instagram:hover {
  background: #E1306C;
  border-color: #E1306C;
}
.company-social-tiktok:hover {
  background: #111111;
  border-color: #111111;
}
.company-social-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
}

/* Integration */
.integration {
  position: relative;
  overflow: hidden;
  background: #052C29;
  color: rgba(255, 255, 255, 0.78);
  padding-block: clamp(4rem, 8vw, 6rem);
}
.integration-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 12% 20%, rgba(184, 226, 197, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 50% at 88% 75%, rgba(63, 117, 101, 0.4), transparent 55%),
    linear-gradient(165deg, #052C29 0%, #0A3A35 50%, #16483F 100%);
  pointer-events: none;
}
.integration .container { position: relative; z-index: 1; }
.integration-head .eyebrow,
.integration-head .eyebrow-icon { color: var(--green-light); }
.integration-head h2 {
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.04em;
}
.integration-head .section-sub {
  color: rgba(255, 255, 255, 0.68);
}
.flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin: 0 0 2.75rem;
  padding: 0;
  list-style: none;
}
.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 226, 197, 0.16);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease;
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.flow-step.reveal.in {
  opacity: 1;
  transform: none;
}
.flow-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 226, 197, 0.35);
}
.flow-step.reveal.in:hover {
  transform: translateY(-4px);
}
.flow-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--green-light);
  opacity: 0.75;
}
.flow-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(184, 226, 197, 0.16);
  color: var(--green-light);
}
.flow-icon .material-symbols-outlined {
  font-size: 1.35rem;
  color: inherit;
}
.flow-copy {
  display: grid;
  gap: 0.25rem;
}
.flow-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
}
.flow-copy span {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 226, 197, 0.18);
  border: 1px solid rgba(184, 226, 197, 0.18);
  border-radius: 20px;
  overflow: hidden;
}
.benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.35rem;
  background: rgba(5, 44, 41, 0.55);
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    background 0.3s ease;
  transition-delay: calc(var(--i, 0) * 0.12s);
}
.benefit.reveal.in {
  opacity: 1;
  transform: none;
}
.benefit:hover {
  transform: none;
  box-shadow: none;
  background: rgba(5, 44, 41, 0.75);
}
.benefit.reveal.in:hover {
  background: rgba(5, 44, 41, 0.75);
}
.benefit-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(184, 226, 197, 0.18);
  color: var(--green-light);
  font-size: 1.35rem !important;
  margin-bottom: 0;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.benefit:hover .benefit-icon {
  transform: scale(1.08);
}
.benefit h3 {
  margin: 0 0 0.4rem;
  color: var(--white);
  font-size: 1.15rem;
}
.benefit p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* Access */
.access {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(184, 226, 197, 0.22), transparent 55%),
    #ffffff;
  color: var(--green-dark);
}
.access .eyebrow { color: var(--green-mid); }
.access h2 { color: var(--green-dark); }
.access .section-sub {
  color: var(--gray-dark);
  max-width: 36rem;
  margin-inline: auto;
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
@media (max-width: 1280px) {
  .access .access-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.access-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(5, 44, 41, 0.08);
  color: var(--green-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.25s ease;
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.access-card.reveal.in {
  opacity: 1;
  transform: none;
}
.access-card:hover {
  background: #ffffff;
  color: var(--green-dark);
  transform: translateY(-6px);
  border-color: rgba(63, 117, 101, 0.35);
  box-shadow: var(--shadow-hover);
  transition-delay: 0s;
}
.access-card.reveal.in:hover {
  transform: translateY(-6px);
}
.access-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: #151515;
  border-bottom: 1px solid rgba(5, 44, 41, 0.06);
  padding: 0;
}
.access-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease);
}
.access-card:hover .access-media img {
  transform: scale(1.05);
}
.access-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem 1.15rem;
  flex: 1;
}
.access-body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--green-dark);
}
.access-body > span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--gray-dark);
  font-weight: 300;
}
.access-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.65rem;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-mid);
}
.access-cta .material-symbols-outlined {
  font-size: 1rem !important;
  transition: transform 0.3s var(--ease);
}
.access-card:hover .access-cta .material-symbols-outlined {
  transform: translate(2px, -2px);
}

/* Contact */
.contact { background: linear-gradient(180deg, var(--white), #F7FAF8); }
.contact-simple {
  max-width: 720px;
  margin-inline: auto;
}
.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(5, 44, 41, 0.08);
  box-shadow: var(--shadow);
  color: var(--green-dark);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.25s ease;
}
.contact-link .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--green-mid);
  margin-bottom: 0.35rem;
}
.contact-link strong {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.contact-link span:last-child {
  font-size: 0.88rem;
  color: var(--gray-dark);
  font-weight: 300;
}
.contact-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(63, 117, 101, 0.28);
  color: var(--green-dark);
}
.contact-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact-socials .company-social {
  width: 48px;
  height: 48px;
}
.contact-socials .company-social svg {
  width: 20px;
  height: 20px;
}
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.social-links.center { justify-content: center; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  min-width: 42px; height: 42px; padding: 0 0.85rem;
  border-radius: 999px;
  background: var(--gray-light);
  color: var(--green-dark);
  font-weight: 650;
  font-size: 0.85rem;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}
.social-links a:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 1.75rem 0 1.25rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.7); }
.site-footer a:hover { color: var(--green-light); }
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
}
.footer-logo img {
  width: auto;
  height: 36px;
  object-fit: contain;
  display: block;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 400;
}
.footer-social {
  margin-top: 0;
  gap: 0.5rem;
}
.site-footer .company-social {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  width: 38px;
  height: 38px;
}
.site-footer .company-social svg {
  width: 16px;
  height: 16px;
}
.site-footer .company-social:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}
.footer-bottom p { margin: 0; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: #ffffff;
  animation: none;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

/* Panel extras */
.panel-hint {
  color: var(--green-mid);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.panel-hint .material-symbols-outlined { animation: tapHint 1.8s ease-in-out infinite; }
.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(184, 226, 197, 0.4);
  color: var(--green-inst);
  font-size: 1.35rem !important;
}
.eco-slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.eco-slide-head .material-symbols-outlined,
.eco-slide-head .icon-svg {
  color: var(--green-mid);
  font-size: 1.4rem;
}
.mobile-card {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid rgba(5, 44, 41, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  animation: mobileCardIn 0.5s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.06s);
  transition: transform 0.25s var(--ease);
}
.mobile-card:hover { transform: translateX(4px); }
.mobile-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(184, 226, 197, 0.35);
  color: var(--green-inst);
  font-size: 1.15rem !important;
  flex-shrink: 0;
}
.mobile-chevron { margin-left: auto; color: var(--green-mid); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-scale {
  transform: translateY(20px) scale(0.96);
}
.reveal-scale.in { transform: none; }
.reveal-item {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.12s);
}
.reveal-item.in {
  opacity: 1;
  transform: none;
}
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
}
.stagger-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 0.08s);
}

/* Keyframes */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}
@keyframes sealFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes spark {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.75; }
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes centerGlow {
  0%, 100% { box-shadow: 0 12px 40px rgba(5, 44, 41, 0.18); }
  50% { box-shadow: 0 16px 48px rgba(63, 117, 101, 0.35); }
}
@keyframes nodeEnter {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes statPop {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes flowIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: none; }
}
@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(3px); opacity: 1; }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
@keyframes fadeSwap {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), 0 0 0 12px rgba(37, 211, 102, 0); }
}
@keyframes tapHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@keyframes mobileCardIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(184, 226, 197, 0.22), transparent 55%),
    linear-gradient(180deg, #F7FAF8, var(--white));
}
.legal-page article {
  max-width: 740px;
}
.legal-page h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.legal-meta {
  margin: 0 0 1.75rem;
  font-size: 0.88rem;
  color: var(--green-mid);
  font-weight: 400;
}
.legal-page h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 400;
}
.legal-page p,
.legal-page li {
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-dark);
}
.legal-page ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
}
.legal-page a {
  color: var(--green-inst);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.legal-page a:hover {
  color: var(--green-dark);
}
.legal-page .btn {
  text-decoration: none;
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(5, 44, 41, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-simple,
  .ecosystem-desktop,
  .contact-links {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat:nth-child(2) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(184, 226, 197, 0.14);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(184, 226, 197, 0.14);
    padding-right: 1.25rem;
    margin-right: 1.25rem;
  }
  .stat:nth-child(even) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
  .company-list {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .access-grid,
  .benefits {
    grid-template-columns: 1fr;
  }
  .flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .header-cta { display: none; }
  .ecosystem-orbit { width: min(100%, 420px); }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .company-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(5, 44, 41, 0.08);
    padding: 0.5rem 1.25rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }
  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid rgba(5, 44, 41, 0.06);
  }
  body.nav-open { overflow: hidden; }
  .ecosystem-desktop { display: none; }
  .ecosystem-slider { display: flex; }
  .ecosystem-orbit { display: none; }
  .ecosystem-mobile-cards { display: grid; }
  .hero { min-height: 88vh; min-height: 88dvh; padding-top: calc(var(--header-h) + 1.5rem); }
  .flow li:not(:last-child)::after { display: none; }
  .flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1.5rem, var(--max)); }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(184, 226, 197, 0.14);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .access-grid,
  .benefits {
    grid-template-columns: 1fr;
  }
  .footer-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links { justify-content: center; }
  .company-actions {
    flex-wrap: wrap;
  }
  .company-actions .company-site {
    flex: 1 1 100%;
  }
  .company-socials {
    width: 100%;
    justify-content: center;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .brand img { height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale, .reveal-item, .company-card, .flow-step, .benefit, .stat, .access-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .orbit-pulse, .whatsapp-float, .hero-aurora, .hero-mesh, .hero-beam, .hero-grid-lines,
  .stat-icon, .benefit-icon, .eyebrow-icon { animation: none !important; }
  .hero-particles { display: none !important; }
  .hero-anim {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
