@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600;700&family=Sora:wght@600;700&family=Space+Grotesk:wght@600;700&display=swap");

:root {
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-explore: "Sora", var(--font-sans);
  --font-trailer: "Space Grotesk", var(--font-sans);

  --bg: #f6f0e8;
  --bg-alt: #fff8ef;
  --ink: #171624;
  --muted: #5b5a66;

  --primary: #2a49a8;
  --primary-light: #3f6adf;
  --accent: #f2b542;
  --accent-strong: #e89927;
  --card: #ffffff;

  --shadow: 0 26px 60px rgba(20, 16, 43, 0.18);
  --soft-shadow: 0 16px 34px rgba(16, 24, 40, 0.14);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1140px;

  --page-shell: radial-gradient(circle at 24% -10%, #fdf2dd 0%, #f3e8dc 42%, #ebe2da 100%);
  --section-glow: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(242, 181, 66, 0.05));
  --title-ink: #2c407c;

  --hero-overlay-start: rgba(7, 10, 20, 0.62);
  --hero-overlay-mid: rgba(13, 20, 39, 0.44);
  --hero-overlay-end: rgba(122, 75, 32, 0.3);

  --nav-shell-start: rgba(225, 220, 212, 0.95);
  --nav-shell-end: rgba(215, 208, 198, 0.93);
  --nav-border: rgba(254, 192, 41, 0.8);
  --nav-border-glow: rgba(254, 192, 41, 0.3);
  --nav-link-color: #25408f;
  --nav-link-hover: #007bc3;

  --logo-glow-a: rgba(45, 98, 224, 0.55);
  --logo-glow-b: rgba(240, 179, 69, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--page-shell);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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

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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  padding: 24px 0 8px;
}

body.page-home {
  --page-shell: radial-gradient(circle at 20% -8%, #ffeecf 0%, #f6e8d8 36%, #ebe0d8 72%, #e6ddd6 100%);
  --bg-alt: #fff4e8;
  --section-glow: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(230, 174, 78, 0.07));
  --title-ink: #22418e;
  --hero-overlay-start: rgba(6, 10, 24, 0.6);
  --hero-overlay-mid: rgba(11, 22, 45, 0.42);
  --hero-overlay-end: rgba(168, 98, 34, 0.28);
  --nav-shell-start: rgba(225, 220, 212, 0.95);
  --nav-shell-end: rgba(215, 208, 198, 0.93);
  --nav-border: rgba(254, 192, 41, 0.85);
  --nav-border-glow: rgba(254, 192, 41, 0.32);
  --nav-link-color: #25408f;
  --nav-link-hover: #007bc3;
  --logo-glow-a: rgba(52, 106, 233, 0.58);
  --logo-glow-b: rgba(244, 187, 82, 0.54);
}

body.page-partners {
  --page-shell: none;
  --bg-alt: #f9ebdb;
  --section-glow: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(160, 88, 42, 0.08));
  --title-ink: #6d3c1e;
  --hero-overlay-start: rgba(14, 10, 12, 0.62);
  --hero-overlay-mid: rgba(29, 18, 22, 0.42);
  --hero-overlay-end: rgba(143, 77, 34, 0.35);
  --nav-shell-start: rgba(225, 220, 212, 0.95);
  --nav-shell-end: rgba(215, 208, 198, 0.93);
  --nav-border: rgba(254, 192, 41, 0.85);
  --nav-border-glow: rgba(254, 192, 41, 0.32);
  --nav-link-color: #25408f;
  --nav-link-hover: #007bc3;
  --logo-glow-a: rgba(238, 166, 61, 0.58);
  --logo-glow-b: rgba(76, 126, 226, 0.46);
  position: relative;
  isolation: isolate;
  background: #070c18;
}

body.page-partners::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5, 8, 18, 0.78) 18%, rgba(30, 18, 14, 0.64) 66%, rgba(17, 24, 46, 0.76) 100%),
    url("assets/partners-hero.jpg");
  background-size: cover;
  background-position: center center;
  z-index: -2;
  pointer-events: none;
}

body.page-partners::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(91, 137, 236, 0.2), transparent 40%),
    radial-gradient(circle at 86% 10%, rgba(242, 176, 76, 0.22), transparent 45%);
  z-index: -1;
  pointer-events: none;
}

body.page-events {
  --page-shell: radial-gradient(circle at 74% -12%, #f7e3cc 0%, #eed9cb 34%, #e9d7d0 65%, #e3d4cf 100%);
  --bg-alt: #f7ebde;
  --section-glow: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(194, 110, 56, 0.06));
  --title-ink: #7c3f2a;
  --hero-overlay-start: rgba(8, 8, 14, 0.66);
  --hero-overlay-mid: rgba(20, 14, 16, 0.46);
  --hero-overlay-end: rgba(120, 66, 37, 0.34);
  --nav-shell-start: rgba(225, 220, 212, 0.95);
  --nav-shell-end: rgba(215, 208, 198, 0.93);
  --nav-border: rgba(254, 192, 41, 0.85);
  --nav-border-glow: rgba(254, 192, 41, 0.32);
  --nav-link-color: #25408f;
  --nav-link-hover: #007bc3;
}

body.page-watch {
  --page-shell: radial-gradient(circle at 20% -8%, #e9effa 0%, #dde5f2 36%, #d8e0ed 65%, #d2dae7 100%);
  --bg-alt: #eaf1fa;
  --section-glow: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(62, 100, 180, 0.08));
  --title-ink: #25448f;
  --hero-overlay-start: rgba(6, 12, 28, 0.68);
  --hero-overlay-mid: rgba(9, 18, 40, 0.48);
  --hero-overlay-end: rgba(33, 51, 92, 0.34);
  --nav-shell-start: rgba(225, 220, 212, 0.95);
  --nav-shell-end: rgba(215, 208, 198, 0.93);
  --nav-border: rgba(254, 192, 41, 0.85);
  --nav-border-glow: rgba(254, 192, 41, 0.32);
  --nav-link-color: #25408f;
  --nav-link-hover: #007bc3;
}

body.page-invest {
  --page-shell: radial-gradient(circle at 78% -10%, #f8e3c7 0%, #efdcc9 34%, #e8d8cf 66%, #e0d0cb 100%);
  --bg-alt: #f8e8da;
  --section-glow: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(169, 92, 39, 0.08));
  --title-ink: #734229;
  --hero-overlay-start: rgba(10, 10, 18, 0.66);
  --hero-overlay-mid: rgba(22, 15, 18, 0.44);
  --hero-overlay-end: rgba(133, 72, 31, 0.36);
  --nav-shell-start: rgba(225, 220, 212, 0.95);
  --nav-shell-end: rgba(215, 208, 198, 0.93);
  --nav-border: rgba(254, 192, 41, 0.85);
  --nav-border-glow: rgba(254, 192, 41, 0.32);
  --nav-link-color: #25408f;
  --nav-link-hover: #007bc3;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(94%, 1180px);
  margin: 0 auto;
  min-height: 90px;
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--nav-border);
  background: linear-gradient(135deg, rgba(225,220,212,0.95) 0%, rgba(215,222,235,0.90) 50%, rgba(218,210,196,0.93) 100%);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow:
    0 12px 32px rgba(37, 64, 143, 0.13),
    0 0 26px var(--nav-border-glow),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(254, 192, 41, 0.18);
}

.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 54px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--logo-glow-a), var(--logo-glow-b));
  filter: blur(20px);
  opacity: 0.52;
  z-index: -1;
  pointer-events: none;
}

.logo img {
  width: 196px;
  height: 118px;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-text {
  display: none;
}

.logo:hover img {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 10px 18px rgba(14, 22, 45, 0.35));
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.32rem;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  position: relative;
  padding: 7px 4px;
  color: var(--nav-link-color);
  text-shadow: none;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: #fec029;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--nav-link-hover);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cta-button {
  background: linear-gradient(130deg, var(--accent), var(--accent-strong));
  color: #fff;
  border: none;
  padding: 11px 20px;
  box-shadow: 0 12px 24px rgba(13, 24, 56, 0.25);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  padding: 11px 20px;
}

.cta-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 4;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.mobile-toggle .line {
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #25408f;
  box-shadow: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-toggle.is-active .line {
  background: rgba(255, 243, 221, 0.95);
}

.mobile-toggle.is-active .line:nth-child(1) {
  transform: translateY(-1px) scaleX(1.1);
}

.mobile-toggle.is-active .line:nth-child(2) {
  opacity: 0.72;
  transform: scaleX(0.78);
}

.mobile-toggle.is-active .line:nth-child(3) {
  transform: translateY(1px) scaleX(1.1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 0 120px;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    var(--hero-overlay-start) 10%,
    var(--hero-overlay-mid) 56%,
    var(--hero-overlay-end) 100%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 212, 148, 0.2), transparent 40%),
    radial-gradient(circle at 14% 82%, rgba(58, 105, 214, 0.14), transparent 44%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.08) contrast(1.04);
}

body.page-home .hero--home .hero-bg {
  object-position: center -140px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  color: #f7c25d;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.1vw, 4.9rem);
  line-height: 0.98;
}

.hero p {
  font-size: 1.14rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero--home .hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 1080px;
}

.hero--home h1 {
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 14px;
  transform: translateX(18px);
  border-bottom: 1px solid rgba(255, 223, 173, 0.42);
  text-shadow: 0 12px 30px rgba(6, 12, 34, 0.38);
}

body.page-home .hero--home h1 {
  background: linear-gradient(120deg, #ffeecf 0%, #efc06f 48%, #dce9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero--home p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.45vw, 1.28rem);
  line-height: 1.38;
}

.hero--home .hero-actions {
  justify-content: center;
}

body.page-partners .hero h1 {
  color: #ffe5bf;
}

body.page-partners .eyebrow {
  color: #f8c25d;
}

body.page-partners .cta-button {
  background: linear-gradient(120deg, #f3be5d 0%, #df912c 58%, #2850ad 100%);
}

body.page-partners .hero--partners .hero-bg {
  display: none;
}

body.page-partners .hero--partners {
  min-height: 64vh;
  padding: 152px 0 50px;
}

body.page-partners .hero--partners::before,
body.page-partners .hero--partners::after {
  display: none;
}

body.page-partners .hero--partners .hero-content {
  max-width: 740px;
  padding: 24px 30px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(7, 12, 26, 0.72), rgba(54, 30, 14, 0.5));
  border: 1px solid rgba(255, 227, 180, 0.26);
  box-shadow: 0 18px 36px rgba(6, 8, 17, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.page-partners .hero--partners p {
  max-width: 660px;
}

body.page-watch .cta-button {
  background: linear-gradient(120deg, #79a0f0 0%, #3f6adf 55%, #e0a24c 100%);
}

.section {
  padding: 92px 0;
  background: var(--section-glow);
}

body.page-partners .section {
  background: transparent;
  padding-top: 24px;
  margin-top: -120px;
}

#trailer {
  scroll-margin-top: 120px;
}

.trailer-wrap {
  width: min(94%, 1040px);
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.trailer-wrap .section-title {
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.8vw, 3.35rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  padding: 0;
  border: none;
  background: linear-gradient(120deg, #2e2926 0%, #87582f 52%, #e4b96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  box-shadow: none;
}

.trailer-wrap .section-title::before,
.trailer-wrap .section-title::after {
  content: "";
  position: absolute;
  top: 52%;
  width: 72px;
  height: 1px;
  transform: translateY(-50%);
}

.trailer-wrap .section-title::before {
  right: calc(100% + 18px);
  background: linear-gradient(90deg, rgba(232, 167, 73, 0), rgba(232, 167, 73, 0.9));
}

.trailer-wrap .section-title::after {
  left: calc(100% + 18px);
  background: linear-gradient(90deg, rgba(56, 86, 157, 0.9), rgba(56, 86, 157, 0));
}

.trailer-player {
  width: min(100%, 940px);
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: #05070d;
  box-shadow: 0 24px 52px rgba(8, 12, 25, 0.34);
}

.trailer-caption {
  margin: 0;
  font-family: var(--font-trailer);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #61554b;
}

.section-title {
  margin: 0 0 14px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3.6vw, 3.1rem);
  letter-spacing: 0.01em;
  color: var(--title-ink);
}

#explore .section-title {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-family: var(--font-trailer);
  font-size: clamp(2.45rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  background: linear-gradient(120deg, #293c75 0%, #5470b4 34%, #b37d3a 72%, #f2d2a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 22px rgba(29, 47, 91, 0.15);
}

#explore .section-title::after {
  content: "";
  display: block;
  width: 176px;
  height: 4px;
  margin: 13px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(56, 86, 157, 0) 0%,
    rgba(56, 86, 157, 0.9) 24%,
    rgba(232, 167, 73, 0.95) 72%,
    rgba(232, 167, 73, 0) 100%
  );
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.72;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 230, 0.95));
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(40, 66, 140, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.page-partners .card,
body.page-events .card,
body.page-invest .card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(249, 236, 220, 0.95));
}

body.page-watch .card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(234, 241, 251, 0.95));
  border-color: rgba(54, 91, 175, 0.18);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.17);
}

.card img {
  border-radius: var(--radius-sm);
  height: 180px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  font-family: var(--font-serif);
  color: #202032;
}

.card p {
  color: var(--muted);
  line-height: 1.64;
}

#explore .container {
  width: min(95%, 1280px);
}

#explore .section-subtitle {
  max-width: 820px;
}

#explore .card-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

#explore .card {
  position: relative;
  min-height: 370px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #101625;
  box-shadow: 0 20px 44px rgba(8, 12, 24, 0.25);
}

#explore .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0.06) 14%, rgba(5, 9, 18, 0.8) 72%),
    radial-gradient(circle at 86% 12%, rgba(240, 178, 70, 0.2), transparent 42%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

#explore .card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(1.02) brightness(0.78);
  transform: scale(1);
  transition: transform 0.7s ease, filter 0.4s ease;
}

#explore .card h3,
#explore .card p {
  position: relative;
  z-index: 2;
  color: #fff;
}

#explore .card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.58rem, 2.2vw, 2.05rem);
  line-height: 1.06;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
}

#explore .card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 95%;
}

#explore .card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 56px rgba(9, 14, 30, 0.35);
  border-color: rgba(242, 181, 66, 0.48);
}

#explore .card:hover::before {
  opacity: 0.86;
}

#explore .card:hover img {
  transform: scale(1.08);
  filter: saturate(1.16) brightness(0.84);
}

#explore .card.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.965);
  filter: blur(5px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.7s ease;
}

#explore .card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

#explore .card-grid .card:nth-child(1) {
  transition-delay: 0.06s;
}

#explore .card-grid .card:nth-child(2) {
  transition-delay: 0.16s;
}

#explore .card-grid .card:nth-child(3) {
  transition-delay: 0.26s;
}

.partner-card {
  text-align: left;
  padding: 32px;
}

.partner-card img {
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

body.page-partners .partners-section-shell {
  width: min(97%, 1380px);
  padding: 34px 30px 42px;
  border-radius: 28px;
  background: linear-gradient(132deg, rgba(7, 11, 24, 0.76), rgba(38, 22, 12, 0.62));
  border: 1px solid rgba(255, 226, 180, 0.22);
  box-shadow: 0 22px 46px rgba(8, 11, 22, 0.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.page-partners .partners-section-shell .section-title {
  color: #ffe7c2;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

body.page-partners .partners-section-shell .section-subtitle {
  color: rgba(244, 230, 209, 0.86);
}

body.page-partners .partners-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  align-items: stretch;
}

body.page-partners .partners-grid .partner-card {
  flex: 0 1 calc((100% - 56px) / 3);
  min-width: 320px;
  max-width: 460px;
  height: 510px;
  border-radius: 22px;
  border: 1px solid rgba(255, 221, 174, 0.18);
  box-shadow: 0 18px 36px rgba(6, 11, 25, 0.26);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(162deg, rgba(11, 18, 34, 0.86), rgba(53, 31, 18, 0.68));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.partner-logo-frame {
  height: 154px;
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(146deg, rgba(255, 255, 255, 0.94), rgba(249, 238, 222, 0.88));
  border: 1px solid rgba(255, 238, 213, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 10px 22px rgba(8, 12, 24, 0.18);
}

.partner-logo-link {
  display: block;
  width: 100%;
}

.partner-logo-link:focus-visible {
  outline: none;
}

.partner-logo-link:focus-visible .partner-logo-frame {
  box-shadow:
    0 0 0 2px rgba(244, 188, 98, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 10px 22px rgba(8, 12, 24, 0.18);
}

body.page-partners .partners-grid .partner-card img {
  width: 100%;
  max-width: 260px;
  max-height: 112px;
  height: auto;
  filter: none;
  opacity: 1;
  transition: transform 0.26s ease, filter 0.26s ease;
  object-fit: contain;
}

body.page-partners .partners-grid .partner-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.05);
}

body.page-partners .partners-grid .partner-card img.partner-logo-llf {
  max-width: 286px;
  max-height: 120px;
  filter: contrast(1.34) brightness(1.16) saturate(1.04);
}

body.page-partners .partners-grid .partner-card:hover img.partner-logo-llf {
  filter: contrast(1.42) brightness(1.2) saturate(1.08);
}

.partner-mission {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #efb45f;
  font-weight: 700;
}

body.page-partners .partners-grid .partner-card h3 {
  color: #f8e6cd;
  text-align: center;
}

.mission-body {
  margin: 0;
  line-height: 1.68;
  color: rgba(242, 232, 218, 0.9);
}

.mission-toggle {
  margin-top: 14px;
  align-self: flex-start;
  border: none;
  background: linear-gradient(120deg, #f0b24e, #2d58bf);
  color: #fffdf6;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mission-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(23, 47, 107, 0.3);
}

body.page-partners .partners-grid .partner-card.is-expanded {
  height: auto;
  min-height: 510px;
  overflow: visible;
}

.highlight {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.highlight .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: rgba(251, 191, 36, 0.18);
  color: #8a5800;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlight img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.logo-panel {
  background: linear-gradient(120deg, rgba(22, 44, 108, 0.96), rgba(182, 108, 38, 0.9));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
}

.logo-panel img {
  max-width: 240px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.3));
}

.color-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-chip {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.newsletter {
  position: relative;
  background: linear-gradient(128deg, rgba(19, 43, 104, 0.94), rgba(17, 24, 39, 0.92));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
}

.newsletter::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.52), transparent 70%);
}

.newsletter form {
  display: grid;
  gap: 16px;
  max-width: 420px;
}

.newsletter input[type="email"],
.newsletter input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.newsletter label {
  font-size: 0.9rem;
}

.newsletter .submit {
  background: var(--accent);
  color: #1c1405;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
}

body.newsletter-open {
  overflow: hidden;
}

body.nav-curtain-open {
  overflow: hidden;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.newsletter-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.74);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.newsletter-popup__panel {
  position: relative;
  width: min(92%, 1040px);
  border-radius: 28px;
  border: 1px solid rgba(249, 214, 149, 0.42);
  background: linear-gradient(128deg, rgba(12, 17, 35, 0.92), rgba(41, 25, 16, 0.9));
  box-shadow: 0 32px 70px rgba(2, 8, 19, 0.56);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  overflow: hidden;
}

.newsletter-popup.is-open .newsletter-popup__panel {
  transform: translateY(0) scale(1);
}

.newsletter-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 226, 176, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: #fff3db;
  font-size: 1.42rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.newsletter-popup__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 460px;
}

.newsletter-popup__form-wrap {
  padding: 52px 40px 36px;
  color: #fff7eb;
}

.newsletter-popup__eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #f2bc60;
  font-weight: 700;
}

.newsletter-popup__form-wrap h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  line-height: 1;
}

.newsletter-popup__subtitle {
  margin: 12px 0 24px;
  color: rgba(255, 239, 214, 0.86);
  font-size: 1.04rem;
}

.newsletter-popup-form {
  display: grid;
  gap: 12px;
  max-width: 460px;
}

.newsletter-popup-form label {
  font-size: 0.92rem;
  color: rgba(255, 239, 214, 0.9);
}

.newsletter-popup-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(248, 205, 130, 0.4);
  background: rgba(9, 16, 31, 0.72);
  color: #fff6e6;
  font-size: 1rem;
  outline: none;
}

.newsletter-popup-form input[type="email"]:focus-visible {
  border-color: rgba(242, 181, 66, 0.92);
  box-shadow: 0 0 0 2px rgba(242, 181, 66, 0.25);
}

.newsletter-popup-form button {
  margin-top: 4px;
  width: fit-content;
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(130deg, #f1b64b 0%, #de8f2f 52%, #2d58bf 100%);
  box-shadow: 0 12px 24px rgba(8, 14, 30, 0.34);
}

.newsletter-popup-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.newsletter-popup-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.newsletter-popup-consent {
  margin: 6px 0 0;
  color: rgba(255, 237, 210, 0.74);
  font-size: 0.86rem;
  line-height: 1.4;
}

.newsletter-status {
  min-height: 22px;
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.newsletter-status.is-error {
  color: #ffb1b1;
}

.newsletter-status.is-success {
  color: #afe8c5;
}

.newsletter-popup-art {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(74, 120, 223, 0.34), transparent 44%),
    radial-gradient(circle at 78% 78%, rgba(242, 171, 71, 0.3), transparent 47%),
    linear-gradient(158deg, rgba(9, 16, 33, 0.9), rgba(50, 30, 19, 0.86));
  border-left: 1px solid rgba(255, 218, 156, 0.24);
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 34px 24px;
  text-align: center;
}

.newsletter-popup-art__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 178, 70, 0.42), transparent 70%);
  filter: blur(10px);
  opacity: 0.76;
}

.newsletter-popup-art img {
  position: relative;
  width: min(100%, 250px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(6, 11, 26, 0.52));
}

.newsletter-popup-art p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(255, 235, 203, 0.85);
  max-width: 260px;
}

footer {
  padding: 40px 0;
  background: #141019;
  color: #ececf2;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.socials span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .logo img,
  .cta-button,
  .secondary-button,
  .card,
  #explore .card img {
    transition: none;
  }

  #explore .card.reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 900px) {
  body.page-partners::before {
    background-position: 62% center;
  }

  .navbar {
    position: relative;
    flex-wrap: wrap;
    min-height: 96px;
    padding: 12px 18px 10px;
    border-radius: 30px;
    justify-content: center;
  }

  .logo::before {
    width: 126px;
    height: 46px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .logo img {
    width: 158px;
    height: 94px;
  }

  .logo {
    margin: 0 auto;
    order: 1;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    padding: 132px 24px 28px;
    align-items: center;
    margin-top: 0;
    border: none;
    border-radius: 0 0 26px 26px;
    background:
      linear-gradient(164deg, rgba(6, 11, 26, 0.97), rgba(44, 26, 14, 0.94)),
      radial-gradient(circle at 18% 12%, rgba(61, 107, 211, 0.24), transparent 40%),
      radial-gradient(circle at 84% 15%, rgba(241, 178, 72, 0.22), transparent 42%);
    box-shadow: 0 22px 46px rgba(3, 7, 16, 0.48);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.34s ease, opacity 0.3s ease;
    z-index: 3;
  }

  .nav-links a {
    font-size: 2.06rem;
    font-family: var(--font-serif);
    letter-spacing: 0.01em;
    padding: 4px 0;
    color: rgba(255, 243, 221, 0.95);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-toggle {
    display: inline-flex;
    order: 2;
    position: absolute;
    right: 22px;
    top: 26px;
    transform: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 154px;
  }

  body.page-home .hero--home .hero-bg {
    object-position: 60% center;
  }

  .hero::after {
    opacity: 0.3;
  }

  .hero--home h1 {
    border-bottom: none;
    transform: translateX(10px);
    font-size: clamp(2.3rem, 10vw, 3.8rem);
  }

  .hero--home p {
    font-size: 1.08rem;
  }

  body.page-partners .hero--partners .hero-content {
    max-width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(118deg, rgba(8, 11, 22, 0.66), rgba(44, 24, 12, 0.5));
    border-color: rgba(255, 227, 180, 0.24);
  }

  body.page-partners .hero--partners {
    min-height: 80vh;
    padding-top: 138px;
  }

  body.page-partners .partners-section-shell {
    padding: 26px 22px 32px;
  }

  body.page-partners .partners-grid {
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-partners .partners-grid .partner-card {
    min-width: 0;
    max-width: none;
    height: auto;
    min-height: 420px;
    overflow: visible;
  }

  body.page-partners .partners-grid .partner-card.is-expanded {
    min-height: 420px;
  }

  .partner-logo-frame {
    height: 132px;
    margin-bottom: 14px;
  }

  body.page-partners .partners-grid .partner-card img {
    max-height: 94px;
  }

  #explore .section-title {
    font-size: clamp(2rem, 7vw, 2.7rem);
  }

  #explore .section-title::after {
    width: 136px;
  }

  #trailer .section-title {
    font-size: clamp(1.7rem, 6.2vw, 2.4rem);
    letter-spacing: 0.025em;
  }

  .trailer-wrap .section-title::before,
  .trailer-wrap .section-title::after {
    width: 42px;
  }

  .trailer-player {
    border-radius: 16px;
  }

  #explore .container {
    width: min(94%, 1100px);
  }

  #explore .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #explore .card {
    min-height: 320px;
    padding: 24px 20px;
  }

  #explore .card h3 {
    font-size: clamp(1.4rem, 4.2vw, 1.74rem);
  }

  .newsletter-popup__content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .newsletter-popup__form-wrap {
    padding: 28px 24px 22px;
  }

  .newsletter-popup-art {
    order: -1;
    min-height: 148px;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid rgba(255, 218, 156, 0.24);
    padding: 16px 14px 12px;
  }

  .newsletter-popup-art img {
    width: min(100%, 160px);
  }

  .newsletter-popup-art p {
    display: none;
  }
}

@media (max-width: 640px) {
  body.page-partners::before {
    background-position: 68% center;
  }

  .hero {
    padding: 130px 0 90px;
  }

  body.page-home .hero--home .hero-bg {
    object-position: 64% center;
  }

  .section {
    padding: 74px 0;
  }

  .newsletter {
    padding: 32px;
  }

  body.page-partners .partners-grid {
    grid-template-columns: 1fr;
  }

  body.page-partners .partners-section-shell {
    padding: 22px 16px 28px;
    border-radius: 22px;
  }

  .newsletter-popup__panel {
    width: min(92%, 460px);
    border-radius: 18px;
    max-height: 50vh;
    overflow-y: auto;
  }

  .newsletter-popup-close {
    top: 10px;
    right: 10px;
  }

  .newsletter-popup__form-wrap {
    padding: 20px 16px 16px;
  }

  .newsletter-popup__form-wrap h2 {
    font-size: clamp(1.42rem, 6.5vw, 1.9rem);
    line-height: 1.05;
  }

  .newsletter-popup__subtitle {
    margin: 8px 0 14px;
    font-size: 0.96rem;
  }

  .newsletter-popup-form {
    gap: 10px;
  }

  .newsletter-popup-form input[type="email"] {
    padding: 11px 13px;
  }

  .newsletter-popup-form button {
    padding: 9px 16px;
  }

  .newsletter-popup-consent {
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .newsletter-status {
    min-height: 18px;
    font-size: 0.82rem;
  }

  .trailer-wrap .section-title::before,
  .trailer-wrap .section-title::after {
    display: none;
  }
}
