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

/* ── TOKENS ── */
:root {
  --bg:          #050A14;
  --bg2:         #0B1220;
  --bg3:         #0F1A2E;
  --accent:      #00C9FF;
  --accent2:     #0066FF;
  --accent3:     #7B61FF;
  --text:        #E8EDF5;
  --text-muted:  #7A8BA0;
  --text-dim:    #3D5166;
  --border:      rgba(0, 201, 255, 0.12);
  --border2:     rgba(255, 255, 255, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; overflow-y: scroll; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 253, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 171, 171, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
th{
  display: table-cell;
  width: max-content;
  vertical-align: inherit;
  font-weight: bold;
  text-align: left;
  background-color: var(--border);
}
table, th{
    border: 1px solid rgba(0, 201, 255, 0.5);
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}
table{
    border-collapse: collapse;
    width: auto;
}
td{
    border: 1px solid rgba(0, 201, 255, 0.5);
    padding: 10px;
    font-size: 15px;
    text-align: left;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(5, 10, 20, 0.97); }

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-dot {
  width: 28px; height: 28px;
  display: inline-block;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 9px 22px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--accent); color: #000; }

/* ── LAYOUT ── */
section { position: relative; z-index: 1; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  
}
.subtitle-point{
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 18px);
  font-weight: 600;
  padding-bottom: -10px;
  /* border-bottom: 1px solid white; */
  text-indent: 15px;
}
hr{
  margin-top: -10px;
  margin-bottom: 10px;
  color: var(--accent);
  text-indent: 15px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  padding: 15px 34px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 28px rgba(0, 102, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text-muted);
  padding: 15px 34px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

/* ── ORB BACKGROUNDS ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation: drift1 14s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0, 201, 255, 0.1) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: drift2 11s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.08) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation: drift3 13s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0, 0); }    to { transform: translate(120px, 60px); }  }
@keyframes drift2 { from { transform: translate(0, 0); }    to { transform: translate(-80px, -50px); } }
@keyframes drift3 { from { transform: translateY(0); }      to { transform: translateY(-60px); }       }

/* ── ANIMATIONS ── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse   { 0%, 100% { opacity: 1; transform: scale(1); }    50% { opacity: 0.4; transform: scale(1.6); } }
@keyframes blink   { 0%, 100% { opacity: 1; }                         50% { opacity: 0; }                          }
@keyframes scroll  { from { transform: translateX(0); }                to { transform: translateX(-50%); }         }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MARQUEE ── */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-track div {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee-track div span { color: var(--accent); font-size: 8px; }

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 0 5%;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg2);
}
.stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::before { opacity: 1; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.3px; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg2);
  padding: 40px 36px;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-icon svg { width: 24px; height: 24px; }
.si-blue   { background: rgba(0, 102, 255, 0.15); color: #4d94ff; }
.si-cyan   { background: rgba(0, 201, 255, 0.12); color: #00C9FF; }
.si-purple { background: rgba(123, 97, 255, 0.15); color: #9d84ff; }
.si-teal   { background: rgba(0, 210, 170, 0.12); color: #00d2aa; }
.si-orange { background: rgba(255, 140, 0, 0.12); color: #ff9a20; }
.si-green  { background: rgba(0, 200, 100, 0.12); color: #00c864; }

.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.service-arrow {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  transition: all 0.2s;
  text-decoration: none;
}
.service-arrow svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-arrow { color: var(--accent); }
.service-card:hover .service-arrow svg { transform: translate(3px, -3px); }

/* ── CONTACT / FORM (shared between index & join-us) ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.contact-info > p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.contact-link:hover {
  background: var(--bg2);
  border-color: var(--border);
  color: var(--text);
}
.contact-link-icon {
  width: 36px; height: 36px;
  background: rgba(0, 201, 255, 0.08);
  border: 1px solid rgba(0, 201, 255, 0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* form panel */
.form-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(0, 201, 255, 0.3);
  background: rgba(0, 201, 255, 0.03);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-select { cursor: pointer; }
.form-select option { background: #0B1220; }
.form-textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(0, 102, 255, 0.3);
  margin-top: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 102, 255, 0.45);
}
.form-submit:disabled {
  background: linear-gradient(135deg, #00965c, #00c887);
  box-shadow: none;
  transform: none;
  cursor: default;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 5%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.footer-brand span { color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text-dim); text-align: center; }
.footer-links { display: flex; gap: 1.5rem; justify-content: flex-end; }
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 5% 100px;
  z-index: 1;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,201,255,0.07);
  border: 1px solid rgba(0,201,255,0.18);
  border-radius: 100px;
  padding: 7px 20px 7px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.5s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 560px;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s 0.16s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.24s ease both;
  margin-bottom: 4rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-check {
  width: 18px; height: 18px;
  background: rgba(0,212,106,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: #00D46A;
  flex-shrink: 0;
}
.trust-divider { width: 1px; height: 16px; background: var(--border2); }

/* Services */
#servicios { padding: 120px 0; }
.services-header { margin-bottom: 4rem; }

/* Gallery */
#popular { padding: 80px 0 120px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 3rem;
}
.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.85);
  display: flex;
  gap: 15px;
}
.gallery-card:first-child { grid-row: span 2;}
.gallery-card:last-child { grid-column: span 2;}
.gallery-img img{
  width: 100%;
  max-width: 100px;
  animation: roll 10s infinite ease-in-out;
}
@keyframes roll{
  0%, 100%{transform: translateX(-50px);}
  50%{transform: translateX(50px);}
}


.gallery-card:first-child .gallery-img { height: 100%; min-height: 420px; }
.gallery-card:nth-child(2) .gallery-img { height: 100%; min-height: 420px; }
.gallery-card:hover .gallery-img { transform: scale(1.04); filter: brightness(0.7); }
.gallery-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(5,10,20,0.95) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s;
}
.gallery-card:hover .gallery-meta { opacity: 1; transform: translateY(0); }
.gallery-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,201,255,0.1);
  border: 1px solid rgba(0,201,255,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.gallery-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.gallery-label {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
}
.gallery-label.premium { background: linear-gradient(135deg, var(--accent3), #ff61d8); color: #fff; }

/* Why us */
#nosotros {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(0,102,255,0.03), transparent);
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-features { display: flex; flex-direction: column; margin-top: 2.5rem; }
.why-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border2);
}
.why-feat:last-child { border-bottom: none; }
.feat-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  min-width: 28px;
  margin-top: 4px;
  background: rgba(0,201,255,0.08);
  border: 1px solid rgba(0,201,255,0.15);
  border-radius: 6px;
  padding: 4px 6px;
  text-align: center;
}
.feat-text h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 5px; }
.feat-text p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* Terminal card */
.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal { font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.9; }
.t-line { display: flex; gap: 10px; margin-bottom: 2px; }
.t-prompt { color: var(--accent); }
.t-cmd { color: var(--text); }
.t-out { color: var(--text-muted); padding-left: 20px; }
.t-success { color: #00D46A; padding-left: 20px; }
.t-warn { color: #ffbd2e; padding-left: 20px; }
.t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--accent);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.metric-box {
  background: rgba(0,201,255,0.05);
  border: 1px solid rgba(0,201,255,0.1);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.metric-val { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.metric-label { font-size: 11px; color: var(--text-muted); }

/* Process */
#proceso { padding: 120px 0; }
.proc-header { text-align: center; margin-bottom: 4rem; }
.proc-header .section-desc { margin: 0 auto; }
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.proc-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--accent2), var(--border), transparent);
  z-index: 0;
}
.proc-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.step-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,201,255,0.2);
  background: var(--bg2);
}
.step-ring-inner {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  position: relative; z-index: 1;
}
.step-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* Testimonials */
#testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(123,97,255,0.04), transparent);
}
.test-header { text-align: center; margin-bottom: 4rem; }
.test-header .section-desc { margin: 0 auto; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.test-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.test-card:hover { border-color: rgba(0,201,255,0.2); transform: translateY(-4px); }
.test-card:hover::before { opacity: 1; }
.test-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.test-star { width: 14px; height: 14px; color: #ffbd2e; }
.test-star.empty { color: var(--text-dim); }
.test-quote { font-size: 38px; line-height: 1; color: var(--accent); opacity: 0.3; font-family: Georgia, serif; margin-bottom: 4px; }
.test-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border2); }
.test-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.test-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.test-role { font-size: 12px; color: var(--text-dim); }

/* Contact */
#contacto { padding: 120px 0; }

.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 100vh;
  padding: 130px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* Status badges */
.status-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; animation: fadeUp 0.5s ease both; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.badge-closed { background: rgba(255,95,87,0.1); border: 1px solid rgba(255,95,87,0.2); color: #ff5f57; }
.badge-closed .badge-dot { background: #ff5f57; }
.badge-open { background: rgba(0,212,106,0.1); border: 1px solid rgba(0,212,106,0.2); color: #00D46A; }
.badge-open .badge-dot { background: #00D46A; animation: pulse 2s ease infinite; }

.hero-split h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero-split h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.5s 0.18s ease both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.5s 0.26s ease both; }

/* Path cards (hero right column) */
.path-cards { display: flex; flex-direction: column; gap: 12px; animation: fadeUp 0.6s 0.3s ease both; }
.path-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.path-card:hover { border-color: rgba(0,201,255,0.22); transform: translateX(6px); }
.path-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.path-icon-emp { background: rgba(0,102,255,0.15); }
.path-icon-for { background: rgba(0,201,255,0.12); }
.path-icon-col { background: rgba(123,97,255,0.15); }
.path-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.path-label-emp { color: #4d94ff; }
.path-label-for { color: var(--accent); }
.path-label-col { color: #9d84ff; }
.path-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.path-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.path-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}
.status-open { background: rgba(0,212,106,0.1); border: 1px solid rgba(0,212,106,0.2); color: #00D46A; }
.status-closed { background: rgba(255,95,87,0.08); border: 1px solid rgba(255,95,87,0.15); color: #ff7a75; }

/* Purpose cards */
#purpose { padding: 120px 0; }
.purpose-header { text-align: center; margin-bottom: 4rem; }
.purpose-header .section-desc { margin: 0 auto; }
.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.purpose-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.purpose-card:hover { border-color: rgba(0,201,255,0.2); transform: translateY(-6px); }
.purpose-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg3);
}
.purpose-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.8); }
.purpose-card:hover .purpose-thumb img { transform: scale(1.06); }
.purpose-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.purpose-info { padding: 28px; }
.purpose-info h4 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.purpose-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(0,201,255,0.2);
  border-radius: 6px;
  background: rgba(0,201,255,0.06);
  transition: all 0.2s;
}
.btn-card:hover { background: rgba(0,201,255,0.12); border-color: rgba(0,201,255,0.35); }
.btn-card svg { width: 14px; height: 14px; transition: transform 0.2s; }
.btn-card:hover svg { transform: translateX(3px); }

/* Perks + Team */
#perks { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(123,97,255,0.04), transparent); }
.perks-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2rem; }
.perk-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.3s;
}
.perk-card:hover { border-color: rgba(0,201,255,0.2); }
.perk-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 18px; }
.perk-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.perk-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* Team card */
.team-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent3), transparent);
}
.team-avatars { display: flex; margin-bottom: 20px; }
.team-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; color: #fff;
  margin-left: -12px; flex-shrink: 0;
}
.team-avatar:first-child { margin-left: 0; }
.team-more { background: var(--bg3); border: 1px solid var(--border); color: var(--text-muted); font-size: 12px; }
.team-label { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.team-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.open-roles { display: flex; flex-direction: column; gap: 10px; }
.role-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border2);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.role-row:hover { background: rgba(0,201,255,0.04); border-color: rgba(0,201,255,0.15); }
.role-name { font-size: 14px; font-weight: 500; color: var(--text); }
.role-type { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.role-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.role-badge-open { background: rgba(0,212,106,0.1); border: 1px solid rgba(0,212,106,0.2); color: #00D46A; }
.role-badge-collab { background: rgba(123,97,255,0.1); border: 1px solid rgba(123,97,255,0.2); color: #9d84ff; }
.role-badge-closed { background: rgba(255,95,87,0.08); border: 1px solid rgba(255,95,87,0.15); color: #ff7a75; }

/* Join form section */
#join { padding: 120px 0; }

.privacy{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 5% 100px;
  z-index: 1;
  overflow: hidden;
}
.privacy h1{
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.08s ease both;
}
.privacy h1 span {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.privacy .section-desc{
  font-size: 25px;
  font-weight: 900;
}
.privacy > h2{
  margin-bottom: 20px;
}
.btn-pri{
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text-muted);
  padding: 15px 34px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.1s;
}
.btn-pri:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}
.btn-pri span{
  transition: all 0.1s;
}
.btn-pri:hover span{
  transform: translateX(2px);
}
.warning{
  margin: 20px 100px;
  padding: 5px;
  text-align: left;
  border-left: 2px solid var(--accent3);
  color: var(--text-muted);
}
.sec ul{
  text-indent: 20px;
}
.privacy-point{
  margin-bottom: 60px;
}
.privacy-point p{
  margin-bottom: 20px;
}
.t-head{
  background-color: var(--accent2);
}
.po-logo{
  font-family: var(--font-display);
  font-weight: 800;font-weight: 800;
}




/* Responsive */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .path-cards { display: none; }
  .purpose-grid { grid-template-columns: 1fr; }
  .perks-layout { grid-template-columns: 1fr; gap: 40px; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .perks-grid { grid-template-columns: 1fr; }
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-card { position: static; }
  .proc-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .proc-steps::before { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:first-child { grid-row: auto; }
  .gallery-card:first-child .gallery-img { min-height: 200px; }
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
  .warning{margin: 15px 5px;}
  .po-logo{font-weight: 400;}
}
