
:root {
  --font-scale: 1;
  --green: #006b4f;
  --mint: #5cf2b5;
  --dark: #071b17;
  --orange: #f0743e;
  --silver: #b9c2be;
  --paper: #f3f1eb;
  --surface: #fff;
  --ink: #12201c;
  --muted: #66736e;
  --line: #d4dad6;
  --max: 1240px;
  --radius: 22px;
  color-scheme: light;
}

/* Bilingual and final responsive refinements */
html {
  font-size: calc(16px * var(--font-scale));
}
body {
  font-size: 1rem;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  color: var(--muted);
}
.language-switcher > svg {
  width: 17px;
}
.language-switcher button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 5px 2px;
  font: 800 0.68rem/1 inherit;
  cursor: pointer;
}
.language-switcher button.active {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.language-switcher span {
  font-size: 0.68rem;
}
.featured-logo img,
.partner-logo-grid img {
  background: transparent !important;
}
.register-grid aside .eyebrow {
  margin-bottom: 10px;
}
@media (max-width: 980px) {
  .language-switcher {
    margin-left: auto;
  }
  .menu-toggle {
    margin-left: 8px;
  }
}
@media (max-width: 650px) {
  .hero {
    padding-top: 48px;
  }
  .hero-copy {
    padding-bottom: 12px;
  }
  .hero h1 {
    font-size: 2.85rem;
    line-height: 0.92;
  }
  .hero h1 em {
    margin-top: 0.32em;
  }
  .hero-lead {
    margin: 28px 0;
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
    max-width: 285px;
  }
  .hero-actions .btn {
    display: inline-flex !important;
    width: 100%;
    min-height: 50px;
  }
  .hero-actions .btn-ghost {
    background: #ffffff12;
  }
  .event-glass {
    margin-top: 52px;
  }
  .register-grid aside {
    order: -2;
  }
  .hubspot-form-slot {
    order: -1;
  }
  .register-grid aside h2 {
    font-size: 1.85rem;
    margin: 0 0 18px;
  }
  .register-grid aside ul {
    gap: 12px;
    margin-bottom: 0;
  }
  .register-grid aside .info-box {
    display: none;
  }
  .register-form label {
    font-size: 0.82rem;
  }
  .register-form input,
  .register-form select {
    font-size: 0.95rem;
    padding: 13px;
  }
  .language-switcher > svg {
    display: none;
  }
  .language-switcher button {
    font-size: 0.62rem;
    padding: 4px 1px;
  }
  .mobile-dock span {
    font-size: 0.55rem;
  }
}
html[data-theme="dark"] {
  --paper: #07110f;
  --surface: #0d1c18;
  --ink: #edf8f3;
  --muted: #a8b8b1;
  --line: #294039;
  color-scheme: dark;
}
html[data-contrast="high"] {
  --green: #004c37;
  --orange: #d84b00;
  --ink: #000;
  --paper: #fff;
  --surface: #fff;
  --muted: #222;
  --line: #000;
}
html[data-theme="dark"][data-contrast="high"] {
  --green: #58ffbd;
  --orange: #ff9a5c;
  --ink: #fff;
  --paper: #000;
  --surface: #000;
  --muted: #fff;
  --line: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: calc(16px * var(--font-scale));
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.container {
  width: min(var(--max), calc(100% - 56px));
  margin: auto;
}
.site-header {
  height: 84px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand img {
  width: 166px;
  height: 66px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
html[data-theme="dark"] .brand img,
.site-footer img {
  mix-blend-mode: normal;
  background: #fff;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a {
  padding: 30px 0;
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s;
}
.nav-links a:hover:after,
.nav-links a[aria-current="page"]:after {
  right: 0;
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 13px 19px;
}
.btn {
  padding: 16px 22px;
  font-size: 0.9rem;
}
.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(110deg, var(--orange), #ff9c60);
  color: #160c08;
  box-shadow: 0 12px 32px #f0743e3d;
}
.btn-ghost {
  border: 1px solid #ffffff58;
  color: #fff;
  background: #ffffff0c;
}
.btn-outline {
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-light {
  background: #fff;
  color: #063e31;
}
.mobile-dock {
  display: none;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--orange);
  margin: 0 0 18px;
}
.eyebrow.light {
  color: #ffad84;
}
.noise {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, #2e8a6f 0, transparent 34%),
    linear-gradient(135deg, #061713, #073f33 54%, #0b6d52);
  color: #fff;
  min-height: calc(100vh - 84px);
  padding: 88px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(3.6rem, 7.3vw, 7.3rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
  margin: 0;
  max-width: 930px;
  font-weight: 750;
}
.hero h1 em {
  display: block;
  font-family: Georgia, serif;
  font-weight: 400;
  color: #8ff4ca;
  font-size: 0.66em;
  letter-spacing: -0.035em;
  margin-top: 0.25em;
}
.hero-lead {
  font-size: 1.16rem;
  line-height: 1.65;
  max-width: 670px;
  color: #dceae5;
  margin: 34px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.event-glass {
  padding: 28px;
  border: 1px solid #ffffff35;
  background: #ffffff12;
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: 0 35px 90px #00110c80;
}
.event-glass > div {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #ffffff26;
}
.event-glass svg {
  color: #8ff4ca;
  flex: none;
}
.event-glass p {
  margin: 0;
  display: grid;
  gap: 4px;
}
.event-glass small {
  color: #bed3cb;
}
.live-dot {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 900;
}
.live-dot:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px #f0743e26;
  animation: pulse 2s infinite;
}
.hero-rings i {
  position: absolute;
  width: 680px;
  height: 680px;
  border: 1px solid #ffffff17;
  border-radius: 50%;
  right: -160px;
  top: -60px;
  animation: spin 28s linear infinite;
}
.hero-rings i:nth-child(2) {
  width: 500px;
  height: 500px;
  right: -70px;
  top: 30px;
  animation-direction: reverse;
}
.hero-rings i:nth-child(3) {
  width: 320px;
  height: 320px;
  right: 20px;
  top: 120px;
}
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 28px;
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid #ffffff25;
  padding: 16px 0;
  color: #d7e5df;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 900;
}
.hero-marquee span:first-child {
  margin-left: -15px;
}
.hero-marquee i {
  color: var(--orange);
}
.section {
  padding: 110px 0;
}
.section-title h2,
.story h2,
.agenda-box h2,
.closing h2,
.intergen h2 {
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0;
}
.section-title > p:last-child {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 760px;
}
.story {
  background: var(--dark);
  color: #fff;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.story-sticky {
  position: sticky;
  top: 140px;
  align-self: start;
}
.story h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #75eab9;
}
.story-steps {
  display: grid;
}
.story-steps article {
  min-height: 48vh;
  padding: 70px 0;
  border-top: 1px solid #ffffff20;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-steps span {
  font:
    700 1.1rem Georgia,
    serif;
  color: var(--orange);
}
.story-steps h3 {
  font-size: 2.2rem;
  margin: 16px 0;
}
.story-steps p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #bcd0c8;
  max-width: 520px;
}
.vision {
  background: linear-gradient(
    145deg,
    var(--surface),
    color-mix(in srgb, var(--paper) 80%, #7fe8bb 20%)
  );
}
.vision-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vision-metrics div {
  padding: 34px 24px;
  border-right: 1px solid var(--line);
}
.vision-metrics b {
  display: block;
  font:
    700 clamp(2.8rem, 5vw, 5.2rem) Georgia,
    serif;
  color: var(--green);
}
.vision-metrics span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
}
.axes {
  background: var(--paper);
}
.axes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.axis {
  position: relative;
  min-height: 360px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.35s,
    border-color 0.35s;
}
.axis:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
}
.axis > div {
  display: flex;
  justify-content: space-between;
}
.axis > div span {
  font:
    700 1.4rem Georgia,
    serif;
  color: var(--orange);
}
.axis svg {
  width: 36px;
  height: 36px;
  color: var(--green);
}
.axis h3 {
  font-size: 2.15rem;
  max-width: 400px;
  margin-top: 110px;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.axis p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}
.axis i {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, #58e4ac4d, transparent 66%);
  right: -35px;
  top: -35px;
}
.speaker-stage {
  background: var(--surface);
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 5px;
  white-space: nowrap;
}
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.speaker-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.35s;
}
.speaker-card:hover {
  transform: translateY(-8px);
}
.speaker-photo {
  height: 350px;
  position: relative;
  background: linear-gradient(145deg, #6b7c74, #233d34);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.speaker-photo:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #071b17b5);
}
.speaker-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition:
    transform 0.6s,
    filter 0.5s;
}
.speaker-card:hover img {
  transform: scale(1.045);
  filter: saturate(1);
}
.speaker-photo > span,
.profile-photo > span {
  font:
    700 4rem Georgia,
    serif;
  color: #ffffffaa;
}
.speaker-photo small {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  color: #fff;
  font-weight: 800;
  font-size: 0.68rem;
}
.speaker-info {
  padding: 23px;
  border: 1px solid var(--line);
  border-top: 0;
}
.speaker-info > span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 900;
}
.speaker-info h3 {
  font-size: 1.25rem;
  margin: 12px 0 6px;
}
.speaker-info p {
  color: var(--muted);
  min-height: 38px;
  font-size: 0.86rem;
}
.speaker-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 900;
  font-size: 0.75rem;
}
.intergen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 770px;
  background: linear-gradient(145deg, #0a3f33, #071b17);
  color: #fff;
}
.intergen-media {
  position: relative;
  overflow: hidden;
}
.intergen-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.28) contrast(1.04);
}
.intergen-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, #071b17);
}
.scan {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #68f4bb, transparent);
  box-shadow: 0 0 24px #68f4bb;
  animation: scan 6s ease-in-out infinite;
}
.intergen-copy {
  padding: 110px 8vw;
  align-self: center;
}
.intergen-copy p:not(.eyebrow) {
  color: #bad0c7;
  line-height: 1.7;
  font-size: 1.08rem;
}
.agenda-preview {
  background: var(--paper);
}
.agenda-box {
  background: linear-gradient(120deg, #006b4f, #06352c);
  color: #fff;
  padding: 70px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  box-shadow: 0 35px 90px #006b4f2e;
}
.agenda-box p:not(.eyebrow) {
  color: #d3e7df;
  line-height: 1.7;
}
.agenda-days {
  display: flex;
  align-items: center;
  gap: 14px;
}
.agenda-days div {
  background: #ffffff12;
  border: 1px solid #ffffff30;
  width: 150px;
  padding: 20px;
  text-align: center;
  border-radius: 16px;
}
.agenda-days span,
.agenda-days small {
  display: block;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}
.agenda-days b {
  display: block;
  font:
    700 4.2rem Georgia,
    serif;
  color: #9df3ce;
}
.venue {
  background: var(--surface);
}
.venue-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  margin-top: 55px;
}
.venue-info {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
}
.venue-info > img {
  height: 82px;
  width: 230px;
  object-fit: contain;
  background: #fff;
  margin: 25px 0;
}
.host-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 900;
}
.venue-info h3 {
  font-size: 2rem;
  margin: 10px 0;
}
.venue-info p {
  line-height: 1.7;
  color: var(--muted);
}
.capacity {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
  color: var(--green);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
}
.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  filter: saturate(0.75) contrast(1.05);
}
.allies {
  background: var(--paper);
}
.ally-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 50px;
}
.ally-grid article {
  min-height: 250px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ally-grid span {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: var(--orange);
}
.ally-grid img {
  max-width: 360px;
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
}
.ally-cta {
  margin-top: 35px;
}
.closing {
  background: radial-gradient(circle at 50% 10%, #14725a, #071b17 55%);
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.closing svg {
  color: #8ff4ca;
  width: 42px;
  height: 42px;
}
.closing > div > p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.72rem;
  color: #c6d8d1;
}
.closing h2 {
  margin: 25px 0 38px;
}
.closing h2 em {
  font-family: Georgia, serif;
  color: #8ff4ca;
  font-weight: 400;
}
.site-footer {
  background: var(--surface);
  padding: 65px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-grid img {
  object-fit: contain;
}
.footer-grid p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-grid b {
  color: var(--green);
}
.footer-grid a,
.footer-grid span {
  font-size: 0.86rem;
  color: var(--muted);
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link svg {
  width: 18px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--green);
  font-weight: 850;
}
.legal-content {
  max-width: 900px;
}
.legal-content h2 {
  margin: 42px 0 14px;
  color: var(--green);
  font-size: 1.55rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  color: var(--muted);
  line-height: 1.8;
}
.legal-content a,
.register-form .check a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, #1e7d63, transparent 34%),
    linear-gradient(130deg, #071b17, #07503e);
  color: white;
  padding: 100px 0;
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0;
}
.page-hero .container > p:last-child {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 800px;
  color: #d3e5de;
}
.speaker-directory {
  display: grid;
  gap: 32px;
}
.speaker-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 52px;
  background: var(--surface);
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-margin-top: 110px;
}
.profile-photo {
  height: 390px;
  background: linear-gradient(145deg, #536860, #152e26);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-photo b {
  position: absolute;
  bottom: 15px;
  right: 16px;
  color: #fff;
  font:
    700 1.4rem Georgia,
    serif;
}
.speaker-profile h2 {
  font-size: 2.5rem;
  margin: 0 0 8px;
}
.speaker-profile h3 {
  font-size: 1rem;
  color: var(--muted);
}
.speaker-profile > div:last-child > p:last-of-type {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
}
.speaker-profile blockquote {
  font:
    italic 1.35rem Georgia,
    serif;
  color: var(--green);
  margin: 24px 0;
}
.country {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--orange);
  font-weight: 800;
}
.org-logo {
  object-fit: contain;
  object-position: left;
  max-height: 65px;
  background: #fff;
  padding: 6px;
  border-radius: 6px;
}
.agenda-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 55px;
}
.agenda-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.agenda-meta svg {
  color: var(--orange);
}
.day-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 45px;
  margin-bottom: 70px;
}
.day-label {
  position: sticky;
  top: 120px;
  align-self: start;
}
.day-label span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}
.day-label h2 {
  font-size: 2.2rem;
}
.session {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.session-time {
  font-weight: 900;
  color: var(--green);
  display: flex;
  gap: 7px;
}
.session > div:last-child > span {
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 900;
}
.session h3 {
  font-size: 1.6rem;
  margin: 8px 0;
}
.session p {
  color: var(--muted);
  line-height: 1.5;
}
.register-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}
.register-grid aside h2 {
  font-size: 2.2rem;
}
.register-grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 18px;
}
.register-grid li {
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.register-grid li svg {
  color: var(--green);
  flex: none;
}
.info-box {
  display: flex;
  gap: 12px;
  background: color-mix(in srgb, var(--green) 10%, var(--surface));
  padding: 20px;
  margin-top: 30px;
  border-radius: 14px;
}
.info-box svg {
  color: var(--orange);
  flex: none;
}
.info-box p {
  margin: 0;
  line-height: 1.5;
}
.register-form,
.success {
  background: var(--surface);
  padding: 36px;
  border: 1px solid var(--line);
  display: grid;
  gap: 20px;
  border-radius: var(--radius);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.register-form label {
  font-size: 0.8rem;
  font-weight: 800;
  display: grid;
  gap: 8px;
}
.register-form input,
.register-form select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  border-radius: 10px;
}
.register-form input:focus,
.register-form select:focus {
  outline: 3px solid #f0743e35;
  border-color: var(--orange);
}
.register-form .check {
  display: flex;
  grid-template-columns: 20px 1fr;
  align-items: start;
  line-height: 1.5;
}
.check input {
  width: 17px;
}
.success {
  text-align: center;
  align-content: center;
  justify-items: center;
  min-height: 450px;
}
.success > svg {
  width: 55px;
  height: 55px;
  color: var(--green);
}
.a11y {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 80;
}
.a11y-main {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--orange);
  color: #1b0d07;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 35px #0004;
  cursor: pointer;
}
.a11y-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 9px;
  width: 210px;
  display: grid;
  gap: 4px;
  box-shadow: 0 20px 55px #0003;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s;
}
.a11y.open .a11y-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.a11y-panel button {
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: left;
  padding: 10px;
  border-radius: 9px;
  cursor: pointer;
}
.a11y-panel button:hover {
  background: var(--paper);
}
.a11y-panel svg {
  width: 19px;
}
.a11y-panel span {
  font-size: 0.78rem;
  font-weight: 750;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px #f0743e0c;
  }
}
@keyframes scan {
  0%,
  100% {
    top: 15%;
    opacity: 0;
  }
  15%,
  85% {
    opacity: 1;
  }
  50% {
    top: 82%;
  }
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .hero-grid,
  .story-grid,
  .agenda-box,
  .venue-grid,
  .register-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-bottom: 100px;
  }
  .event-glass {
    max-width: 600px;
  }
  .story-sticky {
    position: relative;
    top: auto;
  }
  .story-steps article {
    min-height: 34vh;
  }
  .vision-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .axes-grid {
    grid-template-columns: 1fr;
  }
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intergen {
    grid-template-columns: 1fr;
  }
  .intergen-media {
    height: 620px;
  }
  .intergen-media:after {
    background: linear-gradient(transparent 70%, #071b17);
  }
  .ally-grid {
    grid-template-columns: 1fr;
  }
  .speaker-profile {
    grid-template-columns: 270px 1fr;
  }
  .footer-grid {
    gap: 35px;
  }
  .a11y {
    bottom: 100px;
  }
  .mobile-dock {
    display: flex;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    z-index: 70;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 7px;
    box-shadow: 0 15px 45px #0004;
  }
  .mobile-dock a {
    width: 76px;
    display: grid;
    justify-items: center;
    gap: 3px;
    padding: 7px;
    border-radius: 13px;
    color: var(--muted);
  }
  .mobile-dock a[aria-current="page"] {
    background: var(--green);
    color: #fff;
  }
  .mobile-dock svg {
    width: 19px;
    height: 19px;
  }
  .mobile-dock span {
    font-size: 0.58rem;
    font-weight: 850;
  }
  .site-footer {
    padding-bottom: 105px;
  }
}
@media (max-width: 650px) {
  .container {
    width: min(var(--max), calc(100% - 30px));
  }
  .site-header {
    height: 72px;
  }
  .brand img {
    width: 145px;
  }
  .nav-cta {
    padding: 11px 14px;
    font-size: 0.75rem;
  }
  .hero {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section {
    padding: 78px 0;
  }
  .section-title h2,
  .story h2,
  .agenda-box h2,
  .closing h2,
  .intergen h2 {
    font-size: 2.7rem;
  }
  .story-grid {
    gap: 40px;
  }
  .story-steps article {
    padding: 50px 0;
  }
  .vision-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .vision-metrics div {
    padding: 22px 14px;
  }
  .axes-grid {
    margin-top: 35px;
  }
  .axis {
    min-height: 300px;
    padding: 25px;
  }
  .axis h3 {
    margin-top: 75px;
    font-size: 1.8rem;
  }
  .speaker-grid {
    grid-template-columns: 1fr;
  }
  .speaker-photo {
    height: 420px;
  }
  .section-head-row {
    display: block;
  }
  .section-head-row .text-link {
    margin-top: 20px;
  }
  .intergen-media {
    height: 480px;
  }
  .intergen-copy {
    padding: 70px 25px;
  }
  .agenda-box {
    padding: 35px 24px;
  }
  .agenda-days div {
    width: 50%;
  }
  .venue-info {
    padding: 28px;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 380px;
  }
  .speaker-profile {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 26px;
  }
  .profile-photo {
    height: 430px;
  }
  .speaker-profile h2 {
    font-size: 2rem;
  }
  .agenda-meta {
    display: grid;
  }
  .day-block {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .day-label {
    position: relative;
    top: auto;
  }
  .session {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .register-form {
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .page-hero {
    padding: 70px 0;
  }
  .page-hero h1 {
    font-size: 3.25rem;
  }
  .a11y {
    right: 12px;
  }
  .mobile-dock a {
    width: 68px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Legibilidad, ritmo editorial y componentes de esta edición */
body {
  letter-spacing: 0.012em;
  line-height: 1.55;
}
.hero h1,
.page-hero h1,
.section-title h2,
.story h2,
.agenda-box h2,
.closing h2,
.intergen h2 {
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.section-title h2 {
  margin-bottom: 26px;
}
.section-title > p:last-child {
  margin-top: 0;
}
.story-sticky h2,
.agenda-box h2,
.intergen h2 {
  margin-bottom: 28px;
}
.hero-actions {
  margin-top: 38px;
}
.intergen-copy .btn,
.agenda-box .btn,
.venue-info .btn,
.closing .btn {
  margin-top: 26px;
}
.hero-marquee {
  justify-content: center;
  white-space: normal;
  flex-wrap: wrap;
  text-align: center;
  padding: 18px 26px;
  row-gap: 8px;
}
.hero-marquee span:first-child {
  margin-left: 0;
}
.brand img {
  mix-blend-mode: normal;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.about {
  background: linear-gradient(
    135deg,
    var(--surface),
    color-mix(in srgb, var(--paper) 74%, #76e8bc 26%)
  );
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.about-copy {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}
.founder-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 42px;
}
.founder-card > span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.founder-card h3 {
  font-size: 2.5rem;
  margin: 20px 0 28px;
  letter-spacing: -0.02em;
}
.founder-card blockquote {
  font:
    italic 1.35rem/1.55 Georgia,
    serif;
  color: #94f0ca;
  margin: 0 0 28px;
}
.founder-card p {
  color: #c2d4cd;
  line-height: 1.75;
}
.axis {
  color: #fff;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
}
.axis > img {
  object-fit: cover;
  filter: saturate(0.72) brightness(0.62);
  transition:
    transform 0.7s,
    filter 0.5s;
}
.axis:hover > img {
  transform: scale(1.045);
  filter: saturate(0.9) brightness(0.55);
}
.axis-overlay {
  position: absolute !important;
  inset: 0;
  background: linear-gradient(180deg, #06171312 10%, #061713ed 86%);
  z-index: 1;
}
.axis > div:not(.axis-overlay),
.axis h3,
.axis p {
  position: relative;
  z-index: 2;
}
.axis > div:not(.axis-overlay) {
  margin-bottom: auto;
}
.axis svg {
  color: #8ff4ca;
}
.axis h3 {
  margin-top: 120px;
  color: #fff;
}
.axis p {
  color: #d7e4df;
}
.ally-level {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  align-items: center;
}
.ally-level > span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--orange);
}
.ally-level article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 150px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ally-level article img {
  max-height: 100px;
  object-fit: contain;
}
.participant-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.faq {
  background: var(--surface);
}
.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 44px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0 4px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-weight: 850;
  font-size: 1.1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform 0.2s;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  max-width: 850px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
}
.font-scale {
  display: block;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 11px 0 9px;
}
.font-scale-title {
  display: block;
  padding: 0 12px 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}
.font-scale-controls {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  align-items: center;
  text-align: center;
  gap: 3px;
}
.font-scale button {
  display: grid !important;
  justify-items: center !important;
  gap: 3px !important;
  padding: 6px 4px !important;
  font-size: 0.66rem !important;
}
.font-scale button svg {
  width: 17px;
  height: 17px;
}
.font-scale b {
  font-size: 0.78rem;
}
.font-scale button:disabled {
  opacity: 0.35;
}
.a11y-panel {
  width: 260px;
}
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .participant-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .hero-marquee {
    position: relative;
    margin-top: 54px;
    gap: 12px 18px;
  }
  .hero {
    padding-bottom: 0;
  }
  .about-grid {
    gap: 36px;
  }
  .founder-card {
    padding: 28px;
  }
  .ally-level {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .participant-logos {
    grid-template-columns: 1fr;
  }
  .axis {
    min-height: 360px;
  }
  .section-title h2 {
    margin-bottom: 22px;
  }
}
.registration-process {
  margin-bottom: 75px;
}
.registration-process h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -0.025em;
  margin: 0 0 36px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.process-grid svg {
  color: var(--orange);
  margin-bottom: 24px;
}
.process-grid b {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.process-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.speaker-day-title {
  display: flex;
  align-items: baseline;
  gap: 24px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 18px;
  margin-bottom: 34px;
}
.speaker-day-title span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.speaker-day-title h2 {
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: -0.025em;
}
.speaker-day-title.day-two {
  margin-top: 100px;
}
@media (max-width: 650px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .speaker-day-title {
    display: block;
  }
  .speaker-day-title h2 {
    font-size: 2rem;
    margin-top: 10px;
  }
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
}
.mobile-menu {
  display: none;
}
.page-hero.has-image {
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #071b17;
}
.page-hero-image {
  object-fit: cover;
  object-position: center;
}
.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #061713f2 0%,
    #061713c9 46%,
    #0617132b 100%
  );
}
.page-hero .noise {
  z-index: 1;
}
.page-hero .container {
  z-index: 2;
}
.axis-label,
.speaker-axis,
.session-axis {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.speaker-axis svg,
.session-axis svg {
  flex: none;
}
.session-speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.session-speakers a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px 7px 7px;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.session-speakers a:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}
.session-speakers img,
.session-speakers i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}
.session-speakers span {
  display: grid;
}
.session-speakers b {
  font-size: 0.8rem;
}
.session-speakers small {
  font-size: 0.66rem;
  color: var(--muted);
  max-width: 220px;
}
.cumbre-lead {
  max-width: 980px;
}
.cumbre-lead h2 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.cumbre-lead > p:last-child {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 850px;
}
.cumbre-origin {
  background: linear-gradient(
    135deg,
    var(--surface),
    color-mix(in srgb, var(--paper) 74%, #76e8bc 26%)
  );
}
.cumbre-purpose {
  background: var(--dark);
  color: #fff;
}
.cumbre-purpose .section-title > p:last-child {
  color: #c1d4cc;
}
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.purpose-grid article {
  border: 1px solid #ffffff25;
  border-radius: 18px;
  padding: 28px;
  background: #ffffff08;
}
.purpose-grid svg {
  color: #8ff4ca;
  width: 34px;
  height: 34px;
  margin-bottom: 35px;
}
.purpose-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.purpose-grid p {
  color: #bdd0c8;
  line-height: 1.7;
}
.about .btn {
  margin-top: 26px;
}
@media (max-width: 1120px) {
  .nav-links {
    gap: 17px;
    font-size: 0.7rem;
  }
  .nav {
    gap: 18px;
  }
  .brand img {
    width: 145px;
  }
  .purpose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .site-header .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: grid;
    margin-left: auto;
  }
  .mobile-menu {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 83px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.3s,
      opacity 0.2s;
  }
  .mobile-menu.open {
    max-height: 560px;
    opacity: 1;
  }
  .mobile-menu nav {
    width: min(var(--max), calc(100% - 40px));
    margin: auto;
    padding: 18px 0 28px;
    display: grid;
  }
  .mobile-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 850;
  }
  .mobile-menu a[aria-current="page"] {
    color: var(--orange);
  }
  .mobile-menu .btn {
    margin-top: 18px;
    border-bottom: 0;
  }
  .page-hero.has-image {
    min-height: 470px;
  }
  .purpose-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  .mobile-menu {
    top: 71px;
  }
  .page-hero.has-image {
    min-height: 500px;
  }
  .page-hero-image {
    object-position: 65% center;
  }
  .page-hero-shade {
    background: linear-gradient(
      90deg,
      #061713f5 0%,
      #061713d7 72%,
      #06171378 100%
    );
  }
  .session-speakers {
    display: grid;
  }
  .session-speakers a {
    border-radius: 16px;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
  }
}

.founder-card {
  padding: 34px;
  align-self: center;
}
.founder-photo {
  height: 245px;
  margin: -34px -34px 24px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #15362d;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
}
.founder-card h3 {
  margin: 14px 0 18px;
}
.founder-card blockquote {
  margin-bottom: 18px;
}
.founder-card p {
  margin-bottom: 0;
}
.agenda-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.agenda-toolbar .agenda-meta {
  margin: 0;
}
.session-time span {
  display: grid;
  gap: 2px;
}
.session-time small {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 700;
}
.agenda-person-plain {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px 7px 7px;
}
.agenda-person-plain i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}
.agenda-person-plain > span {
  display: grid;
  gap: 2px;
}
.agenda-person-plain b {
  font-size: 0.8rem;
}
.agenda-person-plain small {
  font-size: 0.66rem;
  color: var(--muted);
}
@media (max-width: 650px) {
  .founder-photo {
    height: 300px;
    margin: -28px -28px 26px;
  }
  .agenda-toolbar {
    display: grid;
  }
  .agenda-toolbar .btn {
    width: 100%;
  }
}

/* Conversion, partners and accessibility refinements */
.speaker-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 10px 28px #071b170d;
}
.speaker-info {
  flex: 1;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 17px 17px;
  padding-bottom: 27px;
}
.speaker-info p {
  min-height: 42px;
}
.org-logo {
  display: block;
  width: auto;
  min-width: 120px;
  max-width: 220px;
  height: 72px;
  max-height: 72px;
  margin-top: 24px;
  border: 1px solid var(--line);
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
  padding: 9px;
}
.allies-carousel-section {
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--paper),
    color-mix(in srgb, var(--surface) 84%, #8ff4ca 16%)
  );
}
.allies-carousel-section.compact {
  padding-top: 85px;
}
.partner-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 34px;
}
.partner-levels span {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--muted);
  font-size: 0.76rem;
}
.partner-levels b {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 7px;
}
.logo-carousel {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 0;
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: partner-scroll 34s linear infinite;
}
.logo-track:hover {
  animation-play-state: paused;
}
.logo-track article {
  width: 250px;
  height: 138px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #d9dfdc;
  border-radius: 17px;
  padding: 18px;
}
.logo-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.faq-more {
  margin-top: 34px;
}
.faq-contact {
  background: linear-gradient(120deg, #006b4f, #06352c);
  color: #fff;
  padding: 58px 0;
}
.faq-contact > .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.faq-contact > .container > svg {
  width: 48px;
  height: 48px;
  color: #8ff4ca;
}
.faq-contact h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 0;
}
.faq-contact p:not(.eyebrow) {
  color: #d3e7df;
  margin-bottom: 0;
}
.a11y-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 7px 10px;
  border-bottom: 1px solid var(--line);
}
.a11y-panel-head > b {
  font-size: 0.82rem;
  color: var(--green);
}
.a11y-panel-head button {
  padding: 5px !important;
  margin-left: auto;
}
.a11y-check {
  margin-left: auto;
  color: var(--green);
}
.scale-check {
  width: 14px !important;
  height: 14px;
  color: var(--green);
  vertical-align: -2px;
}
.a11y-panel button[aria-pressed="true"] {
  background: color-mix(in srgb, var(--green) 10%, var(--surface));
}
@keyframes partner-scroll {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}
@media (max-width: 650px) {
  .founder-card {
    padding: 28px;
  }
  .founder-photo {
    height: 225px;
    margin: -28px -28px 22px;
  }
  .faq-contact > .container {
    grid-template-columns: 1fr;
  }
  .faq-contact > .container > svg {
    display: none;
  }
  .logo-track article {
    width: 205px;
    height: 118px;
  }
  .partner-levels {
    display: grid;
  }
  .speaker-card {
    border-radius: 18px;
  }
  .speaker-info {
    padding-bottom: 25px;
  }
}

/* Final brand, hero and partner hierarchy */
.site-header {
  height: 90px;
}
.brand img {
  width: 190px;
  height: 82px;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  mix-blend-mode: normal !important;
}
.site-footer img {
  width: 220px;
  height: 124px;
  padding: 0;
  background: transparent !important;
  border-radius: 0 !important;
  mix-blend-mode: normal !important;
}
.home-hero-image {
  object-fit: cover;
  object-position: center;
}
.home-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #061713f5 0%,
    #061713e8 30%,
    #0617139e 52%,
    #06171318 78%
  );
}
.hero .noise {
  z-index: 1;
}
.hero-grid,
.hero-marquee {
  z-index: 3;
}
.hero-rings {
  position: relative;
  z-index: 2;
}
.founder-photo img {
  object-position: center 25%;
}
.venue-info > img {
  display: block;
  width: 270px;
  height: 105px;
  max-width: 100%;
  object-fit: contain;
  background: transparent !important;
  margin: 22px auto 26px 0;
}
.allies-carousel-section {
  overflow: hidden;
}
.partner-tier {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.partner-tier > p,
.partner-tier-head > p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--green);
}
.partner-tier p b {
  color: var(--orange);
  margin-right: 10px;
}
.featured-tier {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: center;
}
.featured-logo {
  height: 170px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}
.featured-logo img {
  width: 100%;
  height: 100%;
  max-width: 470px;
  object-fit: contain;
}
.host-logo img {
  max-width: 500px;
}
.participant-tier {
  margin-top: 42px;
}
.partner-tier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.partner-logo-grid article {
  height: 132px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}
.partner-logo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.partner-arrows,
.partner-dots {
  display: none;
}
.allies-carousel-section .ally-cta {
  margin-top: 34px;
}
@media (max-width: 980px) {
  .partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .featured-tier {
    grid-template-columns: 190px 1fr;
  }
  .home-hero-shade {
    background: linear-gradient(
      90deg,
      #061713f3 0%,
      #061713da 48%,
      #06171365 100%
    );
  }
}
@media (max-width: 650px) {
  .site-header {
    height: 72px;
  }
  .brand img {
    width: 145px;
    height: 66px;
  }
  .home-hero-image {
    object-position: 68% center;
  }
  .home-hero-shade {
    background: linear-gradient(
      90deg,
      #061713f6 0%,
      #061713e5 70%,
      #061713aa 100%
    );
  }
  .hero-rings {
    display: none;
  }
  .founder-photo img {
    object-position: center 24%;
  }
  .featured-tier {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .featured-logo {
    height: 145px;
  }
  .partner-logo-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .partner-logo-grid::-webkit-scrollbar {
    display: none;
  }
  .partner-logo-grid article {
    flex: 0 0 235px;
    height: 126px;
    scroll-snap-align: center;
  }
  .partner-arrows {
    display: flex;
    gap: 8px;
  }
  .partner-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--green);
    display: grid;
    place-items: center;
  }
  .partner-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
  }
  .partner-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: var(--silver);
    padding: 0;
  }
  .partner-dots button:first-child {
    background: var(--orange);
  }
}

/* Final usability pass */
.site-header {
  height: 98px;
}
.brand {
  height: 100%;
  display: flex;
  align-items: center;
}
.brand img {
  width: 178px;
  height: 78px;
  margin: 10px 0;
}
.featured-logo,
.partner-logo-grid article {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.featured-logo {
  height: 138px;
  padding: 12px 0;
}
.featured-logo img {
  width: auto !important;
  height: 96px !important;
  max-width: 92%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}
.partner-logo-grid {
  align-items: center;
  row-gap: 28px;
}
.partner-logo-grid article {
  height: 96px;
  padding: 8px 12px;
}
.partner-logo-grid img {
  width: auto !important;
  height: 68px !important;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}
.founder-photo img {
  object-position: center 12%;
}
.registration-process {
  margin-top: 86px;
  margin-bottom: 0;
}
.hubspot-form-slot {
  min-width: 0;
}
.hubspot-form-slot > .register-form,
.hubspot-form-slot > .success {
  height: 100%;
}
.speaker-link-hint {
  margin: 18px 0 9px !important;
  font-size: 0.72rem !important;
  color: var(--green) !important;
  font-weight: 800;
}
.session-speakers {
  margin-top: 0;
}
.session-speakers a {
  position: relative;
}
.session-speakers a:after {
  content: "Ver perfil";
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-left: 5px;
}
.session-speakers a[href="/cumbre"] img {
  object-position: center top;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 79;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px #0003;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.22s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top svg {
  width: 21px;
}
@media (max-width: 650px) {
  .site-header {
    height: 64px;
  }
  .brand img {
    width: 132px;
    height: 54px;
    margin: 5px 0;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .mobile-menu {
    top: 63px;
  }
  .hero {
    padding-top: 30px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.75rem;
    line-height: 0.9;
  }
  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.5;
    margin: 22px 0;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 160px;
    padding: 14px 20px;
  }
  .hero-actions .btn-ghost {
    display: none;
  }
  .event-glass {
    margin-top: 36px;
    padding: 20px;
  }
  .mobile-dock {
    bottom: 10px;
    padding: 5px;
  }
  .mobile-dock a {
    width: 65px;
    padding: 6px;
  }
  .register-hero {
    min-height: 260px !important;
    padding: 34px 0 !important;
    align-items: center;
  }
  .register-hero h1 {
    font-size: 2.35rem;
    max-width: 330px;
  }
  .register-hero .container > p:last-child {
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 330px;
  }
  .register-page {
    padding-top: 34px !important;
  }
  .register-grid {
    gap: 34px;
  }
  .hubspot-form-slot {
    order: -1;
  }
  .registration-process {
    margin-top: 58px;
  }
  .founder-photo img {
    object-position: center 10%;
  }
  .featured-logo {
    height: 112px;
  }
  .featured-logo img {
    height: 82px !important;
  }
  .partner-logo-grid article {
    height: 92px;
    background: transparent !important;
  }
  .partner-logo-grid img {
    height: 62px !important;
  }
  .agenda-hero {
    min-height: 360px !important;
    padding: 45px 0 !important;
  }
  .agenda-hero h1 {
    font-size: 2.65rem;
  }
  .session-speakers a:after {
    margin-left: auto;
  }
  .back-to-top {
    right: 72px;
    bottom: 100px;
    width: 46px;
    height: 46px;
  }
}

/* Final cascade overrides */
html {
  font-size: calc(16px * var(--font-scale));
}
body {
  font-size: 1rem;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  color: var(--muted);
}
.language-switcher > svg {
  width: 17px;
}
.language-switcher button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 5px 2px;
  font: 800 0.68rem/1 inherit;
  cursor: pointer;
}
.language-switcher button.active {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.language-switcher span {
  font-size: 0.68rem;
}
.featured-logo img,
.partner-logo-grid img {
  background: transparent !important;
}
.register-grid aside .eyebrow {
  margin-bottom: 10px;
}
@media (max-width: 980px) {
  .language-switcher {
    margin-left: auto;
  }
  .menu-toggle {
    margin-left: 8px;
  }
}
@media (max-width: 650px) {
  .hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-copy {
    padding-bottom: 12px;
  }
  .hero h1 {
    font-size: 2.85rem;
    line-height: 0.92;
  }
  .hero h1 em {
    margin-top: 0.32em;
  }
  .hero-lead {
    margin: 28px 0;
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
    max-width: 285px;
  }
  .hero-actions .btn {
    display: inline-flex !important;
    width: 100%;
    min-height: 50px;
  }
  .hero-actions .btn-ghost {
    background: #ffffff12;
  }
  .event-glass {
    margin-top: 0;
  }
  .register-grid aside {
    order: -2;
  }
  .hubspot-form-slot {
    order: -1;
  }
  .register-grid aside h2 {
    font-size: 1.85rem;
    line-height: 1.12;
    margin: 0 0 18px;
  }
  .register-grid aside ul {
    gap: 12px;
    margin-bottom: 0;
  }
  .register-grid aside .info-box {
    display: none;
  }
  .register-form label {
    font-size: 0.82rem;
  }
  .register-form input,
  .register-form select {
    font-size: 0.95rem;
    padding: 13px;
  }
  .language-switcher > svg {
    display: none;
  }
  .language-switcher button {
    font-size: 0.62rem;
    padding: 4px 1px;
  }
  .mobile-dock span {
    font-size: 0.55rem;
  }
  .footer-bottom {
    gap: 9px;
  }
}
