:root {
  --bg: #050505;
  --bg-soft: #090908;
  --surface: #0d0d0c;
  --surface-strong: #12110e;
  --gold: #d6a63f;
  --gold-light: #f4d892;
  --gold-deep: #8f6318;
  --text: #f7f3eb;
  --muted: #aaa398;
  --success: #8fc7a1;
  --line: rgba(214, 166, 63, 0.2);
  --line-strong: rgba(244, 216, 146, 0.38);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(214, 166, 63, 0.07), transparent 420px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 84px 84px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

img,
video {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 850;
}

h1 {
  margin-bottom: 24px;
  font-size: 4.6rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.1rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 40px;
}

.section-heading > p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.section-kicker,
.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker::before,
.portal-badge::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 28px));
  min-height: 66px;
  margin: 14px auto 0;
  padding: 7px 10px;
  border: 1px solid rgba(244, 216, 146, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, 0.82);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(214, 166, 63, 0.11), transparent 42%);
  pointer-events: none;
}

.logo {
  display: grid;
  width: 92px;
  min-height: 50px;
  place-items: center;
  border-radius: 6px;
  transition: transform 180ms ease, filter 180ms ease;
}

.logo:hover {
  filter: drop-shadow(0 0 18px rgba(214, 166, 63, 0.25));
  transform: translateY(-1px);
}

.logo-mark {
  display: grid;
  width: 86px;
  height: 46px;
  place-items: center;
}

.logo-mark img {
  display: block;
  width: 86px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(214, 166, 63, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  min-height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  color: #c7c0b5;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 40px;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-light);
  background: rgba(214, 166, 63, 0.08);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  margin-left: 6px;
  padding: 0 15px;
  border: 1px solid rgba(244, 216, 146, 0.35);
  color: #161107;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 28px rgba(214, 166, 63, 0.14);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #161107;
  background: linear-gradient(135deg, #ffe8ad, #dda841);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.portal-hero {
  min-height: calc(100svh - 88px);
  padding-top: 58px;
  padding-bottom: 66px;
}

.portal-hero-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.portal-hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.portal-hero-copy h1 {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.portal-hero-text {
  max-width: 760px;
  margin: 0 auto;
  color: #c5beb2;
  font-size: 1.08rem;
  line-height: 1.7;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #171107;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 42px rgba(214, 166, 63, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #171107;
  box-shadow: 0 22px 50px rgba(214, 166, 63, 0.27);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.025);
}

.button-large {
  min-height: 56px;
  padding: 0 26px;
}

.portal-security-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 16px auto 0;
  color: #8f897f;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: left;
}

.portal-security-note span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(143, 199, 161, 0.45);
}

.hero-video-block {
  width: min(100%, 800px);
  margin: 30px auto 0;
}

.hero-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(244, 216, 146, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 166, 63, 0.11), transparent 44%),
    #080807;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.5), 0 0 48px rgba(214, 166, 63, 0.08);
}

.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 7;
  border: 1px solid rgba(244, 216, 146, 0.09);
  border-radius: 5px;
  pointer-events: none;
}

.hero-video-poster,
.hero-video-shell iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video-poster {
  z-index: 2;
  object-fit: cover;
  object-position: center;
  background: #0a0907;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.hero-video-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(6, 6, 5, 0.08), rgba(6, 6, 5, 0.34));
  transition: opacity 240ms ease, visibility 240ms ease;
}

.hero-video-shell iframe {
  z-index: 4;
  opacity: 0;
  background: transparent;
  transition: opacity 220ms ease;
}

.hero-video-shell.is-loaded iframe {
  opacity: 1;
}

.hero-video-shell.is-loaded .hero-video-poster,
.hero-video-shell.is-loaded .hero-video-shade {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-video-shell.is-loading .hero-video-play,
.hero-video-shell.is-loaded .hero-video-play {
  opacity: 0;
  pointer-events: none;
}

.hero-video-shell.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 2px solid rgba(244, 216, 146, 0.28);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: hero-video-spin 800ms linear infinite;
}

.hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  display: grid;
  width: 62px;
  height: 62px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(244, 216, 146, 0.48);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(7, 7, 6, 0.72);
  box-shadow: 0 0 34px rgba(214, 166, 63, 0.22);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.hero-video-play:hover,
.hero-video-play:focus-visible {
  background: rgba(19, 15, 8, 0.9);
  transform: translate(-50%, -50%) scale(1.05);
}

.hero-video-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.hero-video-empty {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.hero-video-empty strong {
  color: var(--gold-light);
  font-size: 1.05rem;
}

.hero-community-button {
  width: min(100%, 700px);
  min-height: 58px;
  margin: 18px auto 0;
  font-size: 0.9rem;
}

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

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 12, 0.84);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 13px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-item span {
  color: #d8d2c8;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
}

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

.guidance-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid rgba(244, 216, 146, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.guidance-card:hover {
  border-color: rgba(244, 216, 146, 0.32);
  background: linear-gradient(180deg, rgba(214, 166, 63, 0.07), rgba(255, 255, 255, 0.014));
  transform: translateY(-4px);
}

.card-index {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-light);
  background: rgba(214, 166, 63, 0.07);
  font-size: 0.74rem;
  font-weight: 900;
}

.guidance-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.community-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(214, 166, 63, 0.12), transparent 42%),
    var(--surface);
}

.community-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 0.72fr);
  gap: 88px;
  align-items: center;
}

.community-copy p {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: 1.04rem;
}

.community-copy small {
  display: block;
  max-width: 570px;
  margin-top: 14px;
  color: #8d877e;
  line-height: 1.55;
}

.community-benefits {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  list-style: none;
}

.community-benefits li {
  position: relative;
  padding: 17px 8px 17px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #d7d0c6;
  font-size: 0.9rem;
  font-weight: 700;
}

.community-benefits li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(143, 199, 161, 0.38);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: 80px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list > li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 6px;
}

.process-list p {
  margin-bottom: 0;
}

.account-guidance-section {
  padding-top: 54px;
  padding-bottom: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.account-guidance-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.account-guidance-copy .section-kicker,
.account-guidance-copy h2,
.account-guidance-copy p {
  margin-bottom: 0;
}

.account-guidance-copy p {
  max-width: 570px;
}

.security-alert-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.security-alert {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(244, 216, 146, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(110deg, rgba(214, 166, 63, 0.1), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.security-alert-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(214, 166, 63, 0.08);
}

.security-alert-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.security-alert h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.security-alert p {
  max-width: 900px;
  margin-bottom: 0;
}

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

.real-content-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(214, 166, 63, 0.14), transparent 54%),
    var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

.real-content-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.real-content-card span,
.real-content-card small {
  color: #8f897f;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.real-content-card strong {
  margin: 10px 0 22px;
  color: var(--text);
  font-size: 1.2rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.about-media {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 5, 5, 0.72));
  pointer-events: none;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}

.about-placeholder {
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: center;
  gap: 12px;
  background:
    linear-gradient(145deg, rgba(214, 166, 63, 0.12), transparent 50%),
    #0d0d0c;
}

.about-placeholder span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(244, 216, 146, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(214, 166, 63, 0.07);
  font-size: 1.5rem;
  font-weight: 900;
}

.about-placeholder strong {
  color: rgba(247, 243, 235, 0.8);
  font-size: 0.86rem;
  letter-spacing: 0;
}

.about-copy {
  max-width: 650px;
}

.about-copy > p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.text-link {
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(244, 216, 146, 0.35);
  text-underline-offset: 5px;
}

.faq-section {
  padding-top: 74px;
}

.faq-list {
  max-width: 900px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 52px 20px 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 1px;
  background: var(--gold-light);
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  content: "";
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item > div {
  max-width: 760px;
  padding: 0 44px 24px 0;
}

.faq-item p {
  margin-bottom: 0;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.footer-brand strong {
  color: var(--gold-light);
  font-size: 1.16rem;
}

.footer-brand p {
  margin: 8px 0 0;
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-links a {
  color: #b9b2a7;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal p {
  max-width: 720px;
  margin-bottom: 0;
  color: #777269;
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-legal span {
  color: #8d877e;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-page {
  min-height: calc(100vh - 100px);
  padding: 120px 0 80px;
}

.site-page-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .site-nav a {
    padding: 0 7px;
    font-size: 0.73rem;
  }

  .community-inner {
    gap: 54px;
  }

  .account-guidance-copy {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  }

  .account-guidance-copy .button {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 92px;
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 7, 6, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.86rem;
    line-height: 48px;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .trust-item:first-child,
  .trust-item:last-child {
    padding: 24px 20px;
  }

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

  .guidance-card {
    min-height: 0;
  }

  .card-index {
    margin-bottom: 34px;
  }

  .community-inner,
  .process-section,
  .about-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-section .section-heading {
    margin-bottom: 0;
  }

  .about-media {
    width: min(100%, 390px);
  }
}

@media (max-width: 680px) {
  body {
    background-size: auto, 64px 64px, auto;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .section {
    width: calc(100% - 28px);
    padding: 70px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    margin-top: 10px;
  }

  .logo {
    width: 78px;
    min-height: 46px;
  }

  .logo-mark,
  .logo-mark img {
    width: 74px;
    height: 40px;
  }

  .site-nav {
    top: 82px;
    right: 10px;
    left: 10px;
  }

  .portal-hero {
    min-height: auto;
    padding-top: 66px;
    padding-bottom: 68px;
  }

  .portal-hero-text {
    font-size: 1rem;
  }

  .hero-video-block {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-video-play {
    width: 56px;
    height: 56px;
  }

  .portal-security-note {
    justify-content: flex-start;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 82px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .guidance-card {
    padding: 24px;
  }

  .community-inner {
    gap: 38px;
  }

  .account-guidance-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .account-guidance-copy .button {
    grid-column: auto;
    width: 100%;
  }

  .security-alert {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .security-alert h2 {
    font-size: 1.7rem;
  }

  .real-content-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 34px;
  }

  .about-media {
    width: 100%;
    max-height: 520px;
  }

  .about-links {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    padding: 10px 0;
    text-align: center;
  }

  .faq-item summary {
    min-height: 70px;
    padding-right: 42px;
    font-size: 0.95rem;
  }

  .site-footer {
    width: calc(100% - 28px);
    padding-top: 34px;
  }

  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .site-page {
    padding: 92px 0 60px;
  }

  .site-page-container {
    width: calc(100% - 28px);
  }
}

/* Landing page refinement: institutional rhythm and compact media. */
.movement-video-player video,
.movement-youtube-player iframe {
  pointer-events: none;
}

.safety-card {
  cursor: default;
}

.safety-icon {
  width: 50px;
  height: 50px;
}

.safety-icon svg {
  width: 26px;
  height: 26px;
}

.feedback-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1100px);
  height: auto;
  margin: 0 auto;
  gap: 14px;
  overflow: visible;
}

.feedback-slide {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.feedback-item {
  display: flex;
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(214, 166, 63, 0.07), transparent 42%),
    #0a0a09;
}

.feedback-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.feedback-item:hover img {
  filter: brightness(1.05);
  transform: none;
}

.feedback-cta-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}

.feedback-cta-wrap .section-cta {
  display: flex;
  margin-right: auto;
  margin-left: auto;
}

.discovery-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(214, 166, 63, 0.2);
}

.discovery-card {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.8fr) minmax(0, 1.2fr);
  min-height: 0;
  padding: 30px 0;
  align-items: center;
  column-gap: 24px;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(214, 166, 63, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.discovery-card:hover {
  border-color: rgba(244, 216, 146, 0.34);
  background: linear-gradient(90deg, rgba(214, 166, 63, 0.045), transparent 76%);
  box-shadow: none;
  transform: none;
}

.discovery-index {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  font-size: 0.82rem;
}

.discovery-card h3 {
  grid-column: 2;
  margin: 0;
  font-size: 1.55rem;
}

.discovery-card > p {
  grid-column: 2;
  margin: 10px 0 0;
}

.discovery-card .content-media-grid,
.discovery-card .compact-media-grid {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin-top: 0;
}

.discovery-card-community {
  grid-template-columns: 72px minmax(0, 1fr);
}

.structure-section {
  display: block;
  padding-top: 92px;
  padding-bottom: 94px;
  text-align: center;
}

.structure-copy,
.structure-copy:last-child {
  width: min(100%, 940px);
  max-width: 940px;
  margin: 0 auto;
}

.structure-copy h2 {
  max-width: none;
  margin-bottom: 20px;
  font-size: 3.35rem;
}

.structure-copy p {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(247, 243, 235, 0.84);
  font-size: 1.22rem;
  line-height: 1.65;
}

.structure-copy small {
  margin-top: 18px;
}

.adm-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  width: min(100%, 1100px);
  margin: 44px auto 0;
  gap: 22px 14px;
}

.adm-member {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.adm-photo {
  width: 86px;
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(244, 216, 146, 0.3);
  border-radius: 50%;
  background: rgba(214, 166, 63, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.adm-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.adm-member figcaption {
  margin-top: 10px;
}

.adm-member figcaption strong,
.adm-member figcaption span {
  display: block;
  overflow-wrap: anywhere;
}

.adm-member figcaption strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.adm-member figcaption span {
  margin-top: 3px;
  color: rgba(206, 197, 181, 0.66);
  font-size: 0.72rem;
}

.process-inner .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.landing-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 44px;
}

.landing-process::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 166, 63, 0.55) 12%, rgba(214, 166, 63, 0.55) 88%, transparent);
}

.landing-process li,
.landing-process li:last-child {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0 18px 16px;
  border: 0;
  text-align: center;
}

.landing-process li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(244, 216, 146, 0.4);
  border-radius: 50%;
  background: #0c0c0a;
  box-shadow: 0 0 24px rgba(214, 166, 63, 0.1);
}

.landing-process h3 {
  margin-bottom: 0;
}

.team-copy {
  margin: 0 auto;
  text-align: center;
}

.team-copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.team-visual-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.team-infrastructure {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
  margin-top: 42px;
}

.support-panel {
  padding: 28px;
  border: 1px solid rgba(214, 166, 63, 0.2);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(214, 166, 63, 0.07), rgba(10, 10, 9, 0.96) 48%);
}

.support-panel:only-child {
  grid-column: 1 / -1;
  width: min(100%, 820px);
  margin: 0 auto;
}

.support-panel > p {
  margin-bottom: 0;
  color: rgba(247, 243, 235, 0.82);
  font-size: 1.04rem;
}

.support-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.support-media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(214, 166, 63, 0.16);
  border-radius: 5px;
}

.rules-panel > .section-kicker {
  margin-bottom: 18px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rule-item {
  padding: 20px;
  border-top: 1px solid rgba(244, 216, 146, 0.28);
  background: rgba(255, 255, 255, 0.015);
}

.rule-item > span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rule-item h3 {
  margin: 12px 0 0;
  font-size: 1.05rem;
}

.rule-item p {
  margin: 10px 0 0;
  color: rgba(206, 197, 181, 0.74);
  font-size: 0.9rem;
}

.rule-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 16px;
  border-radius: 5px;
}

.team-assurance {
  max-width: 900px;
  margin: 46px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(214, 166, 63, 0.28);
  border-left: 0;
  text-align: center;
}

.landing-about {
  grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.34fr);
  width: min(1280px, calc(100% - 40px));
  gap: 64px;
}

.landing-about .about-media {
  max-width: 520px;
}

.landing-about .about-copy {
  max-width: none;
  padding-top: 4px;
}

.instagram-handle {
  margin: 24px 0 0;
  color: rgba(206, 197, 181, 0.72);
  font-size: 0.98rem;
  user-select: text;
}

.instagram-handle span {
  color: var(--gold-light);
  font-weight: 800;
}

.faq-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.faq-list {
  width: min(100%, 900px);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1080px) {
  .feedback-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .discovery-card {
    grid-template-columns: 60px minmax(200px, 0.85fr) minmax(0, 1.15fr);
  }

  .discovery-card-community {
    grid-template-columns: 60px minmax(0, 1fr);
  }

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

@media (max-width: 900px) {
  .landing-about {
    grid-template-columns: 1fr;
  }

  .landing-about .about-media {
    margin-right: auto;
    margin-left: auto;
  }

  .team-infrastructure {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .safety-icon {
    width: 44px;
    height: 44px;
  }

  .safety-icon svg {
    width: 23px;
    height: 23px;
  }

  .feedback-gallery {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    gap: 12px;
    padding: 2px 7% 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 7%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-inline: contain;
  }

  .feedback-gallery::-webkit-scrollbar {
    display: none;
  }

  .feedback-slide {
    display: block;
    flex: 0 0 84%;
    width: 84%;
    min-width: 0;
    max-width: none;
    scroll-snap-align: center;
  }

  .feedback-item {
    width: 100%;
    max-width: none;
    padding: 5px;
    touch-action: pan-x pan-y;
  }

  .feedback-item img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .discovery-grid {
    margin-top: 26px;
  }

  .discovery-card,
  .discovery-card-community {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 24px 0;
    column-gap: 12px;
  }

  .discovery-index {
    grid-row: 1 / span 2;
  }

  .discovery-card h3,
  .discovery-card > p {
    grid-column: 2;
  }

  .discovery-card .content-media-grid,
  .discovery-card .compact-media-grid {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 18px;
  }

  .structure-section {
    padding-top: 60px;
    padding-bottom: 62px;
  }

  .structure-copy h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .structure-copy p {
    font-size: 1.02rem;
  }

  .adm-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 32px;
    gap: 18px 8px;
  }

  .adm-photo {
    width: min(100%, 72px);
  }

  .adm-member figcaption strong {
    font-size: 0.72rem;
  }

  .adm-member figcaption span {
    font-size: 0.65rem;
  }

  .landing-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }

  .landing-process::before {
    top: 23px;
    right: auto;
    bottom: 40px;
    left: 23px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(214, 166, 63, 0.55), rgba(214, 166, 63, 0.12));
  }

  .landing-process li,
  .landing-process li:last-child {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 0 0 28px;
    column-gap: 16px;
    text-align: left;
  }

  .landing-process li > span {
    grid-column: 1;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .landing-process li > div {
    grid-column: 2;
    padding-top: 4px;
  }

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

  .support-panel {
    padding: 22px 20px;
  }

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

  .landing-about {
    width: min(1280px, calc(100% - 30px));
  }

  .landing-about .about-media {
    width: min(88%, 380px);
    margin-right: auto;
    margin-left: auto;
  }

  .landing-about .about-copy {
    width: 100%;
  }

  .faq-section .section-heading,
  .faq-list {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .feedback-gallery {
    grid-template-columns: 1fr;
  }

  .feedback-slide {
    width: min(100%, 260px);
    margin: 0 auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Community landing page */
.landing-hero {
  min-height: auto;
  padding-top: 64px;
  padding-bottom: 76px;
  text-align: center;
}

.landing-hero-copy {
  width: min(100%, 980px);
  margin: 0 auto;
}

.landing-hero h1 {
  max-width: 940px;
  margin: 20px auto 17px;
  font-size: 4.35rem;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.landing-hero-lead,
.landing-hero-support {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.landing-hero-lead {
  color: rgba(247, 243, 235, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.community-proof {
  margin: 15px auto 11px;
  color: rgba(247, 243, 235, 0.72);
  font-size: 1.08rem;
  font-weight: 650;
}

.community-proof strong {
  color: var(--gold-light);
  font-size: 1.24rem;
  font-weight: 900;
}

.landing-hero-support {
  color: rgba(206, 197, 181, 0.78);
  font-size: 1rem;
}

.landing-video-wrap,
.section-media {
  width: min(100%, 900px);
  margin: 40px auto 0;
}

.media-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(244, 216, 146, 0.3);
  border-radius: 7px;
  background: #080807;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.48), 0 0 42px rgba(214, 166, 63, 0.08);
}

.media-player::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 7;
  border: 1px solid rgba(244, 216, 146, 0.08);
  border-radius: 4px;
  pointer-events: none;
}

.media-poster,
.media-player iframe,
.media-player video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-poster {
  z-index: 2;
  object-fit: cover;
  background: #0a0907;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.media-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.02), rgba(5, 5, 4, 0.36));
  transition: opacity 220ms ease, visibility 220ms ease;
}

.media-player iframe {
  z-index: 4;
  opacity: 0;
  transition: opacity 220ms ease;
}

.media-player video {
  z-index: 4;
  object-fit: contain;
  background: #070706;
}

.media-player.is-loaded iframe {
  opacity: 1;
}

.media-player.is-loaded .media-poster,
.media-player.is-loaded .media-shade,
.media-player.is-loading .media-play,
.media-player.is-loaded .media-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.media-player.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 2px solid rgba(244, 216, 146, 0.28);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: hero-video-spin 800ms linear infinite;
}

.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  display: grid;
  width: 68px;
  height: 68px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(244, 216, 146, 0.52);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(7, 7, 6, 0.78);
  box-shadow: 0 0 34px rgba(214, 166, 63, 0.24);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.media-play:hover,
.media-play:focus-visible {
  background: rgba(25, 19, 8, 0.94);
  transform: translate(-50%, -50%) scale(1.05);
}

.media-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
}

.video-caption {
  margin: 16px 0 0;
  color: rgba(206, 197, 181, 0.72);
  font-size: 0.92rem;
}

.hero-community-cta,
.section-cta {
  width: min(100%, 720px);
  min-height: 62px;
  margin: 22px auto 0;
}

.safety-section {
  position: relative;
  padding-top: 88px;
  padding-bottom: 94px;
  isolation: isolate;
}

.safety-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: max(20px, calc((100vw - 1180px) / 2));
  z-index: -1;
  width: 260px;
  height: 310px;
  border: 1px solid rgba(214, 166, 63, 0.05);
  clip-path: polygon(50% 0, 100% 17%, 89% 72%, 50% 100%, 11% 72%, 0 17%);
  background: linear-gradient(145deg, rgba(214, 166, 63, 0.035), transparent 65%);
  pointer-events: none;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.safety-card {
  position: relative;
  min-height: 272px;
  padding: 28px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(214, 166, 63, 0.2);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(214, 166, 63, 0.075), rgba(11, 11, 10, 0.96) 45%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.safety-card:hover {
  border-color: rgba(244, 216, 146, 0.34);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34), 0 0 28px rgba(214, 166, 63, 0.055);
  transform: translateY(-3px);
}

.safety-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(214, 166, 63, 0.09);
  border-radius: 50%;
}

.step-number {
  display: block;
  color: rgba(244, 216, 146, 0.92);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.safety-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 216, 146, 0.2);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(214, 166, 63, 0.065);
}

.safety-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.safety-card h3 {
  max-width: 290px;
  margin-top: 34px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.safety-card p {
  margin-top: 14px;
  color: rgba(206, 197, 181, 0.76);
}

.safety-note {
  max-width: 820px;
  margin: 30px auto 0;
  color: rgba(247, 243, 235, 0.82);
  text-align: center;
}

.movement-section,
.process-band,
.structure-band,
.final-cta-section {
  position: relative;
  border-top: 1px solid rgba(214, 166, 63, 0.09);
  border-bottom: 1px solid rgba(214, 166, 63, 0.09);
  background: #0a0a09;
}

.movement-section::before,
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0, rgba(214, 166, 63, 0.075), transparent 36%);
}

.movement-inner {
  position: relative;
  z-index: 1;
  padding-top: 94px;
  padding-bottom: 98px;
}

.movement-inner .section-heading {
  max-width: 800px;
}

.movement-inner .section-heading p + p {
  margin-top: 12px;
}

.movement-section .section-media {
  width: min(100%, 400px);
  margin-top: 36px;
}

.movement-section .section-media .media-player {
  aspect-ratio: 9 / 16;
}

.movement-section .section-media .media-poster,
.movement-section .section-media video {
  object-fit: contain;
}

.movement-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(244, 216, 146, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 50% 42%, rgba(214, 166, 63, 0.16), transparent 38%),
    linear-gradient(145deg, #11100d, #070706 68%);
  transition: opacity 220ms ease, visibility 220ms ease;
  pointer-events: none;
}

.movement-video-player.is-ready .movement-video-placeholder {
  opacity: 0;
  visibility: hidden;
}

.movement-proof {
  color: var(--gold-light);
  font-size: 1.14em;
  font-weight: 900;
}

.movement-closing {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(247, 243, 235, 0.84);
  text-align: center;
}

.feedback-area {
  margin-top: 86px;
}

.feedback-heading {
  margin-bottom: 26px;
}

.feedback-heading h3 {
  margin-top: 10px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.feedback-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.feedback-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: fit-content;
  max-width: min(100%, 460px);
}

.feedback-item {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(214, 166, 63, 0.32);
  border-radius: 12px;
  background: rgba(13, 13, 12, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  cursor: zoom-in;
}

.content-media-grid > img,
.compact-media-grid img,
.team-visual-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.feedback-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 260ms ease, filter 260ms ease;
}

.feedback-item:hover img {
  filter: brightness(1.06);
  transform: scale(1.025);
}

.discovery-section {
  padding-top: 94px;
  padding-bottom: 100px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  margin-top: 38px;
}

.discovery-card {
  position: relative;
  min-height: 236px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(214, 166, 63, 0.17);
  border-radius: 7px;
  background: linear-gradient(160deg, rgba(214, 166, 63, 0.065), rgba(12, 12, 11, 0.96) 38%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.discovery-card:hover {
  border-color: rgba(244, 216, 146, 0.32);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3), 0 0 26px rgba(214, 166, 63, 0.045);
  transform: translateY(-3px);
}

.discovery-index {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
}

.discovery-card h3 {
  font-size: 1.46rem;
  line-height: 1.16;
}

.discovery-card > p {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(206, 197, 181, 0.78);
}

.discovery-card > small {
  display: block;
  margin-top: 20px;
  color: rgba(206, 197, 181, 0.62);
}

.content-media-grid,
.compact-media-grid,
.team-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.content-media-grid > img,
.compact-media-grid img,
.team-visual-grid img {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(214, 166, 63, 0.16);
  border-radius: 5px;
  background: #080807;
}

.content-video {
  grid-column: span 2;
}

.team-visual-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-with-decoration,
.movement-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-with-decoration > :not(.section-decoration) {
  position: relative;
  z-index: 1;
}

.section-decoration {
  position: absolute;
  top: 50%;
  z-index: 0;
  width: min(32vw, 470px);
  height: 78%;
  opacity: 0.14;
  filter: saturate(0.82) contrast(1.04) drop-shadow(0 0 42px rgba(214, 166, 63, 0.14));
  pointer-events: none;
  transform: translateY(-50%);
}

.section-decoration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.decoration-right {
  right: -72px;
}

.decoration-left {
  left: -82px;
}

.structure-band {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(214, 166, 63, 0.075), transparent 42%),
    #090908;
}

.structure-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: start;
  padding-top: 82px;
  padding-bottom: 84px;
}

.structure-copy:last-child {
  grid-column: 1 / -1;
  max-width: 760px;
}

.structure-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
}

.structure-copy h2 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: 2.75rem;
  line-height: 1.06;
}

.structure-copy p {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(206, 197, 181, 0.8);
}

.structure-copy small {
  display: block;
  margin-top: 22px;
  color: rgba(206, 197, 181, 0.62);
  line-height: 1.55;
}

.structure-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.structure-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(214, 166, 63, 0.18);
  border-radius: 6px;
  background: #080807;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: border-color 200ms ease, transform 200ms ease;
}

.structure-gallery img:hover {
  border-color: rgba(244, 216, 146, 0.38);
  transform: translateY(-3px);
}

.process-inner {
  padding-top: 86px;
  padding-bottom: 90px;
}

.landing-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.landing-process li {
  display: block;
  min-height: 218px;
  padding: 10px 28px 24px;
  border-left: 1px solid rgba(214, 166, 63, 0.18);
}

.landing-process li:last-child {
  border-right: 1px solid rgba(214, 166, 63, 0.18);
}

.landing-process li > span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 900;
}

.landing-process h3 {
  font-size: 1.2rem;
}

.landing-process p {
  margin-top: 13px;
  color: rgba(206, 197, 181, 0.74);
}

.simple-line {
  margin: 32px 0 0;
  color: var(--gold-light);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
}

.team-section {
  padding-top: 90px;
  padding-bottom: 96px;
}

.team-copy {
  max-width: 820px;
}

.team-copy h2 {
  margin-top: 16px;
  font-size: 3.2rem;
  line-height: 1.05;
}

.team-copy p {
  margin-top: 15px;
  color: rgba(206, 197, 181, 0.78);
}

.team-visual-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 38px;
}

.team-visual-grid img {
  aspect-ratio: 4 / 5;
}

.team-assurance {
  max-width: 840px;
  margin: 42px 0 0 auto;
  padding-left: 38px;
  border-left: 2px solid rgba(214, 166, 63, 0.45);
}

.team-assurance p {
  color: rgba(247, 243, 235, 0.86);
  font-size: 1.08rem;
}

.team-assurance p + p {
  margin-top: 9px;
}

.team-assurance .button {
  margin-top: 24px;
}

.landing-about {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 96px;
}

.landing-about .about-media {
  width: 100%;
  max-width: 455px;
}

.landing-about .about-copy {
  max-width: 690px;
  padding-top: 8px;
}

.landing-about .about-copy h2 {
  margin-top: 14px;
  font-size: 3.25rem;
  line-height: 1.06;
}

.about-name {
  display: block;
  margin-top: 22px;
  color: rgba(247, 243, 235, 0.94);
  font-size: 1.25rem;
}

.about-bio {
  margin-top: 20px;
}

.about-bio p {
  color: rgba(206, 197, 181, 0.78);
}

.about-bio p + p {
  margin-top: 14px;
}

.creator-proof {
  display: block;
  margin: 24px 0;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.final-cta-inner {
  padding-top: 88px;
  padding-bottom: 92px;
  text-align: center;
}

.final-cta-inner h2 {
  max-width: 780px;
  margin: 18px auto 24px;
  font-size: 3.55rem;
  line-height: 1.04;
}

.final-cta-inner p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(206, 197, 181, 0.79);
}

.final-cta-inner p + p {
  margin-top: 12px;
}

.final-cta-inner .button {
  width: min(100%, 720px);
  min-height: 64px;
  margin-top: 30px;
}

.image-lightbox {
  width: min(92vw, 920px);
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(244, 216, 146, 0.32);
  border-radius: 7px;
  background: #080807;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.image-lightbox img {
  display: block;
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(244, 216, 146, 0.38);
  border-radius: 50%;
  color: var(--gold-light);
  background: #11100d;
  font-size: 1.45rem;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.about-media.image-load-failed::before {
  content: "ZX";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(214, 166, 63, 0.1), #0b0b0a 54%);
  font-size: 2rem;
  font-weight: 900;
}

.safety-section .section-heading h2,
.movement-inner .section-heading h2,
.discovery-section .section-heading h2,
.process-inner .section-heading h2,
.faq-section .section-heading h2 {
  font-size: 3rem;
  line-height: 1.07;
}

@media (max-width: 1080px) {
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-card {
    min-height: 0;
  }

  .feedback-gallery,
  .content-media-grid,
  .compact-media-grid,
  .team-visual-grid,
  .team-visual-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .discovery-card:last-child {
    grid-column: 1 / -1;
  }

  .structure-section {
    gap: 38px;
  }

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

@media (max-width: 900px) {
  .landing-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .landing-hero h1 {
    font-size: 3rem;
  }

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

  .discovery-card-wide {
    grid-column: auto;
  }

  .structure-section,
  .landing-about {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .structure-copy {
    max-width: 720px;
  }

  .landing-about .about-media {
    width: min(100%, 440px);
  }

  .team-copy h2,
  .landing-about .about-copy h2 {
    font-size: 2.85rem;
  }

  .final-cta-inner h2 {
    font-size: 3rem;
  }

  .landing-process {
    grid-template-columns: 1fr;
  }

  .landing-process li,
  .landing-process li:last-child {
    display: grid;
    grid-template-columns: 62px 1fr;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(214, 166, 63, 0.14);
    border-left: 0;
  }

  .landing-process li > span {
    margin: 0;
  }

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

@media (max-width: 680px) {
  .safety-section,
  .movement-inner,
  .discovery-section,
  .structure-section,
  .process-inner,
  .team-section,
  .landing-about,
  .final-cta-inner {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .landing-hero {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 50px;
  }

  .landing-hero h1 {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 6.85vw, 1.86rem);
    line-height: 1.055;
  }

  .landing-hero-lead {
    max-width: 390px;
    margin-bottom: 0;
    font-size: 1.02rem;
  }

  .community-proof {
    margin-top: 13px;
    margin-bottom: 9px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .community-proof strong {
    display: block;
    font-size: 1.08rem;
  }

  .landing-video-wrap,
  .section-media {
    margin-top: 24px;
  }

  .movement-section .section-media {
    width: 90%;
    max-width: 390px;
    margin-top: 24px;
  }

  .landing-hero-support {
    max-width: 380px;
    margin-bottom: 0;
    font-size: 0.94rem;
  }

  .media-play {
    width: 56px;
    height: 56px;
  }

  .hero-community-cta,
  .section-cta {
    min-height: 58px;
    font-size: 0.78rem;
  }

  .safety-grid {
    gap: 12px;
    margin-top: 26px;
  }

  .safety-card {
    min-height: 0;
    padding: 22px 20px 24px;
  }

  .safety-icon {
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
  }

  .safety-icon svg {
    width: 18px;
    height: 18px;
  }

  .safety-card .step-number {
    font-size: 2rem;
  }

  .safety-card h3 {
    margin-top: 24px;
    font-size: 1.08rem;
  }

  .safety-card p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.94rem;
  }

  .safety-note {
    margin-top: 22px;
    font-size: 0.92rem;
  }

  .feedback-area {
    margin-top: 44px;
  }

  .feedback-gallery {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    transition: height 220ms ease;
  }

  .feedback-gallery::-webkit-scrollbar {
    display: none;
  }

  .feedback-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .feedback-item {
    width: min(96%, 460px);
    max-width: 96%;
    padding: 4px;
    border-color: rgba(244, 216, 146, 0.42);
  }

  .feedback-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .discovery-card:last-child {
    grid-column: auto;
  }

  .discovery-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .discovery-card h3 {
    font-size: 1.26rem;
  }

  .discovery-index {
    margin-bottom: 14px;
  }

  .discovery-card > p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.94rem;
  }

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

  .content-video {
    grid-column: span 2;
  }

  .section-decoration {
    display: block;
    top: 118px;
    width: 150px;
    height: 250px;
    opacity: 0.065;
    filter: saturate(0.75) contrast(1.02) drop-shadow(0 0 22px rgba(214, 166, 63, 0.1));
    transform: none;
  }

  .section-decoration.decoration-right {
    right: -74px;
  }

  .section-decoration.decoration-left {
    left: -78px;
  }

  .structure-section {
    gap: 26px;
  }

  .structure-copy h2,
  .safety-section .section-heading h2,
  .movement-inner .section-heading h2,
  .discovery-section .section-heading h2,
  .process-inner .section-heading h2,
  .faq-section .section-heading h2 {
    font-size: clamp(1.95rem, 8.5vw, 2.18rem);
  }

  .safety-section .section-heading,
  .discovery-section .section-heading,
  .process-inner .section-heading {
    margin-bottom: 0;
  }

  .movement-inner .section-heading,
  .team-copy,
  .landing-about .about-copy {
    position: relative;
    z-index: 1;
  }

  .movement-inner .section-heading p,
  .team-copy p,
  .about-bio p {
    font-size: 0.96rem;
  }

  .structure-copy h2 {
    margin-bottom: 14px;
  }

  .structure-copy p {
    font-size: 0.96rem;
  }

  .structure-copy small {
    margin-top: 16px;
  }

  .structure-gallery {
    display: flex;
    width: calc(100% + 18px);
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 4px;
  }

  .structure-gallery::-webkit-scrollbar {
    display: none;
  }

  .structure-gallery img {
    flex: 0 0 74%;
    scroll-snap-align: start;
  }

  .landing-process li,
  .landing-process li:last-child {
    grid-template-columns: 48px 1fr;
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .landing-process {
    margin-top: 24px;
  }

  .landing-process li > span {
    font-size: 0.84rem;
  }

  .landing-process h3 {
    font-size: 1.1rem;
  }

  .landing-process p {
    margin-top: 9px;
    margin-bottom: 0;
    font-size: 0.93rem;
  }

  .simple-line {
    margin-top: 22px;
    font-size: 1.15rem;
  }

  .team-copy h2 {
    font-size: clamp(2rem, 8.8vw, 2.28rem);
  }

  .final-cta-inner h2 {
    max-width: 410px;
    margin-top: 14px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 8.8vw, 2.3rem);
    line-height: 1.07;
  }

  .team-assurance {
    margin-top: 30px;
    padding-left: 18px;
  }

  .team-visual-grid {
    gap: 9px;
    margin-top: 28px;
  }

  .team-assurance p {
    font-size: 0.98rem;
  }

  .landing-about {
    gap: 28px;
  }

  .landing-about .about-media {
    width: min(100%, 430px);
    max-height: none;
  }

  .landing-about .about-copy {
    padding-top: 0;
  }

  .landing-about .about-copy h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 8.8vw, 2.28rem);
    line-height: 1.07;
  }

  .about-name {
    margin-top: 16px;
  }

  .about-bio {
    margin-top: 16px;
  }

  .creator-proof {
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .final-cta-inner p {
    font-size: 0.96rem;
  }

  .final-cta-inner .button {
    min-height: 58px;
    margin-top: 24px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 360px) {
  .section-decoration {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-poster,
  .media-shade,
  .media-player iframe,
  .feedback-item img {
    transition: none;
  }
}

/* Final landing review: keep these rules after legacy landing breakpoints. */
.movement-video-player video,
.movement-youtube-player iframe {
  pointer-events: none;
}

.safety-card {
  cursor: default;
}

.safety-icon {
  width: 50px;
  height: 50px;
}

.safety-icon svg {
  width: 26px;
  height: 26px;
}

.feedback-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1100px);
  height: auto;
  margin-right: auto;
  margin-left: auto;
  gap: 14px;
  overflow: visible;
}

.feedback-slide {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
}

.feedback-item {
  display: flex;
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(214, 166, 63, 0.07), transparent 42%),
    #0a0a09;
}

.feedback-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.feedback-item:hover img {
  filter: brightness(1.05);
  transform: none;
}

.feedback-cta-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}

.feedback-cta-wrap .section-cta {
  display: flex;
  margin-right: auto;
  margin-left: auto;
}

.discovery-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(214, 166, 63, 0.2);
}

.discovery-card,
.discovery-card:last-child,
.discovery-card-wide {
  display: grid;
  grid-column: auto;
  grid-template-columns: 72px minmax(220px, 0.8fr) minmax(0, 1.2fr);
  min-height: 0;
  padding: 30px 0;
  align-items: center;
  column-gap: 24px;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(214, 166, 63, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.discovery-card:hover {
  border-color: rgba(244, 216, 146, 0.34);
  background: linear-gradient(90deg, rgba(214, 166, 63, 0.045), transparent 76%);
  box-shadow: none;
  transform: none;
}

.discovery-index {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  font-size: 0.82rem;
}

.discovery-card h3 {
  grid-column: 2;
  margin: 0;
  font-size: 1.55rem;
}

.discovery-card > p {
  grid-column: 2;
  margin: 10px 0 0;
}

.discovery-card .content-media-grid,
.discovery-card .compact-media-grid {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin-top: 0;
}

.discovery-card-community,
.discovery-card-community:last-child {
  grid-template-columns: 72px minmax(0, 1fr);
}

.structure-section {
  display: block;
  padding-top: 92px;
  padding-bottom: 94px;
  text-align: center;
}

.structure-copy,
.structure-copy:last-child {
  width: min(100%, 940px);
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
}

.structure-copy h2 {
  max-width: none;
  margin-bottom: 20px;
  font-size: 3.35rem;
}

.structure-copy p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(247, 243, 235, 0.84);
  font-size: 1.22rem;
  line-height: 1.65;
}

.structure-copy small {
  margin-top: 18px;
}

.adm-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  width: min(100%, 1100px);
  margin: 44px auto 0;
  gap: 22px 14px;
}

.adm-member {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.adm-photo {
  width: 86px;
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(244, 216, 146, 0.3);
  border-radius: 50%;
  background: rgba(214, 166, 63, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.adm-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.adm-member figcaption {
  margin-top: 10px;
}

.adm-member figcaption strong,
.adm-member figcaption span {
  display: block;
  overflow-wrap: anywhere;
}

.adm-member figcaption strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.adm-member figcaption span {
  margin-top: 3px;
  color: rgba(206, 197, 181, 0.66);
  font-size: 0.72rem;
}

.process-inner .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.landing-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 44px;
}

.landing-process::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 166, 63, 0.55) 12%, rgba(214, 166, 63, 0.55) 88%, transparent);
}

.landing-process li,
.landing-process li:last-child {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0 18px 16px;
  border: 0;
  text-align: center;
}

.landing-process li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(244, 216, 146, 0.4);
  border-radius: 50%;
  background: #0c0c0a;
  box-shadow: 0 0 24px rgba(214, 166, 63, 0.1);
}

.landing-process li > div {
  display: block;
}

.landing-process h3 {
  margin-bottom: 0;
}

.team-copy {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.team-copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.team-visual-grid,
.team-visual-grid.compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.team-infrastructure {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
  margin-top: 42px;
}

.support-panel {
  padding: 28px;
  border: 1px solid rgba(214, 166, 63, 0.2);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(214, 166, 63, 0.07), rgba(10, 10, 9, 0.96) 48%);
}

.support-panel:only-child {
  grid-column: 1 / -1;
  width: min(100%, 820px);
  margin: 0 auto;
}

.support-panel > p {
  margin-bottom: 0;
  color: rgba(247, 243, 235, 0.82);
  font-size: 1.04rem;
}

.support-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.support-media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(214, 166, 63, 0.16);
  border-radius: 5px;
}

.rules-panel > .section-kicker {
  margin-bottom: 18px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rule-item {
  padding: 20px;
  border-top: 1px solid rgba(244, 216, 146, 0.28);
  background: rgba(255, 255, 255, 0.015);
}

.rule-item > span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rule-item h3 {
  margin: 12px 0 0;
  font-size: 1.05rem;
}

.rule-item p {
  margin: 10px 0 0;
  color: rgba(206, 197, 181, 0.74);
  font-size: 0.9rem;
}

.rule-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 16px;
  border-radius: 5px;
}

.team-assurance {
  max-width: 900px;
  margin: 46px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(214, 166, 63, 0.28);
  border-left: 0;
  text-align: center;
}

.landing-about {
  grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.34fr);
  width: min(1280px, calc(100% - 40px));
  gap: 64px;
  align-items: start;
}

.landing-about .about-media {
  width: 100%;
  max-width: 520px;
}

.landing-about .about-copy {
  max-width: none;
  padding-top: 4px;
}

.instagram-handle {
  margin: 24px 0 0;
  color: rgba(206, 197, 181, 0.72);
  font-size: 0.98rem;
  user-select: text;
}

.instagram-handle span {
  color: var(--gold-light);
  font-weight: 800;
}

.faq-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.faq-list {
  width: min(100%, 900px);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1080px) {
  .feedback-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .discovery-card,
  .discovery-card:last-child {
    grid-template-columns: 60px minmax(200px, 0.85fr) minmax(0, 1.15fr);
  }

  .discovery-card-community,
  .discovery-card-community:last-child {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .team-visual-grid,
  .team-visual-grid.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .landing-about {
    grid-template-columns: 1fr;
  }

  .landing-about .about-media {
    margin-right: auto;
    margin-left: auto;
  }

  .team-infrastructure {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .safety-icon {
    width: 44px;
    height: 44px;
  }

  .safety-icon svg {
    width: 23px;
    height: 23px;
  }

  .feedback-gallery {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    gap: 12px;
    padding-inline: 7%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 7%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-inline: contain;
  }

  .feedback-gallery::-webkit-scrollbar {
    display: none;
  }

  .feedback-slide {
    display: block;
    flex: 0 0 84%;
    width: 84%;
    min-width: 0;
    max-width: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .feedback-item {
    display: flex;
    height: clamp(360px, 100vw, 430px);
    width: 100%;
    max-width: none;
    padding: 5px;
    aspect-ratio: auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #070706;
    touch-action: pan-x pan-y;
  }

  .feedback-item img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 26px;
  }

  .discovery-card,
  .discovery-card:last-child,
  .discovery-card-community,
  .discovery-card-community:last-child {
    grid-column: auto;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
    padding: 24px 0;
    column-gap: 12px;
  }

  .discovery-index {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .discovery-card h3,
  .discovery-card > p {
    grid-column: 2;
  }

  .discovery-card .content-media-grid,
  .discovery-card .compact-media-grid {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 18px;
  }

  .structure-section {
    display: block;
    padding-top: 60px;
    padding-bottom: 62px;
  }

  .structure-copy h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .structure-copy p {
    font-size: 1.02rem;
  }

  .adm-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 32px;
    gap: 18px 8px;
  }

  .adm-photo {
    width: min(100%, 72px);
  }

  .adm-member figcaption strong {
    font-size: 0.72rem;
  }

  .adm-member figcaption span {
    font-size: 0.65rem;
  }

  .landing-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }

  .landing-process::before {
    top: 23px;
    right: auto;
    bottom: 40px;
    left: 23px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(214, 166, 63, 0.55), rgba(214, 166, 63, 0.12));
  }

  .landing-process li,
  .landing-process li:last-child {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
    padding: 0 0 28px;
    column-gap: 16px;
    border: 0;
    text-align: left;
  }

  .landing-process li > span {
    grid-column: 1;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .landing-process li > div {
    grid-column: 2;
    padding-top: 4px;
  }

  .team-visual-grid,
  .team-visual-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-panel {
    padding: 22px 20px;
  }

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

  .landing-about {
    width: min(1280px, calc(100% - 30px));
    gap: 28px;
  }

  .landing-about .about-media {
    width: min(88%, 380px);
    margin-right: auto;
    margin-left: auto;
  }

  .landing-about .about-copy {
    width: 100%;
  }

  .faq-section .section-heading,
  .faq-list {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .feedback-slide {
    flex-basis: 86%;
    width: 86%;
    margin: 0;
  }

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