/* Jipy — styles.css */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,700;6..12,900&family=Inter:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap');

/* ── TOKENS ── */
:root {
  --v:   #3D1A6E;
  --vm:  #5B2DA0;
  --conn:#8B2FC9;
  --disc:#11C5D9;
  --enc: #FF2D9B;
  --bg:  #F4EFFE;
  --brd: #E2D0F8;
  --ink: #1A0A3D;
  --gray:#5A4E78;
  --gl:  #A89EC0;
  --w:   #fff;
  --fh:  'Nunito Sans', system-ui, sans-serif;
  --fb:  'Inter', system-ui, sans-serif;
  --px:  clamp(20px, 5.5vw, 72px);
  --max: 1140px;
  --r:   16px;
  --rs:  10px;
  --rp:  100px;
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
body {
  background: var(--w);
  color: var(--gray);
  font-family: var(--fb);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-color: var(--brd);
  box-shadow: 0 2px 20px rgba(61,26,110,.07);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--fb); font-size: 13px; color: var(--gl);
  text-decoration: none; transition: color .15s;
}
.nav-links a:hover { color: var(--v); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--v); color: var(--w);
  font-family: var(--fh); font-size: 14px; font-weight: 800;
  padding: 9px 22px; border-radius: var(--rp); border: none; cursor: pointer;
  letter-spacing: .01em;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--conn);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,47,201,.28);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--px) 80px;
  position: relative; overflow: hidden;
}
.hero-pat {
  position: absolute; inset: 0;
  background-image: var(--pat-img);
  background-size: cover; opacity: .05;
  pointer-events: none; z-index: 0;
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(155deg,rgba(255,255,255,.98) 0%,rgba(244,239,254,.93) 50%,rgba(255,255,255,.97) 100%);
  pointer-events: none; z-index: 0;
}
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(100px);
}
.o1 { width:640px;height:640px;background:var(--conn);opacity:.07;top:-200px;right:-180px;z-index:0; }
.o2 { width:380px;height:380px;background:var(--disc);opacity:.06;bottom:-80px;left:-80px;z-index:0; }
.o3 { width:260px;height:260px;background:var(--enc);opacity:.05;top:45%;right:8%;z-index:0; }
.hero-inner { position: relative; z-index: 1; max-width: 700px; width: 100%; }
.hero-totem { width: min(90px,22vw); margin-bottom: 32px; }
.hero-kicker {
  font-family: var(--fb); font-size: clamp(12px,1.4vw,14px);
  font-weight: 500; color: var(--conn);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-kicker::before {
  content: ''; width: 16px; height: 2px;
  background: var(--conn); border-radius: 2px; flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(38px,6.5vw,78px);
  font-weight: 900; color: var(--v);
  line-height: .96; letter-spacing: -3px;
  margin-bottom: 20px;
}
.hero-h1 em { font-style: normal; color: var(--conn); }
.hero-sub {
  font-family: var(--fb);
  font-size: clamp(15px,1.7vw,18px);
  font-weight: 300; color: var(--gray);
  max-width: 500px; line-height: 1.72; margin-bottom: 36px;
}
/* Vibes */
.vibes-lbl { font-family: var(--fb); font-size: 12px; color: var(--gl); margin-bottom: 10px; }
.vibes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.vibe {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1.5px solid var(--brd);
  color: var(--v); font-family: var(--fh); font-size: 13px; font-weight: 800;
  padding: 9px 16px; border-radius: var(--rp);
  cursor: pointer; user-select: none; letter-spacing: .01em;
  transition: all .18s;
}
.vibe:hover { border-color: var(--conn); color: var(--conn); transform: translateY(-2px); }
.vibe.sel { background: var(--v); border-color: var(--v); color: var(--w); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(61,26,110,.2); }
.vibe.sel-d { background: var(--disc); border-color: var(--disc); color: var(--w); }
.vibe.sel-e { background: var(--enc);  border-color: var(--enc);  color: var(--w); }
.vibe.sel-c { background: var(--conn); border-color: var(--conn); color: var(--w); }
/* Nodes SVG */
.nodes { margin-bottom: 28px; width: min(240px,60vw); }
/* Form */
.hform { display: flex; flex-direction: column; gap: 11px; width: 100%; max-width: 440px; }
.frow { display: flex; gap: 9px; }
.inp {
  flex: 1; background: var(--bg); border: 1.5px solid var(--brd);
  border-radius: var(--rs); padding: 13px 16px;
  font-size: 15px; font-family: var(--fb); color: var(--ink); font-weight: 300;
  outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color .2s, background .2s;
}
.inp::placeholder { color: var(--gl); }
.inp:focus { border-color: var(--conn); background: var(--w); }
.sel-i {
  flex: 1; background: var(--bg); border: 1.5px solid var(--brd);
  border-radius: var(--rs); padding: 13px 36px 13px 16px;
  font-size: 15px; font-family: var(--fb); color: var(--ink); font-weight: 300;
  outline: none; cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B2FC9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color .2s;
}
.sel-i:focus { border-color: var(--conn); }
.sel-i option { background: var(--w); color: var(--ink); }
.btn-main {
  width: 100%; background: var(--v); color: var(--w);
  font-family: var(--fh); font-size: 16px; font-weight: 900;
  padding: 15px 28px; border-radius: var(--rs); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  letter-spacing: .02em; transition: all .2s;
}
.btn-main:hover { background: var(--conn); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(139,47,201,.28); }
.fnote { font-family: var(--fb); font-size: 12px; color: var(--gl); font-weight: 300; }
.ok-msg {
  display: none;
  background: rgba(17,197,217,.08); border: 1px solid rgba(17,197,217,.25);
  border-radius: var(--rs); padding: 13px 16px;
  font-size: 14px; color: #0899AA; line-height: 1.5;
}
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gl); font-family: var(--fb); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite; z-index: 1; pointer-events: none;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION BASE ── */
.sec { padding: 88px var(--px); }
.sec-lila { background: var(--bg); }
.sec-dark { background: var(--v); }
.inn { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-family: var(--fb); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--conn); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 16px; height: 2px;
  background: var(--conn); border-radius: 2px; flex-shrink: 0;
}
.eyebrow-w { color: rgba(255,255,255,.38); }
.eyebrow-w::before { background: rgba(255,255,255,.22); }
.h2 {
  font-family: var(--fh); font-size: clamp(24px,4vw,46px); font-weight: 900;
  color: var(--v); line-height: 1.08; letter-spacing: -.5px; margin-bottom: 14px;
}
.h2 em { font-style: normal; color: var(--conn); }
.h2-w { color: var(--w); }
.h2-w em { color: var(--disc); }
.lead {
  font-family: var(--fb); font-size: 17px; font-weight: 300;
  color: var(--gray); max-width: 560px; line-height: 1.7; margin-bottom: 40px;
}
.lead-w { color: rgba(255,255,255,.52); max-width: 580px; }

/* ── WHAT MOVES YOU ── */
.moves-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(135px,1fr));
  gap: 10px; margin-bottom: 28px;
}
.move-opt {
  background: var(--bg); border: 1.5px solid var(--brd);
  border-radius: 12px; padding: 16px 12px;
  cursor: pointer; text-align: center; user-select: none;
  transition: all .2s var(--spring);
}
.move-opt:hover { border-color: var(--conn); background: #EDE0FF; transform: translateY(-3px); }
.move-opt.sel { background: var(--v); border-color: var(--v); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(61,26,110,.2); }
.move-emoji { font-size: 26px; margin-bottom: 7px; display: block; transition: transform .2s; }
.move-opt:hover .move-emoji, .move-opt.sel .move-emoji { transform: scale(1.15); }
.move-label { font-family: var(--fh); font-size: 12px; font-weight: 800; color: var(--v); transition: color .15s; }
.move-opt.sel .move-label { color: var(--w); }
.move-sug {
  background: var(--bg); border: 1.5px solid var(--brd);
  border-radius: var(--r); padding: 20px 22px;
  min-height: 80px; display: flex; align-items: center; gap: 16px;
  transition: all .3s;
}
.move-sug.visible { border-color: var(--conn); background: rgba(139,47,201,.04); }
.sug-emoji { font-size: 30px; flex-shrink: 0; }
.sug-title { font-family: var(--fh); font-size: 16px; font-weight: 800; color: var(--v); margin-bottom: 4px; }
.sug-desc { font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.55; }
.sug-cta {
  display: none; align-items: center; gap: 6px;
  font-family: var(--fh); font-size: 13px; font-weight: 800;
  color: var(--conn); background: none; border: none; cursor: pointer;
  padding: 7px 0; margin-top: 5px; transition: gap .15s;
}
.sug-cta:hover { gap: 10px; }

/* ── MANIFESTO BAND ── */
.mband {
  background: var(--v); padding: 68px var(--px);
  position: relative; overflow: hidden;
}
.mband::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--pat-img); background-size: cover;
  opacity: .06; pointer-events: none;
}
.mb-in {
  max-width: var(--max); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.mb-q {
  font-family: var(--fh); font-size: clamp(24px,3.8vw,46px);
  font-weight: 900; color: var(--w); line-height: 1.08; letter-spacing: -1px;
}
.mb-q em { color: var(--disc); font-style: normal; }
.mb-right p {
  font-family: var(--fb); font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 20px;
}
.mb-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.mb-chip {
  font-family: var(--fh); font-size: 12px; font-weight: 700;
  padding: 6px 13px; border-radius: var(--rp);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12); letter-spacing: .01em;
}

/* ── CHIPS FILTER ── */
.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fh); font-size: 13px; font-weight: 800;
  padding: 8px 16px; border-radius: var(--rp); cursor: pointer;
  transition: all .2s var(--spring); user-select: none; letter-spacing: .01em;
  border: 1.5px solid var(--brd); background: var(--bg); color: var(--gray);
}
.chip:hover { border-color: var(--conn); color: var(--conn); transform: translateY(-1px); }
.chip.on { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.chip.on-v { background: var(--v);    border-color: var(--v);    color: var(--w); }
.chip.on-c { background: var(--conn); border-color: var(--conn); color: var(--w); }
.chip.on-d { background: var(--disc); border-color: var(--disc); color: var(--w); }
.chip.on-e { background: var(--enc);  border-color: var(--enc);  color: var(--w); }

/* ── XP CARDS ── */
.xp-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 18px; }
.xcard {
  background: var(--w); border: 1.5px solid var(--brd);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--spring), box-shadow .25s, border-color .25s, opacity .3s;
  cursor: pointer;
}
.xcard:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(61,26,110,.13); border-color: rgba(139,47,201,.3); }
.xcard.dimmed { opacity: .3; transform: scale(.98); pointer-events: none; }
.xcard:nth-child(4n+2) { transform: rotate(.2deg); }
.xcard:nth-child(4n+2):hover { transform: translateY(-6px) rotate(0); }
.xcard:nth-child(4n+3) { transform: rotate(-.18deg); }
.xcard:nth-child(4n+3):hover { transform: translateY(-6px) rotate(0); }
.xcard:nth-child(4n+4) { transform: rotate(.15deg); }
.xcard:nth-child(4n+4):hover { transform: translateY(-6px) rotate(0); }
.xi { height: 190px; position: relative; overflow: hidden; }
.xi img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.xcard:hover .xi img { transform: scale(1.04); }
.xi-grad { position: absolute; inset: 0; background: linear-gradient(transparent 50%,rgba(26,10,61,.55)); }
.xi-cat {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--fh); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--rp);
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  color: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.2);
}
.xi-pb {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--fh); font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--rp); letter-spacing: .04em;
}
.pb-fixed { background: rgba(17,197,217,.18);  backdrop-filter: blur(6px); color: #056B79; border: 1px solid rgba(17,197,217,.35); }
.pb-group { background: rgba(139,47,201,.18); backdrop-filter: blur(6px); color: #5B1A96; border: 1px solid rgba(139,47,201,.35); }
.pb-vol   { background: rgba(255,45,155,.18);  backdrop-filter: blur(6px); color: #A0175C; border: 1px solid rgba(255,45,155,.35); }
.xb { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.xtit { font-family: var(--fh); font-size: 17px; font-weight: 900; color: var(--v); line-height: 1.2; margin-bottom: 7px; }
.xdesc { font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.62; margin-bottom: 10px; flex: 1; }
.xmicro { font-family: var(--fb); font-size: 11px; color: var(--gl); font-style: italic; margin-bottom: 8px; }
.xactivation {
  background: var(--bg); border-radius: var(--rs); padding: 9px 12px;
  margin-bottom: 9px; font-family: var(--fb); font-size: 11px;
  color: var(--gray); line-height: 1.55; border-left: 2px solid var(--conn);
}
.xactivation strong { color: var(--conn); font-weight: 500; }
.xfoot {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  border-top: 1px solid var(--brd); padding-top: 12px; margin-top: auto;
}
.xmeta { font-family: var(--fb); font-size: 12px; color: var(--gl); display: flex; align-items: center; gap: 5px; }
.xdot  { width: 4px; height: 4px; border-radius: 50%; background: var(--conn); flex-shrink: 0; }
.xprice { font-family: var(--fh); font-size: 14px; font-weight: 800; color: var(--v); }
.xcta {
  font-family: var(--fh); font-size: 12px; font-weight: 800;
  color: var(--w); background: var(--v);
  padding: 6px 12px; border-radius: var(--rp); border: none; cursor: pointer;
  transition: background .15s, transform .15s; letter-spacing: .01em; white-space: nowrap;
}
.xcta:hover { background: var(--conn); transform: scale(1.04); }
.xcta-vol { background: var(--enc); }
.xcta-vol:hover { background: #e01f88; }

/* ── MINI CALC ── */
.calc-inline {
  background: var(--bg); border: 1.5px solid var(--brd);
  border-radius: var(--r); padding: 18px 20px; margin: 10px 0;
}
.calc-title { font-family: var(--fh); font-size: 12px; font-weight: 800; color: var(--v); margin-bottom: 12px; }
.ci-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ci-lbl { font-family: var(--fb); font-size: 11px; color: var(--gl); min-width: 80px; }
.ci-val { font-family: var(--fh); font-size: 13px; font-weight: 800; color: var(--v); min-width: 56px; text-align: right; }
input[type=range] { flex: 1; -webkit-appearance: none; height: 4px; border-radius: 2px; background: var(--brd); outline: none; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--conn); cursor: pointer; box-shadow: 0 2px 6px rgba(139,47,201,.3); }
input[type=range]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--conn); cursor: pointer; border: none; }
.cupos-row { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.cupo {
  width: 26px; height: 26px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; border: 1.5px solid; cursor: pointer;
  transition: all .18s var(--spring);
}
.cupo.libre { background: var(--bg); border-color: var(--brd); }
.cupo.libre:hover { border-color: var(--conn); transform: scale(1.12); }
.cupo.full  { background: var(--conn); border-color: var(--conn); }
.cupo.new   { background: var(--enc);  border-color: var(--enc); animation: popdot .25s var(--spring); }
@keyframes popdot { 0% { transform: scale(.6); } 100% { transform: scale(1); } }
.calc-res { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.cr { background: var(--w); border-radius: var(--rs); padding: 9px; text-align: center; border: 1px solid var(--brd); }
.cr-n { font-family: var(--fh); font-size: 18px; font-weight: 900; display: block; line-height: 1; margin-bottom: 2px; }
.cr-l { font-family: var(--fb); font-size: 10px; color: var(--gl); }
.calc-hint { font-family: var(--fb); font-size: 11px; color: var(--gray); line-height: 1.55; padding: 8px 10px; background: var(--w); border-radius: var(--rs); border: 1px solid var(--brd); }
.calc-hint strong { color: var(--conn); }
.min-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--fh); font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--rp);
  background: rgba(17,197,217,.1); color: #0899AA;
  margin-bottom: 8px; border: 1px solid rgba(17,197,217,.25);
}

/* ── GALLERY ── */
.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px; gap: 10px;
}
.gi { border-radius: var(--r); overflow: hidden; position: relative; }
.gi img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gi:hover img { transform: scale(1.04); }
.gi.tall { grid-row: span 2; }
.gi-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent,rgba(26,10,61,.82));
  padding: 24px 16px 14px;
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.9);
}

/* ── COUNTER ── */
.counter {
  background: var(--v); padding: 56px var(--px);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 56px;
  position: relative; overflow: hidden;
}
.counter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%,rgba(139,47,201,.35),transparent);
  pointer-events: none;
}
.ci-stat { text-align: center; position: relative; z-index: 1; }
.cn { font-family: var(--fh); font-size: 48px; font-weight: 900; color: var(--w); letter-spacing: -1px; display: block; line-height: 1; margin-bottom: 5px; }
.cne { color: var(--enc); }
.cnd { color: var(--disc); }
.cl { font-family: var(--fb); font-size: 11px; font-weight: 300; color: rgba(255,255,255,.38); letter-spacing: .08em; text-transform: uppercase; }

/* ── IA SECTION ── */
.ia-sec { background: var(--v); padding: 88px var(--px); position: relative; overflow: hidden; }
.ia-sec::before { content: ''; position: absolute; inset: 0; background-image: var(--pat-img); background-size: cover; opacity: .06; pointer-events: none; }
.ia-in { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.ia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ia-left p { font-family: var(--fb); font-size: 16px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.72; margin-bottom: 20px; }
.ia-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.ia-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
  font-family: var(--fh); font-size: 12px; font-weight: 700;
  padding: 7px 13px; border-radius: var(--rp);
}
.ia-demo { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 28px; }
.ia-demo-t { font-family: var(--fh); font-size: 15px; font-weight: 800; color: var(--w); margin-bottom: 6px; }
.ia-demo-s { font-family: var(--fb); font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 18px; line-height: 1.55; }
.ia-ta {
  width: 100%; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--rs); padding: 14px 16px;
  font-size: 14px; font-family: var(--fb); font-weight: 300; color: var(--w);
  outline: none; resize: none; min-height: 90px; line-height: 1.6;
  transition: border-color .2s; box-sizing: border-box;
}
.ia-ta::placeholder { color: rgba(255,255,255,.3); }
.ia-ta:focus { border-color: var(--disc); }
.ia-exs { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 14px; }
.ia-ex {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: var(--rp);
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: all .15s;
}
.ia-ex:hover { background: rgba(255,255,255,.13); color: rgba(255,255,255,.85); }
.ia-btn {
  width: 100%; background: var(--disc); color: var(--w);
  font-family: var(--fh); font-size: 15px; font-weight: 900;
  padding: 14px; border-radius: var(--rs); border: none; cursor: pointer;
  letter-spacing: .02em; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.ia-btn:hover:not(:disabled) { background: #0FB8CC; transform: translateY(-1px); }
.ia-btn:disabled { background: rgba(255,255,255,.1); color: rgba(255,255,255,.3); cursor: not-allowed; }
.ia-loading { display: none; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-family: var(--fb); font-size: 13px; margin-top: 14px; }
.ia-loading.vis { display: flex; }
.ia-spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); border-top-color: var(--disc); animation: spin .7s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.ia-result { display: none; margin-top: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--rs); padding: 18px; }
.ia-result.vis { display: block; }
.ia-rlbl { font-family: var(--fb); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.ia-field { margin-bottom: 12px; }
.ia-field:last-child { margin-bottom: 0; }
.ia-fl { font-family: var(--fb); font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.ia-fv { font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--w); line-height: 1.4; }
.ia-fv.big { font-size: 17px; font-weight: 900; color: var(--disc); }
.ia-fv.tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ia-tag { font-family: var(--fh); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--rp); background: rgba(17,197,217,.15); color: var(--disc); border: 1px solid rgba(17,197,217,.25); }
.ia-cp { margin-top: 12px; width: 100%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); font-family: var(--fh); font-size: 13px; font-weight: 700; padding: 10px; border-radius: var(--rs); cursor: pointer; transition: all .15s; }
.ia-cp:hover { background: rgba(255,255,255,.14); }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sc { border-radius: var(--r); padding: 40px 36px 44px; display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden; transition: transform .2s var(--spring); }
.sc:hover { transform: translateY(-5px); }
.sc-e { background: var(--bg); border: 1.5px solid var(--brd); }
.sc-c { background: var(--v); border: 1.5px solid var(--v); }
.sc-c::after { content: ''; position: absolute; width: 220px; height: 220px; background: var(--conn); border-radius: 50%; bottom: -70px; right: -70px; opacity: .18; filter: blur(60px); pointer-events: none; }
.sc-icon { font-size: 30px; width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.sc-title { font-family: var(--fh); font-size: clamp(19px,2.5vw,27px); font-weight: 900; line-height: 1.15; letter-spacing: -.3px; }
.sc-e .sc-title { color: var(--v); }
.sc-c .sc-title { color: var(--w); }
.sc-desc { font-family: var(--fb); font-size: 14px; font-weight: 300; line-height: 1.7; flex: 1; }
.sc-e .sc-desc { color: var(--gray); }
.sc-c .sc-desc { color: rgba(255,255,255,.68); }
.slist { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.slist li { font-family: var(--fb); font-size: 13px; font-weight: 300; display: flex; gap: 9px; align-items: flex-start; line-height: 1.55; }
.slist li::before { content: '→'; font-family: var(--fh); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.sc-e .slist li { color: var(--gray); }
.sc-e .slist li::before { color: var(--conn); }
.sc-c .slist li { color: rgba(255,255,255,.72); }
.sc-c .slist li::before { color: var(--enc); }
.sc-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fh); font-size: 14px; font-weight: 800; padding: 13px 22px; border-radius: var(--rs); border: none; cursor: pointer; width: fit-content; letter-spacing: .02em; transition: all .2s; }
.sc-btn:hover { transform: translateY(-2px); }
.btn-v { background: var(--v); color: var(--w); }
.btn-v:hover { background: var(--conn); box-shadow: 0 8px 24px rgba(61,26,110,.28); }
.btn-e { background: var(--enc); color: var(--w); }
.btn-e:hover { background: #e01f88; box-shadow: 0 8px 24px rgba(255,45,155,.28); }

/* ── HOW ── */
.how { display: grid; grid-template-columns: repeat(auto-fill,minmax(188px,1fr)); gap: 2px; background: var(--brd); border-radius: var(--r); overflow: hidden; }
.hi { background: var(--w); padding: 28px 22px; }
.hi-num { font-family: var(--fb); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--conn); margin-bottom: 12px; }
.hi-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.hi-icon svg { width: 23px; height: 23px; }
.hi-t { font-family: var(--fh); font-size: 15px; font-weight: 800; color: var(--v); margin-bottom: 7px; line-height: 1.3; }
.hi-d { font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.62; }

/* ── IDENTITY ── */
.id-sec { background: var(--v); padding: 88px var(--px); position: relative; overflow: hidden; }
.id-sec::before { content: ''; position: absolute; inset: 0; background-image: var(--pat-img); background-size: cover; opacity: .07; pointer-events: none; }
.id-in { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.id-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.id-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.id-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); color: var(--w); font-family: var(--fh); font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: var(--rp); }
.pc-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 28px; }
.pc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.pc-av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,var(--conn),var(--enc)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.pc-name { font-family: var(--fh); font-size: 18px; font-weight: 900; color: var(--w); }
.pc-sub { font-family: var(--fb); font-size: 12px; color: rgba(255,255,255,.4); }
.pc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.pc-st { background: rgba(255,255,255,.06); border-radius: var(--rs); padding: 12px; text-align: center; }
.pc-sn { font-family: var(--fh); font-size: 22px; font-weight: 900; color: var(--w); display: block; line-height: 1; margin-bottom: 3px; }
.pc-sl { font-family: var(--fb); font-size: 10px; font-weight: 300; color: rgba(255,255,255,.38); }
.pc-bgs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.pc-bg { font-family: var(--fh); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--rp); background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.12); }
.pc-share { width: 100%; background: var(--enc); color: var(--w); font-family: var(--fh); font-size: 14px; font-weight: 800; padding: 13px; border-radius: var(--rs); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s; letter-spacing: .01em; }
.pc-share:hover { background: #e01f88; transform: translateY(-1px); }

/* ── PROOF ── */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(272px,1fr)); gap: 18px; }
.pc2 { background: var(--w); border: 1.5px solid var(--brd); border-radius: var(--r); padding: 26px; transition: transform .2s; }
.pc2:hover { transform: translateY(-3px); }
.pstars { color: var(--enc); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.pq { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--v); line-height: 1.5; margin-bottom: 18px; font-style: italic; }
.pau { display: flex; align-items: center; gap: 12px; }
.pav2 { width: 42px; height: 42px; border-radius: 50%; background: var(--bg); border: 2px solid var(--brd); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.pname { font-family: var(--fh); font-size: 14px; font-weight: 800; color: var(--v); }
.prole { font-family: var(--fb); font-size: 11px; font-weight: 300; color: var(--gl); }

/* ── CTA ── */
.cta-sec { background: var(--bg); padding: 108px var(--px); text-align: center; position: relative; overflow: hidden; }
.cta-o1 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--disc); opacity: .07; filter: blur(80px); top: -100px; left: -100px; pointer-events: none; }
.cta-o2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--enc); opacity: .07; filter: blur(60px); bottom: -80px; right: -80px; pointer-events: none; }
.cta-in { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.cta-h { font-family: var(--fh); font-size: clamp(26px,4.5vw,52px); font-weight: 900; color: var(--v); letter-spacing: -.5px; line-height: 1.1; margin-bottom: 16px; }
.cta-h em { font-style: normal; color: var(--conn); }
.cta-p { font-family: var(--fb); font-size: 16px; font-weight: 300; color: var(--gray); line-height: 1.7; margin-bottom: 44px; }
.cta-form { display: flex; flex-direction: column; gap: 11px; max-width: 400px; margin: 0 auto; }
.cta-btns { display: flex; gap: 10px; }
.btn-exp { flex: 1; background: var(--v); color: var(--w); font-family: var(--fh); font-size: 14px; font-weight: 800; padding: 14px 12px; border-radius: var(--rs); border: none; cursor: pointer; letter-spacing: .02em; transition: all .2s; }
.btn-exp:hover { background: var(--conn); transform: translateY(-1px); }
.btn-cre { flex: 1; background: var(--enc); color: var(--w); font-family: var(--fh); font-size: 14px; font-weight: 800; padding: 14px 12px; border-radius: var(--rs); border: none; cursor: pointer; letter-spacing: .02em; transition: all .2s; }
.btn-cre:hover { background: #e01f88; transform: translateY(-1px); }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--brd); padding: 36px var(--px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 28px; width: auto; }
.ftag { font-family: var(--fb); font-size: 12px; font-weight: 300; color: var(--gl); margin-top: 4px; }
.flinks { display: flex; gap: 24px; list-style: none; }
.flinks a { font-family: var(--fb); font-size: 13px; color: var(--gl); text-decoration: none; transition: color .15s; }
.flinks a:hover { color: var(--conn); }

/* ── MODAL ── */
.overlay { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(26,10,61,.5); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); align-items: center; justify-content: center; padding: 20px; }
.overlay.open { display: flex; }
.modal { background: var(--w); border: 1.5px solid var(--brd); border-radius: var(--r); padding: 40px 36px 36px; max-width: 440px; width: 100%; position: relative; max-height: 90svh; overflow-y: auto; }
.mclose { position: absolute; top: 14px; right: 14px; background: var(--bg); border: none; color: var(--gl); cursor: pointer; font-size: 19px; line-height: 1; padding: 6px 9px; border-radius: 8px; transition: background .15s; }
.mclose:hover { background: var(--brd); color: var(--v); }
.mi { font-size: 36px; margin-bottom: 14px; display: block; }
.mt { font-family: var(--fh); font-size: 22px; font-weight: 900; color: var(--v); letter-spacing: -.3px; margin-bottom: 7px; }
.ms { font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--gray); margin-bottom: 26px; line-height: 1.58; }
.mf { display: flex; flex-direction: column; gap: 12px; }
.mfd { display: flex; flex-direction: column; gap: 4px; }
.ml { font-family: var(--fb); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--gl); }
.mb-btn { width: 100%; font-family: var(--fh); font-size: 15px; font-weight: 800; padding: 14px; border-radius: var(--rs); border: none; cursor: pointer; margin-top: 4px; transition: all .2s; letter-spacing: .01em; }
.mb-v { background: var(--v); color: var(--w); }
.mb-v:hover { background: var(--conn); transform: translateY(-1px); }
.mb-e { background: var(--enc); color: var(--w); }
.mb-e:hover { background: #e01f88; transform: translateY(-1px); }
.mdisc { font-family: var(--fb); font-size: 11px; font-weight: 300; color: var(--gl); text-align: center; margin-top: 6px; }
.mok { display: none; text-align: center; padding: 14px 0; }
.mok-i { font-size: 48px; display: block; margin-bottom: 14px; }
.mok-t { font-family: var(--fh); font-size: 22px; font-weight: 900; color: var(--v); margin-bottom: 8px; }
.mok-s { font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--gray); line-height: 1.6; }

/* ── FADE UP ── */
@media (prefers-reduced-motion: no-preference) {
  .fu { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
  .fu.on { opacity: 1; transform: none; }
  .fu:nth-child(2) { transition-delay: .08s; }
  .fu:nth-child(3) { transition-delay: .16s; }
  .fu:nth-child(4) { transition-delay: .24s; }
  .fu:nth-child(5) { transition-delay: .32s; }
  .fu:nth-child(6) { transition-delay: .40s; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi.tall { grid-row: span 1; }
  .id-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .mb-in { grid-template-columns: 1fr; gap: 28px; }
  .ia-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .frow, .cta-btns { flex-direction: column; }
  .nav-links { display: none; }
  .footer { flex-direction: column; align-items: flex-start; }
  .modal { padding: 32px 20px 28px; }
  .how { grid-template-columns: 1fr 1fr; }
  .calc-res { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .how { grid-template-columns: 1fr; }
  .pc-stats { grid-template-columns: 1fr 1fr; }
  .moves-grid { grid-template-columns: repeat(3,1fr); }
}

/* ── HERO LAYOUT (v2) ── */
.hero-top {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}
.hero-totem {
  width: clamp(60px, 10vw, 90px);
  flex-shrink: 0;
  margin-bottom: 0;
}
.hero-top-text .hero-kicker { margin-bottom: 8px; }
.hero-top-text .hero-h1     { margin-bottom: 0; }
.hero-sub { margin-top: 18px; }

/* ── MOVE ICONS ── */
.move-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(139,47,201,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  transition: background .2s, transform .2s;
}
.move-icon-wrap svg {
  width: 22px; height: 22px;
  color: var(--conn);
  transition: color .2s;
}
.move-opt:hover .move-icon-wrap { background: rgba(139,47,201,.15); transform: scale(1.08); }
.move-opt.sel .move-icon-wrap   { background: rgba(255,255,255,.2); }
.move-opt.sel .move-icon-wrap svg { color: var(--w); }

/* ── NODES pulse animation ── */
.pulse-ring {
  transform-origin: 304px 22px;
  animation: pulse-out 2.2s ease-out infinite;
}
@keyframes pulse-out {
  0%   { opacity: .4; transform: scale(1); }
  100% { opacity: 0;  transform: scale(2.2); }
}

/* ── HOW STEPS (new design) ── */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.how-step {
  display: grid;
  grid-template-columns: 36px 56px 1fr;
  gap: 0 18px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--w);
  border: 1.5px solid var(--brd);
  border-radius: var(--r);
  margin-bottom: 0;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.how-step:hover {
  border-color: rgba(139,47,201,.3);
  box-shadow: 0 8px 28px rgba(61,26,110,.08);
  transform: translateX(4px);
}
.how-step-num {
  font-family: var(--fh);
  font-size: 11px; font-weight: 900;
  color: var(--gl);
  letter-spacing: .08em;
  padding-top: 14px;
  text-align: center;
}
.how-step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.how-step-icon svg { width: 22px; height: 22px; }
.how-step-body { padding: 4px 0; }
.how-step-tag {
  font-family: var(--fb);
  font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gl); margin-bottom: 4px;
}
.how-step-t {
  font-family: var(--fh);
  font-size: 16px; font-weight: 800;
  color: var(--v); line-height: 1.25; margin-bottom: 5px;
}
.how-step-d {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  color: var(--gray); line-height: 1.62;
}
.how-connector {
  width: 24px; height: 40px; margin: 0 auto; display: flex; align-items: center; justify-content: center;
}
.how-connector svg { width: 24px; height: 40px; }
.how-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0;
}
.how-divider-line { flex: 1; height: 1px; background: var(--brd); }
.how-divider-label {
  font-family: var(--fh); font-size: 12px; font-weight: 800;
  color: var(--gl); letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .how-step { grid-template-columns: 28px 44px 1fr; gap: 0 12px; padding: 16px; }
  .how-step-icon { width: 44px; height: 44px; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ════════════════════════════════════════════════
   HERO v2 — two-column layout
   ════════════════════════════════════════════════ */

/* Remove old hero-inner / hero-top styles */
.hero-inner, .hero-top, .hero-top-text { all: unset; }

/* Full-screen hero */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(88px, 12vw, 120px) var(--px) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

/* Two-column grid */
.hero-layout {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── LEFT: text column ── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 1. Brand name — biggest element */
.hero-brand {
  font-family: var(--fh);
  font-size: clamp(72px, 14vw, 148px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -6px;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  display: flex;
  align-items: baseline;
  gap: 0;
  user-select: none;
}
.hero-brand-j { color: var(--v); }
.hero-brand-i { color: var(--conn); }
.hero-brand-p { color: var(--v); }
.hero-brand-y {
  background: linear-gradient(135deg, var(--conn) 0%, var(--enc) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 2. Headline */
.hero-headline {
  font-family: var(--fh);
  font-size: clamp(82px, 9vw, 140px);
  font-weight: 900;
  color: var(--ink);
  line-height: .80;
  letter-spacing: -.8px;
  margin-bottom: 0;
  opacity: .9;
}
.hero-headline em { font-style: normal; color: var(--conn); opacity: 1; }

/* 3. Body copy */
.hero-body {
  font-family: var(--fb);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

/* 4. Buttons row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--v);
  color: var(--w);
  font-family: var(--fh);
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 800;
  padding: 14px 26px;
  border-radius: var(--rp);
  border: none;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.hero-btn-primary:hover {
  background: var(--conn);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(61,26,110,.28);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--v);
  font-family: var(--fh);
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 800;
  padding: 13px 24px;
  border-radius: var(--rp);
  border: 1.5px solid var(--brd);
  cursor: pointer;
  letter-spacing: .02em;
  transition: border-color .2s, background .2s, transform .15s;
  white-space: nowrap;
}
.hero-btn-secondary:hover {
  border-color: var(--conn);
  background: rgba(139,47,201,.05);
  transform: translateY(-2px);
}
.hero-note {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--gl);
  font-weight: 300;
}

/* Nodes below the grid */
.nodes {
  max-width: var(--max);
  margin: clamp(28px, 4vw, 48px) auto 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── RIGHT: image column ── */
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-iso-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: clamp(24px, 4vw, 40px);
  background: var(--bg);
  border: 1.5px solid var(--brd);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.hero-iso-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 40%, rgba(139,47,201,.08), transparent);
  pointer-events: none;
}
.hero-iso-wrap:hover {
  box-shadow: 0 24px 60px rgba(61,26,110,.14);
  transform: translateY(-4px) rotate(.5deg);
}
.hero-iso {
  width: 72%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform .4s;
}
.hero-iso-wrap:hover .hero-iso {
  transform: scale(1.04);
}

/* ── RESPONSIVE ── */

/* Tablet: shrink columns but keep side by side */
@media (max-width: 820px) {
  .hero-layout {
    grid-template-columns: 1fr minmax(200px, 320px);
    gap: clamp(24px, 4vw, 40px);
  }
  .hero-brand {
    letter-spacing: -4px;
  }
}

/* Mobile: single column, image at bottom */
@media (max-width: 600px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-brand {
    letter-spacing: -3px;
    margin-bottom: 14px;
  }
  .hero-image-col {
    order: 5; /* push image below buttons */
    margin-top: 36px;
  }
  .hero-iso-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-brand { font-size: 64px; letter-spacing: -2px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO v2 — Nuevas clases (NAV + HERO rediseñados)
   ═══════════════════════════════════════════════════════════════ */

/* ── Background ── */
.hero-bg-lila {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #F4EFFE 0%, #EEE2FF 55%, #F8F0FF 100%);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-orb-1 {
  top: -180px; right: -120px;
  width: 560px; height: 520px;
  background: var(--conn);
  opacity: .055;
  filter: blur(90px);
}
.hero-orb-2 {
  bottom: -80px; left: -60px;
  width: 320px; height: 300px;
  background: var(--enc);
  opacity: .05;
  filter: blur(75px);
}
.hero-orb-3 {
  top: 38%; right: 6%;
  width: 200px; height: 190px;
  background: var(--disc);
  opacity: .04;
  filter: blur(56px);
}

/* ── Wordmark grande en hero ── */
.hero-wordmark-wrap {
  margin-bottom: clamp(18px, 2.5vw, 28px);
}
.hero-wordmark-img {
  height: clamp(40px, 6vw, 60px);
  width: auto;
  display: block;
}

/* ── Headline con acento degradado ── */
.hero-headline-accent {
  background: linear-gradient(90deg, var(--conn) 0%, var(--enc) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ── Subtítulo hero ── */
.hero-sub {
  font-family: var(--fb);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

/* ── Columna imagen / tótem ── */
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ── Anillos topográficos detrás del tótem ── */
.hero-topo-rings {
  position: absolute;
  inset: -60px;
  pointer-events: none;
  z-index: 0;
}
.hero-topo-svg {
  width: 100%;
  height: 100%;
}

/* ── Tótem ── */
.hero-totem-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-totem-img {
  width: min(300px, 85%);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(61,26,110,.13));
  transition: transform .4s ease;
}
.hero-totem-img:hover {
  transform: translateY(-6px) scale(1.02);
}

/* ── Línea ruta decorativa ── */
.hero-route {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-route-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ── Pill de conceptos ── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--brd);
  border-radius: 100px;
  padding: 7px 16px;
  margin-top: 6px;
  box-shadow: 0 3px 12px rgba(61,26,110,.05);
  backdrop-filter: blur(8px);
}
.hero-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
}
.hero-pill-sep {
  color: var(--brd);
  font-size: 14px;
  line-height: 1;
  user-select: none;
}

/* ── Nav logo imagen ── */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* ── Overrides responsive para hero v2 ── */
@media (max-width: 820px) {
  .hero-topo-rings { inset: -30px; }
}

@media (max-width: 600px) {
  .hero-image-col { order: -1; margin-bottom: 20px; }
  .hero-totem-img { width: min(200px, 65%); margin: 0 auto; }
  .hero-route     { display: none; }
  .hero-topo-rings { inset: -10px; }
}

/* ── Hero route v2: íconos animados ── */
.route-icon {
  transition: transform .3s ease, opacity .3s ease;
  cursor: default;
}
.hero-route-svg:hover .route-icon {
  opacity: 0.9;
}
.hero-route-svg .route-icon:hover {
  transform-origin: center 50%;
  transform: translateY(-4px) scale(1.12);
  opacity: 1;
}
/* Texto de labels en la ruta */
.hero-route-svg text {
  font-family: var(--fb, system-ui, sans-serif);
  letter-spacing: .02em;
  pointer-events: none;
}
/* ═══════════════════════════════════════════════════════════════
   HERO v3 — Fuente editorial, subtítulo accent, tótem centrado
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Título: fuente editorial bold, jerarquía premium ── */
.hero-headline-ed {
  font-family: 'Syne', system-ui, sans-serif !important;
  font-size: clamp(44px, 7.5vw, 88px) !important;
  font-weight: 800 !important;
  line-height: .90 !important;
  letter-spacing: -2.5px !important;
  color: var(--ink) !important;
  opacity: 1 !important;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

/* El acento (última línea) ya tiene degradado, hereda el tamaño del padre */
.hero-headline-ed .hero-headline-accent {
  font-family: inherit;
  font-weight: 800;
}

/* ── 2. Resaltado en subtítulo ── */
.hero-sub-accent {
  background: linear-gradient(90deg, var(--conn) 0%, var(--enc) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  white-space: nowrap;
}

/* ── 3. Columna del tótem: centrado vertical real ── */

/* El grid padre pasa a align-items: stretch para que ambas celdas tengan
   la misma altura, y la columna derecha puede centrarse internamente */
.hero-layout {
  align-items: stretch;
}

/* La columna izquierda vuelve a alinearse sola desde arriba */
.hero-text {
  align-self: center;
}

/* Columna derecha: flex column, centra el contenido en el eje vertical */
.hero-image-col--stretch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  /* mínimo = altura del hero para que haya espacio real */
  min-height: calc(100svh - 64px);
}

/* Topo rings cubren todo el contenedor */
.hero-image-col--stretch .hero-topo-rings {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: 0;
}
.hero-image-col--stretch .hero-topo-svg {
  width: 100%;
  height: 100%;
}

/* Wrap del tótem: en flujo normal, centrado por el flex padre */
.hero-image-col--stretch .hero-totem-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tótem: protagonista de la columna derecha */
.hero-image-col--stretch .hero-totem-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Halo de luz animado detrás del tótem */
.hero-image-col--stretch .hero-totem-wrap::before {
  content: '';
  position: absolute;
  inset: -18% -22%;
  background: radial-gradient(
    ellipse 62% 55% at 50% 52%,
    rgba(139,47,201,.22) 0%,
    rgba(255,45,155,.10) 45%,
    transparent 72%
  );
  border-radius: 50%;
  filter: blur(28px);
  animation: totemHalo 4s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
@keyframes totemHalo {
  from { opacity: .7; transform: scale(.95); }
  to   { opacity: 1;  transform: scale(1.05); }
}
.hero-image-col--stretch .hero-totem-img {
  position: relative;
  height: clamp(600px, 80vh, 840px);
  width: auto;
  max-width: 222%;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(139,47,201,.22)) drop-shadow(0 32px 64px rgba(61,26,110,.22));
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), filter .35s ease;
}
.hero-image-col--stretch .hero-totem-img:hover {
  transform: translateY(-12px) scale(1.04);
  filter:
    drop-shadow(0 0 56px rgba(139,47,201,.34))
    drop-shadow(0 40px 80px rgba(61,26,110,.28));
}

/* Responsive */
@media (max-width: 820px) {
  .hero-image-col--stretch {
    min-height: 380px;
  }
  .hero-image-col--stretch .hero-totem-img {
    height: clamp(280px, 55vh, 480px);
  }
}
@media (max-width: 600px) {
  .hero-layout {
    align-items: start;
  }
  .hero-image-col--stretch {
    min-height: 260px;
    order: -1;
    margin-bottom: 16px;
  }
  .hero-image-col--stretch .hero-totem-img {
    height: clamp(200px, 40vh, 300px);
  }
  .hero-headline-ed {
    font-size: clamp(36px, 11vw, 56px) !important;
    letter-spacing: -1.5px !important;
  }
}
