@font-face {
  font-display: swap;
  font-family: "SENSEI";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/Sensei-Medium.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Grand Hotel";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/GrandHotel-Regular.otf") format("opentype");
}

:root {
  --bg: #f4f8ff;
  --surface: #eaf3ff;
  --surface-strong: #ffffff;
  --ink: #16243a;
  --muted: #476080;
  --line: #bfd5ee;
  --brand: #0079c1;
  --brand-dark: #005f98;
  --brand-bright: #2ab9ff;
  --accent: #e9540e;
  --accent-soft: #ffe2d6;
  --yellow: #ffc938;
  --shadow: 0 18px 50px rgba(9, 54, 94, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.proper-name {
  font-style: normal;
  white-space: nowrap;
}

.skip-link {
  left: 1rem;
  max-width: calc(100vw - 2rem);
  position: absolute;
  top: -4rem;
  width: max-content;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(244, 248, 255, 0.92);
  border-bottom: 1px solid var(--line);
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(12px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0.8rem 1.25rem;
  position: relative;
}

.site-header::before,
.site-header::after {
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.site-header::before {
  background: none;
}

.site-header::after {
  background: none;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  font-weight: 800;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.brand img {
  height: 42px;
  width: 42px;
}

.brand span {
  font-family: "SENSEI", "Sora", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(0.94rem, 1.55vw, 1.08rem);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
}

.nav-backdrop {
  display: none;
}

.nav-close {
  display: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
  font-weight: 800;
  position: relative;
}

.nav-links a[aria-current="page"]::after {
  background: var(--accent);
  border-radius: 999px;
  bottom: -0.22rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.button,
button {
  align-items: center;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.hero-cta {
  align-items: center;
  background: linear-gradient(135deg, #0079c1 0%, #005f98 100%);
  border: 2px solid #ffd166;
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.25), 0 14px 30px rgba(0, 95, 152, 0.35);
  display: grid;
  font-weight: 900;
  grid-template-columns: 1.1rem auto 1.1rem;
  justify-content: center;
  max-width: 100%;
  min-width: min(100%, 26rem);
  padding-block: 0.9rem;
  padding-inline: 1.25rem;
  position: relative;
  white-space: nowrap;
}

.hero-cta-icon,
.hero-cta-spacer {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  width: 1.1rem;
}

.hero-cta-text {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.hero-cta::after {
  border: 1px solid rgba(255, 209, 102, 0.55);
  border-radius: calc(var(--radius) + 2px);
  content: "";
  inset: -6px;
  pointer-events: none;
  position: absolute;
}

.hero-cta:hover {
  background: linear-gradient(135deg, #0092e8 0%, #0071b5 100%);
  border-color: #ffe08a;
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.3), 0 18px 34px rgba(0, 95, 152, 0.45);
  transform: translateY(-2px) scale(1.01);
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
}

.button.secondary:hover {
  background: rgba(0, 121, 193, 0.1);
}

.hero-actions .button.secondary {
  min-height: 54px;
  padding: 0.92rem 1.5rem;
}

.hero-secondary-cta {
  font-size: 1.02rem;
  font-weight: 850;
  min-height: 60px;
  min-width: clamp(18rem, 25vw, 22rem);
  padding: 1rem 1.85rem;
}

.hero-secondary-action {
  margin-top: 0.3rem;
}

.button.ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.main {
  min-height: 70vh;
}

.section {
  padding: 5rem 1.25rem;
}

.section.tight {
  padding-top: 3rem;
}

.container {
  margin: 0 auto;
  max-width: 1120px;
}

.narrow {
  margin: 0 auto;
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Sora", "Manrope", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: calc(clamp(2.2rem, 4.6vw, 4rem) - 2px);
  max-width: 760px;
}

.hero-highlight {
  color: var(--accent);
}

.marker-highlight {
  background: linear-gradient(180deg, transparent 58%, rgba(255, 201, 56, 0.65) 58%);
  border-radius: 4px;
  padding: 0 0.12em;
}

.hero-mobile-break {
  display: none;
}

h2 {
  font-size: calc(clamp(2rem, 4vw, 3.5rem) - 3px);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: calc(clamp(1.08rem, 2vw, 1.32rem) - 1px);
  font-weight: 500;
  max-width: 760px;
}

.stack {
  display: grid;
  gap: 1.2rem;
}

.hero {
  background: radial-gradient(circle at 10% 10%, rgba(42, 185, 255, 0.16), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(233, 84, 14, 0.12), transparent 38%);
  overflow: hidden;
  padding: 2.1rem 1.25rem 3rem;
  position: relative;
}

.hero::before {
  background: url("/images/bg-cloudy.png") center top / cover no-repeat;
  content: "";
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 1.15rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  position: relative;
  z-index: 1;
}

.hero-grid.hero-grid-focused {
  grid-template-columns: minmax(0, 1fr);
  margin-inline: auto;
  max-width: 1060px;
}

.hero-copy {
  display: grid;
  gap: 1.1rem;
  max-width: 760px;
}

.hero-grid-focused .hero-copy {
  max-width: 100%;
}

.hero-benefit-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.3rem;
}

.hero-benefit-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 100%;
  padding: 1.1rem 1.15rem 1.2rem;
}

.hero-benefit-number {
  color: var(--accent);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-bottom: 0.55rem;
}

.hero-benefit-card h2 {
  color: var(--brand-dark);
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0 0 0.45rem;
}

.hero-benefit-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
  margin: 0;
}

.hero-copy .eyebrow {
  margin-bottom: 0.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.podcast-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.podcast-links p {
  color: var(--muted);
  font-weight: 850;
}

.confesiones-art {
  justify-self: center;
  max-width: 260px;
  width: clamp(170px, 18vw, 260px);
}

.cta-note {
  color: #4f6583;
  font-size: calc(0.84rem + 1px);
  font-style: italic;
  letter-spacing: 0.01em;
  margin-top: 0.1rem;
  max-width: 620px;
  opacity: 0.9;
}

.hero-cta-microcopy {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 0;
}

.hero-cta-microcopy strong {
  font-weight: 850;
}

.newsletter-note {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-top: -0.35rem;
}

.newsletter .two-col > .stack:first-child {
  gap: 1.2rem;
}

.home-newsletter .newsletter-kicker {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.65rem 0.28rem 0.56rem;
  text-transform: uppercase;
  width: fit-content;
}

.home-newsletter .newsletter-kicker::before {
  content: "✉";
  font-size: 0.78rem;
  margin-right: 0.38rem;
}

.home-newsletter .newsletter-script {
  color: #ffd88f;
  display: block;
  font: inherit;
  font-size: 1.12em;
  letter-spacing: 0.01em;
  line-height: 0.94;
  margin: 0 0 0.08em;
}

.home-newsletter .newsletter-title-rest {
  display: block;
}

.home-blog-title {
  display: grid;
  gap: 0.32rem;
  margin-bottom: 0.32rem;
}

.intro-grid > .stack .eyebrow + h2,
.intro-grid > .stack .eyebrow + .home-blog-title {
  margin-top: 0;
}

.band .intro-grid > .stack .eyebrow {
  margin-bottom: -0.45rem;
}

.section-tight-eyebrow {
  margin-bottom: -0.2rem;
}

.section-compact-head {
  align-content: center;
  align-self: center;
  gap: 0.18rem;
}

.section-compact-art {
  margin: 0 0 0.45rem;
  max-width: min(100%, 540px);
  width: 100%;
}

.section-compact-head .lead {
  margin-top: 0;
}

.section-accent-title {
  color: var(--accent);
}

.section-accent-title-dark {
  color: var(--ink);
}

.intro-headline {
  font-size: calc(clamp(2.2rem, 5vw, 3.45rem) - 2px);
}

.home-blog-title-note {
  color: var(--brand-bright);
  display: block;
  font-weight: 600;
}

.project-origin-title {
  display: grid;
  gap: 0.32rem;
}

.project-origin-before {
  color: var(--ink);
  display: block;
}

.project-origin-after {
  color: var(--ink);
  display: block;
}

.project-origin-highlight {
  color: var(--brand);
  font-weight: 600;
}

.encuentros-cta-wrap {
  margin-top: 0.7rem;
}

.newsletter-actions {
  margin-top: 0.35rem;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.platform {
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 850;
  gap: 0.45rem;
  height: 52px;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  width: 52px;
}

.platform svg {
  color: var(--brand);
  flex: 0 0 auto;
  height: 30px;
  width: 30px;
}

.platform:hover {
  border-color: var(--brand-bright);
  box-shadow: 0 8px 22px rgba(0, 121, 193, 0.14);
  transform: translateY(-1px);
}

.platform-youtube svg {
  color: #e9540e;
}

.platform-spotify svg {
  color: #1ed760;
}

.platform-apple svg {
  color: #231716;
}

.hero-media {
  align-items: center;
  align-self: stretch;
  aspect-ratio: 16 / 11;
  display: flex;
  justify-content: center;
  max-width: 100%;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-media-mobile {
  display: none;
}

.hero-media-desktop {
  display: block;
}

.hero-media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hero-media .hero-brand-mark {
  height: auto;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 4%;
  transform: translateX(-50%);
  width: 67.5%;
  z-index: 1;
}

.hero-note {
  background: var(--surface-strong);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  bottom: 1rem;
  box-shadow: var(--shadow);
  left: 1rem;
  max-width: 270px;
  padding: 1rem;
  position: absolute;
}

.hero-note strong {
  display: block;
  line-height: 1.2;
}

.hero-note span {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
  margin-top: 0.25rem;
}

.band {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
  border-block: 1px solid var(--line);
}

.intro-grid,
.two-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.founders-benefits {
  align-content: center;
  gap: 0.85rem;
  justify-self: center;
  max-width: 560px;
  width: 100%;
}

.founders-benefits .feature {
  gap: 0.9rem;
}

.founders-benefits .feature p {
  font-size: calc(1.05rem + 1px);
  line-height: 1.45;
}

.fit-note {
  color: var(--brand-dark);
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.feature {
  align-items: flex-start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 2rem 1fr;
}

.feature-icon {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-weight: 900;
  height: 2.15rem;
  justify-content: center;
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
  width: 2.4rem;
}

.intro-emphasis {
  color: var(--brand-dark);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0.35rem 0 0;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.post-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.home-cards .card {
  align-content: start;
  gap: 0.5rem;
}

.home-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-cards-note {
  color: var(--muted);
  font-size: 0.94rem;
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
}

.card p,
.post-card p {
  color: var(--muted);
}

.post-card {
  min-height: 100%;
  text-decoration: none;
}

.post-card:hover h3 {
  color: var(--brand);
}

.meta {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

.newsletter {
  background: var(--brand);
  color: #fff;
}

.newsletter h1,
.newsletter h2,
.newsletter p,
.newsletter .eyebrow {
  color: #fff;
}

.newsletter .lead {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter .lead strong {
  color: #fff;
}

.newsletter .button.secondary,
.newsletter .button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.newsletter .button.secondary:hover,
.newsletter .button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.newsletter .form button[type="submit"] {
  background: #ffd88f;
  border-color: #ffd88f;
  color: #1e2a3d;
}

.newsletter .form button[type="submit"]:hover {
  background: #ffe1a8;
  border-color: #ffe1a8;
}

.home-newsletter .two-col > .stack:nth-child(2) {
  position: relative;
}

.home-newsletter .two-col > .stack:nth-child(2)::before {
  background: radial-gradient(circle at 28% 28%, rgba(255, 209, 102, 0.2), transparent 62%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.14), transparent 58%);
  border-radius: 26px;
  content: "";
  filter: blur(8px);
  inset: -18px -16px -20px -16px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.home-newsletter .two-col > .stack:nth-child(2) .form {
  box-shadow: 0 20px 40px rgba(9, 19, 34, 0.22), 0 4px 12px rgba(9, 19, 34, 0.2);
  position: relative;
  z-index: 1;
}

.form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-optional {
  color: var(--muted);
  font-size: 0.86em;
  font-weight: 600;
}

.field-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
}

label {
  font-weight: 800;
}

input,
textarea,
select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 0.72rem 0.85rem;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.check {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  font-size: 0.9rem;
  font-weight: 500;
  gap: 0.55rem;
  grid-template-columns: auto 1fr;
}

.check input {
  margin-top: 0.2rem;
  min-height: auto;
  width: auto;
}

.light-form .check {
  color: var(--muted);
}

.form-page {
  align-items: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(42, 185, 255, 0.18), transparent 31%),
    radial-gradient(circle at 90% 16%, rgba(233, 84, 14, 0.1), transparent 30%),
    var(--bg);
  display: grid;
  min-height: calc(100vh - 168px);
  padding: clamp(1.75rem, 4vw, 3.5rem) 1.25rem;
}

.form-page-inner {
  max-width: 620px;
  width: 100%;
}

.form-page-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
}

.form-page-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

.form-page-card h1 span {
  color: var(--brand);
}

.form-page-card .lead {
  margin-inline: auto;
  max-width: 32rem;
}

.form-page-card .form {
  background: var(--surface);
  border-color: var(--line);
  margin-top: 1.55rem;
  padding: 1.15rem;
  text-align: left;
}

.form-page-card .form button {
  background: linear-gradient(135deg, #0079c1 0%, #005f98 100%);
  border: 2px solid #ffd166;
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.25), 0 12px 24px rgba(0, 95, 152, 0.28);
  font-size: calc(1em + 2px);
  font-weight: 900;
  margin-top: 0.2rem;
  min-height: 56px;
  position: relative;
  width: 100%;
}

.form-page-card .form button:hover {
  background: linear-gradient(135deg, #0092e8 0%, #0071b5 100%);
  border-color: #ffe08a;
  transform: translateY(-2px);
}

.form-status {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0.15rem 0 0;
  text-align: center;
}

.form-status.is-success {
  color: #087a57;
}

.form-status.is-error {
  color: #b44213;
}

.form-page-reassurance {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 1.15rem 0 0;
}

.article {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 4vw, 3rem);
}

.article h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.article-content {
  color: #273438;
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.article-content h2 {
  font-size: 1.75rem;
  margin-top: 1.2rem;
}

.article-content ul {
  margin: 0;
}

.issue-preview {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 2rem);
}

.issue-preview p {
  color: var(--muted);
}

.issue-preview h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.issue-body {
  border-top: 1px solid var(--line);
  color: #273438;
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.issue-body h2 {
  font-size: 1.25rem;
  margin-top: 0.4rem;
}

.issue-body ul {
  margin: 0;
}

.issue-preview.compact .issue-body {
  max-height: 360px;
  overflow: hidden;
  position: relative;
}

.issue-preview.compact .issue-body::after {
  background: linear-gradient(rgba(255, 255, 255, 0), var(--surface-strong));
  bottom: 0;
  content: "";
  height: 5rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  padding: 0.45rem 0.8rem;
  text-decoration: none;
}

.pill.active,
.pill:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.about-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}

.about-letter-shell {
  display: grid;
  gap: 1.2rem;
  max-width: 840px;
}

.about-letter-heading {
  text-align: center;
}

.about-letter-heading .eyebrow {
  margin-bottom: 0.25rem;
}

.about-letter-heading h1 {
  margin-inline: auto;
}

.about-letter-wrap {
  position: relative;
}

.about-letter {
  background: linear-gradient(135deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(9, 54, 94, 0.08);
  color: var(--muted);
  display: grid;
  font-size: 1.04rem;
  gap: 1rem;
  line-height: 1.68;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  padding-bottom: clamp(6.75rem, 13vw, 8.5rem);
}

.about-letter strong {
  color: var(--ink);
}

.about-letter-greeting,
.about-signature {
  color: var(--ink);
  font-family: "Grand Hotel", cursive;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.about-letter-greeting {
  margin-bottom: 0.15rem;
}

.about-signature {
  margin-top: 0.35rem;
}

.about-letter-portrait {
  background: #fff;
  border: 5px solid #fff;
  border-radius: 50%;
  bottom: clamp(-2.6rem, -3vw, -1.6rem);
  box-shadow: 0 14px 30px rgba(9, 54, 94, 0.2);
  height: clamp(126px, 17vw, 172px);
  overflow: hidden;
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  width: clamp(126px, 17vw, 172px);
}

.about-letter-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  transform: scale(1.7);
  transform-origin: 50% 34%;
  width: 100%;
}

.founder-photo {
  aspect-ratio: 1;
  overflow: hidden;
}

.founder-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.25);
  transform-origin: 50% center;
  width: 100%;
}

.founder-heading {
  display: grid;
  gap: 0.2rem;
}

.founder-heading .eyebrow {
  margin: 0;
}

.founder-role {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}

.project-origin-primary-cta {
  background: linear-gradient(135deg, #0079c1 0%, #005f98 100%);
  border: 2px solid #ffd166;
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.25), 0 14px 30px rgba(0, 95, 152, 0.35);
  font-size: calc(1em + 1px);
  font-weight: 900;
  min-height: 56px;
  padding-inline: 1.3rem;
  position: relative;
}

.project-origin-primary-cta::after {
  border: 1px solid rgba(255, 209, 102, 0.55);
  border-radius: calc(var(--radius) + 2px);
  content: "";
  inset: -6px;
  pointer-events: none;
  position: absolute;
}

.project-origin-primary-cta:hover {
  background: linear-gradient(135deg, #0092e8 0%, #0071b5 100%);
  border-color: #ffe08a;
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.3), 0 18px 34px rgba(0, 95, 152, 0.45);
  transform: translateY(-2px) scale(1.01);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 2rem 1.25rem;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.cookie-settings-link {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  bottom: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  left: 50%;
  max-width: 760px;
  padding: 1rem 1.15rem;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 20;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-title {
  color: var(--ink);
  font-weight: 850;
  margin-bottom: 0.2rem;
}

.cookie-banner p:not(.cookie-banner-title) {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 510px;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.55rem;
}

.cookie-banner-actions .button {
  font-size: 0.85rem;
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 0.85rem;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .button {
    flex: 1;
  }

  .nav {
    align-items: center;
    column-gap: 0.8rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    position: relative;
    z-index: 1;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 56px);
    min-width: 0;
    overflow: hidden;
    justify-content: center;
  }

  .nav-toggle {
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    height: 42px;
    justify-content: center;
    margin-left: 0;
    padding: 0;
    position: relative;
    touch-action: manipulation;
    width: 42px;
    z-index: 3;
    flex: 0 0 42px;
  }

  .nav-toggle span {
    background: var(--ink);
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 18px;
  }

  .nav-links {
    background: var(--surface-strong);
    box-shadow: -18px 0 40px rgba(11, 38, 70, 0.24);
    display: none;
    flex-direction: column;
    gap: 0;
    height: 100dvh;
    justify-content: flex-start;
    padding: 5.3rem 1.2rem 1.2rem;
    position: fixed;
    right: 0;
    top: 0;
    width: min(65vw, 320px);
    z-index: 90;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-close {
    align-items: center;
    align-self: flex-start;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    display: inline-flex;
    font-size: 1.2rem;
    height: 40px;
    justify-content: center;
    margin-bottom: 0.5rem;
    width: 40px;
  }

  .nav-links a {
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.03rem;
    min-height: 48px;
    padding: 0.78rem 0.35rem;
    width: 100%;
  }

  .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .nav-backdrop {
    background: rgba(10, 25, 46, 0.42);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 220ms ease;
    z-index: 70;
  }

  .nav-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-grid,
  .intro-grid,
  .two-col,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-media-desktop {
    display: none;
  }

  .hero-media-mobile {
    display: block;
    overflow: visible;
  }

  .hero-media {
    aspect-ratio: auto;
    min-height: 0;
  }

  .hero-benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-benefit-card {
    min-height: auto;
  }

  .site-header::before,
  .site-header::after {
    background: none;
    opacity: 0;
  }


  .section {
    padding-block: 3.2rem;
  }

  .stack {
    gap: 1rem;
  }

  .eyebrow {
    margin-bottom: 0.35rem;
  }

  .section-tight-eyebrow {
    margin-bottom: -0.05rem;
  }

  .section-compact-head {
    align-self: stretch;
    gap: 0.14rem;
  }

  .section-compact-art {
    margin-bottom: 0.3rem;
    max-width: min(100%, 440px);
  }

  .stack h1,
  .stack h2 {
    margin-bottom: 0.15rem;
  }

  .stack .lead {
    margin-top: 0;
  }

  .hero-actions,
  .home-blog-cta,
  .project-origin-cta,
  .newsletter-actions {
    margin-top: 0.2rem;
  }

  .encuentros-cta-wrap {
    margin-top: 0.75rem;
  }

  .intro-grid,
  .two-col {
    gap: 1.6rem;
  }

  .band .intro-grid {
    gap: 2.1rem;
  }

  .home-blog-cta {
    text-align: center;
  }

  .cta-note {
    margin-inline: auto;
    max-width: 34rem;
    text-align: center;
  }

  .hero-cta-microcopy {
    text-align: center;
  }

  .project-origin-cta {
    text-align: center;
  }

  .project-origin-primary-cta {
    width: 100%;
  }

  .encuentros-cta-wrap {
    text-align: center;
  }

  .hero-mobile-break {
    display: inline;
  }

  .hero-media-mobile .hero-illustration {
    height: auto;
    margin-inline: auto;
    max-height: 260px;
    width: min(100%, 384px);
  }

  .hero-media-mobile .hero-brand-mark {
    display: block;
    height: auto;
    margin: 0 auto -0.45rem;
    position: static;
    transform: none;
    width: min(67.5%, 260px);
  }

  .hero-cta {
    display: flex;
    justify-content: center;
    min-width: 100%;
    min-height: 60px;
    padding-block: 0.95rem;
    padding-inline: 1.1rem;
  }

  .hero-cta-icon {
    left: 1.2rem;
    position: absolute;
  }

  .hero-cta-text {
    left: 50%;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    width: calc(100% - 4.8rem);
  }

  .hero-cta-spacer {
    display: none;
  }

  .hero-copy {
    gap: 0.95rem;
  }

  .hero-copy h1 {
    margin-bottom: -0.25rem;
  }

  .hero-actions .button.secondary {
    min-height: 58px;
    width: 100%;
  }

  .hero-secondary-cta {
    font-size: 1.08rem;
    min-height: 60px;
    min-width: 100%;
    padding-block: 1rem;
  }

  .hero-secondary-action .button {
    width: 100%;
  }

  .hero-copy .lead {
    font-size: clamp(1.08rem, 2vw, 1.32rem);
  }

  .podcast-links {
    margin-top: 0.45rem;
  }
}

@media (min-width: 821px) {
  body {
    font-size: 0.85em;
  }

  h1 {
    font-size: calc(clamp(2.2rem, 4.6vw, 4rem) - 7px);
  }

  h2 {
    font-size: calc(clamp(2rem, 4vw, 3.5rem) - 5px);
  }

  .hero-grid {
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .hero-copy {
    justify-items: start;
    max-width: none;
    width: 100%;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead {
    text-align: left;
  }

  .hero-copy .lead {
    font-size: calc(clamp(1.08rem, 2vw, 1.32rem) - 1.5px);
  }

  .project-origin-copy {
    font-size: calc(clamp(1.08rem, 2vw, 1.32rem) - 3px);
  }

  .hero-copy .hero-actions {
    justify-content: flex-start;
    margin-top: 0.85rem;
    width: 100%;
  }

  .hero {
    padding-top: clamp(2.7rem, 4.2vw, 3.6rem);
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
  }

  .hero-cta {
    font-size: 1.08rem;
    min-height: 52px;
    padding: 0.88rem 1.25rem;
  }

  .podcast-links {
    justify-items: start;
  }

  .podcast-links p {
    text-align: left;
  }

  .platform-row {
    justify-content: flex-start;
  }

  .hero-media-desktop {
    align-self: center;
    min-height: clamp(360px, 38vw, 560px);
    overflow: visible;
  }

  .hero-media-desktop .hero-brand-mark {
    top: -9%;
    width: 91.125%;
  }

  .hero-media-desktop .hero-illustration {
    margin: 0 auto;
    max-height: clamp(384px, 40.8vw, 600px);
    transform: translateY(clamp(3rem, 4vw, 4rem));
    width: clamp(552px, 45.6vw, 888px);
  }

  .about-photo {
    border-radius: 16px;
  }

  .feature-list {
    gap: 0.85rem;
  }

  .feature {
    gap: 0.8rem;
  }

  .band .intro-grid > .feature-list {
    align-content: center;
    justify-self: center;
    max-width: 560px;
    width: 100%;
    gap: 0.85rem;
  }

  .band .intro-grid > .feature-list .fit-note {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 95, 152, 0.2);
    border-radius: 10px;
    font-size: 1.14rem;
    margin: -0.2rem 0 0.55rem;
    padding: 0.7rem 0.85rem;
  }

  .band .intro-grid > .feature-list .feature {
    gap: 0.9rem;
  }

  .band .intro-grid > .feature-list .feature p {
    font-size: calc(1.05rem + 1px);
    line-height: 1.45;
  }

  .band .intro-grid > .feature-list .feature p strong {
    display: inline;
    max-width: none;
  }

  .band .intro-grid > .stack {
    gap: 1.3rem;
  }

  .newsletter .two-col {
    align-items: center;
  }

  .home-newsletter .two-col {
    align-items: center;
    position: relative;
    grid-template-areas:
      "intro form"
      "actions form";
  }

  .home-newsletter .two-col > .stack:first-child {
    align-content: center;
    align-self: center;
    grid-area: intro;
    min-height: 100%;
  }

  .home-newsletter .two-col > .stack:nth-child(2) {
    align-self: center;
    grid-area: form;
    position: relative;
  }

  .home-newsletter .confesiones-art {
    max-width: none;
    position: absolute;
    right: clamp(-44px, -3vw, -24px);
    top: -46px;
    width: clamp(116px, 10.5vw, 160px);
    z-index: 3;
  }

  .home-newsletter .newsletter-actions {
    grid-area: actions;
    margin-top: 0.45rem;
  }

  .newsletter .two-col > .stack:last-child {
    align-self: center;
  }

  .newsletter-actions {
    grid-column: 1;
    justify-content: flex-start;
    margin-top: 0.2rem;
  }

  .encuentros-cta {
    box-shadow: 0 12px 28px rgba(8, 46, 84, 0.26), 0 2px 8px rgba(8, 46, 84, 0.18);
    font-size: 1.03rem;
    min-height: 54px;
    padding: 0.92rem 1.35rem;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  }

  .encuentros-cta:hover {
    box-shadow: 0 16px 34px rgba(8, 46, 84, 0.32), 0 4px 12px rgba(8, 46, 84, 0.22);
    filter: saturate(1.04);
    transform: translateY(-2px);
  }
}

.yt-lab-hero {
  background:
    radial-gradient(circle at top right, rgba(42, 185, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(234, 243, 255, 0.9), rgba(255, 255, 255, 0.96));
}

.yt-lab-hero-grid,
.yt-lab-guide,
.yt-lab-shell,
.yt-lab-grid {
  display: grid;
  gap: 1.5rem;
}

.yt-lab-hero-grid,
.yt-lab-guide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yt-lab-shell {
  align-items: start;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
}

.yt-lab-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yt-lab-panel,
.yt-lab-main {
  display: grid;
  gap: 1rem;
}

.yt-lab-shell,
.yt-lab-panel,
.yt-lab-main,
.yt-lab-card,
.yt-lab-sidecard,
.yt-lab-table-wrap {
  min-width: 0;
  width: 100%;
}

.yt-lab-card,
.yt-lab-sidecard {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 95, 152, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(12, 50, 92, 0.12);
}

.yt-lab-card {
  padding: 1.2rem;
}

.yt-lab-sidecard {
  padding: 1.4rem;
}

.yt-lab-config {
  position: sticky;
  top: 84px;
}

.yt-lab-status {
  align-items: start;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: minmax(0, 1fr);
}

.yt-lab-status h2,
.yt-lab-card h2,
.yt-lab-card h3,
.yt-clip-card h3 {
  margin: 0;
}

.yt-lab-summary {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.yt-metric-card {
  background: linear-gradient(180deg, rgba(234, 243, 255, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(42, 185, 255, 0.22);
  border-radius: 16px;
  display: grid;
  gap: 0.25rem;
  min-height: 124px;
  padding: 1rem;
}

.yt-metric-card p,
.yt-metric-card span,
.yt-insight-card p,
.yt-clip-card p,
.yt-lab-bullets,
.yt-subline,
.microcopy {
  color: var(--muted);
}

.yt-metric-card p,
.yt-metric-card span,
.yt-insight-label,
.yt-clip-meta,
.yt-subline,
.microcopy {
  font-size: 0.92rem;
}

.yt-metric-card strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.yt-lab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.yt-lab-actions .button,
.yt-lab-actions button {
  flex: 1 1 160px;
}

.yt-lab-list {
  display: grid;
  gap: 0.9rem;
}

.yt-insight-card {
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.9), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(0, 121, 193, 0.14);
  border-radius: 16px;
  padding: 1rem;
}

.yt-insight-label,
.yt-clip-meta {
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.yt-lab-bullets {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.2rem;
}

.yt-lab-table-wrap {
  overflow-x: auto;
}

.yt-lab-table {
  border-collapse: collapse;
  min-width: 100%;
  width: 100%;
}

.yt-lab-table th,
.yt-lab-table td {
  border-bottom: 1px solid rgba(0, 95, 152, 0.12);
  padding: 0.9rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.yt-lab-table th {
  color: var(--brand-dark);
  font-size: 0.9rem;
}

.yt-lab-table tbody tr:hover {
  background: rgba(234, 243, 255, 0.58);
}

.yt-lab-clips {
  display: grid;
  gap: 0.9rem;
}

.yt-clip-card {
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.9), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(233, 84, 14, 0.16);
  border-radius: 16px;
  padding: 1rem;
}

.yt-clip-meta {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}

.yt-clip-card blockquote {
  border-left: 3px solid rgba(0, 121, 193, 0.28);
  color: var(--ink);
  margin: 0.85rem 0 0;
  padding-left: 0.85rem;
}

.section-heading {
  align-items: start;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 980px) {
  .yt-lab-hero-grid,
  .yt-lab-guide,
  .yt-lab-shell,
  .yt-lab-grid,
  .yt-lab-summary {
    grid-template-columns: 1fr;
  }

  .yt-lab-config {
    position: static;
    top: auto;
  }
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .section {
    padding-block: 2.85rem;
  }

  .intro-grid,
  .two-col {
    gap: 1.35rem;
  }

  .stack {
    gap: 0.9rem;
  }

  h1 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
    line-height: 1.02;
  }

  .brand span {
    font-size: 1.06rem;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
  }

  .nav-links {
    gap: 0.65rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions button {
    width: 100%;
  }

  .hero-cta {
    column-gap: 0.42rem;
    display: grid;
    font-size: clamp(0.92rem, 3.35vw, 1.06rem);
    grid-template-columns: 10% 90%;
    justify-items: center;
    padding-inline: 0.78rem;
    width: 100%;
  }

  .hero-cta svg {
    justify-self: center;
  }

  .hero-cta-text {
    display: block;
    justify-self: stretch;
    min-width: 0;
    text-align: center;
    width: 100%;
  }

  .cta-note {
    font-size: 0.75rem;
  }

  .confesiones-art {
    max-width: none;
    width: 45vw;
    min-width: 150px;
    max-width: 220px;
  }

  .newsletter .stack .eyebrow {
    display: none;
  }


  .platform-row,
  .platform-row {
    width: 100%;
  }

  .platform-row {
    justify-content: center;
  }

  .podcast-links {
    justify-items: center;
  }

  .podcast-links p {
    text-align: center;
  }

  .hero-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .yt-lab-card,
  .yt-lab-sidecard {
    border-radius: 16px;
    padding: 1rem;
  }

  .yt-lab-actions {
    flex-direction: column;
  }

  .yt-lab-actions .button,
  .yt-lab-actions button {
    width: 100%;
  }
}
