  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --blue: #1a5cf3;
    --blue-dark: #0a3fc0;
    --blue-soft: #e6edff;
    --red: #ff3b3b;
    --ink: #0d0d0d;
    --ink-soft: #3a3a3a;
    --ink-muted: #6b6b6b;
    --bg: #f4f5f7;
    --line: rgba(13, 13, 13, 0.1);
    --max-width: 1100px;
    --content-width: 720px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

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

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

  .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
  }

  .container-narrow {
    max-width: var(--content-width);
    margin: 0 auto;
  }

  section {
    padding: 100px 0;
  }

  h1, h2, h3, h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  h1, h2 {
    text-transform: uppercase;
  }

  h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
  }

  h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  p {
    margin-bottom: 16px;
  }

  p:last-child {
    margin-bottom: 0;
  }

  .lead {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--ink-soft);
    line-height: 1.55;
  }

  .eyebrow {
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .eyebrow::after {
    content: '';
    width: 34px;
    height: 3px;
    background: var(--red);
    border-radius: 100px;
  }

  /* NAV */

  .nav {
    position: sticky;
    top: 0;
    background: rgba(244, 245, 247, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
    padding: 16px 0;
  }

  .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
  }

  .nav-logo img {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .nav-links a:hover {
    color: var(--blue);
  }

  /* HERO */

  .hero {
    padding: 80px 0 120px;
    overflow: hidden;
  }

  .hero-layout {
    display: grid;
    grid-template-columns: 170px minmax(0, 780px);
    gap: 34px;
    align-items: start;
    justify-content: center;
    max-width: 870px;
    margin: 0 auto;
    transform: translateX(32px);
  }

  .hero-logo-block {
    width: 170px;
    padding-top: 55px;
    position: relative;
    line-height: 0;
  }

  .hero-icon-large {
    width: 100%;
    height: auto;
  }

  .hero-logo-badge {
    position: absolute;
    top: 53px;
    right: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    background: var(--red);
    color: white;
    border: 4px solid white;
    border-radius: 50%;
    font-family: 'Archivo', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    transform-origin: center;
    animation: app-badge-pop 5.2s cubic-bezier(0.18, 0.9, 0.25, 1.25) infinite;
  }

  .hero-logo-badge::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 58, 64, 0.36);
    animation: app-badge-ring 5.2s ease-out infinite;
  }

  @keyframes app-badge-pop {
    0%, 72%, 100% {
      opacity: 1;
      transform: scale(1);
    }

    78% {
      opacity: 0;
      transform: scale(0);
    }

    84% {
      opacity: 1;
      transform: scale(1.2);
    }

    90% {
      transform: scale(0.96);
    }
  }

  @keyframes app-badge-ring {
    0%, 82%, 100% {
      box-shadow: 0 0 0 0 rgba(255, 58, 64, 0);
    }

    84% {
      box-shadow: 0 0 0 0 rgba(255, 58, 64, 0.34);
    }

    96% {
      box-shadow: 0 0 0 14px rgba(255, 58, 64, 0);
    }
  }

  .hero-text-block {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    padding: 8px 8px 8px 16px;
    background: var(--blue-soft);
    border-radius: 100px;
    margin-bottom: 24px;
  }

  .hero-text-block h1 {
    font-size: clamp(3.4rem, 6vw, 5.6rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    margin-bottom: 26px;
    white-space: nowrap;
  }

  .hero-text-block h1 .pendiente {
    display: block;
    color: var(--blue);
  }

  .hero-text-block .lead {
    max-width: 760px;
    font-size: 1.15rem;
    line-height: 1.45;
    margin-bottom: 34px;
  }

  .platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: var(--ink);
    color: white;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid var(--ink);
    min-height: 54px;
    white-space: nowrap;
    transition: all var(--transition);
  }

  .platform-btn.secondary {
    background: white;
    color: var(--ink);
  }

  .platform-btn:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-2px);
  }

  /* EPISODIOS */

  .episodes {
    background: white;
  }

  .episodes-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
  }

  .episodes-featured-card {
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 40px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--blue);
    box-shadow: 0 16px 40px rgba(26, 92, 243, 0.08);
  }

  .episodes-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .featured-live-dot {
    width: 11px;
    height: 11px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(26, 92, 243, 0.35);
    animation: featured-dot-pulse 2.2s ease-in-out infinite;
  }

  @keyframes featured-dot-pulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(26, 92, 243, 0.35);
    }

    50% {
      transform: scale(1.18);
      box-shadow: 0 0 0 9px rgba(26, 92, 243, 0);
    }
  }

  .episode-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: var(--ink-muted);
    font-weight: 500;
    flex-wrap: wrap;
  }

  .episode-number {
    display: inline-flex;
    align-items: center;
    background: var(--blue);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
  }

  .episode-number.upcoming {
    background: transparent;
    color: var(--ink-muted);
    border: 1.5px solid var(--ink-muted);
  }

  .badge-nuevo {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: white;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
  }

  .episode-meta .dot {
    width: 3px;
    height: 3px;
    background: var(--ink-muted);
    border-radius: 50%;
  }

  .episodes-featured-card h3 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
  }

  .episodes-featured-card p,
  .episode-card p {
    color: var(--ink-soft);
  }

  .episode-player {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--ink);
    min-height: 232px;
  }

  .episode-player iframe {
    width: 100%;
    height: 232px;
    border: none;
    display: block;
  }

  .episode-resources {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .episode-resources a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 8px;
    font-weight: 500;
  }

  .next-episode {
    max-width: 900px;
    margin: 56px auto 0;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 92, 243, 0.16);
    background: linear-gradient(135deg, rgba(26, 92, 243, 0.05), rgba(255, 255, 255, 0.82));
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .next-episode-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .next-episode h3 {
    margin-top: 16px;
  }

  .next-episode p {
    color: var(--ink-soft);
  }

  .next-episode small {
    display: block;
    margin-top: 10px;
    color: var(--ink-muted);
    font-size: 0.84rem;
    font-weight: 600;
  }

  .next-episode-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-family: 'Archivo', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .next-episode-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.32);
    animation: featured-dot-pulse 2.4s ease-in-out infinite;
  }

  .production-track {
    width: min(100%, 260px);
    height: 8px;
    margin-top: 22px;
    overflow: hidden;
    background: var(--blue-soft);
    border-radius: 999px;
  }

  .production-track span {
    display: block;
    width: 58%;
    height: 100%;
    background: var(--blue);
    border-radius: inherit;
    position: relative;
  }

  .production-track span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    animation: production-scan 2.8s linear infinite;
  }

  @keyframes production-scan {
    from {
      transform: translateX(-100%);
    }

    to {
      transform: translateX(180%);
    }
  }

  .next-episode-signup {
    width: 100%;
    background: white;
    border: 1px solid rgba(13, 13, 13, 0.08);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(13, 13, 13, 0.05);
  }

  .next-episode-signup strong {
    display: block;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
  }

  .next-episode-signup span {
    display: block;
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .inline-newsletter-form {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    margin-top: 22px;
  }

  .form-field {
    position: relative;
    min-width: 0;
  }

  .inline-newsletter-form input {
    width: 100%;
    min-width: 0;
    padding: 16px 20px;
    border-radius: 100px;
    border: 1px solid rgba(13,13,13,0.08);
    font-size: 1rem;
    font-family: inherit;
    background: white;
  }

  .form-field input.is-invalid {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.2);
  }

  .field-error {
    position: absolute;
    top: calc(100% + 12px);
    left: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: min(320px, calc(100vw - 56px));
    padding: 11px 14px;
    background: var(--red);
    color: white;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(13, 13, 13, 0.18);
    font-family: 'Archivo', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.2;
    pointer-events: none;
  }

  .field-error::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 22px;
    width: 14px;
    height: 14px;
    background: var(--red);
    transform: rotate(45deg);
  }

  .field-error::after {
    content: '!';
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    order: -1;
    width: 22px;
    height: 22px;
    background: white;
    color: var(--red);
    border-radius: 50%;
    font-size: 0.9rem;
    line-height: 1;
  }

  .inline-newsletter-form button {
    padding: 16px 22px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
  }

  .episodes-subheader {
    max-width: 900px;
    margin: 56px auto 24px;
  }

  .episodes-subheader p {
    color: var(--ink-muted);
    font-size: 0.95rem;
  }

  .episodes-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .episode-card {
    padding: 28px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: all var(--transition);
  }

  .episode-card:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(26, 92, 243, 0.08);
  }

  .episode-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  /* NEWSLETTER */

  .newsletter-section {
    background: var(--bg);
  }

  .newsletter {
    background: var(--blue);
    color: white;
    border-radius: 32px;
    padding: 72px 80px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .newsletter::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -70px;
    width: 260px;
    height: 260px;
    background: var(--blue-dark);
    border-radius: 50%;
    opacity: 0.45;
  }

  .newsletter-content {
    position: relative;
    z-index: 1;
  }

  .newsletter-notification {
    position: absolute;
    top: 48px;
    right: 56px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 12px 12px 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    color: white;
    font-family: 'Archivo', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: notification-arrive 0.8s cubic-bezier(0.18, 0.9, 0.25, 1.25) 0.35s both;
  }

  .newsletter-notification-count {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: 50%;
    color: white;
    font-size: 1.05rem;
    line-height: 1;
    animation: notification-pulse 2.4s ease-in-out 1.4s infinite;
  }

  @keyframes notification-arrive {
    from {
      opacity: 0;
      transform: translateY(-14px) scale(0.96);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes notification-pulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 58, 64, 0.34);
    }

    50% {
      transform: scale(1.08);
      box-shadow: 0 0 0 12px rgba(255, 58, 64, 0);
    }
  }

  .newsletter .eyebrow {
    color: white;
    align-items: flex-start;
  }

  .newsletter h2 {
    color: white;
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 6vw, 4.7rem);
    line-height: 0.95;
  }

  .newsletter p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
    margin-bottom: 40px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.55;
  }

  .newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
    min-width: 0;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.28);
    color: white;
    border-radius: 100px;
    font-size: 1rem;
    font-family: inherit;
  }

  .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
  }

  .newsletter-form button {
    padding: 18px 30px;
    background: white;
    color: var(--blue);
    border: 2px solid white;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
  }

  .newsletter-message {
    margin-top: 16px;
    font-size: 0.9rem;
    min-height: 1.4em;
    color: rgba(255, 255, 255, 0.9);
  }

  /* SOBRE */

  .about {
    background: white;
  }

  .about-grid {
    display: flex;
    gap: 48px;
    max-width: var(--content-width);
    margin: 32px auto 0;
    align-items: flex-start;
  }

  .about-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--blue);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 6px rgba(26, 92, 243, 0.14);
    animation: profile-ring-pulse 2.8s ease-in-out infinite;
  }

  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @keyframes profile-ring-pulse {
    0%, 100% {
      box-shadow: 0 0 0 6px rgba(26, 92, 243, 0.14), 0 0 0 0 rgba(26, 92, 243, 0.28);
    }

    50% {
      box-shadow: 0 0 0 6px rgba(26, 92, 243, 0.14), 0 0 0 12px rgba(26, 92, 243, 0);
    }
  }

  .about-text p {
    color: var(--ink-soft);
    margin-bottom: 18px;
    font-size: 1.02rem;
  }

  .about-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .about-links a {
    padding: 10px 18px;
    background: var(--bg);
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 600;
  }

  .about-links a:hover {
    background: var(--blue);
    color: white;
  }

  /* FOOTER */

  footer {
    padding: 48px 0 32px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
  }

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

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
  }

  .footer-meta {
    font-size: 0.85rem;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.5);
  }

  /* ANIMACIONES */

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  ::selection {
    background: var(--blue);
    color: white;
  }

  /* RESPONSIVE */

  @media (max-width: 900px) {
    .container {
      padding: 0 22px;
    }

    section {
      padding: 72px 0;
    }

    .nav-links {
      display: none;
    }

    .hero {
      padding: 48px 0 70px;
    }

    .hero-layout {
      display: block;
      max-width: 100%;
      transform: none;
    }

    .hero-logo-block {
      width: min(220px, 62vw);
      padding-top: 0;
      margin-bottom: 32px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-icon-large {
      width: 100%;
      max-width: none;
      height: auto;
    }

    .hero-logo-badge {
      top: 3%;
      right: 5%;
      width: 58px;
      height: 58px;
      font-size: 1.65rem;
    }

    .hero-text-block {
      width: 100%;
      overflow: visible;
    }

    .hero-text-block .tagline {
      max-width: 100%;
      margin-bottom: 28px;
      font-size: 0.72rem;
    }

    .hero-text-block h1 {
      width: 100%;
      max-width: 100%;
      font-size: clamp(2.35rem, 8.6vw, 3.5rem);
      line-height: 0.92;
      letter-spacing: -0.055em;
      white-space: normal;
      overflow: visible;
    }

    .hero-text-block .lead {
      max-width: 100%;
      font-size: 1.15rem;
      line-height: 1.45;
    }

    .platforms {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .platform-btn {
      width: 100%;
    }

    .episodes-featured-card,
    .next-episode,
    .newsletter {
      padding: 28px;
    }

    .newsletter-notification {
      position: relative;
      top: auto;
      right: auto;
      width: fit-content;
      margin-bottom: 28px;
      font-size: 0.68rem;
    }

    .newsletter-notification-count {
      width: 38px;
      height: 38px;
      font-size: 0.95rem;
    }

    .next-episode {
      display: block;
      overflow: hidden;
    }

    .next-episode-signup {
      display: none;
    }

    .next-episode h3 {
      font-size: 2rem;
      line-height: 1.05;
    }

    .next-episode p {
      font-size: 1.15rem;
      line-height: 1.45;
    }

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

    .newsletter-form {
      grid-template-columns: 1fr;
    }

    .field-error {
      position: relative;
      top: auto;
      left: auto;
      width: fit-content;
      margin-top: 10px;
    }

    .field-error::before {
      left: 24px;
    }

    .newsletter-form button {
      width: 100%;
    }

    .about-grid {
      flex-direction: column;
      gap: 32px;
    }

    .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .fade-in {
      opacity: 1;
      transform: none;
    }
  }
