:root {
  --ink: #071928;
  --ink-2: #0d263d;
  --paper: #f6fafb;
  --muted: #9dafb9;
  --line: rgba(255, 255, 255, 0.16);
  --cyan: #00a6d6;
  --blue: #0457a8;
  --green: #9cc33b;
  --lime: #c9ee44;
  --orange: #f36c21;
  --white: #ffffff;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 166, 214, 0.18), transparent 28rem),
    linear-gradient(135deg, #06121d 0%, #08243b 44%, #071928 100%);
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
}

p,
h1,
h2,
h3 {
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.cursor-light {
  position: fixed;
  width: 24rem;
  height: 24rem;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.32;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 238, 68, 0.28), transparent 62%);
  filter: blur(8px);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 18, 30, 0.72);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 18, 30, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.brand img {
  width: 142px;
  height: auto;
}

.brand span {
  color: var(--lime);
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.nav a,
.header-link {
  transition: color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.header-link:hover {
  color: var(--lime);
  transform: translateY(-1px);
}

.header-link {
  padding: 13px 16px;
  border-radius: var(--radius);
  color: #071928;
  background: var(--lime);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-band {
  position: relative;
  z-index: 2;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 22, 0.94) 0%, rgba(4, 16, 27, 0.84) 44%, rgba(4, 14, 22, 0.42) 100%),
    linear-gradient(0deg, #071928 0%, transparent 34%);
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 390px;
  gap: 48px;
  align-items: end;
}

.eyebrow,
.section-label p,
.panel-top span,
.process-step span {
  margin: 0;
  color: var(--lime);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-top: 22px;
  font-size: 4.2rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
  animation: flowGlow 3s ease-out forwards;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(201, 238, 68, 0),
               0 0 40px rgba(201, 238, 68, 0),
               0 0 60px rgba(201, 238, 68, 0);
}

h2 {
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.05;
}

.lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.42rem;
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #071928;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 16px 34px rgba(201, 238, 68, 0.2);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.impact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 18, 30, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.panel-top {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-top strong {
  font-family: "Alata", sans-serif;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.signal-grid div {
  min-height: 112px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
}

.signal-grid span {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
}

.signal-grid p,
.live-strip p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.live-strip {
  padding: 18px 20px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.live-strip span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(243, 108, 33, 0.16);
  animation: pulse 1.7s infinite;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.section-label span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lime);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.manifesto {
  padding-top: 90px;
  background: #071928;
}

.manifesto-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 38px;
  align-items: start;
}

.manifesto-copy p,
.business-head p,
.format-copy p,
.wellbeing-copy p,
.contact-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.16rem;
  line-height: 1.65;
}

.ticker {
  margin: 72px 0 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker div {
  width: max-content;
  padding: 20px 0;
  display: flex;
  gap: 36px;
  animation: marquee 24s linear infinite;
}

.ticker span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.48);
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.business {
  background:
    linear-gradient(180deg, rgba(7, 25, 40, 1), rgba(8, 33, 51, 1)),
    radial-gradient(circle at 80% 10%, rgba(156, 195, 59, 0.22), transparent 28rem);
}

.business-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: end;
}

.value-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-card {
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.045);
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.value-card:last-child {
  border-right: 0;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.value-card span {
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.value-card p,
.process-step p,
.tab-content p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.servicios {
  background: #071928;
}

.servicios-intro {
  max-width: 900px;
  margin-bottom: 48px;
}

.servicios-intro h2 {
  margin-bottom: 20px;
}

.servicios-intro p {
  font-size: 1.16rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  color: var(--lime);
  font-weight: 600;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0;
}

.servicio-card {
  min-height: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 180ms ease, transform 180ms ease;
}

.servicio-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.servicio-card h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--lime);
}

.servicio-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  font-size: 0.95rem;
}

.eventos {
  background: #071928;
}

.eventos-intro {
  max-width: 900px;
  margin-bottom: 48px;
}

.eventos-intro h2 {
  margin-bottom: 20px;
}

.eventos-intro p {
  font-size: 1.16rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.eventos-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.evento-destacado {
  position: relative;
  padding: 32px;
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201, 238, 68, 0.08), rgba(201, 238, 68, 0.04));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.evento-destacado:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201, 238, 68, 0.12);
}

.evento-destacado .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lime);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.evento-destacado h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--white);
}

.evento-destacado p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  font-size: 0.95rem;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.evento-card {
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 180ms ease, transform 180ms ease;
}

.evento-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.evento-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--lime);
}

.evento-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  font-size: 0.9rem;
}

.galeria {
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 238, 68, 0.13), transparent 28rem),
    #071928;
}

.galeria-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 48px;
}

.galeria-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.16rem;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 25, 40, 0.34));
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.16) contrast(1.08);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.formats {
  background: #f6fafb;
  color: var(--ink);
}

.formats .section-label span {
  border-color: rgba(7, 25, 40, 0.14);
  color: var(--blue);
}

.formats .section-label p,
.formats .eyebrow {
  color: var(--blue);
}

.format-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: stretch;
}

.format-copy p {
  margin-top: 26px;
  color: rgba(7, 25, 40, 0.7);
}

.format-tabs {
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(7, 25, 40, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 25, 40, 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 36px 36px;
  color: var(--white);
  box-shadow: 0 28px 70px rgba(7, 25, 40, 0.24);
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.tab-buttons button {
  min-height: 64px;
  color: rgba(255, 255, 255, 0.62);
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms, color 180ms;
}

.tab-buttons button:last-child {
  border-right: 0;
}

.tab-buttons button.active {
  color: var(--ink);
  background: var(--lime);
}

.tab-content {
  display: none;
  min-height: 320px;
  padding: 38px;
  flex: 1;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tab-content h3 {
  max-width: 430px;
  font-size: 3.8rem;
  text-transform: uppercase;
}

.tab-content p {
  max-width: 540px;
  font-size: 1.12rem;
}

.wellbeing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 25, 40, 0.96), rgba(4, 87, 168, 0.92)),
    url("assets/banner-expo.png") center / cover;
}

.wellbeing-copy h2 {
  margin-top: 16px;
}

.wellbeing-copy p {
  margin-top: 24px;
  max-width: 560px;
}

.wellbeing-art {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease;
}

.wellbeing-art:hover {
  transform: rotate(-1deg) scale(1.01);
}

.wellbeing-art img {
  width: 100%;
  border-radius: 6px;
}

.process {
  background: #071928;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.process-step h3 {
  margin-top: 58px;
}

.contact {
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 238, 68, 0.22), transparent 32rem),
    linear-gradient(180deg, #071928, #04111c);
}

.contact-inner {
  max-width: 860px;
}

.contact-inner img {
  width: 190px;
  margin: 0 auto 32px;
}

.contact-inner p {
  max-width: 640px;
  margin: 24px auto 0;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(201, 238, 68, 0.16), transparent 24rem),
    linear-gradient(180deg, #061928, #04111c);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.9fr) minmax(240px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.footer-brand,
.footer-contact,
.footer-social {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-brand img {
  width: 174px;
  height: auto;
}

.footer-brand strong {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 0;
  color: var(--lime);
  font-family: "Montserrat", sans-serif;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-contact span,
.footer-social span,
.developer-credit span,
.footer-bottom p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact > span,
.footer-social > span {
  color: var(--lime);
}

.footer-contact address {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  line-height: 1.55;
}

.footer-contact-link,
.footer-social-links a {
  min-height: 44px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-contact-link:hover,
.footer-social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 238, 68, 0.72);
  background: rgba(201, 238, 68, 0.12);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.developer-credit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.developer-credit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.developer-credit span {
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
}

.developer-credit img {
  width: 118px;
  height: auto;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.62);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes flowGlow {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.95) translateY(20px);
    text-shadow: 0 0 10px rgba(201, 238, 68, 0),
                 0 0 20px rgba(201, 238, 68, 0),
                 0 0 40px rgba(201, 238, 68, 0);
  }
  50% {
    opacity: 1;
    filter: blur(0);
    text-shadow: 0 0 15px rgba(201, 238, 68, 0.4),
                 0 0 30px rgba(201, 238, 68, 0.2),
                 0 0 50px rgba(201, 238, 68, 0.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
    text-shadow: 0 0 20px rgba(201, 238, 68, 0.5),
                 0 0 40px rgba(201, 238, 68, 0.3),
                 0 0 60px rgba(201, 238, 68, 0.15);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero-inner,
  .manifesto-copy,
  .business-head,
  .galeria-head,
  .format-stage,
  .wellbeing {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .hero-copy,
  .manifesto-copy,
  .business-head,
  .galeria-head,
  .format-stage,
  .wellbeing-copy,
  .contact-inner {
    min-width: 0;
  }

  .manifesto-copy > *,
  .business-head > *,
  .galeria-head > *,
  .format-stage > *,
  .wellbeing > * {
    min-width: 0;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .lead {
    font-size: 1.22rem;
  }

  .ticker span {
    font-size: 3.1rem;
  }

  .tab-content h3 {
    font-size: 3rem;
  }

  .impact-panel {
    max-width: 620px;
  }

  .value-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card:nth-child(2) {
    border-right: 0;
  }

  .value-card {
    border-bottom: 1px solid var(--line);
  }

  .value-card:nth-child(3),
  .value-card:nth-child(4) {
    border-bottom: 0;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .eventos-highlight {
    grid-template-columns: 1fr;
  }

  .eventos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact,
  .footer-social {
    min-height: auto;
  }

  .footer-brand {
    gap: 38px;
  }

  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .developer-credit {
    align-self: flex-end;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
    gap: 10px;
  }

  .brand img {
    width: 112px;
  }

  .brand span {
    font-size: 0.52rem;
  }

  .header-link {
    padding: 11px 10px;
    font-size: 0.66rem;
    text-align: center;
  }

  .section-band {
    padding: 82px 18px;
  }

  .hero {
    padding-top: 126px;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 1;
  }

  h3 {
    font-size: 1.22rem;
  }

  .lead,
  .manifesto-copy p,
  .business-head p,
  .format-copy p,
  .wellbeing-copy p,
  .contact-inner p {
    font-size: 1.04rem;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .signal-grid span {
    font-size: 2.6rem;
  }

  .ticker span {
    font-size: 2.4rem;
  }

  .value-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card:nth-child(2),
  .value-card:nth-child(3) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .eventos-highlight {
    grid-template-columns: 1fr;
  }

  .eventos-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px;
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .tab-buttons button {
    min-height: 56px;
    font-size: 0.76rem;
  }

  .tab-content {
    min-height: 260px;
    padding: 26px;
  }

  .tab-content h3 {
    font-size: 2.35rem;
  }

  .wellbeing-art {
    padding: 10px;
  }

  .site-footer {
    padding: 54px 18px 24px;
  }

  .footer-brand,
  .footer-contact,
  .footer-social {
    padding: 22px;
  }

  .footer-brand p {
    font-size: 1.8rem;
  }

  .footer-social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .developer-credit img {
    width: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
