/* Pleiochromiaqin — Modern Education
   Glassmorphism + bento · purple/cyan · Valencia
   Type: Space Grotesk + Inter */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #0a0820;
  color: #e8e7f5;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #0a0820;
  --bg-2: #14102d;
  --ink: #e8e7f5;
  --ink-dim: #a8a3c8;
  --primary: #7c52ff;
  --primary-2: #b690ff;
  --cyan: #00d4ff;
  --cyan-2: #6deffd;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --container: 1280px;
  --pad: clamp(20px, 4vw, 40px);
  --radius: 20px;
  --radius-lg: 32px;
}

/* === Background ambient orbs === */
body::before, body::after {
  content: ''; position: fixed; z-index: 0;
  border-radius: 50%; filter: blur(120px); opacity: 0.55;
  pointer-events: none;
}
body::before {
  top: -200px; left: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, #7c52ff, transparent 70%);
}
body::after {
  bottom: -300px; right: -200px; width: 800px; height: 800px;
  background: radial-gradient(circle, #00d4ff, transparent 70%);
  opacity: 0.35;
}
main, header, footer { position: relative; z-index: 1; }

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: #fff; }
h1 { font-size: clamp(48px, 7.5vw, 104px); letter-spacing: -0.03em; }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 2.6vw, 36px); }
h4 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan); font-weight: 600;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 999px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}
p { color: var(--ink-dim); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(72px, 10vw, 144px) 0; }

/* === Header === */
.site-header {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: calc(100% - 32px); max-width: 1320px;
  background: rgba(20, 16, 45, 0.5);
  backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px 20px;
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding: 8px 20px; background: rgba(20, 16, 45, 0.7); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.brand-glyph {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  position: relative;
  box-shadow: 0 0 20px rgba(124, 82, 255, 0.4);
}
.brand-glyph::after {
  content: ''; position: absolute; inset: 7px; border-radius: 4px;
  background: var(--bg);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; color: var(--ink-dim); font-weight: 500;
  padding: 6px 0; transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { background: linear-gradient(135deg, var(--cyan), var(--primary-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff; padding: 10px 22px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  border-radius: 12px;
  box-shadow: 0 8px 24px -8px rgba(124, 82, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(124, 82, 255, 0.7); }
.burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; }

/* === Hero === */
.hero {
  padding: 200px 0 120px;
  text-align: center;
  position: relative;
}
.hero h1 { max-width: 18ch; margin: 0 auto 32px; }
.hero .lede { font-size: 20px; max-width: 56ch; margin: 0 auto 44px; }
.hero-meta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 0;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(124, 82, 255, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(124, 82, 255, 0.7); }
.btn-glass {
  background: var(--glass-strong); color: #fff;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover { background: var(--glass); border-color: var(--cyan); }

/* === Floating preview cards === */
.hero-preview {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1100px; margin-inline: auto;
}
.preview-card {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.preview-card:hover { transform: translateY(-4px); }
.preview-card.large { grid-column: span 6; aspect-ratio: 16/9; padding: 0; }
.preview-card.medium { grid-column: span 3; }
.preview-card.full { grid-column: span 12; }
.preview-card img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.preview-stat {
  display: flex; flex-direction: column; justify-content: space-between; height: 100%;
}
.preview-stat .label { font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.preview-stat .num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 44px; color: #fff; line-height: 1; margin-top: 16px; }
.preview-stat .num + .small { font-size: 13px; color: var(--cyan); margin-top: 8px; }

/* === Section head === */
.sec-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.sec-head .eyebrow { margin-bottom: 24px; }
.sec-head h2 { margin-bottom: 20px; }
.sec-head p { font-size: 18px; max-width: 60ch; margin: 0 auto; }

/* === Bento grid === */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}
.bento-card {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.bento-card:hover { transform: translateY(-4px); border-color: rgba(0, 212, 255, 0.4); }
.bento-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 22px;
  box-shadow: 0 8px 20px -4px rgba(124, 82, 255, 0.4);
}
.bento-card h3 { margin-bottom: 14px; }
.bento-card p { font-size: 15px; }
.b-wide { grid-column: span 8; }
.b-tall { grid-column: span 4; grid-row: span 2; }
.b-half { grid-column: span 6; }
.b-third { grid-column: span 4; }
.b-third-wide { grid-column: span 5; }
.b-third-narrow { grid-column: span 3; }
.b-row { grid-column: span 12; padding: 0; aspect-ratio: 32/9; }
.b-row img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.b-img { padding: 0; overflow: hidden; }
.b-img img { width: 100%; height: 100%; object-fit: cover; }
.b-cta {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  text-align: center;
}
.b-cta h3, .b-cta p { color: #fff; }
.b-cta p { color: rgba(255,255,255,0.85); }

/* === Programs (bento style program list) === */
.programs-bento {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 36px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.program-card:hover { transform: translateY(-6px); border-color: rgba(124, 82, 255, 0.4); }
.program-card .tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px; display: block; font-weight: 600;
}
.program-card h3 { font-size: 32px; margin-bottom: 14px; }
.program-card .desc { font-size: 16px; margin-bottom: 24px; }
.program-card .meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--ink-dim);
}
.program-card .meta strong { color: #fff; font-weight: 600; display: block; margin-top: 4px; font-size: 15px; }

/* === Mentor avatars row === */
.mentors-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.mentor-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.mentor-card:hover { transform: translateY(-6px); border-color: rgba(0, 212, 255, 0.4); }
.mentor-card .avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--cyan)) border-box;
  padding: 2px;
}
.mentor-card .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.mentor-card h4 { font-size: 17px; margin-bottom: 4px; }
.mentor-card p { font-size: 12px; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

/* === Stories / Timeline === */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--cyan), var(--primary));
}
.timeline-item { margin-bottom: 48px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--cyan);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.5);
}
.timeline-card {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.timeline-card .when { font-size: 12px; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.timeline-card h3 { font-size: 22px; margin-bottom: 12px; }
.timeline-card blockquote { font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 18px; font-style: italic; }
.timeline-card .who { display: flex; align-items: center; gap: 12px; }
.timeline-card .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.timeline-card .name { font-weight: 700; color: #fff; font-size: 14px; }
.timeline-card .role { font-size: 12px; color: var(--ink-dim); }

/* === Pricing / plans === */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.4s ease;
}
.plan:hover { transform: translateY(-4px); }
.plan.featured {
  background: linear-gradient(165deg, rgba(124, 82, 255, 0.25), rgba(0, 212, 255, 0.15));
  border-color: rgba(124, 82, 255, 0.5);
  transform: scale(1.04);
}
.plan.featured::before {
  content: 'Más elegida';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; letter-spacing: 0.08em;
}
.plan .name { font-size: 14px; color: var(--cyan); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.plan .price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 56px; color: #fff; line-height: 1; margin: 14px 0; letter-spacing: -0.03em; }
.plan .price .currency { font-size: 24px; vertical-align: 24px; }
.plan .desc { font-size: 15px; margin-bottom: 28px; }
.plan ul { list-style: none; padding: 0; margin-bottom: 32px; }
.plan li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; }
.plan li::before { content: '✓'; color: var(--cyan); font-weight: 700; }
.plan li:last-child { border-bottom: 0; }
.plan .btn { width: 100%; justify-content: center; }

/* === Blog bento === */
.blog-bento { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.blog-feature {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.blog-feature-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.blog-feature:hover .blog-feature-img img { transform: scale(1.05); }
.blog-feature .body { padding: 32px; }
.blog-feature .tag { display: inline-block; font-size: 12px; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.blog-feature h3 { font-size: 28px; margin-bottom: 12px; line-height: 1.2; }
.blog-feature p { font-size: 15px; }
.blog-feature .read { color: var(--cyan); font-weight: 600; font-size: 14px; margin-top: 20px; display: inline-flex; gap: 8px; }

.blog-side { display: grid; gap: 24px; }
.blog-small {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid; grid-template-columns: 96px 1fr; gap: 18px;
  transition: border-color 0.3s ease;
}
.blog-small:hover { border-color: rgba(124, 82, 255, 0.4); }
.blog-small img { width: 96px; height: 96px; border-radius: 16px; object-fit: cover; }
.blog-small h4 { font-size: 17px; margin-bottom: 8px; line-height: 1.3; }
.blog-small p { font-size: 13px; color: var(--ink-dim); }
.blog-small .tag { font-size: 11px; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

/* === FAQ stacked === */
.faq-stack { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 26px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item:hover { border-color: rgba(0, 212, 255, 0.3); }
.faq-item.open { border-color: rgba(124, 82, 255, 0.5); background: rgba(124, 82, 255, 0.08); }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.faq-q h4 { font-size: 17px; line-height: 1.4; padding-right: 12px; }
.faq-q .ico { width: 28px; height: 28px; border-radius: 8px; background: var(--glass); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--cyan); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: linear-gradient(135deg, var(--primary), var(--cyan)); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }
.faq-a p { font-size: 15px; }

/* === Form === */
.form-wrap {
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: clamp(28px, 5vw, 56px);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: start;
}
.form { display: grid; gap: 18px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form label { font-size: 12px; color: var(--cyan); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.form input, .form textarea, .form select {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; font-size: 15px;
  font-family: inherit; color: #fff;
  transition: border-color 0.3s ease;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 0; border-color: var(--cyan); }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-dim); }
.form .consent input { width: auto; }
.form .consent a { color: var(--cyan); }
.form textarea { resize: vertical; min-height: 120px; }

.contact-side .info-row { padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-side .info-row:last-child { border-bottom: 0; }
.contact-side h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; font-weight: 700; }
.contact-side p { color: #fff; font-size: 17px; }
.contact-side a { color: #fff; transition: color 0.3s ease; }
.contact-side a:hover { color: var(--cyan); }

.map-wrap {
  margin-top: 48px; aspect-ratio: 21/9;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(200deg) contrast(0.9); }

/* === Page head === */
.page-head { padding: 200px 0 80px; text-align: center; }
.page-head .crumbs { font-size: 13px; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.page-head .crumbs a { color: var(--ink-dim); }
.page-head h1 { max-width: 18ch; margin: 0 auto 20px; }
.page-head .lede { max-width: 56ch; margin: 0 auto; font-size: 19px; }

/* === Legal === */
.legal {
  max-width: 820px; margin: 0 auto;
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: clamp(32px, 5vw, 56px);
}
.legal h2 { font-size: 26px; margin: 48px 0 16px; }
.legal h3 { font-size: 18px; margin: 28px 0 10px; color: var(--ink); }
.legal p, .legal li { color: var(--ink-dim); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.legal ul { margin: 8px 0 20px 24px; }
.legal a { color: var(--cyan); text-decoration: underline; }
.legal .updated { font-size: 13px; color: var(--ink-dim); padding-bottom: 18px; border-bottom: 1px solid var(--border); }

/* === Footer === */
.site-footer {
  margin-top: 80px;
  padding: 80px 0 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.site-footer h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; font-weight: 700; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: var(--ink-dim); font-size: 14px; transition: color 0.3s ease; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { margin-bottom: 16px; font-size: 28px; }
.footer-brand p { max-width: 36ch; font-size: 14px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.3s ease;
}
.socials a:hover { background: linear-gradient(135deg, var(--primary), var(--cyan)); border-color: transparent; }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--ink-dim); }

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px;
  background: rgba(20, 16, 45, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 26px;
  z-index: 1000;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  max-width: 980px; margin: 0 auto;
  transform: translateY(140%); transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 14px; }
.cookie-banner a { color: var(--cyan); }
.cookie-banner .actions { display: flex; gap: 10px; }
.cookie-banner button {
  padding: 10px 18px; border-radius: 10px; font-size: 13px; font-weight: 600;
  border: 0; cursor: pointer; font-family: inherit;
}
.cookie-accept { background: linear-gradient(135deg, var(--primary), var(--cyan)); color: #fff; }
.cookie-reject { background: var(--glass); color: var(--ink-dim); border: 1px solid var(--border); }

/* === Reveal === */
[data-reveal], [data-reveal-stagger] > * { opacity: 0; transform: translateY(28px); }
[data-reveal].animate, [data-reveal-stagger].animate > * { animation: revealUp 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
[data-reveal-stagger].animate > *:nth-child(1) { animation-delay: 0s; }
[data-reveal-stagger].animate > *:nth-child(2) { animation-delay: 0.08s; }
[data-reveal-stagger].animate > *:nth-child(3) { animation-delay: 0.16s; }
[data-reveal-stagger].animate > *:nth-child(4) { animation-delay: 0.24s; }
[data-reveal-stagger].animate > *:nth-child(5) { animation-delay: 0.32s; }
[data-reveal-stagger].animate > *:nth-child(6) { animation-delay: 0.4s; }
@keyframes revealUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-preview { grid-template-columns: repeat(6, 1fr); }
  .preview-card.large { grid-column: span 6; }
  .preview-card.medium { grid-column: span 3; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .b-wide, .b-tall, .b-half, .b-third, .b-third-wide, .b-third-narrow, .b-row { grid-column: span 6; grid-row: auto; }
  .programs-bento { grid-template-columns: 1fr; }
  .mentors-row { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .blog-bento { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; gap: 16px; position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: var(--bg-2); padding: 22px; border-radius: 18px; border: 1px solid var(--border); }
  .hero-preview, .bento { grid-template-columns: 1fr; }
  .preview-card.large, .preview-card.medium, .preview-card.full { grid-column: span 1; }
  .mentors-row { grid-template-columns: repeat(2, 1fr); }
  .form .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-small { grid-template-columns: 1fr; }
  .blog-small img { width: 100%; height: 180px; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner .actions { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
