@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-VariableFont_wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}

:root {
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-dark: #10233d;
  --text: #122844;
  --text-soft: #647b97;
  --line: rgba(18, 40, 68, 0.1);
  --line-strong: rgba(18, 40, 68, 0.16);
  --primary: #61b6f2;
  --primary-strong: #279be7;
  --accent: #0fd1b0;
  --shadow-xl: 0 36px 90px rgba(21, 49, 85, 0.12);
  --shadow-lg: 0 22px 56px rgba(21, 49, 85, 0.1);
  --shadow-md: 0 14px 34px rgba(21, 49, 85, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1200px, calc(100% - 48px));

  --hero-bg: #080c14;
  --hero-text: #f0f5ff;
  --hero-blue: #4d9eff;
  --hero-cyan: #00e5d0;
  --hero-gold: #f0c545;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(97, 182, 242, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #fcfdff 0%, #f6f9fd 52%, #eef5fc 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

video,
iframe {
  border: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 300;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
}

.skip-link:focus {
  left: 16px;
}

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

.section {
  padding: 54px 0;
}

.section--soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.44),
    rgba(255, 255, 255, 0)
  );
}

.section-head {
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head--row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-head .lede,
.section-head .muted {
  margin-left: auto;
  margin-right: auto;
}

.headline-lg,
.headline-sm {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.headline-lg {
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
}

.headline-sm {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
}

.lede,
.muted,
.card-copy {
  color: var(--text-soft);
}

.lede {
  margin: 18px 0 0;
  max-width: 66ch;
  font-size: 1.05rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 0;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.button {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-strong) 100%
  );
  box-shadow: 0 16px 30px rgba(39, 155, 231, 0.22);
}

.button-secondary {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

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

.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.u-mt-16 {
  margin-top: 16px;
}
.u-mt-18 {
  margin-top: 18px;
}
.u-mt-20 {
  margin-top: 20px;
}
.u-mt-22 {
  margin-top: 22px;
}

.page-shell {
  padding-bottom: 40px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(77, 158, 255, 0.22),
    rgba(0, 229, 208, 0.1)
  );
  border: 1px solid rgba(77, 158, 255, 0.22);
  color: var(--hero-blue);
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.nav-logo__mark-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-logo__text {
  display: grid;
  gap: 2px;
}

.nav-logo__brand {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--hero-text);
}

.nav-logo__brand span {
  color: inherit;
}

.nav-logo__tagline {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 245, 255, 0.36);
  line-height: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0 0;
  pointer-events: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 20, 0.45);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 60px rgba(0, 0, 0, 0.3);
  pointer-events: all;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(8, 12, 20, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 64px rgba(0, 0, 0, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240, 245, 255, 0.62);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-link:hover {
  color: var(--hero-text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.is-active {
  color: var(--hero-text);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--hero-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  white-space: nowrap;
  border-radius: 12px;
  background: var(--hero-blue);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    background 0.22s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
  box-shadow: 0 10px 28px rgba(77, 158, 255, 0.3);
}

.nav-cta:hover {
  background: #6aabff;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(77, 158, 255, 0.45);
  color: #fff;
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240, 245, 255, 0.82);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-cart:hover {
  color: #fff;
  background: rgba(77, 158, 255, 0.16);
  border-color: rgba(77, 158, 255, 0.32);
  transform: translateY(-2px);
}

.nav-burger {
  position: relative;
  z-index: 280;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-burger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-burger__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(240, 245, 255, 0.8);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease;
  transform-origin: center;
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 260;
  width: min(390px, calc(100vw - 28px));
  min-height: 100dvh;
  border-radius: 28px 0 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 0;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(77, 158, 255, 0.2),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(14, 20, 34, 0.98), rgba(8, 12, 20, 0.98));
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  box-shadow:
    -30px 0 90px rgba(0, 0, 0, 0.55),
    1px 0 0 rgba(255, 255, 255, 0.08) inset;
  padding: 28px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(104%);
  transition:
    opacity 0.3s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-drawer::before {
  content: "";
  position: absolute;
  right: -74px;
  bottom: 92px;
  width: 260px;
  aspect-ratio: 1;
  background: url("../svg/zubik.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.nav-drawer.is-open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.nav-drawer nav {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100dvh - 56px);
  flex-direction: column;
}

.nav-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-drawer__head span {
  color: rgba(240, 245, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-drawer__head strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--hero-text);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.nav-drawer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.nav-drawer__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 0 8px;
  font-size: clamp(1.55rem, 5vw, 2rem);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: rgba(240, 245, 255, 0.76);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-drawer__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  border-radius: 999px;
  background: rgba(77, 158, 255, 0.22);
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-drawer__link:hover {
  color: var(--hero-text);
  transform: translateX(4px);
}

.nav-drawer__link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta--drawer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 15px;
  border-radius: 14px;
}

.nav-drawer-open {
  overflow: hidden;
}

.nav-drawer-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 190;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(77, 158, 255, 0.12),
      transparent 30%
    ),
    rgba(4, 8, 14, 0.56);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
}

.panel,
.paper-card,
.step-card,
.prize-card,
.gallery-shell {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.panel,
.gallery-shell {
  padding: 30px;
}

.paper-card,
.step-card,
.prize-card {
  padding: 24px;
}

.rules-panel .paper-card:first-child {
  padding: 32px;
}

.rules-panel .paper-card:first-child .headline-sm {
  margin-bottom: 28px;
}

.card-title {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.steps-layout,
.prize-layout {
  display: grid;
  gap: 26px;
}

.rules-list,
.benefits-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules-list li,
.benefits-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rules-list li {
  gap: 24px;
}

.rules-list li::before,
.benefits-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(15, 209, 176, 0.14);
  color: #0c8f77;
  font-weight: 800;
}

.steps-layout {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: start;
}

.steps-grid {
  display: grid;
  gap: 16px;
}

.ticket-page .steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  position: relative;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(97, 182, 242, 0.18),
    rgba(15, 209, 176, 0.14)
  );
  color: var(--primary-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
}

.rules-panel {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
}

.prize-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
}

.paper-card {
  min-height: 100%;
}

.spotlight-card {
  display: grid;
  gap: 18px;
}

.spotlight-media,
.prize-card__media {
  overflow: hidden;
  border-radius: 20px;
}

.spotlight-media img,
.prize-card__media img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.prize-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prize-card__media {
  margin-bottom: 16px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #eef6ff, #ddeefe);
}

.prize-tag {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(97, 182, 242, 0.08);
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.prize-grid--details {
  grid-template-columns: 1fr;
  align-content: start;
}

.prize-card--detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 132px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.prize-card--detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.prize-card--detail .prize-card__media {
  margin-bottom: 0;
}

.prize-card__media--detail {
  min-height: 128px;
  padding: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eef6ff, #ddeefe);
}

.prize-card__content {
  display: grid;
  align-content: start;
}

.prize-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.prize-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(97, 182, 242, 0.1);
  color: var(--primary-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.prize-card--detail .card-title {
  margin: 0;
}

.prize-card--detail .card-copy {
  margin: 0;
}

.prize-card--detail .prize-tag {
  margin-top: 14px;
}

.prize-card--detail-smile::before {
  background: linear-gradient(180deg, #4d9eff, #00e5d0);
}

.prize-card--detail-travel::before {
  background: linear-gradient(180deg, #5ea7ff, #77c2ff);
}

.prize-card--detail-care::before {
  background: linear-gradient(180deg, #0fd1b0, #4d9eff);
}

.prize-card--detail-smile .prize-card__media--detail {
  background: linear-gradient(
    180deg,
    rgba(77, 158, 255, 0.16),
    rgba(0, 229, 208, 0.08)
  );
}

.prize-card--detail-travel .prize-card__media--detail {
  background: linear-gradient(
    180deg,
    rgba(97, 182, 242, 0.18),
    rgba(97, 182, 242, 0.08)
  );
}

.prize-card--detail-care .prize-card__media--detail {
  background: linear-gradient(
    180deg,
    rgba(15, 209, 176, 0.16),
    rgba(77, 158, 255, 0.08)
  );
}

.gallery-section {
  background: transparent;
}

.gallery-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  min-height: 680px;
  padding: 42px;
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(15, 209, 176, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(97, 182, 242, 0.18),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(244, 250, 255, 0.92)
    );
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-xl);
}

.gallery-shell::before,
.gallery-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  height: 128px;
  pointer-events: none;
}

.gallery-shell::before {
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 251, 255, 0.98) 0%,
    rgba(248, 251, 255, 0) 100%
  );
}

.gallery-shell::after {
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(238, 245, 252, 0.98) 0%,
    rgba(238, 245, 252, 0) 100%
  );
}

.gallery-copy {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: 520px;
  text-align: center;
}

.gallery-copy .headline-lg {
  color: var(--text);
}

.gallery-copy .lede {
  color: var(--text-soft);
  margin-left: auto;
  margin-right: auto;
}

.gallery-copy .btn-hero {
  margin-top: 24px;
}

.gallery-stream {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 640px;
  overflow: hidden;
  transform: rotate(-2deg);
}

.gallery-stream__column {
  overflow: hidden;
  border-radius: 26px;
}

.gallery-stream__track {
  display: grid;
  gap: 18px;
  will-change: transform;
}

.gallery-stream__column--down .gallery-stream__track {
  animation: gallery-scroll-down 32s linear infinite;
}

.gallery-stream__column--up .gallery-stream__track {
  animation: gallery-scroll-up 32s linear infinite;
}

.gallery-stream:hover .gallery-stream__track {
  animation-play-state: paused;
}

.gallery-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  padding: 0;
  margin: 0;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(21, 49, 85, 0.12);
}

.gallery-photo-card:nth-child(3n + 1) {
  min-height: 330px;
}

.gallery-photo-card:nth-child(3n + 2) {
  min-height: 220px;
}

.gallery-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}

@keyframes gallery-scroll-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes gallery-scroll-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

.legal-page {
  padding-top: 108px;
}

.legal-document-section {
  padding-top: 34px;
}

.legal-document {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(97, 182, 242, 0.14),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.legal-document__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 38px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.legal-document__head .lede {
  margin-left: auto;
  margin-right: auto;
}

.legal-document__head::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 0;
  height: 64px;
  background: radial-gradient(
    ellipse at center,
    rgba(97, 182, 242, 0.18),
    rgba(97, 182, 242, 0) 70%
  );
  pointer-events: none;
  transform: translateY(50%);
}

.legal-document__meta {
  display: grid;
  align-content: end;
  gap: 10px;
  justify-items: end;
  padding: 0 0 4px;
  text-align: right;
}

.legal-document__meta span,
.legal-section__num {
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-document__meta strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.35;
}

.legal-document__body {
  display: grid;
  gap: 0;
  padding: 10px 38px 38px;
}

.legal-section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-section p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.legal-section li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.wc-page {
  padding-top: 108px;
}

.wc-system-page {
  padding: 34px;
}

.wc-system-content {
  margin-top: 24px;
  color: var(--text);
}

.wc-page .woocommerce-notices-wrapper,
.woocommerce .woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  margin: 0 0 18px;
  padding: 16px 18px 16px 52px;
  border-radius: 16px;
  border: 1px solid rgba(97, 182, 242, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  top: 18px;
  left: 20px;
  transform: none;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  margin-left: 18px;
}

.woocommerce-error {
  border-color: rgba(180, 35, 24, 0.18);
  color: #8a241d;
}

.wc-hero-section {
  padding-bottom: 22px;
}

.wc-hero-card,
.wc-cart-card,
.wc-cart-summary,
.wc-checkout-card,
.wc-empty-state {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(97, 182, 242, 0.12),
      transparent 30%
    ),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.wc-hero-card {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
}

.wc-hero-card__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.wc-hero-card__row > div {
  width: 100%;
}

.wc-hero-card__row .lede {
  margin-left: auto;
  margin-right: auto;
}

.wc-shop-section {
  padding-top: 8px;
}

.woocommerce-ordering select,
.woocommerce .select2-container .select2-selection--single,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 10px 13px;
  outline: none;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: rgba(39, 155, 231, 0.45);
  box-shadow: 0 0 0 3px rgba(97, 182, 242, 0.16);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc-shop-page .woocommerce ul.products {
  grid-template-columns: minmax(0, 360px);
  justify-content: center;
  gap: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product.wc-product-card {
  float: none;
  width: auto;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.wc-product-card__media {
  display: block;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: var(--surface-soft);
}

.wc-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.wc-product-card:hover .wc-product-card__media img {
  transform: scale(1.04);
}

.wc-product-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.wc-product-card__kicker {
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wc-product-card__title {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.wc-product-card__price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
}

.wc-product-card__action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.wc-product-card__action .button,
.woocommerce a.button,
.woocommerce a.button.alt,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce input.button,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt,
.woocommerce #payment #place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: var(--hero-blue);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(77, 158, 255, 0.28);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.wc-product-card__action .button {
  width: 100%;
}

.woocommerce a.added_to_cart,
.woocommerce a.wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(18, 40, 68, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
}

.woocommerce a.added_to_cart:hover,
.woocommerce a.wc-forward:hover {
  border-color: rgba(77, 158, 255, 0.24);
  background: rgba(77, 158, 255, 0.08);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

.wc-product-card__action .button:hover,
.woocommerce a.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce #payment #place_order:hover {
  background: #6aabff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(77, 158, 255, 0.38);
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  background: rgba(18, 40, 68, 0.08);
  color: rgba(18, 40, 68, 0.36);
  box-shadow: none;
  transform: none;
}

.wc-single-section {
  padding-top: 132px;
}

.wc-single-product {
  display: grid;
  gap: 28px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 46px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(97, 182, 242, 0.12),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
}

.wc-single-product__head {
  display: grid;
  gap: 12px;
}

.wc-single-product__body {
  display: block;
}

.wc-single-product__summary {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  padding-top: 6px;
}

.wc-single-product__title {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--text);
}

.wc-single-product__price {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
}

.wc-single-product__excerpt {
  color: var(--text-soft);
  max-width: 54ch;
}

.wc-single-product__excerpt p {
  margin: 0;
}

.wc-single-product__cart form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 2px 0 0;
}

.wc-single-product__cart .quantity {
  margin: 0 !important;
}

.wc-single-product__cart .single_add_to_cart_button {
  min-height: 54px;
  padding: 0 24px;
}

.wc-single-product__cart img,
.woocommerce div.product div.images img,
.woocommerce-product-gallery__image img,
.wc-block-components-product-image img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.wc-single-product__cart iframe,
.wc-single-product__cart .wcpay-payment-request-wrapper,
.wc-single-product__cart .wc-stripe-payment-request-wrapper,
.wc-single-product__cart .wc-stripe-payment-request-button,
.wc-single-product__cart #wcpay-payment-request-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.wc-single-product__cart .wcpay-payment-request-wrapper,
.wc-single-product__cart .wc-stripe-payment-request-wrapper,
.wc-single-product__cart .wc-stripe-payment-request-button,
.wc-single-product__cart #wcpay-payment-request-wrapper {
  flex-basis: 100%;
  width: 100%;
  max-width: 520px;
}

.wc-single-product__meta {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.wc-single-product__meta strong {
  color: var(--text);
}

.wc-empty-state {
  padding: 34px;
}

.ticket-notices {
  padding-top: 118px;
}

.ticket-notices:empty {
  display: none;
}

.ticket-notices + .ticket-hero {
  padding-top: 26px;
}

.wc-empty-state--cart {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.wc-empty-state h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.wc-empty-state p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.wc-empty-state--cart p {
  margin: 0;
}

.wc-empty-state__button {
  margin-top: 8px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 24px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--hero-blue);
  color: #fff;
  border-color: var(--hero-blue);
}

.wc-cart-layout,
.wc-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.wc-cart-card,
.wc-cart-summary,
.wc-checkout-card {
  padding: 28px;
}

.wc-cart-card__head {
  margin-bottom: 18px;
}

.wc-cart-card__head h2,
.wc-checkout-card h2,
.cart_totals h2 {
  margin: 14px 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.wc-cart-table-wrap {
  overflow-x: auto;
}

.woocommerce table.shop_table {
  width: 100%;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: var(--text-soft);
}

.woocommerce table.shop_table th {
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.94rem;
}

.woocommerce table.shop_table tr:last-child td,
.woocommerce table.shop_table tbody tr:last-child td {
  border-bottom: 0;
}

.woocommerce table.shop_table .product-name a {
  color: var(--text);
  font-weight: 800;
}

.woocommerce table.shop_table img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.wc-remove-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(180, 35, 24, 0.08);
  color: #9d2319 !important;
  font-size: 1.2rem;
  font-weight: 800;
}

.woocommerce .quantity .qty {
  width: 76px;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  text-align: center;
}

.woocommerce table.shop_table td.actions {
  background: rgba(248, 251, 255, 0.8);
}

.woocommerce table.shop_table td.actions .coupon {
  display: flex;
  gap: 10px;
  float: left;
}

.wc-update-cart {
  float: right;
}

.wc-cart-summary {
  position: sticky;
  top: 120px;
}

.cart_totals {
  float: none !important;
  width: auto !important;
}

.cart_totals table.shop_table {
  margin: 18px 0;
}

.wc-proceed-to-checkout {
  padding: 0;
}

.wc-proceed-to-checkout .checkout-button {
  width: 100%;
  min-height: 60px;
  font-size: 1rem;
}

.wc-checkout-fields {
  margin-top: 18px;
}

.woocommerce form .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce form .form-row label {
  margin-bottom: 7px;
  color: var(--text);
  font-weight: 800;
}

.woocommerce form .form-row .required {
  color: var(--primary-strong);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}

.woocommerce-checkout #payment {
  margin-top: 18px;
  border-radius: 18px;
  background: rgba(97, 182, 242, 0.08);
  border: 1px solid rgba(97, 182, 242, 0.14);
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 18px;
  border-bottom: 1px solid rgba(97, 182, 242, 0.14);
}

.woocommerce-checkout #payment div.form-row {
  padding: 18px;
}

.woocommerce-privacy-policy-text {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-footer-dark {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

.site-footer-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(77, 158, 255, 0.4),
    rgba(0, 229, 208, 0.3),
    transparent
  );
}

.footer-cta-band {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-cta-band__label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 245, 255, 0.38);
}

.footer-cta-band__label strong {
  color: var(--hero-gold);
  font-weight: 700;
}

.footer-cta-band__headline {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--hero-text);
  line-height: 1.1;
}

.footer-main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.nav-logo--footer .nav-logo__mark {
  background: linear-gradient(
    145deg,
    rgba(77, 158, 255, 0.15),
    rgba(0, 229, 208, 0.08)
  );
}

.footer-brand-desc {
  margin: 20px 0 0;
  font-size: 0.9rem;
  color: rgba(240, 245, 255, 0.42);
  line-height: 1.72;
  max-width: 28ch;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(240, 245, 255, 0.46);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.footer-social:hover {
  border-color: rgba(77, 158, 255, 0.4);
  color: var(--hero-blue);
  background: rgba(77, 158, 255, 0.08);
}

.footer-col__heading {
  margin: 0 0 20px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 245, 255, 0.36);
}

.footer-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.footer-nav-list a {
  display: inline-block;
  padding: 6px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(240, 245, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--hero-text);
}

.footer-prize-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-prize-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(240, 245, 255, 0.55);
}

.footer-prize-list__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hero-blue);
  box-shadow: 0 0 8px rgba(77, 158, 255, 0.7);
}

.footer-prize-list__dot--gold {
  background: var(--hero-gold);
  box-shadow: 0 0 10px rgba(240, 197, 69, 0.7);
}

.footer-col__desc {
  margin: 0 0 18px;
  font-size: 0.88rem;
  color: rgba(240, 245, 255, 0.42);
  line-height: 1.65;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  min-height: 52px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(240, 245, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--hero-text);
  font-weight: 800;
  font-size: 0.92rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.36);
  background: rgba(37, 211, 102, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.footer-whatsapp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  color: #25d366;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.24);
}

.footer-whatsapp__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.footer-bottom__copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(240, 245, 255, 0.28);
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 24px;
}

.footer-creator {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 74px;
  height: 74px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.82;
  animation: creator-float 4.8s ease-in-out infinite;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer-creator::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(8px);
  pointer-events: none;
  transform: translateX(-50%);
  animation: creator-shadow 4.8s ease-in-out infinite;
}

.footer-creator:hover {
  animation: none;
  box-shadow: none;
  opacity: 1;
  transform: translateY(-4px) scale(1.03);
}

.footer-creator img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  filter:
    drop-shadow(0 14px 18px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 14px rgba(15, 209, 176, 0.16));
  transition: filter 0.2s ease;
}

.footer-creator:hover img {
  filter:
    drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 18px rgba(15, 209, 176, 0.22));
}

.footer-bottom__links a {
  font-size: 0.82rem;
  color: rgba(240, 245, 255, 0.3);
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: rgba(240, 245, 255, 0.7);
}

.voucher-page .section:first-of-type {
  padding-top: 26px;
}

.ticket-page {
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(15, 209, 176, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 28%,
      rgba(97, 182, 242, 0.18),
      transparent 30%
    ),
    linear-gradient(180deg, #fafdff 0%, #eef6ff 46%, #eaf4ff 100%);
}

.ticket-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding-top: 130px;
}

.ticket-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.ticket-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.ticket-title {
  max-width: 760px;
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(3.35rem, 6.5vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: var(--text);
}

.ticket-lede {
  max-width: 560px;
  margin: 24px 0 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.ticket-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ticket-main-cta {
  min-height: 58px;
  padding-inline: 26px;
}

.ticket-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(244, 250, 255, 0.94)
    ),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 42px 90px rgba(21, 49, 85, 0.16),
    0 0 0 1px rgba(97, 182, 242, 0.1) inset;
  width: 100%;
  transform: rotate(1.4deg);
}

.ticket-card__voucher {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(21, 49, 85, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

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

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-brand-desc {
    margin-top: 0;
  }
  .footer-socials {
    margin-top: 0;
    align-self: flex-end;
  }

  .steps-layout,
  .prize-layout {
    grid-template-columns: 1fr;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gallery-copy {
    max-width: 680px;
  }

  .ticket-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .ticket-hero__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .ticket-copy {
    justify-items: center;
    text-align: center;
  }

  .ticket-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .ticket-card {
    width: min(100%, 820px);
    transform: none;
  }

  .ticket-page .steps-grid {
    grid-template-columns: 1fr;
  }

  .legal-document__head {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-single-product {
    grid-template-columns: 1fr;
  }

  .wc-single-product__summary {
    padding: 0;
  }

  .wc-cart-layout,
  .wc-checkout-layout {
    grid-template-columns: 1fr;
  }

  .wc-cart-summary {
    position: static;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: inline-flex;
  }
  .nav-drawer {
    display: block;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 100%);
  }

  .section {
    padding: 42px 0;
  }

  .site-header {
    padding: 8px 0 0;
  }

  .nav-shell {
    gap: 8px;
    padding: 8px 9px 8px 10px;
    border-radius: 16px;
  }

  .nav-logo {
    gap: 8px;
    min-width: 0;
  }

  .nav-logo__mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .nav-logo__mark-img {
    width: 20px;
    height: 20px;
  }

  .nav-logo__brand {
    font-size: 0.92rem;
  }

  .nav-logo__tagline {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-cart,
  .nav-burger {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .nav-cart svg {
    width: 16px;
    height: 16px;
  }

  .nav-burger {
    gap: 4px;
  }

  .nav-burger__bar {
    width: 16px;
  }

  .nav-burger[aria-expanded="true"] .nav-burger__bar:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-burger[aria-expanded="true"] .nav-burger__bar:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 11px;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-col--brand {
    flex-direction: column;
    gap: 16px;
  }

  .footer-socials {
    align-self: auto;
  }

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .woocommerce-message .button,
  .woocommerce-info .button,
  .woocommerce-error .button {
    margin-left: 0;
  }

  .wc-single-section {
    padding-top: 112px;
  }

  .wc-single-product {
    gap: 22px;
    padding: 16px;
  }

  .wc-single-product__cart form.cart {
    align-items: stretch;
  }

  .wc-single-product__cart .single_add_to_cart_button {
    flex: 1 1 180px;
  }

  .footer-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-bottom__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer-bottom__links {
    justify-content: center;
  }

  .panel,
  .gallery-shell {
    padding: 18px;
  }

  .paper-card,
  .step-card,
  .prize-card {
    padding: 20px;
  }

  .legal-page {
    padding-top: 92px;
  }

  .legal-document {
    border-radius: 20px;
  }

  .legal-document__head {
    padding: 22px;
  }

  .legal-document__head::after {
    left: 22px;
    right: 22px;
  }

  .legal-document__meta {
    justify-items: center;
    text-align: center;
  }

  .legal-document__body {
    padding: 0 22px 22px;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .wc-page {
    padding-top: 92px;
  }

  .ticket-notices {
    padding-top: 96px;
  }

  .wc-system-page,
  .wc-hero-card,
  .wc-cart-card,
  .wc-cart-summary,
  .wc-checkout-card,
  .wc-empty-state {
    padding: 20px;
  }

  .wc-hero-card__row {
    align-items: center;
    flex-direction: column;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .wc-shop-page .woocommerce ul.products {
    grid-template-columns: minmax(0, 360px);
  }

  .woocommerce table.shop_table_responsive thead {
    display: none;
  }

  .woocommerce table.shop_table_responsive tr,
  .woocommerce table.shop_table_responsive tbody,
  .woocommerce table.shop_table_responsive td {
    display: block;
    width: 100%;
  }

  .woocommerce table.shop_table_responsive tr {
    border-bottom: 1px solid var(--line);
  }

  .woocommerce table.shop_table_responsive td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: right;
  }

  .woocommerce table.shop_table_responsive td::before {
    content: attr(data-title);
    color: var(--text);
    font-weight: 800;
    text-align: left;
  }

  .woocommerce table.shop_table_responsive td.product-remove,
  .woocommerce table.shop_table_responsive td.product-thumbnail,
  .woocommerce table.shop_table_responsive td.actions {
    display: block;
    text-align: left;
  }

  .woocommerce table.shop_table_responsive td.product-remove::before,
  .woocommerce table.shop_table_responsive td.product-thumbnail::before,
  .woocommerce table.shop_table_responsive td.actions::before {
    content: none;
  }

  .woocommerce table.shop_table td.actions .coupon {
    float: none;
    display: grid;
    margin-bottom: 12px;
  }

  .wc-update-cart {
    float: none;
    width: 100%;
  }

  .prize-card--detail {
    grid-template-columns: 1fr;
  }

  .prize-card__media--detail {
    min-height: 168px;
  }

  .gallery-shell {
    border-radius: 24px;
    gap: 28px;
  }

  .gallery-stream {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 520px;
    transform: none;
  }

  .gallery-stream__column,
  .gallery-photo-card {
    border-radius: 18px;
  }

  .gallery-photo-card {
    min-height: 210px;
  }

  .gallery-photo-card:nth-child(3n + 1) {
    min-height: 260px;
  }

  .gallery-photo-card:nth-child(3n + 2) {
    min-height: 180px;
  }

  .ticket-hero {
    padding-top: 104px;
  }

  .ticket-hero__grid {
    gap: 30px;
  }

  .ticket-title {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .ticket-card {
    padding: 12px;
    border-radius: 26px;
  }

  .ticket-card__voucher {
    border-radius: 18px;
  }

  .ticket-main-cta {
    justify-content: center;
    width: 100%;
  }
}

.hero-fold {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero-dark {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
  background: var(--hero-bg);
  overflow: hidden;
  padding: 0;
}

.hero-dark .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(24px, 5vw, 120px);
  padding-right: clamp(24px, 3vw, 60px);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-orb--1 {
  width: 900px;
  height: 900px;
  top: -22%;
  right: -10%;
  background: radial-gradient(
    circle at center,
    rgba(77, 158, 255, 0.15) 0%,
    transparent 65%
  );
  animation: orb-drift 22s ease-in-out infinite;
}

.hero-orb--2 {
  width: 700px;
  height: 700px;
  bottom: -15%;
  left: -8%;
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 208, 0.1) 0%,
    transparent 65%
  );
  animation: orb-drift 30s ease-in-out infinite reverse;
}

.hero-orb--3 {
  width: 420px;
  height: 420px;
  top: 38%;
  left: 44%;
  background: radial-gradient(
    circle at center,
    rgba(240, 197, 69, 0.08) 0%,
    transparent 65%
  );
  animation: orb-drift 36s ease-in-out infinite 5s;
}

.hero-dark__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding: 0 0 36px;
  width: 100%;
}

.hero-dark__topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-top: calc(68px + 48px);
  opacity: 0;
  animation: fade-slide-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-dark__stats {
  display: flex;
  gap: 36px;
}

.hero-stat {
  text-align: right;
}

.hero-stat__num {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  font-weight: 700;
  color: var(--hero-text);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-stat__label {
  display: block;
  font-size: 0.67rem;
  color: rgba(240, 245, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 5px;
}

.hero-dark__headline-wrap {
  display: flex;
  align-items: center;
  padding: 24px 0 0;
}

.hero-display {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-display__line {
  display: block;
  overflow: hidden;
  padding-top: 0.08em;
  margin-top: -0.08em;
}

.hero-display__inner {
  display: inline-block;
  font-size: clamp(2.8rem, min(9vw, 13.5svh), 9rem);
  color: var(--hero-text);
  transform: translateY(108%);
  animation: line-reveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-display__line[data-split="0"] .hero-display__inner {
  animation-delay: 0.35s;
}
.hero-display__line[data-split="1"] .hero-display__inner {
  animation-delay: 0.5s;
}
.hero-display__line[data-split="2"] .hero-display__inner {
  animation-delay: 0.65s;
}

.hero-display__line--gradient .hero-display__inner {
  background: linear-gradient(105deg, #4d9eff 0%, #00e5d0 50%, #4d9eff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    line-reveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both,
    shimmer 5s linear 1.6s infinite;
}

.hero-display__ornament {
  display: inline-block;
  -webkit-text-fill-color: var(--hero-gold);
  color: var(--hero-gold);
  margin-left: 0.14em;
  vertical-align: middle;
  font-size: 0.58em;
  animation: ornament-in 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.88s both;
}

.hero-dark__bottom {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  padding-top: 20px;
  opacity: 0;
  animation: fade-slide-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
  flex-wrap: wrap;
}

.hero-dark__lede-wrap {
  max-width: 480px;
  flex: 1 1 320px;
}

.hero-dark__lede {
  margin: 0 0 30px;
  font-size: 1.06rem;
  color: rgba(240, 245, 255, 0.56);
  line-height: 1.74;
}

.hero-dark__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 16px;
  background: var(--hero-blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  box-shadow: 0 20px 60px rgba(77, 158, 255, 0.38);
}

.btn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(77, 158, 255, 0.52);
  color: #fff;
}

.btn-hero__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.btn-hero:hover .btn-hero__arrow {
  transform: translateX(5px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(240, 245, 255, 0.72);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.hero-dark__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  flex-shrink: 0;
}

.hero-countdown-dark {
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-dark-unit {
  text-align: center;
  min-width: 70px;
  padding: 14px 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.countdown-dark-unit strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--hero-text);
  line-height: 1;
  letter-spacing: -0.04em;
}

.countdown-dark-unit span {
  display: block;
  margin-top: 6px;
  font-size: 0.59rem;
  color: rgba(240, 245, 255, 0.38);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.countdown-dark-sep {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(240, 245, 255, 0.22);
  margin-bottom: 20px;
  align-self: flex-end;
}

.marquee-band {
  position: relative;
  overflow: hidden;
  background: var(--hero-blue);
  padding: 20px 0;
}

.marquee-band::before,
.marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.marquee-band::before {
  left: 0;
  background: linear-gradient(to right, var(--hero-blue), transparent);
}

.marquee-band::after {
  right: 0;
  background: linear-gradient(to left, var(--hero-blue), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  padding-right: 30px;
}

.marquee-track span {
  flex-shrink: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
}

.mq-dot {
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 0.52rem !important;
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(45px, -28px) scale(1.06);
  }
  66% {
    transform: translate(-28px, 38px) scale(0.95);
  }
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-reveal {
  from {
    transform: translateY(108%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes ornament-in {
  from {
    transform: rotate(-120deg) scale(0);
    opacity: 0;
  }
  to {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20%);
  }
}

@keyframes creator-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes creator-shadow {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-50%) scale(0.92);
  }
  50% {
    opacity: 0.22;
    transform: translateX(-50%) scale(1.12);
  }
}

@media (max-width: 640px) {
  .hero-fold {
    height: auto;
    overflow: visible;
  }
  .hero-dark {
    min-height: 100svh;
  }
  .hero-dark__inner {
    height: 100svh;
  }
}

@media (max-width: 1120px) {
  .hero-dark__topbar {
    justify-content: flex-start;
  }

  .hero-dark__stats {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat {
    min-width: 0;
    text-align: left;
  }

  .hero-display__inner {
    font-size: clamp(3rem, min(9vw, 13svh), 8rem);
  }
}

@media (max-width: 860px) {
  .hero-dark__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero-dark__meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-dark__topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: calc(64px + 12px);
  }

  .hero-dark__stats {
    display: none;
  }

  .hero-stat {
    text-align: left;
  }

  .hero-stat__num {
    font-size: clamp(1.2rem, 7vw, 1.7rem);
  }

  .hero-display {
    line-height: 0.98;
    letter-spacing: -0.035em;
  }

  .hero-display__line {
    padding-top: 0.04em;
    margin-top: -0.04em;
  }

  .hero-display__inner {
    font-size: clamp(2.15rem, 10.5vw, 4.35rem);
  }

  .hero-countdown-dark {
    gap: 3px;
  }

  .countdown-dark-unit {
    min-width: 54px;
    padding: 10px 6px 8px;
  }
  .countdown-dark-unit strong {
    font-size: 1.5rem;
  }

  .hero-dark__inner {
    padding-bottom: 24px;
    overflow: hidden;
  }
  .section-reel {
    padding: 64px 0;
  }
}

@media (max-width: 380px) {
  .nav-logo__tagline {
    display: none;
  }

  .nav-cta {
    padding: 0 9px;
    font-size: 0.72rem;
  }

  .hero-display__inner {
    font-size: clamp(2rem, 9.8vw, 3.45rem);
  }

  .hero-display__ornament {
    margin-left: 0.08em;
    font-size: 0.5em;
  }
}

.hero-photo-strip {
  position: absolute;
  inset: 0;
  left: 42%;
  z-index: 0;
  pointer-events: none;
}

.hero-photo-strip__track {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-photo-slide.is-active {
  opacity: 1;
}

.hero-photo-slide__img {
  position: absolute;
  inset: 0;
}

.hero-photo-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 4.5s ease-out;
  display: block;

  opacity: 0.28;
}

.hero-photo-slide.is-active .hero-photo-slide__img img {
  transform: scale(1);
}

.hero-photo-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      var(--hero-bg) 0%,
      rgba(8, 12, 20, 0.6) 40%,
      transparent 70%
    ),
    linear-gradient(to bottom, rgba(8, 12, 20, 0.55) 0%, transparent 30%),
    linear-gradient(to top, rgba(8, 12, 20, 0.75) 0%, transparent 35%);
  z-index: 1;
}

@media (max-width: 1120px) {
  .hero-photo-strip {
    left: 0;
  }

  .hero-photo-slide__img img {
    opacity: 0.2;
    object-position: center top;
  }

  .hero-photo-vignette {
    background:
      linear-gradient(90deg, rgba(8, 12, 20, 0.9) 0%, rgba(8, 12, 20, 0.62) 48%, rgba(8, 12, 20, 0.34) 100%),
      linear-gradient(to bottom, rgba(8, 12, 20, 0.72) 0%, transparent 36%),
      linear-gradient(to top, rgba(8, 12, 20, 0.82) 0%, transparent 42%);
  }
}

@media (max-width: 860px) {
  .hero-photo-slide__img img {
    opacity: 0.18;
    object-position: 58% top;
  }

  .hero-photo-vignette {
    background:
      linear-gradient(180deg, rgba(8, 12, 20, 0.78) 0%, rgba(8, 12, 20, 0.44) 46%, rgba(8, 12, 20, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 12, 20, 0.66) 0%, rgba(8, 12, 20, 0.24) 100%);
  }
}

.hero-photo-caption {
  position: absolute;
  bottom: 72px;
  right: 28px;
  z-index: 3;
  text-align: right;
  pointer-events: none;
}

.hero-photo-caption__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-gold);
  font-family: "Manrope", "Segoe UI", sans-serif;
  margin-bottom: 3px;
}

.hero-photo-caption__sub {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.hero-photo-dots {
  position: absolute;
  bottom: 44px;
  right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: all;
}

.hero-photo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  padding: 0;
}

.hero-photo-dot.is-active {
  background: var(--hero-blue);
  width: 20px;
  border-radius: 3px;
}

.hero-photo-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 3;
}

.hero-photo-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hero-blue), var(--hero-cyan));
  transition: width linear;
}

.hero-dark__topbar,
.hero-display,
.hero-dark__lede,
.hero-dark__bottom {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.section-reel {
  background: var(--hero-bg);
  padding: 96px 0;
  position: relative;
}

.section-reel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(77, 158, 255, 0.35),
    transparent
  );
}

.reel-head {
  margin-bottom: 48px;
  text-align: center;
}

.reel-title {
  color: #fff;
  line-height: 1.1;
}

.reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #0d111e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(77, 158, 255, 0.06);
}

.reel-facade {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reel-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-facade__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.3);
}

.reel-yt-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 20, 0.45);
  backdrop-filter: blur(2px);
  transition:
    opacity 0.5s ease,
    backdrop-filter 0.5s ease;
  z-index: 2;
}

.reel-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
}

.reel-play-btn {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: none;
  background: var(--hero-blue);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s;
}

.reel-play-btn:hover {
  transform: scale(1.1);
  background: #5daeff;
}

.reel-play-btn__icon {
  position: relative;
  z-index: 1;
  padding-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-play-btn__ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(77, 158, 255, 0.35);
  animation: reel-ring-pulse 2.4s ease-in-out infinite;
}

@keyframes reel-ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.reel-overlay__meta {
  margin-top: 28px;
  text-align: center;
}

.reel-overlay__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-cyan);
  font-family: "Manrope", "Segoe UI", sans-serif;
  margin-bottom: 6px;
}

.reel-overlay__title {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-dark__topbar,
  .hero-display__inner,
  .hero-display__ornament,
  .hero-dark__bottom,
  .footer-creator {
    animation: none !important;
    transform: none !important;
  }

  .footer-creator::after {
    animation: none !important;
  }

  .hero-orb,
  .hero-dark__topbar,
  .hero-display__inner,
  .hero-display__ornament,
  .hero-dark__bottom {
    opacity: 1 !important;
  }

  .marquee-track {
    animation: none;
  }
}
