html {
  font-size: 120%;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #2ec4b0;
  --teal-dk: #1a9e8e;
  --teal-lt: #5de0d0;
  --violet: #8b2fc9;
  --magenta: #c84bc4;
  --bg: #07151d;
  --ink: #e8f8f6;
  --muted: rgba(232, 248, 246, 0.45);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  font-size: 25px;
}

/* ══ NAVBAR ══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  background: rgba(7, 21, 29, 0); /* starts transparent */
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(7, 21, 29, 0.92);
  border-color: rgba(46, 196, 176, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav-logo-text span {
  color: var(--teal);
}

/* desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* CTA in navbar */
.nav-cta {
  padding: 0.55rem 1.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--teal);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--teal-lt);
  transform: translateY(-1px);
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}
.nav-hamburger span:nth-child(1) {
  width: 24px;
}
.nav-hamburger span:nth-child(2) {
  width: 18px;
}
.nav-hamburger span:nth-child(3) {
  width: 24px;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

/* mobile drawer */
.nav-drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(7, 21, 29, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46, 196, 176, 0.12);
  padding: 1.5rem 7vw 2rem;
  transform: translateY(-110%);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
  pointer-events: none;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.nav-drawer ul li a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.nav-drawer ul li a:hover {
  color: var(--teal);
  padding-left: 0.5rem;
}
.nav-drawer ul li:last-child a {
  border-bottom: none;
}
.nav-drawer .nav-drawer-cta {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  padding: 0.9rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--teal);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-drawer .nav-drawer-cta:hover {
  background: var(--teal-lt);
}

@media (max-width: 780px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  /* push hero content below navbar on mobile */
  .hero {
    padding-top: 80px;
  }
}

/* ══ HERO ══ */
.hero-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 10% 20%,
      rgba(46, 196, 176, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 60% at 90% 80%,
      rgba(139, 47, 201, 0.15) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 60% 10%,
      rgba(200, 75, 196, 0.08) 0%,
      transparent 50%
    );
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 196, 176, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 196, 176, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  to {
    background-position: 70px 70px;
  }
}
.bg-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
}

/* particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.p {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--d, 8s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  15% {
    opacity: var(--op, 0.3);
  }
  85% {
    opacity: var(--op, 0.3);
  }
  100% {
    opacity: 0;
    transform: translateY(-110px) scale(0.6);
  }
}

/* hero layout */
.hero {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: center;
  height: 100vh;
  padding: 50px 7vw 60px;
  gap: 3vw; /* menos separación */
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 196, 176, 0.1);
  border: 1px solid rgba(46, 196, 176, 0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-lt);
  width: fit-content;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--teal);
  }
  50% {
    opacity: 0.3;
    box-shadow: none;
  }
}

.headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hl-line {
  display: block;
  overflow: hidden;
}
.hl-inner {
  display: block;
  transform: translateY(110%);
  animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hl-line:nth-child(1) .hl-inner {
  animation-delay: 0.3s;
}
.hl-line:nth-child(2) .hl-inner {
  animation-delay: 0.45s;
}
.hl-line:nth-child(3) .hl-inner {
  animation-delay: 0.6s;
}
@keyframes revealLine {
  to {
    transform: translateY(0);
  }
}
.hl-teal {
  color: var(--teal);
}
.hl-grad {
  background: linear-gradient(90deg, var(--magenta), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  margin-top: 1.2rem;
  font-size: clamp(0.85rem, 1rem, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.tagline strong {
  color: var(--ink);
  font-weight: 600;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.btn-main {
  position: relative;
  overflow: hidden;
  padding: 0.8rem 2rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dk), var(--violet));
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.4s ease;
}
.btn-main:hover::after {
  transform: translateX(120%) skewX(-20deg);
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46, 196, 176, 0.3);
}
.btn-ghost {
  padding: 0.8rem 1.8rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-lt);
  background: transparent;
  border: 1.5px solid rgba(46, 196, 176, 0.35);
  border-radius: 6px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* stats row — below buttons, left aligned */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  animation: fadeUp 0.8s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-stat {
  text-align: left;
}
.hero-stat-n {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--teal-lt);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-l {
  font-size: 9px;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* logo showcase */
.logo-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeIn 1s 0.6s ease forwards;
}
.ring-wrap {
  position: relative;
  width: clamp(200px, 40vw, 600px);
  height: clamp(200px, 40vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spinRing var(--sp, 12s) linear infinite;
}
.glow-ring:nth-child(1) {
  inset: 0;
  border-color: rgba(46, 196, 176, 0.2);
  --sp: 20s;
}
.glow-ring:nth-child(2) {
  inset: -20px;
  border-color: rgba(139, 47, 201, 0.15);
  --sp: 14s;
  animation-direction: reverse;
}
.glow-ring:nth-child(3) {
  inset: -40px;
  border-color: rgba(46, 196, 176, 0.08);
  --sp: 30s;
}
.glow-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  transform: translateX(-50%);
}
@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}
@keyframes logoSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo-img-wrap {
  position: relative;
  z-index: 2;
  width: 80%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoFloat 6s ease-in-out infinite;
}
.logo-img-wrap picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.logo-img-wrap img {
  width: 120%;
  height: 120%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(139, 47, 201, 0.5))
    drop-shadow(0 0 60px rgba(46, 196, 176, 0.2));
  animation: logoSpin 40s linear infinite;
  will-change: transform;
}

.logo-aura {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 47, 201, 0.2) 0%,
    rgba(46, 196, 176, 0.1) 50%,
    transparent 70%
  );
  filter: blur(20px);
  animation: auraPulse 4s ease-in-out infinite;
}
@keyframes auraPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 70px;
  left: 7vw;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(46, 196, 176, 0.35);
  opacity: 0;
  animation: fadeIn 1s 1.8s ease forwards;
}
.scroll-track {
  width: 32px;
  height: 1px;
  background: rgba(46, 196, 176, 0.2);
  overflow: hidden;
  position: relative;
}
.scroll-track::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--teal);
  animation: trackAnim 2.5s ease-in-out infinite;
}
@keyframes trackAnim {
  50%,
  100% {
    left: 100%;
  }
}

.ticker-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  border-top: 1px solid rgba(46, 196, 176, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.8s 1.6s ease forwards;
}
.ticker-track {
  display: flex;
  animation: tickerMove 22s linear infinite;
  white-space: nowrap;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2.5rem;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(46, 196, 176, 0.4);
}
.t-dot {
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.6;
}
@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

/* ══ SERVICES ══ */
.services-section {
  position: relative;
  z-index: 10;
  padding: 7rem 7vw 6rem;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7vw;
  right: 7vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 196, 176, 0.4),
    rgba(139, 47, 201, 0.4),
    transparent
  );
}
.svc-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46, 196, 176, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 196, 176, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
}

.svc-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.svc-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.svc-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.svc-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.svc-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* 2-column grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.svc-card {
  position: relative;
  padding: 2.5rem 2.2rem 2.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.3s,
    box-shadow 0.3s;
}
.svc-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.svc-card:hover {
  border-color: rgba(46, 196, 176, 0.4);
  transform: translateY(-5px);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(46, 196, 176, 0.06);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(46, 196, 176, 0.12),
    transparent
  );
  border-radius: 0 0 70px 0;
  transition:
    width 0.35s,
    height 0.35s;
}
.svc-card:hover::before {
  width: 100px;
  height: 100px;
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: -70px;
  right: -70px;
  pointer-events: none;
  filter: blur(10px);
}
.svc-icon {
  font-size: 2.4rem;
  line-height: 1;
  display: block;
  margin-bottom: 1.2rem;
}
.svc-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.svc-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* CTA */
.svc-cta {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s 0.3s ease,
    transform 0.6s 0.3s ease;
}
.svc-cta.visible {
  opacity: 1;
  transform: translateY(0);
}
.cta-line {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.cta-text {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.btn-contact {
  padding: 0.9rem 2.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46, 196, 176, 0.35);
}
a.btn-contact {
  text-decoration: none;
}

/* ══ CONTACT SECTION ══ */
.contact-section {
  position: relative;
  z-index: 10;
  padding: 7rem 7vw 7rem;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7vw;
  right: 7vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 196, 176, 0.35),
    rgba(139, 47, 201, 0.35),
    transparent
  );
}
.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 55% 50% at 100% 50%,
      rgba(139, 47, 201, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 0% 80%,
      rgba(46, 196, 176, 0.05) 0%,
      transparent 55%
    );
}
.contact-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46, 196, 176, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 196, 176, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* two-col: info left, form right */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5vw;
  align-items: start;
}
@media (max-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* left info */
.contact-info {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.contact-info.visible {
  opacity: 1;
  transform: translateX(0);
}

.contact-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}
.contact-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--teal);
}

.contact-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.contact-title span {
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.contact-channel:hover {
  border-color: rgba(46, 196, 176, 0.35);
  transform: translateX(4px);
}
.ch-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.ch-icon-wa {
  background: rgba(37, 211, 102, 0.15);
}
.ch-icon-mail {
  background: rgba(46, 196, 176, 0.12);
}
.ch-label {
  font-size: 0.7rem;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ch-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}

/* form */
.contact-form-wrap {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s 0.15s ease,
    transform 0.8s 0.15s ease;
}
.contact-form-wrap.visible {
  opacity: 1;
  transform: translateX(0);
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--teal),
    var(--violet),
    var(--magenta)
  );
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  font-family: "DM Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(232, 248, 246, 0.25);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(46, 196, 176, 0.6);
  box-shadow: 0 0 0 3px rgba(46, 196, 176, 0.08);
}
.form-select {
  cursor: pointer;
  color: var(--ink);
}
.form-select option {
  background: var(--bg);
  color: var(--ink);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form-submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dk), var(--violet));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.form-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.4s ease;
}
.form-submit:hover::after {
  transform: translateX(120%) skewX(-20deg);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46, 196, 176, 0.3);
}

.form-note {
  margin-top: 1rem;
  text-align: center;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 248, 246, 0.2);
}

/* ══ WHATSAPP BUTTON ══ */
.wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  border: none;
  cursor: pointer;
  animation:
    waPop 0.5s 2s cubic-bezier(0.16, 1, 0.3, 1) both,
    waPulse 3s 3s ease-in-out infinite;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@keyframes waPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(37, 211, 102, 0.75),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 25, 35, 0.95);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(10, 25, 35, 0.95);
}
.wa-btn:hover .wa-tooltip {
  opacity: 1;
}

/* footer */
.site-footer {
  padding: 1.6rem 7vw;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  letter-spacing: 0.05em;
}
.footer-sub {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}

/* ══ PROCESS SECTION ══ */
.process-section {
  position: relative;
  z-index: 10;
  padding: 7rem 7vw 7rem;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7vw;
  right: 7vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 47, 201, 0.4),
    rgba(46, 196, 176, 0.4),
    transparent
  );
}
.prc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(139, 47, 201, 0.06) 0%,
    transparent 65%
  );
}
.prc-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 47, 201, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 47, 201, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* header */
.prc-header {
  text-align: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.prc-header.visible {
  opacity: 1;
  transform: translateY(0);
}
.prc-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.prc-label::before,
.prc-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--violet);
}
.prc-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.prc-subtitle {
  margin-top: 1.2rem;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CHAIN CONTAINER ── */
.chain-wrap {
  margin-top: 5rem;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s 0.2s ease,
    transform 0.8s 0.2s ease;
}
.chain-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

/* The continuous animated pipe behind everything */
.chain-pipe {
  position: absolute;
  top: 72px; /* center of nodes */
  left: calc(7% + 30px);
  right: calc(7% + 30px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(46, 196, 176, 0.15),
    rgba(139, 47, 201, 0.15),
    rgba(46, 196, 176, 0.15)
  );
  overflow: hidden;
}
.chain-pipe::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--teal),
    var(--violet),
    var(--teal),
    transparent
  );
  animation: pipeFlow 2.8s linear infinite;
}
@keyframes pipeFlow {
  to {
    left: 100%;
  }
}

/* nodes row */
.chain-nodes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 7%;
}

/* each step */
.chain-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  text-align: center;
}

/* connector arrow between steps */
.chain-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 71px; /* pipe height center */
  right: -1px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(46, 196, 176, 0.35);
  z-index: 3;
  animation: arrowPulse 2.8s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,
  100% {
    border-left-color: rgba(46, 196, 176, 0.2);
  }
  50% {
    border-left-color: rgba(46, 196, 176, 0.8);
  }
}

/* node circle */
.node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(46, 196, 176, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  animation: nodeBreath 3s ease-in-out infinite;
}
/* stagger breath per node */
.chain-step:nth-child(1) .node {
  animation-delay: 0s;
}
.chain-step:nth-child(2) .node {
  animation-delay: 0.5s;
}
.chain-step:nth-child(3) .node {
  animation-delay: 1s;
}
.chain-step:nth-child(4) .node {
  animation-delay: 1.5s;
}
.chain-step:nth-child(5) .node {
  animation-delay: 2s;
}
@keyframes nodeBreath {
  0%,
  100% {
    border-color: rgba(46, 196, 176, 0.25);
    box-shadow: none;
  }
  50% {
    border-color: rgba(46, 196, 176, 0.7);
    box-shadow: 0 0 16px rgba(46, 196, 176, 0.3);
  }
}
.chain-step:hover .node {
  border-color: var(--teal);
  box-shadow: 0 0 24px rgba(46, 196, 176, 0.45);
  transform: scale(1.1);
}

/* active pulse ring around node */
.node-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(46, 196, 176, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.chain-step:nth-child(1) .node-ring {
  animation-delay: 0s;
}
.chain-step:nth-child(2) .node-ring {
  animation-delay: 0.5s;
}
.chain-step:nth-child(3) .node-ring {
  animation-delay: 1s;
}
.chain-step:nth-child(4) .node-ring {
  animation-delay: 1.5s;
}
.chain-step:nth-child(5) .node-ring {
  animation-delay: 2s;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.node-emoji {
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* step number badge */
.node-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dk), var(--violet));
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  z-index: 3;
}

/* label below node */
.node-label {
  margin-top: 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  padding: 0 0.3rem;
  transition: color 0.3s;
}
.chain-step:hover .node-label {
  color: var(--teal-lt);
}

/* progress bar under each node */
.node-desc {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
  padding: 0 0.3rem;
  max-width: 130px;
}

.node-bar {
  margin-top: 0.7rem;
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.node-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  animation: barFill 2s var(--bd, 0s) ease-in-out infinite alternate;
}
.chain-step:nth-child(1) .node-bar-fill {
  --bd: 0s;
}
.chain-step:nth-child(2) .node-bar-fill {
  --bd: 0.4s;
}
.chain-step:nth-child(3) .node-bar-fill {
  --bd: 0.8s;
}
.chain-step:nth-child(4) .node-bar-fill {
  --bd: 1.2s;
}
.chain-step:nth-child(5) .node-bar-fill {
  --bd: 1.6s;
}
@keyframes barFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* flowing particle on pipe */
.pipe-particle {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: particleFlow 2.8s var(--pp, 0s) linear infinite;
  opacity: 0;
}
@keyframes particleFlow {
  0% {
    left: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* bottom blurb */
.prc-blurb {
  margin-top: 4rem;
  text-align: center;
  padding: 2rem 3rem;
  border: 1px solid rgba(46, 196, 176, 0.12);
  border-radius: 12px;
  background: rgba(46, 196, 176, 0.03);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s 0.5s ease,
    transform 0.6s 0.5s ease;
}
.prc-blurb.visible {
  opacity: 1;
  transform: translateY(0);
}
.prc-blurb strong {
  color: var(--ink);
  font-weight: 600;
}

/* ─ mobile: vertical chain ─ */
@media (max-width: 700px) {
  .chain-nodes {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
  }
  .chain-pipe {
    display: none;
  }
  .chain-step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    width: 100%;
  }
  .chain-step:not(:last-child)::after {
    display: none;
  }
  .node-label {
    margin-top: 0;
  }
  .node-bar {
    display: none;
  }
  /* vertical connector line */
  .chain-step:not(:last-child) .node::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: rgba(46, 196, 176, 0.2);
  }
}

/* ══ ABOUT SECTION ══ */
.about-section {
  position: relative;
  z-index: 10;
  padding: 7rem 7vw 7rem;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7vw;
  right: 7vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 196, 176, 0.35),
    rgba(200, 75, 196, 0.35),
    transparent
  );
}
.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 50% 60% at 0% 50%,
      rgba(46, 196, 176, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 100% 30%,
      rgba(200, 75, 196, 0.05) 0%,
      transparent 60%
    );
}
.about-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46, 196, 176, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 196, 176, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* two-column layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: stretch;
}
@media (max-width: 780px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* LEFT — intro + founder */
.about-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.about-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}
.about-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--teal);
}

.about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.8rem;
}
.about-title span {
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  border-left: 2px solid rgba(46, 196, 176, 0.25);
  padding-left: 1.4rem;
  margin-bottom: 2.5rem;
}
.about-body p + p {
  margin-top: 1rem;
}
.about-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* founder card */
.founder-card {
  position: relative;
  padding: 1.8rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(46, 196, 176, 0.15);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
}
.founder-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dk), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(46, 196, 176, 0.25);
  animation: avatarGlow 3s ease-in-out infinite;
}
@keyframes avatarGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(46, 196, 176, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(46, 196, 176, 0.45);
  }
}
.founder-info {
  line-height: 1.3;
}
.founder-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.founder-role {
  font-family: "DM Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 3px;
}
.founder-year {
  margin-left: auto;
  flex-shrink: 0;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(46, 196, 176, 0.08);
  border: 1px solid rgba(46, 196, 176, 0.2);
  border-radius: 100px;
  padding: 4px 10px;
}
.founder-quote {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
}
.founder-quote strong {
  color: var(--ink);
  font-weight: 600;
  font-style: normal;
}

/* RIGHT — mission / vision */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s 0.15s ease,
    transform 0.8s 0.15s ease;
}
.about-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.mvv-card {
  position: relative;
  padding: 1.8rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  flex: 1;
}
.mvv-card:hover {
  border-color: rgba(46, 196, 176, 0.35);
  transform: translateX(6px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.3),
    -4px 0 20px rgba(46, 196, 176, 0.06);
}
.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--violet));
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.mvv-card:hover::before {
  transform: scaleY(1);
}

.mvv-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.mvv-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.mvv-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.mvv-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* values pills inside card */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.val-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(46, 196, 176, 0.08);
  border: 1px solid rgba(46, 196, 176, 0.2);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-lt);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.val-pill:hover {
  background: rgba(46, 196, 176, 0.15);
  border-color: rgba(46, 196, 176, 0.5);
}
.val-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* shared */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 780px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 5vw 80px;
  }
  .logo-showcase {
    order: -1;
  }
  .ring-wrap {
    width: 200px;
    height: 200px;
  }
  .headline {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .hero-stats {
    gap: 1.2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}


/* ══ CONTACT FORM — estilos adicionales ══ */

/* Feedback de estado del formulario */
.form-feedback {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.form-feedback--ok {
  background: rgba(46, 196, 176, 0.1);
  border: 1px solid rgba(46, 196, 176, 0.3);
  color: var(--teal-lt);
}
.form-feedback--error {
  background: rgba(200, 75, 196, 0.1);
  border: 1px solid rgba(200, 75, 196, 0.3);
  color: #e07de0;
}

/* Contact channel como link */
a.contact-channel {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ══ MODAL DE MIGRACIÓN ══ */
.migration-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 29, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", sans-serif;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.migration-modal__inner {
  background: #07151d;
  border: 1px solid rgba(46, 196, 176, 0.3);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 450px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.migration-modal__glow {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: rgba(46, 196, 176, 0.15);
  filter: blur(40px);
  border-radius: 50%;
}

.migration-modal__title {
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  margin-top: 0;
}

.migration-modal__title span {
  color: var(--teal);
}

.migration-modal__body {
  color: rgba(232, 248, 246, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
}

.migration-modal__btn {
  background: var(--teal);
  color: var(--bg);
  border: none;
  padding: 12px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 196, 176, 0.3);
}

.migration-modal__btn:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
}