:root {
  --bg: #070611;
  --bg-soft: #0e0b1b;
  --panel: rgba(20, 16, 34, 0.74);
  --panel-strong: #151022;
  --text: #f7f0df;
  --muted: #aaa0b8;
  --gold: #d7b36a;
  --gold-soft: #f0d79b;
  --purple: #7154a7;
  --line: rgba(240, 215, 155, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(113, 84, 167, 0.28), transparent 38%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(113, 84, 167, 0.13), transparent 68%);
  transition: opacity .25s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 clamp(20px, 5vw, 74px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 6, 17, 0.74);
  border-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 22px;
  box-shadow: inset 0 0 20px rgba(215, 179, 106, 0.08);
}

.brand-copy,
.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: .9;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: .48em;
  margin-left: 2px;
}

.brand strong,
.footer-brand strong {
  margin-top: 4px;
  font-family: "Cinzel", serif;
  font-size: 19px;
  letter-spacing: .13em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  color: #d8d0dc;
  font-size: 13px;
  letter-spacing: .04em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-button,
.menu-button {
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.language-button {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 12px;
  transition: border-color .25s ease, background .25s ease;
}

.ghost-button:hover {
  border-color: rgba(240, 215, 155, .5);
  background: rgba(240, 215, 155, .06);
}

.menu-button {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
}

.menu-button span {
  position: absolute;
  left: 8px;
  width: 20px;
  height: 1px;
  background: var(--text);
  transition: transform .25s ease, top .25s ease;
}

.menu-button span:first-child {
  top: 14px;
}

.menu-button span:last-child {
  top: 21px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 18px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 18px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 86px 0 auto 0;
  z-index: 45;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px 26px;
  background: rgba(7, 6, 17, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transform: translateY(-120%);
  transition: transform .3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  padding: 15px 4px;
  color: #ddd3e3;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 60px;
  padding: 140px clamp(24px, 7vw, 110px) 92px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 6, 17, .96) 0%, rgba(7, 6, 17, .7) 45%, rgba(7, 6, 17, .38) 100%),
    radial-gradient(circle at 75% 40%, rgba(81, 56, 121, .31), transparent 35%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  z-index: -2;
  background: linear-gradient(transparent, var(--bg));
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .8;
}

.orb-one {
  width: 380px;
  height: 380px;
  right: 8%;
  top: 20%;
  border: 1px solid rgba(240, 215, 155, .12);
  box-shadow: inset 0 0 100px rgba(113, 84, 167, .18), 0 0 100px rgba(113, 84, 167, .1);
}

.orb-two {
  width: 130px;
  height: 130px;
  left: 43%;
  bottom: 18%;
  background: rgba(113, 84, 167, .12);
  filter: blur(35px);
}

.stars span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 10px var(--gold-soft);
  animation: twinkle 3.4s var(--d) infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: .18; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.8); }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: .28em;
}

.hero h1,
.section-heading h2,
.world-copy h2,
.cta-section h2 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: -.025em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
}

.hero h1 em {
  display: block;
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 500;
}

.hero-description {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid rgba(240, 215, 155, .55);
  border-radius: 999px;
  background: linear-gradient(135deg, #d8b66e, #8f6a35);
  color: #110d18;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(141, 104, 53, .22);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .55s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(141, 104, 53, .32);
}

.primary-button:hover::before {
  left: 140%;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #ded6e2;
  cursor: pointer;
}

.text-button span {
  color: var(--gold);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 34px;
  color: #81768f;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.zodiac-ring {
  position: absolute;
  width: min(33vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 215, 155, .12);
  border-radius: 50%;
  animation: spin 42s linear infinite;
}

.zodiac-ring::before,
.zodiac-ring::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(113, 84, 167, .18);
  border-radius: 50%;
}

.zodiac-ring::after {
  inset: 22%;
  border-style: dashed;
}

.zodiac-ring span {
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(240, 215, 155, .68);
  font-size: 18px;
  transform:
    rotate(calc(var(--i) * 30deg))
    translateY(calc(min(16.5vw, 255px) * -1))
    rotate(calc(var(--i) * -30deg));
}

.zodiac-ring span:nth-child(1) { --i: 0; }
.zodiac-ring span:nth-child(2) { --i: 1; }
.zodiac-ring span:nth-child(3) { --i: 2; }
.zodiac-ring span:nth-child(4) { --i: 3; }
.zodiac-ring span:nth-child(5) { --i: 4; }
.zodiac-ring span:nth-child(6) { --i: 5; }
.zodiac-ring span:nth-child(7) { --i: 6; }
.zodiac-ring span:nth-child(8) { --i: 7; }
.zodiac-ring span:nth-child(9) { --i: 8; }
.zodiac-ring span:nth-child(10) { --i: 9; }
.zodiac-ring span:nth-child(11) { --i: 10; }
.zodiac-ring span:nth-child(12) { --i: 11; }

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

.main-card {
  position: relative;
  z-index: 3;
  width: min(27vw, 360px);
  aspect-ratio: .68;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 215, 155, .36);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 34%, rgba(113, 84, 167, .2), transparent 32%),
    linear-gradient(145deg, #171125 0%, #0b0913 100%);
  box-shadow: var(--shadow), inset 0 0 45px rgba(215, 179, 106, .04);
  transform: rotateY(-8deg) rotateX(2deg);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotateY(-8deg) rotateX(2deg); }
  50% { transform: translateY(-16px) rotateY(-5deg) rotateX(1deg); }
}

.card-border {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(240, 215, 155, .14);
  border-radius: 14px;
}

.card-border::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(113, 84, 167, .18);
  border-radius: 10px;
}

.card-corners {
  position: absolute;
  top: 31px;
  color: var(--gold);
}

.moon-symbol {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 35px;
  border: 1px solid rgba(240, 215, 155, .18);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 58px;
  box-shadow: 0 0 45px rgba(113, 84, 167, .2), inset 0 0 30px rgba(215, 179, 106, .08);
}

.main-card p {
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: .42em;
}

.main-card strong {
  margin-top: 8px;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: .13em;
}

.main-card small {
  margin-top: 18px;
  color: #786e85;
  font-size: 8px;
  letter-spacing: .23em;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 136px;
  padding: 13px 15px;
  border: 1px solid rgba(240, 215, 155, .17);
  border-radius: 14px;
  background: rgba(15, 12, 25, .82);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  animation: floatBadge 5s ease-in-out infinite;
}

.floating-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(240, 215, 155, .07);
  color: var(--gold-soft);
}

.floating-card strong {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: .08em;
}

.card-left {
  left: 0;
  top: 31%;
}

.card-right {
  right: 0;
  bottom: 28%;
  animation-delay: -2.1s;
}

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

.scroll-hint {
  position: absolute;
  left: clamp(24px, 7vw, 110px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #665e70;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.question-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 24px 28px;
  border: 1px solid rgba(240, 215, 155, .11);
  border-radius: 18px;
  background: rgba(14, 11, 27, .76);
  box-shadow: 0 22px 60px rgba(0,0,0,.2);
}

.question-strip > p {
  margin-bottom: 18px;
  color: #d8cfe0;
  font-family: "Cinzel", serif;
  text-align: center;
}

.question-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.question-tags button {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--muted);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.question-tags button:hover,
.question-tags button.active {
  color: var(--gold-soft);
  border-color: rgba(240, 215, 155, .33);
  background: rgba(240, 215, 155, .06);
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2,
.world-copy h2,
.cta-section h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
}

.section-heading > p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.75;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.experience-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(240, 215, 155, .11);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 28%),
    var(--panel);
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -38% -20%;
  height: 60%;
  background: radial-gradient(circle, rgba(113, 84, 167, .18), transparent 66%);
  transition: transform .35s ease, opacity .35s ease;
}

.experience-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  border-color: rgba(240, 215, 155, .32);
  box-shadow: 0 30px 70px rgba(0,0,0,.26);
}

.experience-card:hover::after {
  transform: translateY(-12px);
}

.experience-card.featured {
  transform: translateY(-14px);
  border-color: rgba(240, 215, 155, .28);
  background:
    radial-gradient(circle at 50% 25%, rgba(113, 84, 167, .18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 24%),
    var(--panel-strong);
}

.experience-card.featured:hover {
  transform: translateY(-22px);
}

.card-glow {
  position: absolute;
  inset: -30% 20% auto;
  height: 180px;
  background: rgba(113, 84, 167, .2);
  filter: blur(35px);
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f6678;
  font-family: "Cinzel", serif;
}

.card-topline span:last-child {
  color: var(--gold);
  font-size: 25px;
}

.card-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: .18em;
}

.experience-card h3 {
  margin-bottom: 16px;
  font-family: "Cinzel", serif;
  font-size: 28px;
}

.experience-card p:not(.card-kicker) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.experience-card a {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--gold-soft);
  font-size: 13px;
}

.kamora-world {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 110px 0;
}

.world-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.portal {
  position: relative;
  width: min(42vw, 460px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.portal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 215, 155, .17);
}

.ring-a {
  inset: 0;
  animation: spin 34s linear infinite;
}

.ring-a::before,
.ring-a::after,
.ring-b::before,
.ring-b::after {
  content: "✦";
  position: absolute;
  color: var(--gold);
}

.ring-a::before { top: -7px; left: 49%; }
.ring-a::after { bottom: -7px; left: 49%; }

.ring-b {
  inset: 14%;
  border-style: dashed;
  animation: spin 24s linear reverse infinite;
}

.ring-b::before { left: -6px; top: 48%; }
.ring-b::after { right: -6px; top: 48%; }

.ring-c {
  inset: 31%;
  box-shadow:
    0 0 45px rgba(113, 84, 167, .32),
    inset 0 0 45px rgba(113, 84, 167, .22);
}

.portal-core {
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 215, 155, .13), rgba(113, 84, 167, .08) 45%, transparent 70%);
  color: var(--gold-soft);
  font-size: 66px;
}

.world-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.feature-list {
  margin-top: 34px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.feature-list span {
  color: var(--gold);
  font-family: "Cinzel", serif;
}

.feature-list p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-list strong {
  color: var(--text);
  font-weight: 500;
}

.steps {
  padding-top: 80px;
  padding-bottom: 120px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  min-height: 260px;
  padding: 28px;
  border-top: 1px solid rgba(240, 215, 155, .3);
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent);
}

.step-card span {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 12px;
}

.step-card h3 {
  margin-top: 54px;
  margin-bottom: 16px;
  font-family: "Cinzel", serif;
  font-size: 24px;
}

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

.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 110px;
  padding: 88px 30px;
  border: 1px solid rgba(240, 215, 155, .14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(113, 84, 167, .24), transparent 48%),
    rgba(14, 11, 27, .78);
  text-align: center;
}

.cta-section h2 {
  max-width: 800px;
  margin: 0 auto 32px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px clamp(22px, 5vw, 70px);
  border-top: 1px solid rgba(255,255,255,.06);
  color: #746b7d;
  font-size: 11px;
}

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

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.demo-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 9, .8);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid rgba(240, 215, 155, .22);
  border-radius: 22px;
  background: #100c1c;
  box-shadow: var(--shadow);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}

.demo-modal.open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel h2 {
  margin-bottom: 16px;
  font-family: "Cinzel", serif;
  font-size: 32px;
}

.modal-panel > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
}

.modal-action {
  width: 100%;
}

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

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

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

  .menu-button {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr 420px;
    gap: 20px;
  }

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

  .experience-card.featured {
    transform: none;
  }

  .experience-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 74px;
  }

  .ghost-button,
  .language-button {
    display: none;
  }

  .mobile-menu {
    inset: 74px 0 auto 0;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .trust-line {
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
  }

  .main-card {
    width: 250px;
  }

  .zodiac-ring {
    width: 390px;
  }

  .zodiac-ring span {
    transform:
      rotate(calc(var(--i) * 30deg))
      translateY(-195px)
      rotate(calc(var(--i) * -30deg));
  }

  .card-left {
    left: 10%;
  }

  .card-right {
    right: 10%;
  }

  .scroll-hint {
    display: none;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .kamora-world {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .world-copy {
    text-align: center;
  }

  .feature-list {
    text-align: left;
  }

  .portal {
    width: min(80vw, 460px);
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 18px;
  }

  .hero {
    padding: 118px 18px 68px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .primary-button {
    width: 100%;
  }

  .trust-line {
    flex-direction: column;
    gap: 9px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 12px;
  }

  .main-card {
    width: 210px;
  }

  .moon-symbol {
    width: 88px;
    height: 88px;
    font-size: 44px;
  }

  .zodiac-ring {
    width: 320px;
  }

  .zodiac-ring span {
    transform:
      rotate(calc(var(--i) * 30deg))
      translateY(-160px)
      rotate(calc(var(--i) * -30deg));
  }

  .floating-card {
    min-width: 112px;
    padding: 10px;
  }

  .card-left {
    left: 0;
    top: 28%;
  }

  .card-right {
    right: 0;
    bottom: 22%;
  }

  .question-strip {
    width: calc(100% - 24px);
    padding: 22px 14px;
  }

  .section-shell,
  .kamora-world {
    width: calc(100% - 28px);
  }

  .section-shell {
    padding: 74px 0;
  }

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

  .experience-card {
    min-height: 420px;
  }

  .world-visual {
    min-height: 390px;
  }

  .cta-section {
    width: calc(100% - 24px);
    padding: 64px 20px;
  }

  .modal-panel {
    padding: 34px 24px 24px;
  }
}

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


/* Multilingual navigation */
.language-switcher {
  position: relative;
  z-index: 70;
}

.language-trigger {
  min-width: 58px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(240, 215, 155, .16);
  border-radius: 999px;
  background: rgba(255,255,255,.018);
  color: #d8d0dc;
  cursor: pointer;
}

.language-trigger span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}

.language-trigger i {
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  transition: transform .2s ease;
}

.language-switcher.open .language-trigger i { transform: rotate(180deg); }

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(240, 215, 155, .14);
  border-radius: 15px;
  background: rgba(12, 9, 21, .98);
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  translate: 0 -7px;
  transition: opacity .2s ease, visibility .2s ease, translate .2s ease;
}

.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.language-menu button {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #a89ead;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.active {
  background: rgba(240, 215, 155, .07);
  color: var(--gold-soft);
}

.language-menu b {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .1em;
}

.language-menu span { font-size: 11px; }

.subpage-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Personal consultation */
.consultation-section {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  min-height: 400px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  margin: 35px auto 90px;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(240, 215, 155, .2);
  border-radius: 27px;
  background:
    radial-gradient(circle at 85% 45%, rgba(113,84,167,.26), transparent 33%),
    radial-gradient(circle at 10% 0%, rgba(215,179,106,.1), transparent 32%),
    rgba(14, 10, 25, .9);
  box-shadow: 0 35px 90px rgba(0,0,0,.3);
}

.consultation-aura {
  position: absolute;
  right: -80px;
  top: 50%;
  width: 430px;
  height: 430px;
  translate: 0 -50%;
  border: 1px solid rgba(240,215,155,.11);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(113,84,167,.12);
}

.consultation-aura::before,
.consultation-aura::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(240,215,155,.09);
}
.consultation-aura::before { inset: 14%; }
.consultation-aura::after { inset: 31%; }

.consultation-copy,
.consultation-action { position: relative; z-index: 2; }

.consultation-copy h2 {
  max-width: 790px;
  font-family: "Cinzel", serif;
  font-size: clamp(33px, 4.2vw, 57px);
  line-height: 1.13;
}

.consultation-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.consultation-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  color: #8c8295;
  font-size: 10px;
}

.consultation-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.consultation-seal {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid rgba(240,215,155,.3);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 58px;
  box-shadow: 0 0 55px rgba(113,84,167,.22), inset 0 0 35px rgba(215,179,106,.07);
}

.consultation-action small {
  margin-top: 14px;
  color: #776e80;
  font-size: 9px;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.consultation-modal.open { opacity: 1; visibility: visible; }

.consultation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,3,9,.84);
  backdrop-filter: blur(13px);
}

.consultation-panel {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  padding: 38px;
  border: 1px solid rgba(240,215,155,.2);
  border-radius: 23px;
  background:
    radial-gradient(circle at 95% 0%, rgba(113,84,167,.18), transparent 35%),
    #100c1c;
  box-shadow: 0 40px 100px rgba(0,0,0,.48);
  transform: translateY(15px) scale(.985);
  transition: transform .25s ease;
}

.consultation-modal.open .consultation-panel { transform: translateY(0) scale(1); }

.consultation-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #887e91;
  font-size: 29px;
  cursor: pointer;
}

.consultation-panel-heading {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.consultation-panel-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240,215,155,.2);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 29px;
}

.consultation-panel-heading .eyebrow { margin-bottom: 7px; }
.consultation-panel-heading h2 { font-family: "Cinzel", serif; font-size: clamp(23px, 3.5vw, 34px); }

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 25px;
}

.consultation-field { display: flex; flex-direction: column; gap: 8px; }
.consultation-field-wide { grid-column: 1 / -1; }
.consultation-field > span,
.consultation-format legend { color: #bcb2c3; font-size: 11px; }

.consultation-field input,
.consultation-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  outline: 0;
  background: rgba(255,255,255,.023);
  color: var(--text);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.consultation-field input { height: 51px; padding: 0 15px; }
.consultation-field textarea { min-height: 104px; resize: vertical; padding: 14px 15px; line-height: 1.6; }
.consultation-field input:focus,
.consultation-field textarea:focus { border-color: rgba(240,215,155,.4); box-shadow: 0 0 0 4px rgba(215,179,106,.05); }
.consultation-field input::placeholder,
.consultation-field textarea::placeholder { color: #5e5665; }
.consultation-field.invalid input { border-color: rgba(198,102,108,.6); }
.consultation-error { min-height: 11px; color: #cb8388; font-size: 8px; }

.consultation-format {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}
.consultation-format legend { margin-bottom: 8px; }
.consultation-format label { position: relative; cursor: pointer; }
.consultation-format input { position: absolute; opacity: 0; }
.consultation-format span {
  min-height: 45px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: #8d8494;
  font-size: 10px;
  text-align: center;
}
.consultation-format input:checked + span { border-color: rgba(240,215,155,.42); background: rgba(240,215,155,.055); color: var(--gold-soft); }

.consultation-consent { display: flex; align-items: flex-start; gap: 10px; color: #817889; font-size: 9px; line-height: 1.55; cursor: pointer; }
.consultation-consent input { margin-top: 2px; accent-color: var(--purple); }
.consultation-gift-note { color: #6f6677; font-size: 8px; line-height: 1.5; }
.consultation-form-status { min-height: 16px; color: #8d8494; font-size: 9px; }
.consultation-form-status.error { color: #ca7e84; }
.consultation-form-status.success { color: #8fbd9e; }
.consultation-submit { display: flex; justify-content: flex-end; }
.consultation-honey { position: absolute !important; left: -9999px !important; }

.consultation-success { padding: 50px 20px 20px; text-align: center; }
.consultation-success > span { display: grid; place-items: center; width: 92px; height: 92px; margin: 0 auto 24px; border: 1px solid rgba(240,215,155,.25); border-radius: 50%; color: var(--gold-soft); font-size: 38px; }
.consultation-success h3 { font-family: "Cinzel", serif; font-size: 30px; }
.consultation-success p { max-width: 480px; margin: 14px auto 25px; color: var(--muted); line-height: 1.7; }

@media (max-width: 820px) {
  .consultation-section { grid-template-columns: 1fr; text-align: center; }
  .consultation-copy > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .consultation-benefits { justify-content: center; }
  .consultation-aura { right: 50%; top: auto; bottom: -240px; translate: 50% 0; }
}

@media (max-width: 620px) {
  .subpage-header-actions { gap: 10px; }
  .subpage-header-actions .language-trigger { min-width: 50px; padding: 0 8px; }
  .consultation-section { width: calc(100% - 24px); padding: 48px 19px; }
  .consultation-action .primary-button { width: 100%; }
  .consultation-panel { padding: 33px 18px 22px; }
  .consultation-panel-heading { grid-template-columns: 1fr; }
  .consultation-form { grid-template-columns: 1fr; }
  .consultation-field-wide { grid-column: auto; }
  .consultation-format { grid-template-columns: 1fr; }
  .consultation-submit .primary-button { width: 100%; }
  .language-menu { position: fixed; top: 68px; right: 14px; }
}


/* Fixed personal-consultation shortcuts */
.quick-consultation {
  position: fixed;
  top: 104px;
  left: clamp(16px, 2.2vw, 34px);
  z-index: 42;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(240, 215, 155, .14);
  border-radius: 16px;
  background: rgba(9, 7, 17, .74);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.quick-consultation-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1px 3px 0;
  white-space: nowrap;
}

.quick-consultation-copy strong {
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .14em;
}

.quick-consultation-copy span {
  color: #a89dad;
  font-family: "Cinzel", serif;
  font-size: 7px;
  letter-spacing: .19em;
}

.quick-contact-links {
  display: flex;
  gap: 8px;
}

.quick-contact {
  position: relative;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
  color: #d9d2df;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, .025);
  transition: transform .22s ease, border-color .22s ease, color .22s ease,
    background .22s ease, box-shadow .22s ease;
}

.quick-contact::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: inherit;
}

.quick-contact svg {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.quick-contact:hover {
  transform: translateY(-3px) scale(1.03);
}

.quick-contact-whatsapp:hover {
  color: #63d991;
  border-color: rgba(99, 217, 145, .5);
  background: rgba(99, 217, 145, .08);
  box-shadow: 0 12px 28px rgba(35, 150, 83, .17);
}

.quick-contact-telegram:hover {
  color: #70c8f3;
  border-color: rgba(112, 200, 243, .5);
  background: rgba(112, 200, 243, .08);
  box-shadow: 0 12px 28px rgba(42, 159, 215, .17);
}

@media (max-width: 820px) {
  .quick-consultation {
    top: 84px;
    left: 12px;
    align-items: flex-start;
    gap: 8px;
    padding: 9px;
    border-radius: 15px;
  }

  .quick-consultation-copy strong {
    font-size: 7px;
  }

  .quick-consultation-copy span {
    font-size: 6px;
  }

  .quick-contact {
    width: 39px;
    height: 39px;
  }
}

@media (max-width: 560px) {
  .quick-consultation {
    top: 82px;
  }

  .quick-contact {
    width: 37px;
    height: 37px;
  }

  .quick-contact svg {
    width: 20px;
    height: 20px;
  }
}


/* Shared legal and contact footer */
.footer-v2 {
  width: min(1320px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1.05fr .65fr 1.3fr;
  gap: 42px;
  align-items: start;
  margin: 0 auto 24px;
  padding: 42px;
  border: 1px solid rgba(240, 215, 155, .11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(113, 84, 167, .14), transparent 32%),
    rgba(12, 9, 22, .82);
  color: var(--muted);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.footer-brand-block > p {
  max-width: 330px;
  margin-top: 18px;
  color: #807788;
  font-size: 11px;
  line-height: 1.7;
}

.footer-legal,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal > span,
.footer-contact > span {
  margin-bottom: 3px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: .2em;
}

.footer-legal a {
  width: fit-content;
  color: #b8aebe;
  font-size: 11px;
  transition: color .2s ease, transform .2s ease;
}

.footer-legal a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}

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

.footer-social {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background: rgba(255, 255, 255, .018);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.footer-social:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 215, 155, .22);
  background: rgba(255, 255, 255, .03);
}

.footer-social svg {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-social > span {
  min-width: 0;
}

.footer-social strong,
.footer-social small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-social strong {
  color: #d4cbd9;
  font-size: 10px;
  font-weight: 500;
}

.footer-social small {
  margin-top: 3px;
  color: #706878;
  font-size: 8px;
  white-space: nowrap;
}

.footer-instagram:hover,
.quick-contact-instagram:hover {
  color: #d58bb4;
  border-color: rgba(213, 139, 180, .48);
  background: rgba(213, 139, 180, .07);
}

.footer-whatsapp:hover {
  color: #63d991;
  border-color: rgba(99, 217, 145, .46);
}

.footer-telegram:hover {
  color: #70c8f3;
  border-color: rgba(112, 200, 243, .46);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .055);
  color: #675f70;
  font-size: 9px;
  line-height: 1.5;
}

.quick-contact-instagram {
  color: #d9d2df;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(113, 84, 167, .17), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(215, 179, 106, .08), transparent 27%),
    #070611;
}

.legal-header {
  position: relative;
  z-index: 10;
  width: min(1240px, calc(100% - 40px));
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.legal-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.legal-back {
  color: #968c9e;
  font-size: 11px;
}

.legal-back:hover {
  color: var(--gold-soft);
}

.legal-main {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 100px;
}

.legal-hero {
  max-width: 800px;
  margin-bottom: 38px;
}

.legal-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.08;
}

.legal-hero > p:last-child {
  max-width: 720px;
  margin-top: 20px;
  color: #968d9e;
  line-height: 1.75;
}

.legal-document {
  padding: clamp(25px, 5vw, 56px);
  border: 1px solid rgba(240, 215, 155, .11);
  border-radius: 24px;
  background: rgba(13, 10, 23, .8);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.legal-document[hidden] {
  display: none;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: #706878;
  font-size: 9px;
}

.legal-document section + section {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .055);
}

.legal-document h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: 22px;
  line-height: 1.35;
}

.legal-document p,
.legal-document li {
  color: #a49aa9;
  font-size: 12px;
  line-height: 1.85;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 20px;
}

.legal-document a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-callout {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(128, 97, 181, .17);
  border-radius: 15px;
  background: rgba(128, 97, 181, .045);
}

@media (max-width: 980px) {
  .footer-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .footer-v2 {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-socials {
    grid-template-columns: 1fr;
  }

  .footer-social {
    padding: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-header {
    width: calc(100% - 28px);
    height: 74px;
  }

  .legal-back {
    display: none;
  }

  .legal-main {
    width: calc(100% - 28px);
    padding: 58px 0 76px;
  }

  .legal-document {
    padding: 26px 18px;
  }
}
