:root {
  --navy: #03045e;
  --blue: #0077b6;
  --cyan: #00b4d8;
  --sky: #90e0ef;
  --ice: #caf0f8;
  --bg: #f4fbfd;
  --white: #ffffff;
  --muted: #3d4d6e;
  --line: rgba(3, 4, 94, 0.1);
  --shadow: 0 18px 50px rgba(3, 4, 94, 0.1);
  --header: 92px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Manrope", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.05rem;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3, .brand-name, .btn, .steps strong, .faq button {
  font-family: var(--display);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.35rem, 6.4vw, 4.5rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 0.45em;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 0.4em;
}

h3 { font-size: 1.2rem; line-height: 1.25; margin-bottom: 0.35em; }

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 40rem;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 16px;
  top: -120px;
  background: var(--navy);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 80;
}

.skip:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection { background: var(--sky); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;
  width: min(1120px, 100%);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 14px;
  background: #fff;
  border: 1px solid rgba(3, 4, 94, 0.1);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(3, 4, 94, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-shell.is-scrolled {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 16px 40px rgba(3, 4, 94, 0.14);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}

.brand img { width: 40px; height: 40px; flex: none; }

.brand-name {
  display: block;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1;
}

.brand-tag {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a:not(.btn) {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.55);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  place-items: center;
  cursor: pointer;
  flex: none;
}

.burger,
.burger::before,
.burger::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger::before { top: -6px; }
.burger::after { top: 6px; }

body.nav-open .burger { background: transparent; }
body.nav-open .burger::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--navy); color: white; box-shadow: 0 10px 24px rgba(3, 4, 94, 0.22); }
.btn-ghost { background: rgba(255, 255, 255, 0.72); color: var(--navy); border-color: rgba(255, 255, 255, 0.8); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: var(--cyan); color: var(--navy); }
.btn-light:hover { background: white; color: var(--navy); box-shadow: 0 10px 24px rgba(0, 180, 216, 0.28); }
.btn-line { background: transparent; color: white; border-color: rgba(255, 255, 255, 0.35); }
.btn-line:hover { background: white; color: var(--navy); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 0.92rem; }
.btn svg { width: 18px; height: 18px; flex: none; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px 24px 80px;
  text-align: center;
  color: white;
  background:
    linear-gradient(180deg, rgba(3, 4, 94, 0.62), rgba(3, 4, 94, 0.42) 45%, rgba(3, 4, 94, 0.68)),
    url("../assets/hero-escritorio.png") center 42% / cover no-repeat;
}

.hero-copy { width: min(920px, 100%); }

.hero h1 {
  color: white;
  margin-inline: auto;
  max-width: 12em;
}

.hero .accent {
  font-style: normal;
  color: var(--sky);
}

.slogan {
  margin: 0 auto 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
}

.hero .actions { justify-content: center; }

.hero .btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero .btn-ghost:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

.split,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.accent { font-style: normal; color: var(--blue); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

section { padding: 28px 0 72px; }
.section-head { max-width: 40rem; margin-bottom: 28px; }
.section-head p:last-child { color: var(--muted); margin-bottom: 0; }

.band {
  background:
    radial-gradient(520px 240px at 92% 0%, rgba(144, 224, 239, 0.55), transparent 70%),
    radial-gradient(420px 200px at 0% 100%, rgba(0, 180, 216, 0.14), transparent 72%),
    #f7fdff;
}
.band-ice {
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(144, 224, 239, 0.7), transparent 70%),
    linear-gradient(180deg, var(--ice), #f7fdff 70%);
}

.poster { max-width: 16em; }

.lines { display: grid; gap: 14px; }

.lines article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 28px;
  align-items: end;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.lines article:hover,
.lines article:focus-within {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 white, 0 16px 36px rgba(0, 119, 182, 0.12);
}

.lines span {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}

.lines h3 {
  margin: 0 0 6px;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.lines p { margin: 0; color: var(--muted); max-width: 38rem; }

.lines article:hover span,
.lines article:focus-within span {
  color: var(--cyan);
  -webkit-text-stroke: 0;
}

.stage {
  display: grid;
  gap: 28px;
  align-items: start;
}

.stage-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stage-list button {
  appearance: none;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: -0.03em;
  color: rgba(3, 4, 94, 0.4);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.stage-list button:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(6px);
}

.stage-list button[aria-selected="true"] {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.8);
}

.stage-view {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 40px rgba(3, 4, 94, 0.06);
  backdrop-filter: blur(18px) saturate(1.45);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
}
.stage-view article { position: relative; padding: 8px 0 0 0; animation: stage-in 0.45s ease; }
.stage-view p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 16em;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.watermark {
  position: absolute;
  z-index: 0;
  right: 0;
  top: -0.15em;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.75;
  letter-spacing: -0.07em;
  color: rgba(0, 180, 216, 0.16);
  pointer-events: none;
}

.stage-faq .stage-list button { font-size: clamp(1.05rem, 1.6vw, 1.28rem); font-weight: 650; }
.stage-faq .stage-view p { font-size: clamp(1.55rem, 2.8vw, 2.35rem); }

@keyframes stage-in {
  from { opacity: 0; filter: blur(10px); }
  to { opacity: 1; filter: blur(0); }
}

.reel-section { overflow: hidden; }
.reel { display: grid; gap: 4px; margin-top: 8px; }
.reel-row { display: flex; width: max-content; animation: drift 38s linear infinite; }
.reel-row-back { animation-duration: 46s; animation-direction: reverse; }
.reel ul {
  display: flex;
  gap: 42px;
  margin: 0;
  padding: 0 21px 0 0;
  list-style: none;
}
.reel li {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  letter-spacing: -0.045em;
  white-space: nowrap;
  color: var(--navy);
}
.reel-row-back li {
  color: var(--sky);
  -webkit-text-stroke: 0;
}
.reel:hover .reel-row { animation-play-state: paused; }

@keyframes drift { to { transform: translateX(-50%); } }

.perks {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.perks li {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  padding: 26px 22px 24px;
  display: grid;
  align-content: start;
  gap: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.perks li:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 white, 0 18px 40px rgba(0, 119, 182, 0.14);
}

.perks span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.perks h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.55rem); }
.perks p { margin: 0; color: var(--muted); max-width: 34rem; }

.flow-grid { display: grid; gap: 36px; align-items: center; }
.flow-photo {
  position: relative;
  width: min(280px, 72vw);
  aspect-ratio: 1;
  justify-self: start;
  transition: transform 0.45s ease;
}
.flow-photo:hover { transform: translateY(-6px) scale(1.03); }
.flow-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
}
.flow-mark {
  position: absolute;
  right: -4%;
  bottom: 4%;
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.flow-steps {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.flow-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: end;
  margin-top: 10px;
  padding: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px) saturate(1.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.flow-steps li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 white, 0 14px 32px rgba(0, 119, 182, 0.12);
}

.flow-steps span {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--cyan);
}

.flow-steps h3 { margin: 0 0 6px; }
.flow-steps p { margin: 0; color: var(--muted); }

.bands { display: grid; gap: 14px; }

.bands article {
  display: grid;
  gap: 10px 40px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.bands article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 white, 0 16px 36px rgba(0, 119, 182, 0.12);
}
.bands h2,
.bands h3 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.bands p { margin: 0; color: var(--muted); max-width: 28rem; }

.closer {
  background: transparent;
  color: white;
  padding: 12px 0 72px;
}

.closer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 40px;
  border-radius: 28px;
  background: rgba(3, 4, 94, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 20px 50px rgba(3, 4, 94, 0.18);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.closer h2 { margin: 0; max-width: 9em; }
.closer .actions { margin-top: 0; }
.closer .btn-line { color: white; border-color: rgba(255, 255, 255, 0.45); }
.closer .btn-line:hover { background: white; color: var(--navy); }

.page-hero { padding: 140px 0 12px; }
.page-hero .lead { margin-bottom: 0; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.crumbs a { color: var(--blue); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-current="page"] { color: var(--navy); font-weight: 600; }

.stack { display: grid; gap: 16px; }

.channels { display: grid; gap: 12px; }

.channel {
  display: block;
  text-decoration: none;
  color: var(--navy);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px) saturate(1.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.channel strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.channel span { color: var(--muted); }
.channel:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 white, 0 14px 30px rgba(0, 119, 182, 0.12);
}
.channel:hover strong { color: var(--blue); }

.form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 40px rgba(3, 4, 94, 0.06);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.form label { display: grid; gap: 4px; font-weight: 600; font-size: 0.92rem; }

.form input,
.form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
  color: var(--navy);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form input:focus,
.form select:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.16);
}

.form .fine {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 28px 0 40px;
  background: white;
  border-top: 1px solid var(--line);
}

.footer-grid a { display: block; color: var(--navy); text-decoration: none; margin: 6px 0; }
.footer-grid a:hover { color: var(--blue); }
.footer-title {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-grid p { color: var(--muted); margin-bottom: 0; }
.socials { display: flex; gap: 8px; margin-top: 16px; }

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy);
  margin: 0;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 119, 182, 0.14);
}
.socials svg { width: 18px; height: 18px; }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-base p { margin: 0; }

.scrollbar {
  position: fixed;
  z-index: 70;
  top: 14px;
  right: 8px;
  bottom: 14px;
  width: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(3, 4, 94, 0.16);
  cursor: pointer;
}

.scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 8px;
  background: var(--navy);
  cursor: grab;
  touch-action: none;
}

.scrollbar-thumb:active { cursor: grabbing; }

.wa-float {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 12px 30px rgba(18, 90, 40, 0.28);
}

.wa-float svg { width: 30px; height: 30px; }

.js .reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(18px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.js .reveal.is-in {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

@media (min-width: 720px) {
  .perks { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 0.8fr 1fr; }
  .bands article { grid-template-columns: 1.05fr 0.95fr; align-items: end; }
  .bands article:nth-child(even) :is(h2, h3) { order: 2; }
}

@media (min-width: 900px) {
  .stage { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
  .stage-faq { grid-template-columns: 1fr 1fr; }
  .flow-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 48px; align-items: center; }
}

@media (min-width: 960px) {
  .perks { grid-template-columns: 1fr 1fr 1fr; }
  .split { grid-template-columns: 0.86fr 1.14fr; gap: 56px; align-items: center; }
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}

@media (max-width: 880px) {
  .stage-list {
    flex-direction: row;
    gap: 22px;
    overflow-x: auto;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .stage-list::-webkit-scrollbar { display: none; }
  .stage-list button {
    width: auto;
    flex: none;
    border-bottom: 0;
    padding: 8px 14px;
    white-space: nowrap;
    transform: none;
  }
  .stage-list button:hover { transform: none; }
  .stage-list button[aria-selected="true"] { box-shadow: inset 0 -2px 0 var(--cyan); }
  .watermark { font-size: 5.5rem; }
  .scrollbar { display: none; }
  .nav-toggle { display: grid; }
  .site-nav {
    display: none;
    position: fixed;
    z-index: 49;
    top: 92px;
    left: 16px;
    right: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(3, 4, 94, 0.12);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a:not(.btn) { padding: 14px 12px; }
  .site-nav .btn { width: 100%; }
  .brand-tag { letter-spacing: 0.1em; }
}

@media (max-width: 720px) {
  .closer-row { padding: 32px 22px; }
}

@media (max-width: 420px) {
  .brand-tag { display: none; }
  .wrap { width: min(1120px, calc(100% - 32px)); }
  .actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal.is-in {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
  .btn, .burger, .burger::before, .burger::after {
    transition: none;
  }
  .reel-row,
  .reel-row-back {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
  .reel ul[aria-hidden="true"] { display: none; }
  .reel ul { flex-wrap: wrap; padding: 0; }
  .stage-view article { animation: none; }
  .btn:hover,
  .perks li:hover,
  .lines article:hover,
  .bands article:hover,
  .flow-steps li:hover,
  .flow-photo:hover,
  .channel:hover,
  .stage-list button:hover,
  .socials a:hover {
    transform: none;
  }
}
