/* ==========================================================
   FUNDACIÓN CASTAÑÓN · Sistema de diseño
   Paleta oficial FC: Cyan #00ADEF · Negro #231F20 · Blanco dominante
   Tipografía: Montserrat (única familia, según FC_Manual_Identidad_2.0)
   ========================================================== */

:root {
  /* Paleta oficial Fundación Castañón */
  --teal: #00ADEF;          /* Cyan FC (acento principal) */
  --teal-dark: #231F20;     /* Negro FC */
  --teal-light: #0077C8;    /* Azul Profundo (enlaces/hover) */
  --coral: #00ADEF;         /* Cyan FC (CTA) */
  --coral-dark: #0077C8;    /* Azul Profundo (hover CTA) */
  --sand: #EAF8FE;          /* Cyan 10% (fondos suaves) */
  --white: #FFFFFF;
  --ink: #231F20;           /* Negro FC (texto) */
  --gray: #6D6E70;          /* Gris FC (texto secundario) */
  --line: #E2E5E7;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 8px 30px rgba(35, 31, 32, 0.10);
  --shadow-sm: 0 2px 10px rgba(35, 31, 32, 0.07);
  --container: 1180px;
  --transition: all .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300; /* Montserrat Light: cuerpo según manual */
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--coral); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--teal-dark); font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

h1 em, h2 em { font-style: italic; color: var(--coral); font-weight: 600; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: 84px 0; }
section.tight { padding: 56px 0; }

.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.lead { font-size: 1.15rem; color: var(--gray); max-width: 680px; }

.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--teal-dark);
  color: #C9CBCD;
  font-size: .82rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #C9CBCD; }
.topbar a:hover { color: var(--white); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; display: block; }
.footer .logo-img { height: 52px; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { font-size: .93rem; font-weight: 500; color: var(--ink); }
.nav-links a:hover, .nav-links a.active { color: var(--coral); }

.dropdown { position: relative; }
.dropdown > a::after { content: " ▾"; font-size: .7em; }
.dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 250px;
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition);
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 9px 14px; border-radius: 8px; font-size: .9rem;
}
.dropdown-menu a:hover { background: var(--sand); }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-light { background: var(--white); color: var(--teal-dark); }
.btn-light:hover { background: var(--sand); color: var(--teal-dark); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--teal-dark); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-light) 100%);
  color: var(--white);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,173,239,.25), transparent 65%);
}
.hero h1 { color: var(--white); max-width: 760px; }
.hero h1 em { color: #66CEF5; }
.hero .lead { color: #DBDDDE; margin: 22px 0 34px; }
.hero .kicker { color: #66CEF5; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stats strong {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  color: #66CEF5;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(20,19,19,.55);
}
.hero-stats span {
  font-size: 1.02rem;
  font-weight: 500;
  color: #F1F2F3;
  text-shadow: 0 1px 12px rgba(20,19,19,.6);
}

/* ---------- Hero con video de fondo ---------- */
.hero-has-video { padding: 130px 0 140px; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,19,19,.93) 0%, rgba(35,31,32,.78) 55%, rgba(20,19,19,.62) 100%);
  z-index: 1;
}
.hero-has-video .container { position: relative; z-index: 2; }
.hero-has-video::after { z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* ---------- Page hero con video ---------- */
.page-hero.has-video {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.page-hero.has-video .container { position: relative; z-index: 2; }

/* ---------- Page hero con imagen de fondo (blog) ---------- */
.page-hero.has-image { position: relative; overflow: hidden; padding: 100px 0; }
.page-hero.has-image .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero.has-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(35,31,32,.82), rgba(35,31,32,.55) 55%, rgba(0,119,200,.45)); z-index: 1; }
.page-hero.has-image .container { position: relative; z-index: 2; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 76px 0;
}
.page-hero h1 { color: var(--white); }
.page-hero h1 em { color: #66CEF5; }
.page-hero .lead { color: #DBDDDE; margin-top: 16px; }
.page-hero .kicker { color: #66CEF5; }
.breadcrumb { font-size: .85rem; margin-bottom: 20px; color: #A0A2A4; }
.breadcrumb a { color: #DBDDDE; }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { margin: 16px 0 10px; }
.card p { color: var(--gray); font-size: .95rem; }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.card-link { font-weight: 600; font-size: .9rem; display: inline-block; margin-top: 14px; }
.card-link::after { content: " →"; }

a.card { display: block; color: inherit; }

.card.featured { background: var(--teal-dark); border-color: var(--teal-dark); }
.card.featured h3 { color: var(--white); }
.card.featured p { color: #C4C6C8; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: .9rem;
  border: 1.5px dashed var(--line);
  text-align: center;
  padding: 20px;
}

/* ---------- Lists ---------- */
.check-list { list-style: none; margin-top: 22px; }
.check-list li { padding: 9px 0 9px 34px; position: relative; color: var(--ink); }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  width: 23px; height: 23px;
  background: rgba(0,173,239,.12);
  color: var(--coral);
  border-radius: 50%;
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--white);
  background: var(--teal);
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 6px; font-size: 1.1rem; }
.step p { color: var(--gray); font-size: .95rem; }

/* ---------- Band / CTA ---------- */
.band {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.band h2 { color: var(--white); }
.band p { color: rgba(255,255,255,.88); margin-top: 8px; max-width: 520px; }

.section-alt { background: var(--sand); }
.section-dark { background: var(--teal-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark .lead { color: #C4C6C8; }
.section-dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: #B5B7B9; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
  width: 132px; height: 132px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.team-card .role { color: var(--coral); font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.team-card .cedula { font-size: .8rem; color: var(--gray); margin-top: 10px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--white);
  transition: var(--transition);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(35,31,32,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Blog ---------- */
.post-card { overflow: hidden; padding: 0; }
.post-card .post-img {
  aspect-ratio: 16/9; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: .85rem;
  border-bottom: 1px solid var(--line);
}
.post-card .post-body { padding: 26px; }
.post-card .post-meta { font-size: .8rem; color: var(--gray); margin-bottom: 10px; }
.post-card .post-meta span { color: var(--coral); font-weight: 600; }

.article { max-width: 760px; margin: 0 auto; }
.article h2 { margin: 44px 0 16px; }
.article h3 { margin: 32px 0 12px; }
.article p { margin-bottom: 18px; color: #2B3A42; }
.article ul, .article ol { margin: 0 0 18px 24px; }
.article li { margin-bottom: 8px; }
.article .article-meta { color: var(--gray); font-size: .9rem; margin: 18px 0 36px; }

/* ---------- FAQ ---------- */
details.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  background: var(--white);
}
details.faq summary {
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  color: var(--teal-dark);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
details.faq summary::after { content: "+"; position: absolute; right: 0; color: var(--coral); font-size: 1.3rem; }
details.faq[open] summary::after { content: "–"; }
details.faq p { margin-top: 12px; color: var(--gray); font-size: .95rem; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-dark); color: #B5B7B9; padding: 70px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 50px; }
.footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: #B5B7B9; }
.footer a:hover { color: #66CEF5; }
.footer .logo { color: var(--white); margin-bottom: 14px; }
.footer .logo span { color: #66CEF5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .8rem; color: #8B8D8F;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.08); color: var(--white); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- Isotipos de marca ---------- */
.icon.icon-brand {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  padding: 11px;
}
.icon.icon-brand img { width: 100%; height: 100%; object-fit: contain; }
.section-alt .icon.icon-brand, .card .icon.icon-brand { background: var(--white); }

.area-badge {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 28px rgba(20,19,19,.35);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  margin-bottom: 22px;
}
.area-badge img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Perfiles de equipo ---------- */
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.team-card .btn { margin-top: 16px; }
.profile-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.profile-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 6px; }
.profile-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Foto en secciones split ---------- */
.split-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ---------- Carrusel de fotos ---------- */
.carousel { position: relative; }
.car-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track img {
  width: min(720px, 86%);
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/2;
  object-fit: cover;
}
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--teal-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.car-btn:hover { background: var(--coral); color: var(--white); border-color: transparent; }
.car-btn.prev { left: 14px; }
.car-btn.next { right: 14px; }

/* ---------- Badge de reseñas de Google ---------- */
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(102,206,245,.45);
  backdrop-filter: blur(6px);
  font-size: .95rem;
  color: var(--white);
  transition: var(--transition);
}
.g-badge:hover { background: rgba(255,255,255,.18); color: var(--white); transform: translateY(-2px); }
.g-badge-stars { color: #66CEF5; letter-spacing: 2px; font-size: 1rem; }
.g-badge-text strong { font-family: var(--font-head); font-size: 1.05rem; }
.g-badge.on-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.g-badge.on-light:hover { color: var(--ink); box-shadow: var(--shadow); }
.g-badge.on-light .g-badge-stars { color: var(--coral-dark); }

/* ---------- Placeholder note ---------- */
.ph { outline: 1.5px dashed rgba(0,173,239,.5); outline-offset: 2px; }

/* ==========================================================
   DINÁMICA · animaciones estilo editorial (reveal, marquee, contadores)
   ========================================================== */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* Hero display XXL */
.hero-display h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-display .lead { font-size: clamp(1.05rem, 2vw, 1.3rem); }

/* Marquee infinito */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.chip {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--teal-dark);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.chip.soon { background: var(--white); color: var(--gray); border-style: dashed; }
.chip.soon .dot { background: var(--teal-light); }

/* Manifiesto numerado */
.manifesto { list-style: none; max-width: 880px; margin: 48px auto 0; }
.manifesto li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 34px 10px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: var(--transition);
}
.manifesto li:hover { padding-left: 24px; }
.manifesto .num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px #66CEF5;
}
.manifesto h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); margin-bottom: 6px; }
.manifesto p { color: #B5B7B9; max-width: 560px; }

/* Contadores */
.counter { font-variant-numeric: tabular-nums; }

/* Badge "próximamente" */
.badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(0,119,200,.1);
  border: 1px solid rgba(0,119,200,.25);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.card.soon { border-style: dashed; background: transparent; }
.card.soon:hover { transform: none; box-shadow: none; border-color: var(--teal-light); }

/* Ciclo de cuidado */
.cycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; }
.cycle-step { padding: 34px 26px; border-left: 1px solid var(--line); position: relative; }
.cycle-step:first-child { border-left: none; }
.cycle-step .phase {
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px; display: block;
}
.cycle-step h3 { margin-bottom: 10px; }
.cycle-step p { color: var(--gray); font-size: .93rem; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cycle { grid-template-columns: 1fr 1fr; }
  .cycle-step:nth-child(3) { border-left: none; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .band { padding: 40px 28px; }
  .topbar { display: none; }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { display: block; padding: 12px 8px; font-size: 1.05rem; }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    padding-left: 18px;
  }
  .nav .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cycle { grid-template-columns: 1fr; }
  .cycle-step { border-left: none; border-top: 1px solid var(--line); }
  .cycle-step:first-child { border-top: none; }
  .manifesto li { grid-template-columns: 56px 1fr; gap: 16px; padding: 26px 4px; }
  .manifesto .num { font-size: 1.8rem; }
}
