:root {
  --void: #04060b;
  --ink: #080c15;
  --panel: rgba(14, 21, 36, .72);
  --panel-solid: #0d1422;
  --line: rgba(148, 177, 220, .18);
  --white: #f5f8ff;
  --muted: #a4afc2;
  --cyan: #43e7ff;
  --violet: #795cff;
  --green: #92ffb4;
  --gold: #ffd21e;
  --max: 1320px;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0,0,0,.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(121,92,255,.16), transparent 27rem),
    radial-gradient(circle at 88% 24%, rgba(67,231,255,.09), transparent 32rem),
    var(--void);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  z-index: -2;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: clamp(82px, 10vw, 150px) 0; position: relative; }
.section-tight { padding: 72px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font: 700 12px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 18px currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -.045em; }
h1 { font-size: clamp(3.5rem, 8vw, 8rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.6rem, 5vw, 5.5rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.5rem, 2.2vw, 2.4rem); margin-bottom: 16px; }
.display-gradient {
  color: transparent;
  background: linear-gradient(112deg, #fff 10%, #bff7ff 40%, #8b74ff 70%, #fff 92%);
  background-clip: text;
  -webkit-background-clip: text;
}
.lead { max-width: 760px; color: #c4cede; font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.55; }
.muted { color: var(--muted); }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  transition: transform .25s, border-color .25s, background .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(67,231,255,.55); }
.btn-primary { color: #031014; background: linear-gradient(110deg, var(--cyan), var(--green)); border-color: transparent; box-shadow: 0 10px 42px rgba(67,231,255,.19); }
.btn-primary:hover { box-shadow: 0 14px 55px rgba(67,231,255,.3); }
.btn-small { min-height: 44px; padding-inline: 19px; font-size: 13px; }

/* Command dock */
.site-header { position: fixed; inset: 20px 0 auto; z-index: 50; pointer-events: none; }
.nav-shell {
  width: min(calc(100% - 32px), 1260px);
  margin: auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(4,7,13,.78);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 16px 55px rgba(0,0,0,.3);
  pointer-events: auto;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 46px; height: 46px; object-fit: cover; object-position: left; border-radius: 50%; filter: drop-shadow(0 0 12px rgba(67,231,255,.28)); }
.brand-name { font-weight: 850; letter-spacing: .08em; font-size: 16px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: #c5cddd; padding: 12px 13px; border-radius: 999px; font-size: 14px; font-weight: 650; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.07); }
.status { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font: 700 10px ui-monospace, monospace; letter-spacing: .12em; white-space: nowrap; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; animation: pulse 1.8s infinite; }
.menu-toggle { display: none; border: 0; background: none; width: 48px; height: 48px; padding: 13px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: #fff; transition: .3s; }

/* Hero */
.hero { min-height: 100svh; display: grid; align-items: center; padding: 150px 0 90px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr); gap: 54px; align-items: center; }
.hero h1 { max-width: 940px; }
.hero h1 .thin { display: block; font-size: .46em; letter-spacing: -.02em; color: #aeb8cb; font-weight: 420; margin-bottom: 12px; }
.hero .lead { max-width: 820px; }
.orbital {
  width: min(38vw, 520px);
  aspect-ratio: 1;
  justify-self: end;
  position: relative;
  border: 1px solid rgba(67,231,255,.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 70px rgba(67,231,255,.06), 0 0 100px rgba(121,92,255,.08);
  animation: float 7s ease-in-out infinite;
}
.orbital::before, .orbital::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(121,92,255,.36); }
.orbital::before { inset: 11%; animation: spin 18s linear infinite; border-style: dashed; }
.orbital::after { inset: 25%; border-color: rgba(146,255,180,.2); }
.orbital-core { width: 38%; aspect-ratio: 1; border-radius: 34%; display: grid; place-items: center; background: linear-gradient(145deg, rgba(67,231,255,.18), rgba(121,92,255,.22)); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 65px rgba(67,231,255,.16); font-size: clamp(3rem,8vw,7rem); font-weight: 900; color: var(--cyan); }
.orbit-node { position: absolute; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #09101c; font: 650 10px ui-monospace, monospace; letter-spacing: .1em; }
.n1 { top: 7%; left: 13%; color: var(--cyan); }
.n2 { top: 42%; right: -7%; color: var(--green); }
.n3 { bottom: 7%; left: 12%; color: #bbaeff; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: #748096; font: 650 10px ui-monospace, monospace; letter-spacing: .15em; writing-mode: vertical-rl; }

/* Components */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 54px; }
.section-head h2 { max-width: 880px; margin-bottom: 0; }
.section-head p { max-width: 440px; margin-bottom: 5px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17,27,46,.82), rgba(7,11,19,.72));
  box-shadow: var(--shadow);
  transition: transform .35s, border-color .35s;
}
.card:hover { transform: translateY(-7px); border-color: rgba(67,231,255,.4); }
.card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; bottom: -90px; border-radius: 50%; background: var(--card-glow, var(--cyan)); filter: blur(75px); opacity: .12; }
.card-number { color: var(--cyan); font: 700 12px ui-monospace, monospace; letter-spacing: .15em; }
.card h3 { margin-top: 64px; }
.card p { color: var(--muted); margin-bottom: 0; }
.card-link { display: inline-flex; margin-top: 26px; color: var(--cyan); font-size: 14px; font-weight: 750; }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 16px; color: var(--cyan); font-size: 24px; background: rgba(255,255,255,.03); }
.service-card h3 { margin-top: 42px; }
.service-card:nth-child(2n) { --card-glow: var(--violet); }
.service-card:nth-child(3n) { --card-glow: var(--green); }
.split { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: clamp(40px,8vw,110px); align-items: center; }
.feature-list { display: grid; gap: 12px; margin-top: 30px; }
.feature { display: flex; gap: 16px; align-items: center; min-height: 66px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.feature b { font-size: 16px; }
.feature span { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #031014; background: var(--green); font-size: 13px; font-weight: 900; }
.visual-panel { min-height: 560px; position: relative; border: 1px solid var(--line); border-radius: 40px; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(121,92,255,.2), transparent 40%), #080d17; }
.visual-panel .ring { position: absolute; border: 1px solid rgba(67,231,255,.22); border-radius: 50%; inset: 12%; animation: spin 25s linear infinite; }
.visual-panel .ring:nth-child(2) { inset: 25%; animation-direction: reverse; border-style: dashed; }
.visual-panel .core-copy { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; padding: 30px; }
.core-copy strong { display: block; font-size: clamp(3rem,7vw,6rem); letter-spacing: -.06em; color: var(--cyan); }
.core-copy small { color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.timeline { display: grid; grid-template-columns: repeat(5,1fr); position: relative; gap: 14px; }
.timeline::before { content:""; position:absolute; left: 8%; right:8%; top:29px; height:1px; background: linear-gradient(90deg, var(--cyan), var(--violet), var(--green)); }
.time-step { position: relative; padding-top: 66px; }
.time-step::before { content:""; position:absolute; top:22px; left:0; width:15px; height:15px; border: 4px solid var(--void); border-radius:50%; background:var(--cyan); box-shadow:0 0 20px var(--cyan); }
.time-step:nth-child(2n)::before { background:var(--violet); box-shadow:0 0 20px var(--violet); }
.time-step b { display:block; font-size:18px; }
.time-step small { color:var(--muted); }
.metric { padding: 30px 0; border-top: 1px solid var(--line); }
.metric strong { display:block; font-size:clamp(2.6rem,5vw,5rem); line-height:1; letter-spacing:-.06em; }
.metric span { color:var(--muted); font-size:14px; }
.project { min-height: 440px; display:flex; flex-direction:column; justify-content:flex-end; }
.project .tag { position:absolute; top:26px; left:26px; }
.project h3 { font-size:clamp(2rem,3.5vw,3.8rem); margin:0 0 12px; }
.tag { display:inline-flex; padding:8px 12px; border:1px solid var(--line); border-radius:999px; color:#d8e0ee; background:rgba(0,0,0,.25); font:650 10px ui-monospace,monospace; letter-spacing:.1em; text-transform:uppercase; }
.globe { min-height: 520px; display:grid; place-items:center; position:relative; }
.globe-disc { width:min(78vw,500px); aspect-ratio:1; border-radius:50%; border:1px solid rgba(67,231,255,.25); background:radial-gradient(circle at 35% 30%, rgba(67,231,255,.15), transparent 35%), repeating-radial-gradient(circle, transparent 0 34px, rgba(121,92,255,.12) 35px 36px); box-shadow:inset -30px -20px 90px rgba(121,92,255,.17), 0 0 90px rgba(67,231,255,.08); animation:float 6s ease-in-out infinite; }
.country-node { position:absolute; min-width:145px; padding:13px 16px; border:1px solid var(--line); border-radius:14px; background:rgba(5,9,16,.88); backdrop-filter:blur(14px); }
.country-node b { display:block; font-size:14px; }
.country-node small { color:var(--green); font:650 10px ui-monospace,monospace; }
.country-node:nth-child(2) { top:12%; left:2%; }
.country-node:nth-child(3) { top:20%; right:0; }
.country-node:nth-child(4) { bottom:12%; right:4%; }
.country-node:nth-child(5) { bottom:8%; left:4%; }
.cta-panel { padding:clamp(42px,7vw,90px); border:1px solid rgba(67,231,255,.24); border-radius:40px; background:radial-gradient(circle at 85% 20%, rgba(67,231,255,.17), transparent 35%), radial-gradient(circle at 10% 80%, rgba(121,92,255,.17), transparent 38%), #09101b; text-align:center; overflow:hidden; }
.cta-panel h2 { max-width:950px; margin-inline:auto; }
.cta-panel .lead { margin-inline:auto; }

/* Page heroes */
.page-hero { padding: 190px 0 90px; min-height: 70vh; display:grid; align-items:end; }
.page-hero h1 { max-width:1100px; font-size:clamp(3.6rem,8vw,8.2rem); }
.breadcrumb { display:flex; gap:10px; color:#7e899c; font:650 11px ui-monospace,monospace; letter-spacing:.1em; text-transform:uppercase; margin-bottom:28px; }
.breadcrumb span { color:var(--cyan); }
.page-hero-grid { display:grid; grid-template-columns:1fr .4fr; gap:40px; align-items:end; }
.hero-index { justify-self:end; font-size:clamp(5rem,12vw,12rem); font-weight:900; color:rgba(255,255,255,.035); line-height:.8; }
.sticky-tabs { position:sticky; top:110px; z-index:10; padding:12px; border:1px solid var(--line); border-radius:18px; background:rgba(5,8,14,.78); backdrop-filter:blur(18px); display:flex; gap:7px; overflow:auto; }
.sticky-tabs a { white-space:nowrap; padding:10px 15px; border-radius:999px; color:var(--muted); font-size:13px; }
.sticky-tabs a:hover { color:#fff; background:rgba(255,255,255,.07); }
.process { counter-reset:process; }
.process-row { counter-increment:process; display:grid; grid-template-columns:90px .6fr 1fr; gap:30px; padding:40px 0; border-top:1px solid var(--line); }
.process-row::before { content:"0" counter(process); color:var(--cyan); font:700 12px ui-monospace,monospace; letter-spacing:.12em; }
.process-row h3 { margin:0; }
.process-row p { color:var(--muted); margin:0; }

/* Form */
.contact-layout { display:grid; grid-template-columns:.7fr 1.3fr; gap:30px; align-items:start; }
.contact-aside, .form-shell { border:1px solid var(--line); border-radius:30px; background:var(--panel); }
.contact-aside { padding:36px; position:sticky; top:120px; }
.contact-item { padding:24px 0; border-top:1px solid var(--line); }
.contact-item small { display:block; color:var(--muted); margin-bottom:5px; }
.form-shell { padding:clamp(28px,4vw,52px); }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:13px; color:#c6cedc; font-weight:700; }
.field input, .field select, .field textarea { width:100%; min-height:58px; border:1px solid var(--line); border-radius:14px; padding:14px 16px; color:#fff; background:rgba(2,5,10,.65); outline:none; }
.field textarea { min-height:160px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--cyan); box-shadow:0 0 0 3px rgba(67,231,255,.09); }
.check { display:flex; gap:12px; align-items:flex-start; color:var(--muted); font-size:13px; }
.check input { margin-top:5px; accent-color:var(--cyan); }
.form-status { display:none; margin-top:20px; padding:18px; border:1px solid rgba(146,255,180,.35); border-radius:14px; color:var(--green); background:rgba(146,255,180,.06); }

/* Footer & floating */
.site-footer { margin-top:90px; padding:70px 0 24px; border-top:1px solid var(--line); background:linear-gradient(to bottom, rgba(12,19,32,.7), rgba(3,5,9,.95)); }
.footer-top { display:grid; grid-template-columns:1.25fr repeat(3,.65fr); gap:40px; }
.footer-logo { width:280px; max-width:100%; margin-bottom:26px; }
.footer-manifesto { max-width:440px; color:var(--muted); font-size:16px; }
.footer-col h4 { margin:0 0 20px; color:#fff; font-size:13px; letter-spacing:.12em; text-transform:uppercase; }
.footer-col a { display:block; color:var(--muted); font-size:14px; padding:5px 0; }
.footer-col a:hover { color:var(--cyan); }
.footer-bottom { display:flex; justify-content:space-between; gap:24px; align-items:center; margin-top:55px; padding-top:22px; border-top:1px solid var(--line); color:#788397; font:650 10px ui-monospace,monospace; letter-spacing:.1em; text-transform:uppercase; }
.socials { display:flex; gap:8px; }
.socials a { width:40px; height:40px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; font-size:11px; font-weight:800; }
.socials a:hover { color:#061014; background:var(--cyan); }
.whatsapp { position:fixed; z-index:40; right:22px; bottom:22px; width:62px; height:62px; border-radius:50%; display:grid; place-items:center; color:#04120a; background:#7aff9e; box-shadow:0 12px 42px rgba(122,255,158,.28); font-weight:900; font-size:12px; }
.whatsapp::before { content:""; position:absolute; inset:-7px; border:1px solid rgba(122,255,158,.35); border-radius:50%; animation:pulse-ring 2.2s infinite; }
.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@keyframes spin { to { transform:rotate(360deg); } }
@keyframes float { 50% { transform:translateY(-12px); } }
@keyframes pulse { 50% { opacity:.35; } }
@keyframes pulse-ring { 70%,100% { transform:scale(1.25); opacity:0; } }

@media (max-width: 1080px) {
  .nav-links, .status, .nav-shell > .btn { display:none; }
  .menu-toggle { display:block; }
  .nav-links.open { position:absolute; display:flex; flex-direction:column; align-items:stretch; top:80px; left:16px; right:16px; padding:18px; border:1px solid var(--line); border-radius:22px; background:rgba(5,8,14,.97); box-shadow:var(--shadow); }
  .nav-links.open a { padding:15px 17px; font-size:16px; }
  .hero-grid { grid-template-columns:1fr; }
  .orbital { position:absolute; width:420px; opacity:.26; right:-130px; top:23%; z-index:-1; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1.2fr repeat(2,.7fr); }
  .footer-col:last-child { grid-column:2; }
}

@media (max-width: 760px) {
  body { font-size:17px; }
  .container { width:min(calc(100% - 30px),var(--max)); }
  .site-header { inset:10px 0 auto; }
  .nav-shell { width:calc(100% - 20px); min-height:64px; border-radius:19px; }
  .brand-mark { width:40px; height:40px; }
  h1 { font-size:clamp(3.15rem,15vw,5.2rem); }
  h2 { font-size:clamp(2.55rem,11vw,4.25rem); }
  .hero { padding-top:130px; min-height:100svh; }
  .hero h1 .thin { font-size:.38em; }
  .hero .lead { font-size:1.14rem; }
  .orbital { width:330px; top:28%; right:-150px; }
  .section { padding:82px 0; }
  .section-head { display:block; margin-bottom:34px; }
  .section-head p { margin-top:20px; }
  .grid-2, .grid-3, .grid-4, .split, .page-hero-grid, .contact-layout { grid-template-columns:1fr; }
  .card { min-height:270px; padding:26px; }
  .timeline { grid-template-columns:1fr; gap:0; padding-left:28px; }
  .timeline::before { left:7px; right:auto; top:20px; bottom:10px; width:1px; height:auto; }
  .time-step { padding:0 0 34px 28px; }
  .time-step::before { top:6px; left:-28px; }
  .visual-panel { min-height:420px; }
  .page-hero { padding:150px 0 70px; min-height:68vh; }
  .hero-index { display:none; }
  .process-row { grid-template-columns:48px 1fr; gap:16px; padding:30px 0; }
  .process-row p { grid-column:2; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .contact-aside { position:static; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .footer-col:last-child { grid-column:auto; }
  .footer-bottom { align-items:flex-start; flex-direction:column; }
  .whatsapp { width:56px; height:56px; right:15px; bottom:15px; }
}

@media (max-width: 430px) {
  .brand-name { display:none; }
  .actions .btn { width:100%; }
  .grid-4, .footer-top { grid-template-columns:1fr; }
  .footer-brand { grid-column:auto; }
  .country-node { min-width:118px; padding:10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
