.landing-shell-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: #e5e2e1;
  background: #131313;
}

.public-shell-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: #e5e2e1;
  background: #131313;
}

.landing-shell-body * {
  box-sizing: border-box;
}

.landing-page {
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.08), transparent 24%),
    radial-gradient(circle at left top, rgba(255, 180, 170, 0.05), transparent 22%),
    #131313;
}

.landing-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 26px;
  background: rgba(19, 19, 19, 0.68);
  backdrop-filter: blur(18px);
}

.landing-brand {
  color: #e50914;
  text-decoration: none;
  font-family: "Epilogue", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.landing-nav-group,
.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(94, 63, 59, 0.24);
}

.landing-language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(229, 226, 225, 0.72);
  text-decoration: none;
  font-family: "Epilogue", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.landing-language-link:hover,
.landing-language-link.is-active {
  color: #fff7f6;
  background: rgba(229, 9, 20, 0.18);
}

.landing-nav-link {
  position: relative;
  color: rgba(229, 226, 225, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.landing-nav-link.is-active,
.landing-nav-link:hover {
  color: #e5e2e1;
}

.landing-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #e50914;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Epilogue", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.landing-button:hover {
  transform: translateY(-1px);
}

.landing-button-primary {
  color: #fff7f6;
  background: #e50914;
  box-shadow: 0 14px 28px rgba(229, 9, 20, 0.18);
}

.landing-button-secondary {
  color: #e5e2e1;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(94, 63, 59, 0.28);
}

.landing-button-ghost {
  min-height: 40px;
  padding: 0 18px;
  color: #e5e2e1;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(94, 63, 59, 0.24);
}

.landing-button.is-active,
.landing-button-ghost.is-active {
  box-shadow: inset 0 0 0 1px rgba(229, 9, 20, 0.45);
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  padding: 112px 0 56px;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 19, 19, 0.96) 0%, rgba(19, 19, 19, 0.86) 30%, rgba(19, 19, 19, 0.52) 66%, rgba(19, 19, 19, 0.32) 100%),
    linear-gradient(180deg, rgba(19, 19, 19, 0.2) 0%, rgba(19, 19, 19, 0.08) 52%, rgba(19, 19, 19, 0.92) 100%),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuD41gTt61QnXEj5mZYUaAV8ZQXGiM7XUUVyiBajTuAsEQIXMl54DsCWswgBjDHhuJVKGUrhzcBhc8YlJ3R--0FBWfC1TO2hLP5hBoT3bse8FBhHHVIXwA13Fr_E8mGbfd5yt4l-MatwRqUjs6qp7mxb-OqQ2-yki-klHF1poUOwM5U_dxrEgokY_oauYlg6MxStcEErVJ3iXhpKyR5J43XnUqNnECxqIfPkMYbCioQZwuVAQcMbVmY-ue_P2J1CgFdm3wc_0ON8r3ea") center/cover no-repeat;
  opacity: 0.98;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 58% 30%, rgba(255, 255, 255, 0.09), transparent 26%);
  pointer-events: none;
}

.landing-hero-inner,
.landing-section-inner,
.landing-footer-inner,
.landing-subfooter {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 168px);
}

.landing-hero-copy {
  max-width: 590px;
}

.landing-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffb4aa;
  font-family: "Epilogue", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.landing-title {
  margin: 0 0 22px;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.landing-title-accent {
  color: #e50914;
}

.landing-description {
  max-width: 470px;
  margin: 0 0 34px;
  color: rgba(229, 226, 225, 0.7);
  font-size: 1.12rem;
  line-height: 1.6;
}

.landing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.landing-section {
  padding: 80px 0;
}

.landing-section-muted {
  background: #1c1b1b;
}

.landing-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.landing-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Epilogue", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-section-title {
  margin: 0;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-section-note {
  margin: 8px 0 0;
  color: rgba(229, 226, 225, 0.62);
  font-size: 0.95rem;
}

.landing-inline-link {
  color: #ffb4aa;
  text-decoration: none;
  font-family: "Epilogue", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.landing-step {
  padding: 18px 2px 0;
}

.landing-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #201f1f;
  color: #ffb4aa;
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(94, 63, 59, 0.18);
}

.landing-step-title {
  margin: 0 0 12px;
  font-family: "Epilogue", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.landing-step-text {
  margin: 0;
  color: rgba(229, 226, 225, 0.62);
  line-height: 1.75;
}

.landing-poster-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.landing-poster-card {
  text-decoration: none;
  color: inherit;
}

.landing-poster-frame {
  position: relative;
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: 8px;
  background: #201f1f;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.landing-poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.3s ease;
}

.landing-poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0.82) 100%);
}

.landing-poster-card:hover .landing-poster-frame img {
  transform: scale(1.05);
  filter: saturate(1.02);
}

.landing-poster-meta {
  margin-top: 14px;
}

.landing-poster-tag {
  display: inline-block;
  color: #ffb4aa;
  font-family: "Epilogue", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-poster-title {
  margin: 8px 0 0;
  font-family: "Epilogue", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.landing-bento {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.landing-bento-column {
  display: grid;
  gap: 18px;
}

.landing-bento-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  border-radius: 8px;
  background: #201f1f;
}

.landing-bento-card h3 {
  margin: 0 0 12px;
  font-family: "Epilogue", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.landing-bento-card p {
  max-width: 460px;
  margin: 0;
  color: rgba(229, 226, 225, 0.62);
  line-height: 1.7;
}

.landing-bento-card-accent {
  background: linear-gradient(135deg, #ba0710 0%, #e50914 100%);
}

.landing-bento-card-accent p {
  color: rgba(255, 247, 246, 0.84);
}

.landing-bento-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(229, 226, 225, 0.1);
  font-size: 4.8rem;
  line-height: 1;
}

.landing-bento-card-accent .landing-button {
  margin-top: 22px;
  color: #e50914;
  background: #fff7f6;
  box-shadow: none;
}

.landing-footer {
  padding: 36px 0 0;
}

.public-page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 112px 24px 56px;
}

.public-page-hero {
  padding: 28px 0 34px;
}

.public-page-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffb4aa;
  font-family: "Epilogue", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.public-page-title {
  margin: 0;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.public-page-subtitle {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(229, 226, 225, 0.64);
  font-size: 1.02rem;
  line-height: 1.7;
}

.public-surface {
  background: #1c1b1b;
  border-radius: 12px;
  padding: 28px;
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.public-card {
  background: #201f1f;
  border-radius: 10px;
  overflow: hidden;
}

.public-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.public-card-body {
  padding: 20px;
}

.public-muted {
  color: rgba(229, 226, 225, 0.58);
}

.public-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.14);
  color: #ffb4aa;
  font-family: "Epilogue", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.public-field,
.public-textarea,
.public-select {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  background: #131313;
  color: #e5e2e1;
  box-shadow: inset 0 0 0 1px rgba(94, 63, 59, 0.22);
}

.public-textarea {
  min-height: 160px;
  resize: vertical;
}

.public-label {
  display: block;
  margin-bottom: 10px;
  font-family: "Epilogue", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.public-stack {
  display: grid;
  gap: 18px;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 40px;
}

.landing-footer-brand {
  font-family: "Epilogue", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.landing-footer-copy {
  margin-top: 16px;
  color: rgba(229, 226, 225, 0.46);
  line-height: 1.75;
}

.landing-footer-heading {
  margin: 0 0 16px;
  color: rgba(229, 226, 225, 0.64);
  font-family: "Epilogue", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-footer-links {
  display: grid;
  gap: 12px;
}

.landing-footer-links a {
  color: rgba(229, 226, 225, 0.48);
  text-decoration: none;
}

.landing-footer-links a:hover {
  color: #e50914;
}

.landing-subfooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 32px;
  color: rgba(229, 226, 225, 0.4);
  font-size: 0.9rem;
}

.landing-socials {
  display: flex;
  gap: 14px;
}

.landing-socials span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #201f1f;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .landing-steps,
  .landing-poster-strip,
  .landing-bento,
  .landing-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-nav-group {
    gap: 18px;
  }

  .public-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-nav {
    flex-wrap: wrap;
    padding: 16px;
  }

  .landing-nav-group {
    width: 100%;
    justify-content: space-between;
  }

  .landing-nav-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
  }

  .landing-language-switcher {
    margin-right: auto;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 148px;
  }

  .landing-hero-inner {
    min-height: auto;
    padding-bottom: 36px;
  }

  .landing-steps,
  .landing-poster-strip,
  .landing-bento,
  .landing-footer-grid {
    grid-template-columns: 1fr;
  }

  .landing-section-head,
  .landing-subfooter {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-section,
  .landing-footer {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .public-page-shell {
    padding-top: 136px;
  }

  .public-grid,
  .public-form-grid {
    grid-template-columns: 1fr;
  }

  .public-surface {
    padding: 20px;
  }
}
