:root {
  color-scheme: dark;
  --bg: #02070a;
  --panel: rgba(3, 9, 12, 0.82);
  --panel-solid: #050b0d;
  --ink: #fff7df;
  --muted: #cdbf9d;
  --soft: #958564;
  --gold: #d7a331;
  --gold-bright: #ffe18a;
  --line: rgba(215, 163, 49, 0.42);
  --line-soft: rgba(215, 163, 49, 0.22);
  --green: #021d16;
  --red: #cc2435;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 15%, rgba(215, 163, 49, 0.12), transparent 25rem),
    radial-gradient(circle at 20% 0%, rgba(8, 29, 38, 0.9), transparent 30rem),
    linear-gradient(135deg, #02070a 0%, #03080a 48%, #010303 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(215, 163, 49, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 163, 49, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 28%, transparent 0, rgba(0, 0, 0, 0.38) 44%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 46%, rgba(0, 0, 0, 0.62));
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -8rem;
  z-index: 50;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: #000;
  color: var(--gold-bright);
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(1, 5, 7, 0.86);
  backdrop-filter: blur(18px);
}

.nav,
main,
footer {
  width: min(100% - 48px, 1540px);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(215, 163, 49, 0.2);
}

.brand span {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
  line-height: 1;
}

.brand strong {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand small,
.mission strong {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.95rem;
  color: #f1ead7;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch,
.nav-cta,
.btn,
.panel-actions a,
.mobile-actions a {
  min-height: 48px;
  border-radius: 8px;
  font-weight: 900;
}

.lang-switch {
  border: 1px solid var(--line);
  padding: 0 0.95rem;
  background: rgba(0, 0, 0, 0.26);
  color: var(--ink);
  cursor: pointer;
}

.nav-cta,
.btn-primary,
.panel-actions a:first-child,
.mobile-actions a:first-child {
  background: linear-gradient(180deg, #ffe99f 0%, #d9a13a 100%);
  color: #120e05;
  box-shadow: 0 18px 50px rgba(215, 163, 49, 0.2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 2rem;
  min-height: 640px;
  padding: 1.65rem 0 0.95rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  width: 14px;
  height: 14px;
  content: "";
  background:
    linear-gradient(45deg, transparent 42%, var(--gold) 43%, var(--gold) 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, var(--gold) 43%, var(--gold) 57%, transparent 58%);
}

.section-kicker {
  margin-bottom: 0.8rem;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  color: #fff6dd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.05rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 14px 55px rgba(0, 0, 0, 0.55);
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.lede {
  max-width: 520px;
  margin-bottom: 1rem;
  color: #e4ddc9;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn,
.panel-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 220px;
  border: 1px solid transparent;
  padding: 0 1.15rem;
}

.btn-secondary,
.panel-actions a:nth-child(2),
.mobile-actions a:nth-child(2) {
  border-color: var(--line);
  background: rgba(1, 25, 18, 0.8);
  color: var(--ink);
}

.mission {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.mission img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.mission p {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 500px;
}

.hero-visual::before {
  position: absolute;
  inset: 8% 5% 8% 12%;
  content: "";
  border: 1px solid rgba(215, 163, 49, 0.66);
  border-left-color: transparent;
  border-radius: 999px 999px 0 0;
  opacity: 0.8;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  justify-self: center;
  width: min(640px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #071016;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 -90px 90px rgba(2, 7, 10, 0.4);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 378 / 317;
  object-fit: cover;
}

.partner-card {
  position: relative;
  z-index: 3;
  width: min(430px, 74%);
  margin: -2.15rem auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.45);
}

.about-band,
.features,
.journey,
.support-panel,
.faq {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(1, 7, 10, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.about-band {
  display: grid;
  grid-template-columns: 0.54fr 1fr;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 1rem;
}

.about-copy {
  padding: 1.55rem;
}

.about-copy h2,
.support-panel h2,
.journey h2 {
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.08;
}

.about-copy h2 span {
  color: var(--gold);
}

.about-copy p,
.support-panel p,
.timeline p,
.features p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.creator-strip {
  position: relative;
  overflow: hidden;
  min-height: 170px;
}

.creator-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-strip span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(2, 7, 10, 0.7);
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.2rem;
  padding: 1.25rem 0;
}

.features article {
  padding: 0.7rem 1.3rem;
  text-align: center;
}

.features article + article {
  border-left: 1px solid var(--line-soft);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 1.4rem;
}

.features h3 {
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 1.05rem;
}

.journey {
  margin-bottom: 1.2rem;
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.journey .section-kicker {
  justify-content: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.3rem;
}

.timeline::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 1px;
  content: "";
  background: var(--line);
}

.timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 0 0.6rem;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: #061013;
  color: var(--gold);
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 0.35rem;
  color: var(--gold);
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.2rem;
  padding: 1.6rem;
}

.support-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.panel-actions {
  display: grid;
  min-width: min(360px, 100%);
}

.faq {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
  padding: 1rem;
}

.faq details {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.025);
}

.faq summary {
  cursor: pointer;
  color: var(--gold-bright);
  font-weight: 900;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  padding: 1.4rem 0 5rem;
  color: var(--soft);
}

footer strong {
  color: var(--gold);
}

.mobile-actions {
  display: none;
}

[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

[dir="rtl"] .nav,
[dir="rtl"] .hero,
[dir="rtl"] .about-band,
[dir="rtl"] .support-panel {
  direction: rtl;
}

[dir="rtl"] .brand span,
[dir="rtl"] .partner-card {
  direction: ltr;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .about-copy,
[dir="rtl"] .support-panel,
[dir="rtl"] .journey,
[dir="rtl"] .faq,
[dir="rtl"] footer {
  text-align: right;
}

[dir="rtl"] h1 {
  margin-left: 0;
  margin-right: auto;
  font-family: Georgia, Tahoma, Arial, sans-serif;
}

[dir="rtl"] .mission {
  justify-content: flex-start;
}

[dir="rtl"] .features article + article {
  border-left: 0;
  border-right: 1px solid var(--line-soft);
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.6rem;
  }

  .hero-visual {
    min-height: 0;
  }

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

  .features article:nth-child(3) {
    border-left: 0;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav,
  main,
  footer {
    width: min(100% - 24px, 520px);
  }

  .nav {
    padding: 0.55rem 0;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    max-width: 156px;
    overflow: hidden;
    font-size: 0.55rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    display: none;
  }

  .lang-switch {
    min-height: 38px;
    padding: 0 0.65rem;
    font-size: 0.76rem;
  }

  .hero {
    gap: 1.15rem;
    padding: 1.55rem 0 1.2rem;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  h1 {
    max-width: 10ch;
    margin-bottom: 0.75rem;
    font-size: 3.05rem;
    line-height: 0.93;
  }

  .lede {
    margin-bottom: 0.9rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    min-width: 0;
  }

  .mission {
    margin-top: 0.8rem;
  }

  .mission img {
    width: 38px;
    height: 38px;
  }

  .mission span {
    font-size: 0.82rem;
  }

  .hero-photo {
    width: 100%;
  }

  .partner-card {
    width: min(310px, 84%);
    margin-top: -1.5rem;
  }

  .about-band,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .support-panel,
  .journey {
    padding: 1.1rem;
  }

  .about-copy h2,
  .support-panel h2,
  .journey h2 {
    font-size: 1.65rem;
  }

  .creator-strip {
    min-height: 122px;
  }

  .features,
  .timeline {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 0;
  }

  .features article {
    padding: 1rem;
  }

  .features article + article,
  [dir="rtl"] .features article + article {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
    border-right: 0;
  }

  .support-panel {
    margin-bottom: 1rem;
  }

  .panel-actions a {
    width: 100%;
    min-width: 0;
  }

  .faq {
    margin-bottom: 1.4rem;
  }

  footer {
    display: grid;
    padding-bottom: 5.6rem;
    font-size: 0.82rem;
  }

  .mobile-actions {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 24;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 0.5rem;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    padding: 0.45rem;
    background: rgba(1, 7, 10, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.52);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 46px;
    padding: 0 0.5rem;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.5rem;
  }

  .brand small {
    max-width: 118px;
  }

  .lang-switch {
    padding: 0 0.45rem;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 1.25rem;
  }

  h1 {
    font-size: 2.64rem;
  }

  .hero-photo img {
    max-height: 285px;
    object-fit: cover;
  }

  .creator-strip span {
    width: 52px;
    height: 52px;
  }
}
