:root {
  --bg: #0a0a0c;
  --bg-elevated: #121218;
  --bg-card: #16161e;
  --gold: #d4af37;
  --gold-dim: #9a8630;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text: #f2f0ea;
  --text-muted: #a8a4a0;
  --text-dim: #6e6a66;
  --border: #2a2830;
  --serif: "Cinzel", "Times New Roman", serif;
  --sans: "Raleway", system-ui, "Segoe UI", sans-serif;
  --radius: 12px;
  --radius-pill: 999px;
  --space: clamp(1rem, 3vw, 2rem);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(180deg, #0e0e12 0%, var(--bg) 32%);
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #e8c85a;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #0a0a0c;
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: var(--space);
  top: var(--space);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem var(--space);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}

.brand__logo {
  width: clamp(44px, 9vw, 56px);
  height: auto;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  object-fit: cover;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand:hover {
  color: inherit;
}

.brand__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.brand__subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold);
}

.lang-switch {
  font-size: 0.85rem;
  font-weight: 700;
}

.lang-switch__link {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0.35rem;
}

.lang-switch__link:hover,
.lang-switch__link.is-active {
  color: var(--gold);
}

.lang-switch__sep {
  color: var(--text-dim);
  margin: 0 0.15rem;
}

main {
  outline: none;
}

.hero {
  padding: clamp(1.5rem, 4vw, 3rem) var(--space) 2rem;
  position: relative;
  overflow: hidden;
}

.hero--rich::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-texture);
  background-repeat: repeat;
  background-size: 420px auto;
  opacity: 0.07;
  pointer-events: none;
}

.hero--rich .hero__grid {
  position: relative;
  z-index: 1;
}

.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .hero--with-gameplay .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.22fr);
    align-items: start;
  }
}

.hero--with-gameplay .hero__grid {
  max-width: min(1200px, 100%);
}

.hero__grid--panels {
  align-items: stretch;
}

.hero__panel--brand {
  align-self: center;
}

.hero__panel--figure {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-showcase__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.hero-showcase__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.72);
}

.hero-showcase__title {
  font-family: var(--sans);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
  line-height: 1.25;
}

.hero-showcase__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 52ch;
}

@media (min-width: 900px) {
  .hero-showcase__header {
    text-align: right;
    align-items: flex-end;
    margin-left: auto;
    max-width: min(52ch, 100%);
  }

  .hero-showcase__lead {
    margin-left: auto;
  }
}

.hero__splash-wrap {
  width: 100%;
  max-width: min(640px, 100%);
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 899px) {
  .hero__splash-wrap {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__splash-figure {
  margin: 0;
  text-align: center;
}

.hero__splash-img {
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 720px);
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border: none;
  box-shadow: none;
  border-radius: 0;
  vertical-align: middle;
}

.hero-showcase__stage {
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero-showcase__stage {
    justify-content: flex-end;
  }
}

.eyebrow {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  max-width: 36ch;
}

.hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero__lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: linear-gradient(165deg, #e4c04f, var(--gold) 45%, var(--gold-dim));
  color: #0a0a0c;
  box-shadow: 0 4px 24px var(--gold-glow);
}

.btn--primary:hover {
  color: #0a0a0c;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--gold-glow);
}

.btn--ghost {
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--gold);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: #f2e6bc;
}

.hero__figure {
  margin: 0;
  justify-self: center;
  max-width: 320px;
}

@media (min-width: 900px) {
  .hero__figure {
    max-width: 340px;
  }
}

.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space);
}

.section--tight {
  padding-top: 1rem;
}

#intro.section--tight {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2.75rem, 7vw, 5rem);
}

#gameplay {
  scroll-margin-top: 5.5rem;
}

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

.section__inner--intro {
  max-width: min(76rem, 96vw);
  width: 100%;
  padding-left: clamp(0.75rem, 3vw, 2.5rem);
  padding-right: clamp(0.75rem, 3vw, 2.5rem);
}

.section__title {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
}

.section__lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 60ch;
}

.prose .section__title {
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text);
}

.prose__h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin: 1.75rem 0 0.5rem;
}

.prose p {
  color: var(--text-muted);
  margin: 0.85rem 0;
  max-width: 68ch;
}

.pullquote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
  margin: 1.5rem 0;
  max-width: 52ch;
}

.rhythm-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  color: var(--text-muted);
}

.rhythm-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}

.rhythm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold-dim);
  box-shadow: 0 0 10px var(--gold-glow);
}

.closing-line {
  font-weight: 600;
  color: var(--text) !important;
  font-size: 1.05rem;
}

/* --- Intro: two-column story + highlights --- */
.intro__heading {
  font-family: var(--sans);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 1.75rem;
  max-width: min(40rem, 100%);
}

.intro__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

@media (min-width: 860px) {
  .intro__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }
}

#intro .intro__col.prose p {
  max-width: 65ch;
}

#intro .intro__col .prose__h3 {
  margin-top: 1.5rem;
}

.intro__pullquote {
  margin-top: 0;
}

.intro__bridge {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 65ch;
}

.intro__highlights {
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(8, 8, 12, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.intro__highlights-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

.intro__highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro__highlights-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.15rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.intro__highlights-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold-dim);
  box-shadow: 0 0 8px var(--gold-glow);
}

.intro__rhythm {
  margin-top: 1.35rem;
}

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

@media (min-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.feature-card__tag {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.feature-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.section--split .how {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .section--split .how {
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }
}

.how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.how__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.how__step-num {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--bg);
  background: var(--gold);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.how__steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--text);
}

.how__steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.how__figure {
  margin: 0;
  max-width: 300px;
  justify-self: center;
}

@media (min-width: 900px) {
  .how__figure {
    justify-self: end;
    max-width: 320px;
  }
}

.how__figure--loading {
  max-width: min(560px, 100%);
}

@media (min-width: 900px) {
  .how__figure--loading {
    max-width: min(600px, 50vw);
  }
}

.how__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.how__img--loading {
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 720px);
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.trust {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust__inner {
  text-align: center;
}

.trust__text {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto 1.25rem;
}

.trust__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-weight: 600;
}

.trust__links a {
  text-decoration: none;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 1rem 0.35rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  padding: 0.65rem 0;
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.download {
  padding-bottom: 3rem;
}

.download__inner {
  text-align: center;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.store-badge {
  min-width: 200px;
  padding: 1rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  text-decoration: none;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.15s ease;
}

.store-badge--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.store-badge__label {
  font-weight: 800;
  font-size: 1rem;
}

.store-badge__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.site-footer {
  padding: 3rem var(--space) 2rem;
  border-top: 1px solid var(--border);
  background: #060608;
}

.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer__heading {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.site-footer p {
  margin: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-link {
  color: var(--text);
  font-weight: 600;
}

.footer-muted {
  color: var(--text-dim) !important;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.social-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.social-link:hover {
  color: #e8c85a;
  text-decoration: underline;
}

.site-footer__legal {
  max-width: var(--max);
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer__legal a {
  text-decoration: none;
}

.site-footer__copy {
  text-align: center;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* --- Phone carousel (embedded in hero) --- */
.phone-carousel {
  width: 100%;
  max-width: min(620px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.phone-carousel--hero {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 899px) {
  .phone-carousel--hero {
    max-width: min(520px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

.phone-carousel__frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  padding: 10px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(30, 28, 24, 0.95) 40%, #0a0a0c);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-carousel__slides {
  position: relative;
  width: 100%;
  min-height: min(72vh, 820px);
  max-height: min(84vh, 920px);
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(ellipse 85% 75% at 50% 18%, #1f1c26 0%, #050508 70%);
}

.phone-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.75s ease, transform 0.75s ease;
  pointer-events: none;
}

.phone-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.phone-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.phone-carousel__shine {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 38%,
    transparent 62%,
    rgba(0, 0, 0, 0.22) 100%
  );
  mix-blend-mode: soft-light;
}

.phone-carousel__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.phone-carousel--single .phone-carousel__toolbar {
  display: none;
}

.phone-carousel__btn,
.phone-carousel__toggle {
  font: inherit;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(22, 22, 30, 0.95);
  color: var(--gold);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.phone-carousel__btn:hover,
.phone-carousel__toggle:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

.phone-carousel__dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.phone-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.phone-carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
  border-color: var(--gold);
}

.phone-carousel__caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 1rem 0 0;
  min-height: 2.6em;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .phone-carousel__slide {
    transition: none;
  }

  .phone-carousel__toggle {
    display: none;
  }
}

/* --- Role gallery --- */
.roles__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 800px) {
  .roles__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.roles__card {
  text-align: center;
}

.roles__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.12), #0e0e12 55%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.roles__card:hover .roles__frame {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.12);
}

.roles__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.roles__label {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Outcomes --- */
.outcomes__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .outcomes__row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.outcomes__card {
  margin: 0;
  text-align: center;
}

.outcomes__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: var(--bg-card);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.outcomes__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.outcomes__card figcaption {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Features section texture --- */
.section--features-bg {
  position: relative;
}

.section--features-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--features-texture);
  background-repeat: repeat;
  background-size: 380px auto;
  opacity: 0.055;
  pointer-events: none;
}

.section--features-bg .section__inner {
  position: relative;
  z-index: 1;
}
