*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #5453ED;
  --blue-dark:  #2D3476;
  --blue-light: #A3B1F7;
  --orange:     #F25922;
  --teal:       #00B2A9;
  --white:      #FFFFFF;
  --off-white:  #F7F7FB;
  --text-dark:  #1A1A2E;
  --text-body:  #3D3D5C;
  --text-muted: #7878AA;
  --border:     #E4E4F0;
  --fn: 'Raleway', sans-serif;
  --fb: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--fb);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* raleway-regular - latin (Uso: Texto base y párrafos) */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('/statics/fonts/raleway-v37-latin-regular.woff2') format('woff2');
}

/* raleway-600 - latin (Uso: Subtítulos y negritas suaves) */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('/statics/fonts/raleway-v37-latin-600.woff2') format('woff2');
}

/* raleway-800 - latin (Uso: Títulos de alto impacto / Hero) */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 800;
  src: url('/statics/fonts/raleway-v37-latin-800.woff2') format('woff2');
}

/* ── Material Symbols base ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
  font-size: 1.4rem;
}
.sym-sm { font-size: 1.1rem; }
.sym-lg { font-size: 2rem; }

/* ── NAVBAR ── */
nav { background-color: var(--blue-dark); padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease; }
.nav-content { display: flex; justify-content: space-between; align-items: center; padding: 0 24px; flex-wrap: nowrap; }
.nav-logo { height: 32px; width: auto; display: block; flex-shrink: 1; object-fit: contain; } 
.nav-actions { display: flex; gap: 15px; align-items: center; flex-wrap: nowrap; }

/* Switch de Idioma */
.lang-switch { display: flex; gap: 6px; color: var(--white); font-family: var(--fn); font-weight: 800; cursor: pointer; font-size: 13px; letter-spacing: 0.5px; align-items: center; white-space: nowrap; }
.lang-switch span { opacity: 0.7; transition: all 0.2s ease; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.lang-switch span.active { opacity: 1; color: var(--orange); border-bottom-color: var(--orange); }

/* Botón de compartir nativo */
.btn-share-icon { background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 5px; transition: transform 0.2s ease, opacity 0.2s ease; color: var(--white); margin-top: 2px; }
.btn-share-icon svg { width: 22px; height: 22px; }
.btn-share-icon:hover { transform: scale(1.1); opacity: 0.8; }

/* Botón CTA Naranja */
.btn-orange { background: var(--orange); color: var(--white); font-family: var(--fn); font-weight: 800; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s ease; border: 1px solid rgba(255,255,255,0.1); }
.btn-orange:hover { background: #D84315; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(242,89,34,0.3); }
.btn-sm { font-size: .75rem; padding: 8px 16px; border-radius: 8px; white-space: nowrap; letter-spacing: 0.05em; }

/* Responsive Nav */
@media (max-width: 768px) {
    .nav-content { padding: 0 16px; }
    .nav-actions { gap: 10px; }
    .btn-share-icon svg { width: 20px; height: 20px; }
}

@media (max-width: 560px) {
    .nav-content { padding: 0 12px; }
    .nav-logo { height: 22px; max-width: 100px; } 
    .nav-actions { gap: 8px; flex-shrink: 0; } 
    .lang-switch { font-size: 11px; gap: 4px; } 
    .lang-switch span { padding: 0; } 
    .btn-share-icon { padding: 2px; } 
    .btn-share-icon svg { width: 18px; height: 18px; }
    .btn-sm { font-size: 0.65rem !important; padding: 6px 10px !important; line-height: 1 !important; }
}

.color-bs { background: linear-gradient(135deg,#2D3476,#5453ED); }
.color-h206 { background: linear-gradient(135deg,#F25922,#2D3476); }
.hl-brand-orange { color: var(--orange); font-weight: 800; }
.nav-logo-icon { height: 40px; width: auto; }

/* ── FOOTER DINÁMICO ── */
.ez-footer { 
    margin-top: 0; 
    padding: 60px 20px 50px; 
    background: var(--blue-dark); 
    border-top: 1px solid rgba(255,255,255,0.05); 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
}

.ez-f-badge { 
    background: rgba(0, 178, 169, 0.1); 
    color: var(--teal); 
    border: 1px solid rgba(0, 178, 169, 0.3); 
    padding: 4px 14px; 
    border-radius: 100px; 
    font-family: var(--fn);
    font-size: .65rem; 
    font-weight: 800; 
    letter-spacing: .08em; 
    text-transform: uppercase; 
    margin-bottom: 24px; 
    display: inline-flex; 
    align-items: center; 
}

.footer-ctas { 
    display: flex; 
    gap: 14px; 
    flex-wrap: wrap; 
    justify-content: center; 
    margin: 10px 0 35px 0; 
}

.pulse-dot { display:inline-block; width:6px; height:6px; background:var(--teal); border-radius:50%; margin-right:8px; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } }

.ez-footer-logo { margin-bottom: 20px; opacity: 0.95; color: var(--white);}
.ez-footer-title { color: var(--white); font-size: 1.4rem; font-weight: 800; margin: 0 0 12px 0; letter-spacing: -0.02em; }
.ez-rotating-text { color: var(--teal); transition: opacity 0.3s ease; display: inline-block; min-width: 100px; text-align: left; }
.ez-footer-desc { color: rgba(255,255,255,0.6); font-size: .9rem; line-height: 1.6; max-width: 400px; margin: 0 auto 30px auto; font-weight: 300; }
.ez-copyright { margin-top: 20px; font-size: .75rem; color: rgba(255,255,255,0.4); font-weight: 500; font-family: var(--fn); }

/* ── SHARED ── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 52px; }

.label {
  font-family: var(--fn); font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px; display: block;
}

h1, h2, h3, h4 { font-family: var(--fn); letter-spacing: -.02em; line-height: 1.08; }

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 900;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.75; max-width: 540px;
}

.btn {
  font-family: var(--fn); font-weight: 700; font-size: .9rem;
  padding: 14px 28px; border-radius: 8px; border: none;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(84,83,237,.3); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #d94d1e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,89,34,.3); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }
.btn-lg { font-size: 1rem; padding: 16px 18px; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s}
.d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  padding-top: 52px;
  background: var(--blue);
  min-height: 100vh;
  display: grid; grid-template-columns: 1.1fr .9fr;
  overflow: hidden; position: relative;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-left {
  padding: 80px 56px 80px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 6px 16px;
  font-family: var(--fn); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: 28px; width: fit-content;
}
.pdot { width: 7px; height: 7px; border-radius: 50%; background: #7BF5C6; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-left h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.6rem); font-weight: 900;
  color: #fff; margin-bottom: 10px; line-height: 1.04;
}
.hero-left h1 .hl { color: var(--orange); }

.hero-slogan {
  font-family: var(--fn); font-size: .9rem; font-weight: 300;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 28px;
}
.hero-left > p {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  font-weight: 300; line-height: 1.8;
  max-width: 480px; margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 16px; font-size: .76rem; color: rgba(255,255,255,.35); }

.hero-right { position: relative; overflow: hidden; }
.hero-photo-main {
  position: absolute; inset: 0; object-fit: cover;
  width: auto; height: 100%; filter: saturate(.85) brightness(.65);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blue) 0%, transparent 30%),
              linear-gradient(0deg, var(--blue-dark) 0%, transparent 40%);
}
.hero-members {
    position: absolute; 
    bottom: 40px; 
    left: 32px; 
    right: 32px; 
    z-index: 2;
    background: rgba(255,255,255,.07); 
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.12); 
    border-radius: 16px; 
    padding: 20px 22px;
}

@media (min-width: 992px) {
    .hero-members {
        right: auto; 
        width: 100%; 
        max-width: 50%; 
    }
}
.members-label {
  font-family: var(--fn); font-size: .65rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 12px;
}
.member-list { display: flex; flex-direction: column; gap: 8px; }
.member-row { display: flex; align-items: center; gap: 12px; }
.member-av {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fn); font-weight: 900; color: #fff; font-size: .85rem;
}
.member-info { flex: 1; }
.member-name { font-family: var(--fn); font-size: .82rem; font-weight: 700; color: #fff; }
.member-type { font-size: .72rem; color: rgba(255,255,255,.45); }
.member-badge {
  font-family: var(--fn); font-size: .62rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(0,178,169,.2); color: var(--teal);
  border: 1px solid rgba(0,178,169,.3); white-space: nowrap;
}

/* ════════════════════════════════════
   NO-CODE
════════════════════════════════════ */
.nocode-section {
  padding: 80px 0; background: var(--blue-dark);
  overflow: hidden; position: relative;
}
.nocode-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(84,83,237,.4) 0%, transparent 65%);
  top: -150px; right: -80px; pointer-events: none;
}
.nocode-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.nocode-text h2 {
  font-family: var(--fn); font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 900; color: #fff; line-height: 1.12;
  margin-bottom: 16px; letter-spacing: -.025em;
}
.nocode-text h2 .hl { color: var(--orange); }
.nocode-text p { font-size: .975rem; color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.8; }

.nocode-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nocode-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 22px 18px; transition: all .25s ease;
  display: flex; flex-direction: column; gap: 8px;
}
.nocode-card:hover { background: rgba(255,255,255,.11); transform: translateY(-3px); }
.nocode-card .sym {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: var(--blue-light);
}
.nocode-card .sym .material-symbols-outlined { font-size: 1.25rem; }
.nocode-card strong {
  display: block; font-family: var(--fn); font-size: .88rem;
  font-weight: 700; color: #fff;
}
.nocode-card span { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ════════════════════════════════════
   PIONEERS — IFRAME MOCKUPS
════════════════════════════════════ */
.pioneers-section { padding: 100px 0; background: var(--off-white); }
.pioneers-head { margin-bottom: 60px; }
.pioneer-profiles { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.profile-showcase { display: flex; flex-direction: column; gap: 24px; }
.profile-meta { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.profile-meta-tag { font-family: var(--fn); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); min-height: 36px; display: block; margin-bottom: 0; }
.profile-meta h3 { font-family: var(--fn); font-size: 1.2rem; font-weight: 800; color: var(--text-dark); }
.profile-meta p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.profile-meta-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; }
.profile-url { font-family: var(--fn); font-size: .75rem; color: var(--blue); font-weight: 600; text-decoration: none; }
.profile-url:hover { text-decoration: underline; }
.profile-pill { font-family: var(--fn); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 100px; background: rgba(84,83,237,.1); color: var(--blue); }

/* Phone mockup */
.phone-mockup { position: relative; width: 100%; display: flex; justify-content: center; }
.phone-shell { position: relative; width: 260px; background: #0A0A0A; border-radius: 36px; padding: 14px; box-shadow: 0 0 0 2px #333, 0 24px 64px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.2); }
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 22px; background: #0A0A0A; border-radius: 0 0 14px 14px; z-index: 10; }
.phone-screen { width: 100%; aspect-ratio: 9/19.5; border-radius: 26px; background: var(--blue-dark); position: relative; overflow: hidden; transform: translateZ(0); -webkit-transform: translateZ(0); -webkit-mask-image: -webkit-radial-gradient(white, black); mask-image: radial-gradient(white, black); }
.phone-screen img{ display: none; width: 100%; height: auto; z-index: 1; }
.phone-screen iframe { position: absolute; top: 0; left: 0; border: none; transform-origin: top left; -webkit-transform-origin: top left; pointer-events: auto; --phone-scale: 0.5948; transform: scale(var(--phone-scale)) translateZ(0); -webkit-transform: scale(var(--phone-scale)) translateZ(0); width: 390px; height: 845px; border-radius: 43px; display: block; backface-visibility: hidden; -webkit-backface-visibility: hidden; perspective: 1000; -webkit-perspective: 1000; z-index: 2; }
.phone-btn-right { position: absolute; right: -3px; top: 80px; width: 3px; height: 50px; background: #444; border-radius: 2px; }
.phone-btn-left-1 { position: absolute; left: -3px; top: 60px; width: 3px; height: 32px; background: #444; border-radius: 2px; }
.phone-btn-left-2 { position: absolute; left: -3px; top: 104px; width: 3px; height: 32px; background: #444; border-radius: 2px; }
.phone-btn-left-3 { position: absolute; left: -3px; top: 148px; width: 3px; height: 32px; background: #444; border-radius: 2px; }

.placeholder-card { background: linear-gradient(135deg, #F0F0FA, #E8E8F5); border: 2px dashed var(--border); border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; min-height: 420px; text-align: center; padding: 40px 32px; }
.placeholder-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; }
.placeholder-icon .material-symbols-outlined { font-size: 1.6rem; }
.placeholder-card h4 { font-family: var(--fn); font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.placeholder-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════
   VISION
════════════════════════════════════ */
.vision-section { padding: 100px 0; background: var(--white); }
.vision-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vision-img-wrap { position: relative; border-radius: 20px; overflow: hidden; height: 520px; }
.vision-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vision-img-badge { position: absolute; bottom: 24px; left: 24px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.vib-sym { color: var(--blue); }
.vib-sym .material-symbols-outlined { font-size: 2rem; }
.vib-text strong { display: block; font-family: var(--fn); font-size: .9rem; font-weight: 800; color: var(--text-dark); }
.vib-text span { font-size: .78rem; color: var(--text-muted); }
.vision-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.vpill { font-family: var(--fn); font-size: .78rem; font-weight: 700; padding: 7px 16px; border-radius: 100px; border: 1px solid var(--border); color: var(--text-body); background: var(--off-white); display: flex; align-items: center; gap: 7px; }
.vpill .material-symbols-outlined { font-size: 1rem; color: var(--blue); }

/* ════════════════════════════════════
   TEMPLATES
════════════════════════════════════ */
.templates-section { padding: 100px 0; background: var(--off-white); }
.templates-head { text-align: center; margin-bottom: 56px; }
.templates-head .section-sub { margin: 0 auto; }
.tpl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tpl-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all .25s ease; display: flex; flex-direction: column; }
.tpl-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(84,83,237,.1); border-color: var(--blue); }
.tpl-photo { width: 100%; height: 150px; object-fit: cover; display: block; background: var(--off-white); flex-shrink: 0; }
.tpl-body { padding: 20px 18px; flex: 1; display: flex; flex-direction: column; }
.tpl-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(84,83,237,.08); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; flex-shrink: 0; }
.tpl-body h3 { font-family: var(--fn); font-size: .95rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.tpl-body p { font-size: .8rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.tpl-status { margin: 12px 18px 16px; flex-shrink: 0; font-family: var(--fn); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; display: inline-flex; align-items: center; gap: 5px; width: fit-content; }
.s-beta { background: rgba(242,89,34,.1); color: var(--orange); border: 1px solid rgba(242,89,34,.25); }
.s-dev  { background: rgba(84,83,237,.08); color: var(--blue); border: 1px solid rgba(84,83,237,.2); }
.sdot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ════════════════════════════════════
   MANIFESTO
════════════════════════════════════ */
.manifesto-section { background: var(--blue); padding: 100px 0; position: relative; overflow: hidden; }
.manifesto-section::before { content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%); top: -200px; right: -100px; pointer-events: none; }
.manifesto-inner { max-width: 860px; margin: 0 auto; padding: 0 52px; text-align: center; position: relative; z-index: 1; }
.manifesto-inner blockquote { font-family: var(--fn); font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 500; line-height: 1.6; color: rgba(255, 255, 255, 0.65); letter-spacing: -.015em; margin-bottom: 40px; text-align: center; }
.manifesto-inner blockquote .hl { color: var(--white); font-weight: 800; }
.manifesto-inner blockquote .hl2 { color: var(--blue-light); font-weight: 700; }
.manifesto-inner blockquote .hl-brand { color: var(--white); font-weight: 900; }
.founder-chip { display: inline-flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 100px; padding: 6px 20px 6px 6px; transition: all 0.3s ease; text-align: left; }
.founder-chip:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.founder-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange)); display: flex; align-items: center; justify-content: center; font-family: var(--fn); font-weight: 900; font-size: 1rem; color: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.f-name { display: block; font-family: var(--fn); font-weight: 800; font-size: 0.95rem; color: var(--white); line-height: 1.2; }
.f-role { display: block; font-family: var(--fb); font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); font-weight: 500; }

/* ════════════════════════════════════
   CTA SPLIT
════════════════════════════════════ */
.cta-section { padding: 100px 0; background: var(--white); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.cta-card { border-radius: 20px; padding: 52px 44px; display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; }
.cta-card.blue { background: var(--blue); }
.cta-card.light { background: var(--off-white); border: 1px solid var(--border); }
.cta-card .cta-label { font-family: var(--fn); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cta-card.blue .cta-label { color: rgba(255,255,255,.45); }
.cta-card.light .cta-label { color: var(--orange); }
.cta-card h3 { font-size: 1.6rem; font-weight: 900; line-height: 1.15; }
.cta-card.blue h3 { color: #fff; }
.cta-card.light h3 { color: var(--text-dark); }
.cta-card > p { font-size: .93rem; line-height: 1.7; font-weight: 300; }
.cta-card.blue > p { color: rgba(255,255,255,.7); }
.cta-card.light > p { color: var(--text-muted); }
.price-box { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.price-box.light-box { background: var(--white); border-color: var(--border); }
.price-loading { width: 140px; height: 28px; background: rgba(255,255,255,.15); border-radius: 6px; animation: shimmer 1.5s ease-in-out infinite; }
@keyframes shimmer { 0%,100%{opacity:.4} 50%{opacity:.8} }
.price-pioneer { display: flex; flex-direction: column; gap: 3px; }
.price-pioneer-label { font-family: var(--fn); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.price-pioneer-amount { font-family: var(--fn); font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; }
.price-pioneer-amount.dark { color: var(--text-dark); }
.price-regular { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.price-regular-label { font-family: var(--fn); font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.4); text-decoration: line-through; }
.price-regular-label.dark { color: var(--text-muted); }
.price-regular-amount { font-family: var(--fn); font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.35); }
.price-regular-amount.dark { color: var(--text-muted); }
.price-note-small { font-size: .75rem; color: rgba(255,255,255,.4); }
.price-note-small.dark { color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .lang-bar { padding: 10px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 380px; }
  .hero-left { padding: 64px 24px 60px; }
  .nocode-inner { grid-template-columns: 1fr; gap: 48px; }
  .pioneer-profiles { grid-template-columns: 1fr; }
  .vision-layout { grid-template-columns: 1fr; gap: 48px; }
  .vision-img-wrap { height: 320px; }
  .tpl-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .manifesto-inner { padding: 0 24px; }
}
@media (max-width: 560px) {
  .tpl-grid { grid-template-columns: 1fr 1fr; }
  .nocode-cards { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .phone-shell { width: 220px; }
}