:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --gold: #d4af37;
  --gold-light: #f6e27a;
  --gold-mid: #e8c96a;
  --gold-deep: #b8860b;
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --muted-2: #8d8d8d;
  --live: #2ecc71;
  --forex: #7ec8ff;
  --oil: #cfcfcf;
  --radius: 18px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Montserrat", "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 18% 18%, rgba(212, 175, 55, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(212, 175, 55, 0.05), transparent 50%),
    var(--bg);
}

.hero__glow {
  position: absolute;
  inset: auto auto 10% 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vh, 80px) clamp(28px, 5vw, 88px) clamp(48px, 7vh, 88px);
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: live-pulse 1.8s ease-out infinite;
}

.hero__title {
  margin-top: 18px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(26px, 3.1vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero__title-gold {
  background: linear-gradient(180deg, #fff4b8 0%, #f6e27a 18%, #d4af37 52%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.22));
}

.hero__assets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 26px;
  list-style: none;
  color: var(--gold-mid);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__assets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__assets li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.hero__asset-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.hero__asset-icon svg {
  width: 20px;
  height: 20px;
}

.hero__lead {
  max-width: 540px;
  margin-top: 22px;
  color: #d8d8d8;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  line-height: 1.55;
}

.hero__perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 18px 28px;
  width: fit-content;
  margin-top: 34px;
  list-style: none;
}

.hero__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__perk-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(246, 226, 122, 0.18), rgba(212, 175, 55, 0.05) 55%, transparent);
  color: var(--gold);
}

.hero__perk-icon svg {
  width: 22px;
  height: 22px;
}

.hero__perks span:last-child {
  display: flex;
  flex-direction: column;
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__perks strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 36px;
  padding: 16px 28px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8e7a0 0%, #e4c25a 42%, #c9a227 100%);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 10px 30px rgba(212, 175, 55, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 12px 34px rgba(212, 175, 55, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero__cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.hero__cta-vk {
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: #111;
}

.hero__note {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 14px;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 48px 40px 48px 12px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.18) 28%, transparent 48%),
    radial-gradient(ellipse at 70% 40%, rgba(212, 175, 55, 0.12), transparent 50%),
    #090909;
}

.hero__chart {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.hero__chart svg {
  width: 100%;
  height: 100%;
}

.hero__photo-slot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  height: min(82vh, 760px);
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.hero__photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 12%;
}

.markets {
  position: relative;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 88px) clamp(64px, 9vw, 110px);
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(212, 175, 55, 0.06), transparent 55%),
    var(--bg);
}

.markets__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.markets__title {
  max-width: 920px;
  margin: 0 auto 48px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

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

.market-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
  transition: border-color 0.2s ease;
}

.market-card--gold {
  border-color: rgba(212, 175, 55, 0.28);
}

.market-card--forex {
  border-color: rgba(126, 200, 255, 0.24);
}

.market-card--oil {
  border-color: rgba(200, 200, 200, 0.16);
}

.market-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 0;
}

.market-card__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.market-card__icon svg {
  width: 44px;
  height: 44px;
}

.market-card--gold .market-card__icon {
  background: rgba(212, 175, 55, 0.08);
}

.market-card--forex .market-card__icon {
  background: rgba(126, 200, 255, 0.08);
}

.market-card--oil .market-card__icon {
  background: rgba(207, 207, 207, 0.06);
}

.market-card__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.market-card--gold .market-card__name {
  color: var(--gold-mid);
}

.market-card--forex .market-card__name {
  color: var(--forex);
}

.market-card--oil .market-card__name {
  color: #fff;
}

.market-card__pair {
  margin-top: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-card__text {
  flex: 1;
  padding: 16px 28px 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.market-card__chart {
  margin-top: auto;
  height: 88px;
}

.market-card__chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.markets__note {
  max-width: 760px;
  margin: 36px auto 0;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
}

.schedule {
  padding: 0 clamp(20px, 5vw, 88px) clamp(72px, 9vw, 120px);
}

.schedule__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.schedule-card,
.countdown-card {
  padding: 36px 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
}

.schedule-card__label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.schedule-card__time {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.schedule-card__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.schedule-card__icon svg {
  width: 42px;
  height: 42px;
}

.schedule-card__days {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-card__hour {
  margin-top: 6px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff4b8 0%, #f6e27a 18%, #d4af37 52%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.schedule-card__title {
  margin-top: 28px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule-card__assets {
  margin-top: 8px;
  color: var(--gold-mid);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-card__text {
  max-width: 460px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.schedule-card .hero__cta {
  margin-top: 28px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.countdown__value {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 110px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  background: #0a0a0a;
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.06);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.countdown__unit {
  color: var(--gold-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.countdown-card__text {
  margin-top: 28px;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}

.countdown-card__assets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 22px;
  list-style: none;
  color: var(--gold-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.countdown-card__assets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-card__assets svg {
  display: block;
  width: 20px;
  height: 20px;
}

.about {
  padding: 0 clamp(20px, 5vw, 88px) clamp(72px, 9vw, 120px);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
}

.about-card__photo {
  overflow: hidden;
  min-height: 100%;
  background: #111;
}

.about-card__photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 12%;
}

.about-card__body {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
}

.about-card__title {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-card__title span {
  display: block;
}

.about-card__title-gold {
  margin-top: 4px;
  background: linear-gradient(180deg, #fff4b8 0%, #f6e27a 18%, #d4af37 52%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-card__text {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.about-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  list-style: none;
}

.about-card__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #d8d8d8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-card__stats strong {
  color: var(--gold-mid);
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
}

.price-card__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.price-card__zero {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.9;
  background: linear-gradient(180deg, #fff4b8 0%, #f6e27a 18%, #d4af37 52%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card__lead {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.price-card__check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.price-card__check svg {
  width: 22px;
  height: 22px;
}

.price-seal {
  position: relative;
  flex-shrink: 0;
  width: min(42vw, 188px);
  height: min(42vw, 188px);
  filter: drop-shadow(0 10px 22px rgba(212, 175, 55, 0.28));
}

.price-seal svg {
  display: block;
  width: 100%;
  height: 100%;
}

.price-seal__text {
  position: absolute;
  inset: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1a1408;
}

.price-seal__text span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-seal__text strong {
  margin: 4px 0 2px;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.price-card .hero__cta {
  margin-top: 24px;
}

.capture {
  position: relative;
  padding: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 88px) clamp(72px, 9vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212, 175, 55, 0.16), transparent 62%),
    linear-gradient(180deg, #120e06 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.capture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.12), transparent);
  pointer-events: none;
}

.capture__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.capture__kicker {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.capture__markets {
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff4b8 0%, #f6e27a 18%, #d4af37 52%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.capture__text {
  max-width: 560px;
  margin-top: 18px;
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.55;
}

.capture__cta {
  margin-top: 28px;
}

.capture__note {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 14px;
}

.footer {
  padding: 48px clamp(20px, 5vw, 88px) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer__disclaimer {
  color: #8a8a8a;
  font-size: 13px;
  line-height: 1.65;
}

.footer__disclaimer + .footer__disclaimer {
  margin-top: 14px;
}

.footer__license {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  color: var(--gold-mid);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer__license:hover,
.footer__license:focus-visible {
  color: var(--gold-light);
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  align-items: end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__company {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
}

.footer__company a {
  color: var(--gold-mid);
}

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

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer__nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.footer__nav a:hover {
  color: var(--gold-mid);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 18px;
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal__dialog img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

body.modal-open {
  overflow: hidden;
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-top {
  padding: 28px clamp(20px, 5vw, 88px) 0;
}

.legal-top__inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8e7a0 0%, #e4c25a 42%, #c9a227 100%);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.legal-back:hover {
  filter: brightness(1.06);
}

.legal {
  flex: 1;
  padding: 36px clamp(20px, 5vw, 88px) 64px;
}

.legal__inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal h1 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.legal h2 {
  margin-top: 32px;
  color: var(--gold-mid);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal p {
  margin-top: 14px;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
}

.legal a {
  color: var(--gold-mid);
}

.legal ul {
  margin-top: 12px;
  padding-left: 20px;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
}

.legal li + li {
  margin-top: 8px;
}

.legal__caps {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.65);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

@media (max-width: 1100px) {
  .markets__grid {
    gap: 16px;
  }

  .market-card__head {
    padding: 22px 22px 0;
  }

  .market-card__text {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-card {
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  }

  .price-seal {
    width: 156px;
    height: 156px;
  }

  .price-seal__text strong {
    font-size: 34px;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero__content {
    padding-right: 24px;
  }

  .hero__perks {
    gap: 16px 18px;
  }

  .hero__cta {
    font-size: 13px;
    padding-right: 20px;
  }
}

@media (max-width: 900px) {
  .markets__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .markets__title {
    margin-bottom: 32px;
  }

  .schedule__inner {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-card__photo {
    height: 280px;
  }

  .price-card__row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .price-seal {
    width: 180px;
    height: 180px;
  }

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

  .footer__nav {
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: 36px 20px 28px;
    max-width: none;
  }

  .hero__title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .hero__assets {
    gap: 8px 12px;
  }

  .hero__assets li:not(:last-child)::after {
    margin-left: 8px;
  }

  .hero__perks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__cta {
    width: 100%;
    padding: 14px 16px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .hero__visual {
    min-height: auto;
    padding: 8px 20px 28px;
  }

  .hero__photo-slot {
    max-width: 100%;
    height: min(58vh, 520px);
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .hero__badge {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 7px 12px 7px 10px;
  }

  .hero__assets {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__note {
    font-size: 13px;
  }

  .hero__cta-vk {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__live {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
