:root {
  --gold: #c9962e;
  --gold2: #ffd978;
  --dark: #050505;
  --ink: #eadfc7;
  --muted: #b8aa8d;
  --line: rgba(201, 150, 46, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 217, 120, 0.16), transparent 28%),
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.94)),
    repeating-radial-gradient(circle at 30% 20%, #181818 0 1px, #070707 1px 5px);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.74));
}

a {
  color: var(--gold2);
}

.promo-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 42px;
  overflow-wrap: anywhere;
}

.promo-header,
.promo-nav,
.promo-actions,
.promo-grid {
  display: flex;
}

.promo-header {
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 0;
  padding: 14px 0 24px;
}

.promo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.promo-brand span {
  min-width: 0;
}

.promo-brand img {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 217, 120, 0.72);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px rgba(255, 217, 120, 0.2);
}

.promo-brand strong {
  display: block;
  color: var(--gold2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 217, 120, 0.25);
}

.promo-brand small,
.promo-nav a,
.promo-card p,
.promo-lead {
  color: var(--muted);
}

.promo-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  font-size: 0.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-nav a {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border: 1px solid rgba(201, 150, 46, 0.24);
  border-radius: 999px;
  padding: 0 7px;
  background: rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.promo-nav a:hover {
  color: var(--gold2);
}

.promo-hero {
  min-height: 54vh;
  display: grid;
  align-content: center;
  padding: 40px 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 960px;
  margin: 0 auto;
  color: var(--gold2);
  font-size: clamp(1.68rem, 4.8vw, 4.08rem);
  line-height: 1.04;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow:
    0 3px 0 #3c2506,
    0 0 30px rgba(255, 217, 120, 0.32),
    0 0 70px rgba(201, 150, 46, 0.2);
  animation: goldPulse 4.8s ease-in-out infinite;
}

.promo-lead {
  max-width: 780px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.promo-rotator {
  display: grid;
  width: min(780px, 100%);
  min-height: 3.2em;
  color: #eadfc7;
  font-weight: 800;
  text-align: center;
}

.promo-rotator span {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  animation: promoPhraseFlow 24s ease-in-out infinite;
}

.promo-rotator span:first-child {
  color: var(--gold2);
  text-shadow: 0 0 20px rgba(255, 217, 120, 0.22);
}

.promo-rotator span:nth-child(2) {
  animation-delay: 4s;
}

.promo-rotator span:nth-child(3) {
  animation-delay: 8s;
}

.promo-rotator span:nth-child(4) {
  animation-delay: 12s;
}

.promo-rotator span:nth-child(5) {
  animation-delay: 16s;
}

.promo-rotator span:nth-child(6) {
  animation-delay: 20s;
}

.promo-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
  margin-top: 30px;
}

.promo-button {
  max-width: 100%;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 217, 120, 0.62);
  border-radius: 8px;
  background: rgba(255, 217, 120, 0.12);
  color: var(--gold2);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-align: center;
}

.promo-button.secondary {
  border-color: rgba(201, 150, 46, 0.3);
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
}

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

.promo-card {
  min-height: 160px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.36);
}

.promo-card h2 {
  margin: 0 0 10px;
  color: var(--gold2);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-card p {
  margin: 0;
  line-height: 1.55;
}

.promo-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-language-grid {
  display: block;
  min-width: 0;
  margin-top: 24px;
}

.faq-anchor {
  position: relative;
  display: block;
  top: -16px;
  height: 0;
  overflow: hidden;
}

.faq-switch-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 150, 46, 0.24);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 217, 120, 0.12), transparent 38%),
    rgba(0, 0, 0, 0.28);
}

.faq-switch-panel h2 {
  margin: 5px 0 0;
  color: var(--gold2);
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-switcher {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.faq-switcher button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(201, 150, 46, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: #cfc1a4;
  font-weight: 900;
  cursor: pointer;
}

.faq-switcher button.active {
  border-color: rgba(255, 217, 120, 0.84);
  background: linear-gradient(180deg, rgba(255, 217, 120, 0.22), rgba(201, 150, 46, 0.12));
  color: var(--gold2);
  text-shadow: 0 0 14px rgba(255, 217, 120, 0.22);
}

.faq-switcher button:focus-visible {
  outline: 2px solid var(--gold2);
  outline-offset: 3px;
}

.faq-column {
  display: none;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(201, 150, 46, 0.24);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 217, 120, 0.1), transparent 34%),
    rgba(0, 0, 0, 0.24);
}

.faq-column.active {
  display: block;
}

.faq-column h2 {
  margin: 6px 0 0;
  color: var(--gold2);
  font-size: 1.16rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-column .promo-list {
  margin: 18px 0;
}

.faq-column .promo-band {
  margin-top: 18px;
}

.faq-column .promo-button {
  margin-top: 4px;
}

.method-language-grid {
  min-width: 0;
  margin-top: 24px;
}

.method-orbit {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  margin: 0 0 22px;
  padding: 24px;
  border: 1px solid rgba(255, 217, 120, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 217, 120, 0.14), transparent 26%),
    radial-gradient(circle at 18% 12%, rgba(255, 217, 120, 0.1), transparent 34%),
    rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 217, 120, 0.05);
}

.method-orbit-copy {
  align-self: center;
  min-width: 0;
}

.method-orbit-copy h2 {
  margin: 0;
  color: var(--gold2);
  font-size: clamp(1.28rem, 2.1vw, 2rem);
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
}

.method-orbit-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.68;
}

.method-compass {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  padding: 14px;
  overflow: hidden;
}

.method-compass::before,
.method-compass::after {
  display: none;
}

.method-node,
.method-orbit-core {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 1px solid rgba(255, 217, 120, 0.28);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.44);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.method-node {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
}

.method-node span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.method-node strong {
  color: #f8efe0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.method-node small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.method-node-phrase {
  grid-area: 2 / 1;
  background:
    linear-gradient(135deg, rgba(218, 235, 255, 0.22), rgba(0, 0, 0, 0.44));
}

.method-node-meaning {
  grid-area: 2 / 2;
  background:
    linear-gradient(135deg, rgba(255, 224, 224, 0.22), rgba(0, 0, 0, 0.44));
}

.method-node-finger {
  grid-area: 3 / 1;
  background:
    linear-gradient(135deg, rgba(216, 249, 227, 0.22), rgba(0, 0, 0, 0.44));
}

.method-node-key {
  grid-area: 3 / 2;
  background:
    linear-gradient(135deg, rgba(255, 239, 178, 0.25), rgba(0, 0, 0, 0.44));
}

.method-orbit-core {
  grid-area: 1 / 1 / 2 / 3;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 112px;
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 217, 120, 0.2), transparent 62%),
    rgba(0, 0, 0, 0.58);
}

.method-orbit-core span {
  color: var(--gold2);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-shadow: 0 0 24px rgba(255, 217, 120, 0.25);
}

.method-orbit-core strong {
  margin-top: 6px;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-orbit-core small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.method-panel {
  display: none;
  min-width: 0;
}

.method-panel.active {
  display: block;
}

.method-intro {
  align-items: start;
  margin-top: 0;
}

.method-intro p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.68;
}

.method-summary {
  margin-top: 22px;
}

.method-steps,
.method-faq {
  min-width: 0;
  margin-top: 26px;
}

.method-steps h2,
.method-faq h2 {
  margin: 0;
  color: var(--gold2);
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-transform: uppercase;
}

.method-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  margin-top: 16px;
}

.method-step-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(201, 150, 46, 0.26);
  border-radius: 10px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 217, 120, 0.1), transparent 36%),
    rgba(0, 0, 0, 0.3);
}

.method-step-grid strong {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 217, 120, 0.5);
  border-radius: 50%;
  color: var(--gold2);
  font-size: 0.95rem;
}

.method-step-grid h3 {
  margin: 14px 0 8px;
  color: var(--gold2);
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.method-step-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.promo-item h3 {
  margin: 0 0 8px;
  color: var(--gold2);
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-shell .promo-hero,
.copy-shell .promo-hero {
  min-height: 42vh;
  padding: 32px 0 34px;
}

.faq-shell h1,
.copy-shell h1 {
  max-width: 880px;
  font-size: clamp(1.72rem, 4vw, 3.18rem);
  line-height: 1.08;
  letter-spacing: 0.045em;
}

.faq-shell .promo-lead,
.copy-shell .promo-lead {
  max-width: 820px;
  margin-top: 20px;
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.62;
}

.faq-shell .faq-switch-panel {
  margin-top: 12px;
  padding: 16px 18px;
}

.faq-shell .faq-switch-panel h2,
.faq-shell .faq-column h2 {
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.22;
  letter-spacing: 0.055em;
}

.faq-shell .faq-column {
  padding: 24px;
}

.faq-shell .promo-list,
.copy-shell .promo-list {
  gap: 12px;
}

.faq-shell .promo-item,
.copy-shell .promo-item {
  padding: 18px 20px;
}

.faq-shell .promo-item h3,
.copy-shell .promo-item h3 {
  font-size: clamp(0.98rem, 1.22vw, 1.1rem);
  line-height: 1.25;
  letter-spacing: 0.035em;
}

.faq-shell .promo-item p,
.copy-shell .promo-item p {
  font-size: clamp(0.98rem, 1.08vw, 1.06rem);
  line-height: 1.68;
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  margin: 18px 0;
  padding: 22px;
  border: 1px solid rgba(201, 150, 46, 0.3);
  border-radius: 10px;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 217, 120, 0.14), transparent 34%),
    rgba(0, 0, 0, 0.34);
}

.promo-band h2 {
  margin: 0;
  color: var(--gold2);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.promo-points article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 217, 120, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.promo-points strong,
.promo-points span {
  display: block;
}

.promo-points strong {
  color: var(--gold2);
  margin-bottom: 7px;
}

.promo-points span {
  color: var(--muted);
  line-height: 1.45;
}

.promo-item {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.34);
}

.promo-item h2 {
  margin: 0 0 8px;
  color: var(--gold2);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.language-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  min-width: 0;
  margin-top: 28px;
}

.language-cloud span {
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(201, 150, 46, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #eadfc7;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.promo-footer {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 150, 46, 0.22);
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes goldPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}

@keyframes promoPhraseFlow {
  0%,
  13% {
    opacity: 1;
    transform: translateY(0);
  }

  17%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (min-width: 1680px) {
  .promo-shell {
    width: min(1480px, calc(100% - 80px));
    padding-top: 34px;
  }

  .promo-hero {
    min-height: 58vh;
  }

  h1 {
    max-width: 1220px;
    font-size: clamp(3.3rem, 4.2vw, 5.7rem);
  }

  .promo-lead {
    max-width: 920px;
    font-size: 1.5rem;
  }

  .promo-grid {
    gap: 22px;
  }

  .promo-nav {
    font-size: 0.52rem;
    gap: 10px;
  }

  .promo-nav a {
    min-height: 26px;
    padding: 0 9px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .promo-shell {
    width: min(100% - 36px, 980px);
  }

  h1 {
    font-size: clamp(1.86rem, 4.8vw, 3.48rem);
  }

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

  .faq-language-grid {
    grid-template-columns: 1fr;
  }

  .faq-switch-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-switcher {
    justify-content: flex-start;
  }

  .promo-band {
    grid-template-columns: 1fr;
  }

  .promo-points {
    grid-template-columns: 1fr;
  }

  .method-orbit {
    grid-template-columns: 1fr;
  }

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

  .promo-nav {
    font-size: 0.44rem;
  }
}

@media (max-width: 760px) {
  .promo-shell {
    width: min(100% - 22px, 680px);
    padding: 14px 0 30px;
  }

  .promo-header {
    align-items: start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 18px;
  }

  .promo-nav {
    justify-content: flex-start;
    gap: 7px;
    font-size: 0.48rem;
  }

  .promo-nav a {
    min-height: 24px;
    padding: 0 8px;
  }

  .promo-hero {
    min-height: auto;
    padding: 28px 0 34px;
  }

  h1 {
    font-size: clamp(1.35rem, 8.4vw, 2.52rem);
    line-height: 1;
    letter-spacing: 0.05em;
  }

  .promo-lead {
    margin-top: 18px;
    font-size: 1rem;
  }

  .promo-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
  }

  .promo-button {
    justify-content: center;
  }

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

  .faq-language-grid {
    grid-template-columns: 1fr;
  }

  .faq-switch-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

  .faq-switcher button {
    flex: 1;
    min-width: 0;
  }

  .promo-band {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .promo-points {
    grid-template-columns: 1fr;
  }

  .method-orbit {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .method-compass {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    padding: 0;
  }

  .method-compass::before,
  .method-compass::after {
    display: none;
  }

  .method-node,
  .method-orbit-core {
    grid-area: auto;
  }

  .method-orbit-core {
    order: -1;
    min-height: 108px;
  }

  .method-step-grid {
    grid-template-columns: 1fr;
  }

  .promo-card,
  .promo-item {
    padding: 18px;
  }

  .faq-shell .promo-hero,
  .copy-shell .promo-hero {
    padding: 24px 0 28px;
  }

  .faq-shell h1,
  .copy-shell h1 {
    font-size: clamp(1.34rem, 7.4vw, 2.28rem);
    line-height: 1.06;
  }

  .faq-shell .promo-lead,
  .copy-shell .promo-lead {
    font-size: 1rem;
    line-height: 1.56;
  }

  .faq-shell .faq-column {
    padding: 18px;
  }

  .faq-shell .promo-item,
  .copy-shell .promo-item {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .promo-brand img {
    width: 40px;
    height: 40px;
  }

  .promo-brand strong {
    font-size: 0.95rem;
  }

  .promo-nav {
    font-size: 0.44rem;
    gap: 6px;
  }

  .language-cloud {
    justify-content: start;
  }

  .language-cloud span {
    padding: 7px 10px;
    font-size: 0.86rem;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .promo-hero {
    min-height: auto;
    padding: 22px 0;
  }

  h1 {
    font-size: clamp(1.38rem, 4.8vw, 2.88rem);
  }
}
