/* ============================================
   El Show de Nylah y Allyn — Landing Page
   Figma: dK3vNOviEqk6pYQrB6eoEs (node 43:15)
   Max width: 1920px | Responsive
   ============================================ */

:root {
  --color-bg: #fcfcfc;
  --color-white: #ffffff;
  --color-purple: #56259d;
  --color-purple-dark: #5523a6;
  --color-red: #dd0116;
  --color-red-btn: #e20110;
  --color-yellow: #fdc400;
  --color-yellow-btn: #fdcc03;
  --color-yellow-footer: #fef004;
  --color-green: #1cb42d;
  --color-gold: #fca200;
  --color-blue: #0782f9;
  --color-blue-light: #edf8fe;
  --color-cream: #fef8df;
  --color-cream-connect: #fef4ea;
  --color-dark: #2e2d2a;
  --color-text: #000000;
  --color-gray: #a1a1a1;

  --card-purple: #eedbff;
  --card-yellow: #fef0a9;
  --card-cyan: #d8f4ff;
  --card-title-orange: #ebaa2f;
  --card-title-cyan: #3ca3cc;

  --font-display: 'Caveat Brush', cursive;
  --font-body: 'Poppins', sans-serif;

  --container-max: 1920px;
  --content-padding: clamp(1.25rem, 13.125vw, 252px);
  --section-gap: clamp(3rem, 6vw, 5rem);

  --shadow-header: 0 3px 6.2px rgba(0, 0, 0, 0.18);
  --radius-btn: 38px;
  --radius-card: 24px;
  --radius-video: 16px;
  --radius-image: 20px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --anim-duration: 0.75s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

/* ---- Typography ---- */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 5.07vw, 6.08rem);
  line-height: 1;
  margin: 0 0 1rem;
}

.section-title--purple { color: var(--color-purple); }
.section-title--red { color: var(--color-red); }
.section-title--green { color: var(--color-green); }
.section-title--gold { color: var(--color-gold); }
.section-title--blue { color: var(--color-blue); }
.section-title--center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: clamp(0.625rem, 0.85vw, 1.125rem) clamp(1.125rem, 2vw, 2.25rem);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.1vw, 1.375rem);
  font-weight: 600;
  line-height: 1.25;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1400px) {
  .btn {
    padding: 0.6875rem clamp(1.125rem, 1.75vw, 1.875rem);
    font-size: clamp(0.875rem, 1vw, 1.125rem);
  }
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn--red {
  background: var(--color-red-btn);
  color: var(--color-white);
}

.btn--yellow {
  background: var(--color-yellow-btn);
  color: var(--color-dark);
}

.badge {
  display: inline-block;
  padding: 8px 25px;
  font-size: clamp(0.875rem, 1vw, 1.25rem);
  font-weight: 600;
  border-radius: var(--radius-btn);
  margin-bottom: 1rem;
}

.badge--yellow {
  background: var(--color-yellow-btn);
  color: var(--color-dark);
}

.link-purple {
  color: var(--color-purple);
  font-weight: 600;
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  display: inline-block;
  margin: 1rem 0 0.5rem;
}

.link-purple:hover {
  text-decoration: underline;
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-header);
  overflow: visible;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  gap: 1rem;
}

.header__logo,
.header-logo {
  position: relative;
  z-index: 101;
  flex-shrink: 0;
  margin-bottom: -28px;
}

.header__logo img,
.header-logo-img {
  width: clamp(140px, 12.45vw, 239px);
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.header__nav,
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3.85vw, 74px);
  margin-left: auto;
}

.header__nav a {
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s;
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--color-purple);
}

.header__menu-btn,
.header-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 201;
}

.header__menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header-nav-close {
  display: none;
}

/* ---- Hero ---- */
.hero,
.sec-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  padding: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-inner,
.hero-content-wrap {
  position: relative;
  z-index: 2;
}

.hero-inner.hero-content-wrap {
  max-width: 100%;
}

.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero__deco--left {
  left: -75px;
  top: 60px;
  width: clamp(120px, 15vw, 297px);
  opacity: 0.9;
}

/* Desktop: grid Figma — texto izq / imagen pegada derecha */
@media (min-width: 768px) {
  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(55.57vw, 1067px);
    align-items: center;
    min-height: clamp(520px, 51.5vw, 990px);
  }

  .hero-content-wrap {
    padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 2rem) clamp(2rem, 4vw, 4rem) var(--content-padding);
    max-width: 780px;
  }

  .hero-banner-image {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    pointer-events: none;
  }

  .hero-banner-image--mobile {
    display: none;
  }

  .hero-banner-image-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: min(51.5vw, 988px);
    object-fit: contain;
    object-position: right center;
  }
}

.hero__title {
  margin: 0;
}

.hero__title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.hero__title-line--purple,
.hero-title-welcome {
  font-size: clamp(1.75rem, 4.5vw, 74px);
  color: var(--color-purple);
  margin-bottom: 0.15em;
}

.hero__title-line--red,
.hero-title-show {
  font-size: clamp(2.25rem, 5.75vw, 100px);
  color: var(--color-red);
  line-height: 0.72;
}

.hero__title-line--red span,
.hero-title-show-line {
  display: block;
}

@media (min-width: 1701px) {
  .hero-title-show,
  .hero__title-line--red {
    font-size: 100px;
  }

  .hero__title-line--purple,
  .hero-title-welcome {
    font-size: 74px;
  }
}

@media (max-width: 1700px) and (min-width: 768px) {
  .hero-title-show,
  .hero__title-line--red {
    font-size: 5.75vw;
  }

  .hero__title-line--purple,
  .hero-title-welcome {
    font-size: 4.5vw;
  }
}

.hero__subtitle {
  margin: 1.5rem 0 2rem;
  max-width: 666px;
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.hero__image-wrap {
  position: relative;
}

.hero-banner-image--mobile {
  display: none;
}

.hero__image {
  width: 100%;
  object-fit: contain;
}

/* ---- Watch Section ---- */
.watch-section {
  position: relative;
  padding-bottom: var(--section-gap);
}

.watch-section__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(200px, 27.6vw, 531px);
  z-index: 0;
}

.watch-section__wave svg {
  width: 100%;
  height: 100%;
}

.watch-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(4rem, 10vw, 12rem);
}

.watch-section__heading-row,
.watch-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.watch-section__tv-icon,
.watch-icon-tv {
  flex-shrink: 0;
  width: clamp(60px, 4.74vw, 91px);
  height: auto;
}

.watch-title {
  margin-bottom: 0;
}

.watch-section__youtube {
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  margin: 0.5rem 0 0;
}

.watch-section__youtube a {
  color: var(--color-purple);
  font-weight: 600;
}

.watch-section__youtube a:hover {
  text-decoration: underline;
}

/* ---- Video Card ---- */
.video-card__thumb {
  position: relative;
  border-radius: var(--radius-video);
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 16 / 9;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(48px, 2.1vw, 72px);
  height: clamp(48px, 2.1vw, 72px);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.video-card__play:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ---- NY Section ---- */
.ny-section {
  padding: var(--section-gap) 0;
}

.ny-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.ny-section__text {
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  line-height: 1.6;
  margin: 0;
}

.ny-section__note {
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  color: var(--color-gray);
  margin: 1rem 0 0;
}

/* ---- Promo Section ---- */
.promo-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-gap) 0;
}

.promo-section__bg {
  position: absolute;
  inset: 0;
  background: var(--color-cream);
  z-index: 0;
}

.promo-section__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.promo-section__deco--left {
  left: -82px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(100px, 13vw, 249px);
  opacity: 0.85;
}

.promo-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.promo-section__text {
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.promo-section__image {
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
}

/* ---- About Section ---- */
.about-section {
  padding: var(--section-gap) 0;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-section__image {
  border-radius: var(--radius-image);
  width: 100%;
  object-fit: cover;
}

.about-section__text {
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  line-height: 1.6;
  margin: 0;
}

/* ---- Connect Section ---- */
.connect-section {
  background: var(--color-cream-connect);
  padding: var(--section-gap) 0;
}

.connect-section__inner {
  text-align: center;
}

.connect-section__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 1.82vw, 35px);
  margin: 2rem 0;
}

.social-card {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  background: var(--color-white);
  border-radius: 30px;
  padding: clamp(0.75rem, 1.1vw, 1.125rem) clamp(1rem, 1.75vw, 1.75rem);
  flex: 1 1 280px;
  max-width: 459px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.social-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.social-card__icon {
  flex-shrink: 0;
  width: clamp(48px, 3.33vw, 64px);
  height: clamp(48px, 3.33vw, 64px);
  line-height: 0;
}

.social-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.social-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.social-card__label {
  font-weight: 700;
  font-size: clamp(1rem, 1.15vw, 1.35rem);
  color: var(--color-text);
  line-height: 1.3;
}

.social-card__handle {
  font-weight: 400;
  font-size: clamp(0.875rem, 1vw, 1.1rem);
  color: #666666;
  line-height: 1.35;
  word-break: break-word;
}

.connect-section__message {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 848px;
  margin: 2rem auto 0;
  text-align: left;
}

.connect-icon-message,
.connect-message-icon {
  flex-shrink: 0;
  width: clamp(40px, 3vw, 58px);
  height: clamp(40px, 3vw, 58px);
  line-height: 0;
}

.connect-icon-message svg,
.connect-message-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.connect-section__message p,
.connect-message-text {
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  color: var(--color-text);
}

/* ---- Features Section ---- */
.features-section {
  padding: var(--section-gap) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 1.35vw, 25px);
  margin-top: 3rem;
}

.feature-card {
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.feature-card--purple { background: var(--card-purple); }
.feature-card--yellow { background: var(--card-yellow); }
.feature-card--cyan { background: var(--card-cyan); }

.feature-card__icon {
  width: clamp(50px, 3.44vw, 74px);
  margin-bottom: 1rem;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.56vw, 1.875rem);
  font-weight: 700;
  color: var(--color-purple);
  margin: 0 0 0.75rem;
}

.feature-card__title--orange { color: var(--card-title-orange); }
.feature-card__title--cyan { color: var(--card-title-cyan); }

.feature-card__text {
  font-size: clamp(0.95rem, 1.1vw, 1.25rem);
  margin: 0;
  line-height: 1.5;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-purple-dark);
  color: var(--color-white);
  padding: clamp(1.5rem, 2vw, 1.625rem) 0 clamp(2rem, 4vw, 3rem);
  min-height: 736px;
  display: flex;
  align-items: center;
}

.footer__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  width: 100%;
}

.footer__image-wrap img {
  width: clamp(200px, 24vw, 461px);
  height: auto;
}

.footer__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.07vw, 6.08rem);
  font-weight: 400;
  color: var(--color-yellow-footer);
  line-height: 0.9;
  margin: 0 0 1.5rem;
}

.footer__contact {
  font-size: clamp(1rem, 1.24vw, 1.49rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-bg);
  margin: 0;
  max-width: 645px;
}

/* ---- Copyright ---- */
.copyright,
.sec-copyright {
  background: var(--color-purple-dark);
  color: var(--color-white);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  text-align: center;
}

.copyright-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.copyright-text {
  margin: 0;
  font-size: clamp(0.85rem, 0.96vw, 1.15rem);
  line-height: 1.5;
  color: var(--color-white);
}

.copyright-credit {
  margin: 0;
  font-size: clamp(0.8rem, 0.85vw, 0.95rem);
  line-height: 1.5;
  color: var(--color-gray);
}

.copyright-credit-link {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.copyright-credit-link:hover {
  color: var(--color-white);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulsePlay {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 0 0 12px rgba(0, 0, 0, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--anim-duration) var(--ease-out),
    transform var(--anim-duration) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.hero-deco-left,
.promo-deco-left {
  animation: floatSoft 5s ease-in-out infinite;
}

.video-card__thumb {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.video-card:hover .video-card__thumb {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.video-card__play {
  animation: pulsePlay 2.5s ease-in-out infinite;
}

.feature-card {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.social-card {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.header {
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-content-wrap,
  .hero-banner-image,
  .hero-deco-left,
  .promo-deco-left,
  .video-card__play {
    animation: none;
  }

  .video-card__thumb,
  .feature-card,
  .social-card,
  .btn {
    transition: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .watch-section__inner,
  .ny-section__grid,
  .promo-section__grid,
  .about-section__grid {
    grid-template-columns: 1fr;
  }

  .sec-hero {
    padding: 0;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: clamp(0.5rem, 2.5vw, 1rem) 0 clamp(0.25rem, 1.5vw, 0.75rem);
  }

  .hero-content-wrap {
    --hero-x-padding: clamp(1rem, 5vw, 2rem);
    display: flex;
    flex-direction: column;
    padding: clamp(0.5rem, 2.5vw, 1rem) var(--hero-x-padding) 0;
  }

  .hero__subtitle {
    margin: clamp(0.75rem, 3vw, 1rem) 0 clamp(1rem, 3.5vw, 1.25rem);
  }

  .hero-banner-image--desktop {
    display: none;
  }

  .hero-banner-image--mobile {
    display: block;
    width: calc(100% + (var(--hero-x-padding) * 2));
    max-width: none;
    margin: clamp(0.25rem, 1.5vw, 0.75rem) calc(var(--hero-x-padding) * -1) 0;
    padding: 0;
    pointer-events: none;
    line-height: 0;
  }

  .hero-banner-image-img--mobile {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(0.625rem, 2.5vw, 1rem);
  }

  .hero__actions .btn {
    flex: 1 1 calc(50% - 0.5rem);
    width: auto;
    min-width: 0;
    max-width: none;
    padding: clamp(0.625rem, 2.5vw, 0.875rem) clamp(0.875rem, 3.5vw, 1.25rem);
    font-size: clamp(0.8125rem, 3.2vw, 1rem);
  }

  .hero-title-show,
  .hero__title-line--red {
    font-size: clamp(2.25rem, 11vw, 5.625rem);
  }

  .hero__title-line--purple,
  .hero-title-welcome {
    font-size: clamp(1.75rem, 8.5vw, 4.625rem);
  }

  .watch-section__inner {
    padding-top: clamp(6rem, 12vw, 10rem);
  }

  /* Mira el show: video arriba, texto abajo */
  .watch-content {
    order: 2;
  }

  .watch-video {
    order: 1;
  }

  /* Promo: imagen arriba, texto abajo */
  .promo-content {
    order: 2;
  }

  .promo-image-wrap {
    order: 1;
  }

  .video-card {
    max-width: 700px;
    margin: 0 auto;
  }

  .promo-section__image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-section__image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__image-wrap {
    margin: 0 auto;
  }

  .footer__contact {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer {
    min-height: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .header__menu-btn,
  .header-menu-btn {
    display: flex;
  }

  .header__inner.container,
  .header-inner.container {
    padding-left: 0;
    padding-right: 0;
  }

  body.menu-open .header__menu-btn,
  body.menu-open .header-menu-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .header__nav,
  .header-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 200;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    margin-left: 0;
    box-shadow: none;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out), visibility 0.35s;
  }

  .header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .header-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .header-nav-close:hover {
    background: #eee;
    transform: scale(1.05);
  }

  .header-nav-link {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  body.menu-open {
    overflow: hidden;
  }

  .connect-section__message {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .connect-section__socials {
    flex-direction: column;
    align-items: center;
  }

  .social-card {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .hero__deco--left,
  .promo-section__deco--left {
    opacity: 0.4;
  }

  .header__logo,
  .header-logo {
    margin-bottom: -16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero__title-line--purple,
  .hero-title-welcome {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .footer__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .header__logo,
  .header-logo {
    margin-bottom: 0;
  }
}

@media (max-width: 359px) {
  .header__logo img,
  .header-logo-img {
    width: 112px;
  }

  .header__inner {
    min-height: 90px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }
}
