@font-face {
  font-family: "SF Pro";
  src:
    local("SF Pro Display Regular"),
    local("SF Pro Text Regular"),
    local("SF Pro Display"),
    local("SF Pro Text"),
    local("SF Pro");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro";
  src:
    local("SF Pro Display Medium"),
    local("SF Pro Text Medium"),
    local("SF Pro Medium");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro";
  src:
    local("SF Pro Display Semibold"),
    local("SF Pro Text Semibold"),
    local("SF Pro Semibold");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro";
  src:
    local("SF Pro Display Bold"),
    local("SF Pro Text Bold"),
    local("SF Pro Bold");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0b0b;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-soft: rgba(255, 255, 255, 0.6);
  --accent: #fa0000;
  --accent-strong: #df0000;
  --gold: #f5b700;
  --font-sf-pro: "SF Pro", "SF Pro Display", "SF Pro Text", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --hero-bg: none;
  --about-bg: none;
  --shadow-heavy: 0 30px 60px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 18px 35px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sf-pro);
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background: var(--bg);
  font-family: var(--font-sf-pro);
}

.landing-container {
  max-width: 1440px;
  padding-inline: clamp(1rem, 2.25vw, 2.75rem);
}

.section-padding {
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.eyebrow--hero-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 18px;
  line-height: 21px;
  white-space: nowrap;
}

.eyebrow--hero-line::after {
  content: "";
  display: block;
  width: clamp(160px, 28vw, 450px);
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.text-accent {
  color: var(--accent);
}

.section-copy {
  color: var(--muted);
  line-height: 1.7;
}

.hero-section {
  position: relative;
  min-height: 1040px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 38%, rgba(0, 0, 0, 0.18) 100%),
    var(--hero-bg) center top / cover no-repeat,
    #050505;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0) 0%, rgba(11, 11, 11, 1) 100%);
}

.navbar {
  position: relative;
  z-index: 3;
  padding-top: 1.65rem;
}

.navbar-brand img {
  width: 50px;
  height: 50px;
  display: block;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 16px;
  font-weight: 590;
  line-height: 19px;
  letter-spacing: -0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}

.btn-brand,
.btn-outline-brand-light,
.btn-submit-film {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 16px;
  font-weight: 590;
  line-height: 19px;
  letter-spacing: -0.03em;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-brand {
  padding: 0.85rem 1.45rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(250, 0, 0, 0.22);
}

.btn-brand:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #ffffff;
}

.btn-outline-brand-light {
  padding: 0.85rem 1.45rem;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #ffffff;
}

.btn-outline-brand-light:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-submit-film {
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(245, 183, 0, 0.65);
  background: rgba(245, 183, 0, 0.18);
  color: var(--gold);
}

.btn-submit-film:hover {
  transform: translateY(-2px);
  background: rgba(245, 183, 0, 0.24);
  color: #ffe085;
}

.btn-nav {
  padding: 0.72rem 2.3rem;
  font-size: 14px;
  font-weight: 590;
  line-height: 17px;
}

.btn-sm-wide {
  min-width: 145px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: 4rem;
}

.hero-title {
  max-width: 18ch;
  margin: 0 0 1.2rem;
  font-size: 74px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 44rem;
  margin: 0;
  /* color: var(--muted); */
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.04em;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 6rem);
}

.mini-card,
.feature-card,
.poster-card,
.poster-frame {
  overflow: hidden;
  background-color: #111111;
  box-shadow: var(--shadow-card);
}

.mini-card {
  position: relative;
  aspect-ratio: 342 / 254;
  border-radius: 1.4rem;
  background-position: center;
  background-size: cover;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.74) 100%);
}

.mini-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.45);
}

.mini-card__meta {
  position: absolute;
  inset: auto 1.1rem 1rem;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.mini-card__title {
  max-width: 11rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.play-button {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  color: #ffffff;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.play-button:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  background: rgba(250, 0, 0, 0.38);
}

.play-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  margin-left: 0.16rem;
}

.social-rail {
  position: absolute;
  z-index: 2;
  gap: 1rem;
  align-items: center;
}

.social-rail-left {
  left: 0.9rem;
  top: 50%;
  gap: 0;
  transform: translateY(-50%);
}

.social-rail-right {
  right: 1.15rem;
  top: 31%;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.social-rail__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 24px;
  padding: 0;
}

.social-rail__badge {
  display: block;
  width: 44px;
  height: auto;
}

.social-rail__link {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
}

.social-rail__label {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-size: 20px;
  font-weight: 590;
  line-height: 24px;
  letter-spacing: -0.04em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.social-rail__icon {
  width: 22.4px;
  height: 22.4px;
  object-fit: contain;
  flex: 0 0 auto;
}

.social-rail__link:hover .social-rail__label {
  color: var(--accent);
}

.about-section {
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 44%;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0) 0%, rgba(11, 11, 11, 0.5) 16%, rgba(11, 11, 11, 0.95) 100%),
    var(--about-bg) right center / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.about-montage,
.about-card,
.section-head,
.footer-top {
  position: relative;
  z-index: 1;
}

.about-montage {
  display: grid;
  grid-template-columns: 1fr 1fr 0.65fr 1.2fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.poster-stack {
  display: grid;
  gap: 0.85rem;
}

.poster-frame {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poster-frame--tall {
  min-height: 330px;
}

.poster-frame--short {
  min-height: 156px;
}

.brand-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 332px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.brand-column span {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.brand-column span:last-child {
  color: var(--accent);
}

.montage-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  min-height: 332px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.montage-meta small {
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.montage-meta p {
  margin: 0;
  color: var(--muted);
}

.muted-copy {
  color: var(--muted-soft) !important;
  font-size: 0.88rem;
}

.about-card {
  padding: clamp(1.6rem, 2.1vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-heavy);
}

.about-title {
  margin: 0 0 1rem;
  font-size: 54px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.05em;
}

.about-card .section-copy {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.04em;
}

.section-head {
  margin-bottom: clamp(2.25rem, 3vw, 3rem);
}

.section-head h2 {
  margin: 0 0 0.7rem;
  font-size: 52px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.05em;
}

.section-head p {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted-soft);
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
}

.feature-card {
  position: relative;
  min-height: 750px;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.52) 100%);
}

.feature-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}

.feature-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.feature-card__title {
  max-width: 16rem;
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.05em;
}

.feature-card__description {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 510;
  line-height: 21px;
  letter-spacing: -0.04em;
}

.feature-card .play-button {
  width: 3.5rem;
  height: 3.5rem;
}

.feature-card .btn-brand {
  align-self: flex-start;
  padding: 0.55rem 0.95rem;
  border-radius: 0.7rem;
  font-size: 16px;
  font-weight: 590;
  line-height: 19px;
  box-shadow: none;
}

.cta-section {
  position: relative;
  padding-block: clamp(6rem, 11vw, 9rem);
  overflow: hidden;
  isolation: isolate;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.58) 18%, rgba(0, 0, 0, 0.58) 82%, rgba(0, 0, 0, 0.96) 100%);
}

.poster-background {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  overflow: hidden;
  opacity: 0.28;
  pointer-events: none;
}

.poster-background-top {
  top: 0;
}

.poster-background-bottom {
  bottom: 0;
}

.poster-track {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  animation: drift 42s linear infinite;
}

.poster-track.reverse {
  animation-direction: reverse;
}

.poster-card {
  width: 170px;
  aspect-ratio: 0.72;
  border-radius: 1rem;
  background-position: center;
  background-size: cover;
  flex: 0 0 auto;
}

.cta-panel {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-panel .eyebrow {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.04em;
}

.cta-panel h2 {
  margin: 0 0 1rem;
  font-size: 74px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -0.04em;
}

.cta-copy {
  margin: 0 auto 1.9rem;
  max-width: 44rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.04em;
}

.cta-panel .btn-brand,
.cta-panel .btn-outline-brand-light {
  font-size: 16px;
  font-weight: 590;
  line-height: 19px;
}

.footer-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 0;
  background: #0b0b0b;
  overflow: hidden;
}

.footer-section::before {
  content: "V";
  position: absolute;
  left: -0.2rem;
  bottom: 3.8rem;
  font-size: clamp(9rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 2.2rem 0 2.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-brand {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.footer-brand-badge {
  display: block;
  width: 44px;
  height: auto;
  flex: 0 0 auto;
}

.footer-brand-copy {
  min-width: 0;
}

.footer-side {
  width: min(100%, 370px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-panel,
.footer-brand {
  position: relative;
  z-index: 1;
}

.footer-heading {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 590;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.footer-brand-copy .footer-heading {
  margin-bottom: 0.2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.footer-copy {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 510;
  line-height: 1.25;
}

.footer-note {
  margin: 0.1rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.newsletter-form {
  margin-top: 0;
}

.newsletter-form--inline .newsletter-row {
  display: flex;
  gap: 0;
}

.newsletter-form .form-control {
  min-height: 40px;
  padding: 0.6rem 0.9rem;
  border: 1px solid #262525;
  border-radius: 0.45rem 0 0 0.45rem;
  background: #090809;
  color: #ffffff;
  font-size: 0.82rem;
}

.newsletter-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.15rem rgba(250, 0, 0, 0.16);
  background: #090809;
  color: #ffffff;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe-btn {
  min-width: 104px;
  border-radius: 0 0.45rem 0.45rem 0;
  box-shadow: none;
}

.newsletter-message {
  min-height: 0;
  margin: 0.45rem 0 0;
  color: var(--muted-soft);
  font-size: 0.74rem;
}

.newsletter-message:empty {
  display: none;
}

.social-list {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0;
}

.social-list--footer {
  gap: 0.55rem;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(250, 0, 0, 0.12);
}

.social-icon svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.app-badges img {
  height: 40px;
  width: 100px;
  border-radius: 0.35rem;
  background: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.95rem 0 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.footer-legal {
  max-width: 680px;
  margin: 0;
  line-height: 1.55;
}

.footer-legal__brand {
  color: var(--accent);
  font-weight: 700;
}

.footer-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.footer-download__title {
  margin: 0;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 590;
  line-height: 1.2;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

@media (max-width: 1199.98px) {
  .hero-section {
    min-height: auto;
  }

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

  .about-montage {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brand-column {
    min-height: 300px;
  }

  .montage-meta {
    grid-column: span 2;
    min-height: auto;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(11, 11, 11, 0.94);
    backdrop-filter: blur(10px);
  }

  .hero-title {
    max-width: 14ch;
    font-size: 58px;
    line-height: 58px;
  }

  .hero-copy {
    font-size: 18px;
    line-height: 22px;
  }

  .hero-strip {
    gap: 1rem;
  }

  .about-section::before {
    inset: 20% 0 0;
    opacity: 0.16;
  }

  .about-montage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .montage-meta {
    grid-column: span 3;
  }

  .feature-card {
    min-height: 620px;
  }

  .about-title {
    font-size: 46px;
    line-height: 48px;
  }

  .section-head h2 {
    font-size: 44px;
    line-height: 48px;
  }

  .section-head p {
    font-size: 20px;
    line-height: 26px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-side {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-download {
    align-items: flex-start;
  }

  .cta-panel .eyebrow {
    font-size: 20px;
    line-height: 25px;
  }

  .cta-panel h2 {
    font-size: 58px;
    line-height: 58px;
  }

  .cta-copy {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 767.98px) {
  .hero-content {
    padding-top: 4rem;
  }

  .hero-title {
    font-size: 42px;
    line-height: 44px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 22px;
  }

  .cta-panel .eyebrow {
    font-size: 18px;
    line-height: 22px;
  }

  .cta-panel h2 {
    font-size: 42px;
    line-height: 44px;
  }

  .cta-copy {
    font-size: 16px;
    line-height: 22px;
  }

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

  .mini-card {
    aspect-ratio: 1.2;
  }

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

  .brand-column {
    min-height: 250px;
  }

  .montage-meta {
    grid-column: 1 / -1;
  }

  .feature-card {
    min-height: 520px;
  }

  .feature-card__body {
    padding: 1.35rem;
  }

  .feature-card__title {
    max-width: 10rem;
    font-size: 1.9rem;
    line-height: 1.05;
  }

  .poster-card {
    width: 120px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .newsletter-form--inline .newsletter-row {
    flex-direction: column;
    gap: 0.55rem;
  }

  .newsletter-form .form-control,
  .footer-subscribe-btn {
    border-radius: 0.45rem;
  }

  .about-title {
    font-size: 36px;
    line-height: 40px;
  }

  .section-head h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .section-head p {
    font-size: 18px;
    line-height: 24px;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-brand-badge {
    width: 40px;
  }

  .footer-brand-copy .footer-heading {
    font-size: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-download,
  .footer-bottom {
    align-items: flex-start;
  }

  .footer-section::before {
    bottom: 7rem;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark__text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-card__meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.play-button--disabled {
  cursor: default;
  opacity: 0.55;
}

.empty-state-panel {
  padding: 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.empty-state-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.newsletter-alert {
  margin-top: 0.85rem;
  border-radius: 0.8rem;
  border: none;
}
