:root{
  --bg1:#0b1020;
  --bg2:#0b0d10;
  --text:#e8edf5;
  --muted:rgba(232,237,245,.72);
  --line:rgba(255,255,255,.10);
  --card:rgba(255,255,255,.06);
  --card2:rgba(0,0,0,.18);
  --btn:rgba(255,255,255,.10);
  --radius:16px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 50% 40%, rgba(45,102,140,.45) 0%, rgba(10,12,18,1) 55%),
    radial-gradient(1000px 600px at 10% 0%, rgba(18,30,60,.55) 0%, rgba(11,13,16,1) 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

a{ color:var(--text); text-decoration:none; }
a:hover{ text-decoration:underline; opacity:.95; }

.container{ width:min(1100px, 92%); margin:0 auto; }

/* Topbar like Wix minimal */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,13,16,.45);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;
  gap:16px;
  align-items:center;
  padding:14px 0;
  overflow:auto;
}
.navlink{
  font-size:13px;
  color:var(--muted);
  white-space:nowrap;
}
.navlink-cta{
  margin-left:auto;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.06);
  color:var(--text);
}

/* HERO */
.hero{ padding:84px 0 64px; }
.hero-inner{ text-align:center; }
.hero-name{
  margin:0;
  font-weight:300;
  letter-spacing:.55em; /* parecido al Wix */
  text-indent:.55em;
  font-size: clamp(34px, 5vw, 64px);
}
.hero-role{
  margin-top:26px;
  color:var(--muted);
  font-weight:300;
  letter-spacing:.22em;
}
.hero-role .amp{ margin:10px 0; opacity:.9; }
.hero-role-strong{ letter-spacing:.28em; }

.section{ padding:64px 0; }
.section-soft{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,0));
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}

.title{
  margin:0 0 18px;
  font-weight:300;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing:.02em;
}
.subtitle{
  margin:0 0 12px;
  font-weight:400;
  letter-spacing:.16em;
  color:var(--muted);
  font-size: 14px;
}
.center{ text-align:center; }

p{ margin:0 0 14px; }
.muted{ color:var(--muted); }
.small{ font-size: 13px; }

/* About */
.about-grid{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:48px;
  align-items:center;
}
.about-photo{
  display:flex;
  justify-content:center;
}
.about-photo img{
  width: 420px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.about-text{ max-width: 560px; }

/* 2 columns blocks */
.two-col{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:48px;
  align-items:center;
}
.value-image img,
.talks-image img{
  width:100%;
  border-radius: 10px;
  border:1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
}
.talks-col{ grid-template-columns: 420px 1fr; }

.talks-list{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
}
.talks-list li{ margin: 10px 0; }

/* Cards 4 like Wix */
.cards-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:26px;
}
.card{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  min-height: 240px;
}
.card h4{
  margin:0 0 12px;
  font-weight:400;
  font-size: 18px;
}
.card p{ margin:0; }

/* Newsletter */
.newsletter{
  max-width: 840px;
}
.newsletter-icon{
  display:flex;
  justify-content:center;
  margin: 22px 0 18px;
}
.newsletter-icon img{
  width:92px;
  height:92px;
  border-radius: 10px;
  border:1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}

/* Button */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background: var(--btn);
  color: var(--text);
  text-decoration:none;
}
.btn:hover{ text-decoration:none; background: rgba(255,255,255,.14); }

/* Contact */
.contact-email{
  font-size: 18px;
  font-weight: 500;
  letter-spacing:.02em;
}

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.22);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 13px;
}
.footer-links{ display:flex; gap:16px; }
.footer-links a{ color: var(--muted); }
.footer-copy{ color: var(--muted); }

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .talks-col{ grid-template-columns: 1fr; }
  .cards-4{ grid-template-columns: 1fr; }
  .hero-name{ letter-spacing:.28em; text-indent:.28em; }
}


/* =========================
   Ideas / Article styles
   ========================= */

.ideas-article{
  max-width: 760px;
  margin: 0 auto;
}

.ideas-article h1{
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: .01em;
  font-weight: 500;
}

.ideas-article h2{
  margin-top: 34px;
  margin-bottom: 12px;
  font-weight: 500;
}

.ideas-article h3{
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

.ideas-article p{
  margin: 0 0 14px;
}

/* Hero más compacto en páginas de artículo */
.hero.hero-compact{
  padding: 56px 0 42px;
}

/* Listado de Ideas (si lo usas en la home) */
.ideas-list{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  margin-top:24px;
}

.idea-card{
  display:block;
  padding:18px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.18));
  border:1px solid rgba(255,255,255,.12);
}

.idea-card h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight: 500;
}

.idea-card:hover{
  background: rgba(255,255,255,.10);
  text-decoration:none;
}
