:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-deep: #020202;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --text: #f8f8f8;
  --muted: #aaa;
  --muted-soft: #888;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --yellow: #fcbe26;
  --gold: #d4af37;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-lock {
  overflow: hidden;
}

::selection {
  background: var(--yellow);
  color: #000;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.icon-sprite {
  display: none;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.fixed-grid,
.ambient {
  position: fixed;
  pointer-events: none;
}

.fixed-grid {
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

.ambient {
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  z-index: 0;
}

.ambient-one {
  top: -18vw;
  left: -15vw;
  background: rgba(252, 190, 38, 0.35);
}

.ambient-two {
  right: -12vw;
  bottom: -16vw;
  background: rgba(252, 190, 38, 0.28);
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.animal-texture {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10c2-3 5-1 4 3-1 3-5 5-7 2-1-2 1-4 3-5zm20 30c3-2 6 0 5 4-1 3-6 4-8 1-2-2 0-5 3-5zm40-10c-3-2-6 1-4 5 1 3 5 4 7 1 2-2 0-5-3-6zm-30 40c2 4 7 2 6-2-1-3-5-5-8-1-2 2-1 6 2 3zm50-20c3 2 6 0 5-4-1-3-5-4-7-1-2 2 0 5 2 5z' fill='rgba(255,255,255,0.02)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.glass-panel:hover {
  background: rgba(252, 190, 38, 0.04);
  border-color: rgba(252, 190, 38, 0.3);
  box-shadow: 0 10px 40px -10px rgba(252, 190, 38, 0.15);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0.95rem 2rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.primary-button {
  background: var(--yellow);
  color: #fff;
  box-shadow: 0 0 20px rgba(252, 190, 38, 0.3);
}

.primary-button:hover {
  background: var(--yellow);
  color: #000;
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(252, 190, 38, 0.42);
}

.primary-button:active {
  transform: scale(0.97);
}

.ghost-button {
  background: rgba(252, 190, 38, 0.1);
  border: 1px solid rgba(252, 190, 38, 0.3);
  color: var(--yellow);
}

.ghost-button:hover {
  background: var(--yellow);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.5rem 1rem 0;
  transition: padding 0.35s ease;
}

.site-nav.is-scrolled {
  padding-top: 1rem;
}

.nav-pill {
  width: min(1280px, 100%);
  height: 4rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-nav.is-scrolled .nav-pill {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #fff;
  white-space: nowrap;
}

.brand-star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--yellow);
  margin-right: 0.15rem;
  transition: transform 0.5s ease;
}

.brand:hover .brand-star {
  transform: rotate(90deg);
}

.brand-muted,
.footer-brand em {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-weight: 300;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav .nav-cta {
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.desktop-nav .nav-cta:hover {
  background: var(--yellow);
  color: #000;
  transform: scale(1.04);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  position: relative;
}

.menu-close {
  display: none;
}

.site-nav.menu-open .menu-open {
  display: none;
}

.site-nav.menu-open .menu-close {
  display: block;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  background: #111;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.site-nav.menu-open .mobile-nav {
  display: flex;
  animation: mobileMenu 0.24s ease both;
}

@keyframes mobileMenu {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-nav a {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.mobile-nav .mobile-cta {
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  text-align: center;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background-color: #000;
  color: #fff;
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: var(--yellow);
  filter: blur(170px);
  mix-blend-mode: screen;
  opacity: 0.16;
  animation: morph 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-one {
  width: min(42rem, 72vw);
  height: min(42rem, 72vw);
  top: 18%;
  right: -20%;
}

.hero-orb-two {
  width: min(34rem, 64vw);
  height: min(34rem, 64vw);
  left: 24%;
  bottom: -8%;
  opacity: 0.14;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: 1rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.hero-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: clamp(0.625rem, 1.4vw, 0.875rem);
  font-weight: 700;
}

.pulse-wrap {
  position: relative;
  width: 0.65rem;
  height: 0.65rem;
  display: inline-flex;
}

.pulse-wrap::before,
.pulse-wrap span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--yellow);
}

.pulse-wrap::before {
  content: "";
  animation: pulse 1.6s ease-out infinite;
  opacity: 0.7;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.8;
  }
  to {
    transform: scale(2.3);
    opacity: 0;
  }
}

.hero-copy h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(3.1rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.98;
  color: #fff;
}

.hero-line {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1rem);
  width: fit-content;
  font-style: italic;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-star {
  width: clamp(2.2rem, 5vw, 4rem);
  height: clamp(2.2rem, 5vw, 4rem);
  color: var(--yellow);
  -webkit-text-fill-color: var(--yellow);
  animation: starPulse 2.2s ease-in-out infinite;
}

@keyframes starPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.05);
  }
}

.hero-copy p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.75;
}

.hero-button {
  margin-top: 0.15rem;
  min-width: 15rem;
  padding: 1.15rem 2.4rem;
}

.hero-button .icon {
  transition: transform 0.25s ease;
}

.hero-button:hover .icon {
  transform: translateX(4px) rotate(-45deg);
}

.hero-visual {
  position: relative;
  min-height: min(80vh, 720px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-gradient-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, #000, transparent 45%, transparent);
  pointer-events: none;
}

.hero-photo {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50% 50% 0 0 / 34% 34% 0 0;
  box-shadow: 0 10px 50px -10px rgba(252, 190, 38, 0.2);
}

.hero-photo img,
.profile-frame img,
.movement-photo img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  filter: brightness(0.95) contrast(1.05) saturate(0.5);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-reveal:hover img {
  transform: scale(1.08);
}

.hero-photo-ring,
.hero-photo-shadow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo-ring {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
}

.hero-photo-shadow {
  top: auto;
  height: 34%;
  background: linear-gradient(to top, #000, transparent);
}

.movement-badge {
  position: absolute;
  z-index: 3;
  top: 8rem;
  right: -1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 1.5rem;
  min-width: 7.4rem;
  text-align: center;
}

.movement-badge span {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.movement-badge strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.float-loop {
  animation: floatLoop 4s ease-in-out infinite;
}

@keyframes floatLoop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.marquee-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: clamp(0.875rem, 1.6vw, 1.125rem);
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-track .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: rgba(252, 190, 38, 0.5);
}

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

.content-section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #000;
}

.textured-section,
.media-section {
  background-color: #050505;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 5rem);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.5fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 5rem);
}

.sticky-copy {
  position: sticky;
  top: 8rem;
}

.section-copy {
  max-width: 38rem;
}

.section-copy h2,
.section-copy h3,
.movement-copy h2,
.social-heading h2,
.final-cta h2,
.media-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
}

.section-copy h2,
.movement-copy h2,
.social-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.section-copy h3 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.section-copy em,
.movement-copy em,
.final-cta em {
  color: var(--yellow);
  font-style: italic;
}

.section-copy p {
  color: var(--muted-soft);
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
}

.section-kicker,
.pill-kicker,
.dark-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.5rem;
  color: var(--yellow);
  font-size: clamp(0.66rem, 1vw, 0.875rem);
  font-weight: 800;
  text-transform: uppercase;
}

.line-kicker span {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--yellow);
}

.pill-kicker {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.muted-pill {
  color: #fff;
}

.about-text {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.5rem;
  color: #ccc;
}

.about-text .lead {
  margin: 0;
  color: #eee;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}

.feature-list strong {
  color: #fff;
  font-weight: 600;
}

.check-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  border: 1px solid rgba(252, 190, 38, 0.3);
  border-radius: 0.75rem;
  background: rgba(252, 190, 38, 0.1);
  color: var(--yellow);
}

.check-mark .icon {
  width: 1rem;
  height: 1rem;
}

.quote-card {
  position: relative;
  margin: 1.5rem 0 0;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--yellow);
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: transform 0.4s ease;
}

.quote-card:hover {
  transform: translateY(-4px);
}

.quote-card p {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.55;
}

.sparkle-icon {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: #050505;
  color: var(--yellow);
}

.profile-frame {
  position: relative;
  width: 100%;
  max-width: 470px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10rem 10rem 2rem 2rem;
  box-shadow: var(--shadow);
}

.profile-frame img {
  filter: saturate(0.5) contrast(1.1);
  transition: transform 0.7s ease;
}

.profile-frame:hover img {
  transform: scale(1.05);
}

.profile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
  mix-blend-mode: multiply;
}

.profile-caption {
  position: absolute;
  left: clamp(1rem, 3vw, 2.5rem);
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  z-index: 2;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--yellow);
  border-radius: 1.25rem;
  pointer-events: none;
}

.profile-caption strong,
.profile-caption span {
  display: block;
}

.profile-caption strong {
  margin-bottom: 0.4rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  color: #fff;
}

.profile-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 600;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.accordion-card {
  overflow: hidden;
  border-radius: clamp(1.5rem, 3vw, 2rem);
}

.accordion-card.is-open {
  background: rgba(252, 190, 38, 0.05);
  border-color: rgba(252, 190, 38, 0.3);
  box-shadow: 0 0 30px rgba(252, 190, 38, 0.1);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
}

.accordion-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.accordion-title-wrap > span:last-child {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
}

.accordion-index,
.accordion-icon {
  width: clamp(2.5rem, 4vw, 3rem);
  height: clamp(2.5rem, 4vw, 3rem);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--display);
  font-size: 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.accordion-icon {
  border-radius: 0.9rem;
}

.accordion-card.is-open .accordion-index,
.accordion-card.is-open .accordion-icon {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #fff;
}

.accordion-chevron {
  width: 1.5rem;
  height: 1.5rem;
  color: #666;
  transition: transform 0.25s ease, color 0.25s ease;
}

.accordion-card.is-open .accordion-chevron {
  color: var(--yellow);
  transform: rotate(180deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion-panel p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 clamp(1rem, 2.4vw, 1.5rem) 0 clamp(4.5rem, 8vw, 6rem);
  color: #ccc;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.75;
  transition: padding-bottom 0.3s ease;
}

.accordion-card.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-card.is-open .accordion-panel p {
  padding-bottom: clamp(1.2rem, 2.5vw, 1.5rem);
}

.bordered-copy {
  max-width: 24rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.media-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.media-heading h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.media-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: clamp(1rem, 2.4vw, 1.5rem);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.media-card img {
  filter: brightness(0.75);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.media-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-card:hover .play-layer {
  opacity: 1;
}

.play-layer span {
  width: clamp(3rem, 5vw, 4rem);
  height: clamp(3rem, 5vw, 4rem);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease;
}

.media-card:hover .play-layer span {
  transform: scale(1.1);
}

.media-card p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 4rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72), transparent);
  color: #fff;
  font-size: clamp(0.78rem, 1.3vw, 0.92rem);
  font-weight: 600;
}

.movement-section {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
  border-radius: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem) 0 0;
  background: var(--yellow);
  color: #000;
}

.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.dark-pill {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

.movement-copy p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  font-weight: 700;
  line-height: 1.75;
}

.movement-copy em {
  color: rgba(0, 0, 0, 0.9);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 2.5rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-row div {
  flex: 1 1 7.5rem;
}

.stats-row strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.movement-photo {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  padding: 0.75rem;
  border-radius: clamp(2rem, 4vw, 3rem);
  background: #000;
  box-shadow: var(--shadow);
}

.movement-photo img {
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  filter: grayscale(1) contrast(1.25);
}

.engagement-badge {
  position: absolute;
  left: -1.5rem;
  bottom: -1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: var(--shadow);
}

.engagement-badge .icon {
  color: var(--yellow);
}

.engagement-badge strong,
.engagement-badge span {
  display: block;
}

.engagement-badge strong {
  font-size: 0.95rem;
}

.engagement-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.join-section {
  z-index: 1;
  margin-top: -2rem;
  padding-top: clamp(6rem, 11vw, 10rem);
  border-radius: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem) 0 0;
  background: #000;
}

.join-grid {
  width: min(1024px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.mission-list {
  display: grid;
  gap: 1rem;
  width: fit-content;
  margin-top: 2rem;
}

.mission-list div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.mission-list span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.form-card {
  position: relative;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
}

.progress-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.38rem;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
  background: rgba(255, 255, 255, 0.05);
}

.progress-track span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(252, 190, 38, 0.5);
  transition: width 0.4s ease;
}

.form-panel {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.form-panel.is-hidden,
.is-hidden {
  display: none !important;
}

.form-heading,
.strategy-heading {
  margin-bottom: 0.25rem;
}

.form-heading h3,
.strategy-heading h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
}

.form-heading p,
.strategy-heading p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.85rem;
}

.field-label {
  display: grid;
  gap: 0.55rem;
}

.field-label span,
.choice-set legend {
  padding-left: 0.5rem;
  color: var(--muted-soft);
  font-size: clamp(0.68rem, 1vw, 0.75rem);
  font-weight: 800;
}

.field-label input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: 0;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.field-label input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field-label input:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(252, 190, 38, 0.3);
}

.strategy-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.icon-button {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: background 0.25s ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.choice-set {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.75rem;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.radio-grid label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.radio-grid label:hover,
.radio-grid label:focus-within {
  border-color: rgba(252, 190, 38, 0.6);
  box-shadow: 0 0 15px rgba(252, 190, 38, 0.2);
}

.radio-grid input {
  accent-color: var(--yellow);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.interest-chip {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-soft);
  font-size: 0.76rem;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.interest-chip:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.interest-chip.is-selected {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #000;
  box-shadow: 0 0 10px rgba(252, 190, 38, 0.3);
}

.form-actions {
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.submit-button {
  width: 100%;
  border-radius: 1rem;
  min-height: 3.65rem;
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
}

.submit-button[disabled] {
  opacity: 0.82;
  pointer-events: none;
}

.loader-icon {
  display: none;
}

.submit-button.is-loading .loader-icon {
  display: block;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-message {
  width: 100%;
  min-height: 3.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(252, 190, 38, 0.4);
  border-radius: 1rem;
  background: #181818;
  color: var(--yellow);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 800;
  box-shadow: 0 0 20px rgba(252, 190, 38, 0.2);
}

.social-section {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #020202;
}

.social-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.social-heading .pill-kicker {
  margin-inline: auto;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 2rem);
}

.social-card {
  width: clamp(8rem, 13vw, 10rem);
  height: clamp(8rem, 13vw, 10rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(1rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-4px);
}

.social-card .icon {
  width: clamp(2rem, 4vw, 2.5rem);
  height: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.2rem;
  transition: transform 0.3s ease;
}

.social-card:hover .icon {
  transform: translateY(-4px) scale(1.1);
}

.social-card strong {
  color: currentColor;
  font-family: var(--display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
}

.social-card span {
  color: currentColor;
  opacity: 0.55;
  font-size: 0.72rem;
  font-weight: 700;
}

.social-card.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #000;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.social-card.instagram:hover {
  background: linear-gradient(135deg, #f09433, #dc2743 50%, #bc1888);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 30px rgba(220, 39, 67, 0.4);
}

.social-card.tiktok:hover,
.social-card.x-feed:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.social-card.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.final-cta-section {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 10rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #020202;
  text-align: center;
}

.final-cta {
  max-width: 56rem;
}

.final-star {
  width: clamp(2rem, 4vw, 3rem);
  height: clamp(2rem, 4vw, 3rem);
  margin: 0 auto 2rem;
  color: var(--yellow);
  animation: starPulse 2.2s ease-in-out infinite;
}

.final-cta h2 {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  opacity: 0.82;
}

.footer-brand .icon {
  width: 1rem;
  height: 1rem;
  color: var(--yellow);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  color: #666;
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-links a {
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  margin: 0;
  color: #333;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .two-column,
  .movement-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .section-copy {
    max-width: 45rem;
    margin-inline: auto;
    text-align: center;
  }

  .section-kicker,
  .pill-kicker,
  .dark-pill {
    margin-inline: auto;
  }

  .line-kicker {
    justify-content: center;
  }

  .about-text,
  .feature-list,
  .mission-list {
    text-align: left;
  }

  .about-text,
  .mission-list {
    margin-inline: auto;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
    order: 2;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-line {
    margin-inline: auto;
  }

  .hero-visual {
    order: 1;
    min-height: auto;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
  }

  .hero-gradient-mask {
    display: none;
  }

  .hero-photo {
    width: min(85%, 400px);
    aspect-ratio: 3 / 4;
  }

  .movement-badge {
    top: 2rem;
    right: max(0rem, calc(50% - 14rem));
    transform-origin: top right;
  }

  .movement-copy,
  .join-section .section-copy {
    text-align: center;
  }

  .movement-copy p {
    margin-inline: auto;
  }

  .stats-row {
    justify-content: center;
    text-align: center;
  }

  .movement-photo {
    max-width: 24rem;
  }

  .join-grid {
    width: min(680px, calc(100% - 32px));
  }

  .bordered-copy {
    padding-left: 0;
    padding-top: 1rem;
    margin-inline: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

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

  .menu-button {
    display: grid;
  }

  .site-nav {
    padding-inline: 1rem;
  }

  .nav-pill {
    height: 4rem;
  }

  .hero-section {
    align-items: flex-start;
    padding-top: 5.75rem;
    padding-bottom: 5rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-pill {
    max-width: 100%;
    justify-content: center;
  }

  .hero-button {
    width: min(100%, 24rem);
  }

  .media-heading {
    flex-direction: column;
    text-align: center;
  }

  .ghost-button {
    width: min(100%, 24rem);
  }

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

  .media-card {
    aspect-ratio: 3 / 4;
  }

  .play-layer {
    opacity: 1;
    background: rgba(0, 0, 0, 0.35);
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container,
  .join-grid {
    width: min(100%, calc(100% - 28px));
  }

  .site-nav {
    padding-inline: 0.75rem;
  }

  .brand {
    font-size: 1.15rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero-photo {
    width: min(88%, 320px);
  }

  .movement-badge {
    top: 1.2rem;
    right: 0;
    padding: 0.9rem;
    min-width: 6rem;
    border-radius: 1.25rem;
  }

  .accordion-trigger {
    align-items: flex-start;
  }

  .accordion-title-wrap {
    gap: 0.75rem;
  }

  .accordion-panel p {
    padding-left: 4.25rem;
  }

  .profile-caption {
    text-align: center;
  }

  .media-grid {
    gap: 0.75rem;
  }

  .movement-photo {
    max-width: 18rem;
  }

  .engagement-badge {
    left: -0.55rem;
    right: auto;
    bottom: -1rem;
    padding: 0.75rem;
    transform: scale(0.92);
    transform-origin: bottom left;
  }

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

  .social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .social-card {
    width: 100%;
    height: auto;
    min-height: 9rem;
  }

  .social-card.youtube {
    grid-column: 1 / -1;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
