anzemos cc/* =========================================================
   Paraguay Future Invest — styles.css
   Modern, world-class investment landing page
   ========================================================= */

:root {
  --bg: #0a0e1a;
  --bg-soft: #0f1424;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text: #eaf0ff;
  --text-dim: #9aa6c4;
  --gold: #f5c542;
  --gold-2: #ff9d2f;
  --green: #15c47e;
  --green-2: #0db96b;
  --blue: #4f8cff;
  --silver: #c7d0e0;
  --bronze: #d08b53;
  --radius: 18px;
  --maxw: 1180px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-text { font-family: 'Sora', sans-serif; }

a { color: inherit; text-decoration: none; }

/* Animated background */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(245, 197, 66, 0.12), transparent 60%),
    radial-gradient(800px 600px at 0% 20%, rgba(21, 196, 126, 0.12), transparent 55%),
    radial-gradient(700px 500px at 50% 110%, rgba(79, 140, 255, 0.1), transparent 60%);
  pointer-events: none;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--green));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; }
.brand-mark { font-size: 1.4rem; }
.brand-text { font-size: 1.05rem; letter-spacing: -0.3px; }
.brand-text strong { color: var(--gold); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--text-dim); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1300 !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,197,66,0.35); }

.lang-toggle { display: flex; gap: 0.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 0.2rem; }
.lang-toggle button {
  background: none; border: none; color: var(--text-dim);
  font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.6rem;
  border-radius: 999px; cursor: pointer; transition: all 0.2s;
}
.lang-toggle button.active { background: var(--surface-strong); color: var(--text); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.burger span { width: 24px; height: 2px; background: var(--text); transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.2rem 4rem;
  position: relative;
}
.hero-content { max-width: 920px; }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,197,66,0.1);
  border: 1px solid rgba(245,197,66,0.25);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 1.4rem;
}
.gradient-text {
  background: linear-gradient(120deg, var(--gold), var(--gold-2) 40%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 2.4rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1300;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(245,197,66,0.4); }
.btn-ghost { background: var(--surface); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--surface-strong); transform: translateY(-2px); }
.btn-outline { border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: rgba(21,196,126,0.1); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 0.8rem;
  backdrop-filter: blur(8px);
}
.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(120deg, var(--gold), var(--green));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 2px solid var(--border); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 50%{opacity:1} 100%{opacity:0;transform:translate(-50%,14px)} }

/* ============ SECTIONS ============ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) 1.2rem; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.kicker {
  display: inline-block; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 0.8rem;
}
.section-head h2 { font-size: clamp(1.8rem, 4.5vw, 2.9rem); letter-spacing: -0.8px; line-height: 1.1; margin-bottom: 1rem; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

.gold-text { color: var(--gold); }
.silver-text { color: var(--silver); }
.bronze-text { color: var(--bronze); }
.green-text { color: var(--green); }

/* ============ RANKING ============ */
.ranking { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.rank-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.rank-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--border);
}
.rank-card.gold::before { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.rank-card.silver::before { background: linear-gradient(90deg, var(--silver), #fff); }
.rank-card.bronze::before { background: linear-gradient(90deg, var(--bronze), #f0a868); }
.rank-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.25); background: var(--surface-strong); }
.medal { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; }
.rank-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.rank-card p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1rem; }
.rank-return { font-size: 0.82rem; color: var(--text-dim); }
.rank-return strong { color: var(--gold); }

/* ============ SECTOR ============ */
.sector.alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent); }
.sector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.sector-grid.reverse .sector-text { order: 2; }
.sector-text .kicker { color: var(--gold); }
.sector-text h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); letter-spacing: -0.8px; margin-bottom: 1rem; }
.lead { color: var(--text-dim); font-size: 1.08rem; margin-bottom: 1.6rem; }

.feature-list { list-style: none; margin-bottom: 1.8rem; }
.feature-list li {
  padding: 0.6rem 0 0.6rem 1.8rem; position: relative;
  border-bottom: 1px solid var(--border); color: var(--text-dim); font-size: 0.95rem;
}
.feature-list li::before {
  content: '▹'; position: absolute; left: 0; color: var(--gold); font-size: 1.1rem;
}
.feature-list strong { color: var(--text); }

.chip-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.8rem; }
.chip {
  background: var(--surface); border: 1px solid var(--border);
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.85rem; color: var(--text);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Sector visuals */
.sector-visual { display: flex; flex-direction: column; align-items: center; gap: 2rem; }

/* Energy orb */
.energy-orb { position: relative; width: 260px; height: 260px; display: grid; place-items: center; }
.orb-core {
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7d6, var(--gold) 40%, var(--gold-2));
  box-shadow: 0 0 60px rgba(245,197,66,0.6), 0 0 120px rgba(255,157,47,0.35);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
.orb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(245,197,66,0.3); }
.r1 { width: 150px; height: 150px; animation: spin 8s linear infinite; }
.r2 { width: 210px; height: 210px; border-style: dashed; animation: spin 14s linear infinite reverse; }
.r3 { width: 260px; height: 260px; border-color: rgba(21,196,126,0.25); animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.mini-metrics { display: flex; gap: 1rem; }
.mini { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 0.9rem 1.1rem; }
.mini-num { display: block; font-family: 'Sora'; font-weight: 800; font-size: 1.5rem; color: var(--gold); }
.mini span:last-child { font-size: 0.72rem; color: var(--text-dim); }

/* Value chain */
.value-chain { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
.vc-step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.3rem 1.1rem; text-align: center; min-width: 100px;
}
.vc-step span { font-size: 2rem; }
.vc-step p { font-weight: 600; margin-top: 0.4rem; }
.vc-step small { color: var(--text-dim); font-size: 0.75rem; }
.vc-step.highlight { border-color: var(--green); box-shadow: 0 0 30px rgba(21,196,126,0.25); }
.vc-step.highlight small { color: var(--green); }
.vc-arrow { color: var(--gold); font-size: 1.5rem; }

/* Tech grid */
.tech-grid-anim { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; width: 100%; max-width: 320px; }
.tech-grid-anim .cell {
  aspect-ratio: 1; border-radius: 6px; background: var(--surface); border: 1px solid var(--border);
  transition: background 0.4s, box-shadow 0.4s;
}
.tech-grid-anim .cell.on { background: linear-gradient(135deg, var(--blue), var(--green)); box-shadow: 0 0 16px rgba(79,140,255,0.5); }

/* Corridor map */
.corridor-map { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.node { display: flex; flex-direction: column; align-items: center; font-size: 1.8rem; }
.node small { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.3rem; }
.node.n-py { font-size: 2.6rem; }
.corridor-line {
  width: 60px; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold));
  position: relative; border-radius: 2px;
}
.corridor-line::after {
  content: ''; position: absolute; top: 50%; left: 0; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; transform: translateY(-50%);
  animation: flow 2s linear infinite;
}
@keyframes flow { from { left: 0; } to { left: 100%; } }

/* Warehouse */
.warehouse-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; max-width: 300px; }
.wh {
  aspect-ratio: 1.4; background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  position: relative; overflow: hidden;
}
.wh::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(245,197,66,0.25));
}
.wh:hover { border-color: var(--gold); transform: translateY(-4px); transition: 0.2s; }

/* Modular build visual */
.modular-build {
  position: relative;
  width: 260px;
  height: 230px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  align-content: end;
}
.mod-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  animation: modIn 0.6s ease forwards;
}
.mod-block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,196,126,0.18), rgba(79,140,255,0.12));
  opacity: 0;
  transition: opacity 0.3s;
}
.mod-block:hover { border-color: var(--green); transform: translateY(-4px); }
.mod-block:hover::after { opacity: 1; }
.mod-block.b1 { animation-delay: 0.05s; }
.mod-block.b2 { animation-delay: 0.20s; }
.mod-block.b3 { animation-delay: 0.35s; }
.mod-block.b4 { animation-delay: 0.50s; }
.mod-block.b5 { animation-delay: 0.65s; grid-column: span 1; }
.mod-roof {
  grid-column: 1 / -1;
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  box-shadow: 0 0 22px rgba(21,196,126,0.45);
  opacity: 0;
  transform: translateY(14px);
  animation: modIn 0.6s ease 0.8s forwards;
  order: -1;
}
@keyframes modIn { to { opacity: 1; transform: translateY(0) scale(1); } }

/* Modular audience cards */
.modular-audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.aud-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.aud-card:hover { transform: translateY(-5px); border-color: var(--green); background: var(--surface-strong); }
.aud-card span { font-size: 1.9rem; display: block; margin-bottom: 0.6rem; }
.aud-card h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.aud-card p { color: var(--text-dim); font-size: 0.9rem; }

/* ============ WHY ============ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.2rem; }
.why-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; transition: transform 0.25s, border-color 0.25s;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--green); }
.why-card span { font-size: 2rem; }
.why-card h3 { margin: 0.7rem 0 0.5rem; font-size: 1.15rem; }
.why-card p { color: var(--text-dim); font-size: 0.92rem; }

/* ============ CTA ============ */
.cta-section { max-width: 900px; }
.cta-box {
  background: linear-gradient(135deg, rgba(245,197,66,0.08), rgba(21,196,126,0.08));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-box h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: -0.8px; margin-bottom: 1rem; }
.cta-box > p { color: var(--text-dim); max-width: 540px; margin: 0 auto 2rem; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; max-width: 560px; margin: 0 auto; }
.cta-form input, .cta-form select {
  padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg-soft); color: var(--text); font-size: 0.95rem; font-family: inherit;
}
.cta-form input:focus, .cta-form select:focus { outline: none; border-color: var(--gold); }
.cta-form select { grid-column: 1 / -1; }
.cta-form button { grid-column: 1 / -1; justify-content: center; }
.form-note { margin-top: 1rem; color: var(--green); font-size: 0.9rem; min-height: 1.2rem; }

/* ============ CONSULTING MICRO-CTA ============ */
.consulting-micro-cta {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid rgba(21,196,126,0.3);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.consulting-content h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.consulting-content p { color: var(--text-dim); max-width: 500px; margin: 0 auto 1.4rem; font-size: 0.95rem; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--border); margin-top: 3rem; background: var(--bg-soft); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.2rem 2rem;
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; margin-top: 0.6rem; }
.footer-cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-cols h4 { margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-cols a { display: block; color: var(--text-dim); font-size: 0.88rem; padding: 0.25rem 0; transition: color 0.2s; }
.footer-cols a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 1.2rem; }
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; }

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav-links { 
    position: fixed; top: 0; right: -100%; height: 100vh; width: 75%; max-width: 320px;
    flex-direction: column; justify-content: center; gap: 1.8rem;
    background: rgba(10,14,26,0.97); backdrop-filter: blur(20px);
    border-left: 1px solid var(--border); transition: right 0.35s; padding: 2rem;
  }
  .nav-links.open { right: 0; }
  .burger { display: flex; z-index: 950; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .lang-toggle { margin-left: auto; margin-right: 0.6rem; }
  .sector-grid, .sector-grid.reverse { grid-template-columns: 1fr; }
  .sector-grid.reverse .sector-text { order: 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .cta-form { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
