:root {
  color-scheme: dark;
  --bg-dark: #0d0d0d;
  --bg-panel: #131313;
  --bg-card: #171717;
  --border: rgba(255, 255, 255, 0.08);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --text-light: #f7f5f0;
  --text-muted: #b0ada4;
  --green: #1db954;
  --green-soft: rgba(29, 185, 84, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 28%), var(--bg-dark);
  color: var(--text-light);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1230px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  margin: 0;
}

h1,
h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #f3d47d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.05rem;
}

p,
li {
  color: var(--text-muted);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 0.5rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f3d47d);
  color: var(--bg-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.16);
}

.btn-success {
  background: var(--green);
  color: var(--bg-dark);
}

.site-header,
.announcement-bar,
.footer-note {
  width: 100%;
 
}

.announcement-bar {
  background: linear-gradient(135deg, #13161f, #0b0d14);
  border-bottom: 1px solid rgba(212,175,55,0.16);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.announcement-bar p {
  margin: 0;
  font-size: 0.95rem;
  color: #f1ecd9;
}

.announcement-bar p a {
  color: var(--gold);
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(13, 13, 13, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 5.4rem;
  /*height: 5.4rem;*/
  border-radius: 0.75rem;
  background: transparent !important;
  color: var(--bg-dark);
  font-weight: 800;
}
.brand-mark .brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  background: transparent !important;
}

.brand-name,
.footer-brand .brand-name {
  font-size: 0.95rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--text-light);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  font-size: 1.15rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: auto 0 0;
  top: 12rem;
  width: 100%;
  background: rgba(13, 13, 13, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 19;
}

.mobile-nav a {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 1rem 0 1rem;
}

.hero-text {
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem
}

.hero-widget {
  width: 100%;
}

.chart-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.chart-header,
.chart-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.chart-symbol {
  display: block;
  font-weight: 700;
  color: var(--text-light);
}

.chart-timeframe {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.chart-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.chart-viewport {
  position: relative;
  height: 380px;
  border-radius: 1.5rem;
  background: #0f1220;
  overflow: hidden;
  margin-bottom: 1rem;
}

.tradingview-widget-container,
.tradingview-widget-container__widget {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.chart-grid {
  display: none;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 40px, 40px 100%;
}

.candles {
  position: absolute;
  inset: 1rem 1rem 2rem;
}

.candle {
  position: absolute;
  width: 12px;
  border-radius: 999px;
  bottom: 0;
}

.candle.up {
  background: linear-gradient(180deg, rgba(157, 245, 143, 0.9), rgba(29, 185, 84, 0.6));
}

.candle.down {
  background: linear-gradient(180deg, rgba(255, 112, 108, 0.95), rgba(255, 157, 163, 0.5));
}

.chart-footer span {
  font-size: 0.9rem;
}

.benefits-grid,
.workflow-grid,
.pricing-grid,
.download-grid,
.steps-grid,
.broker-grid {
  display: grid;
  gap: 1.25rem;
}

.benefit-card,
.workflow-card,
.pricing-card,
.download-card,
.step-card,
.source-card,
.download-note-card,
.setup-note-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.6rem;
  padding: 1.5rem;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profit-drawdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.split-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 1.6rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  min-height: 170px;
}

.profit-split-box {
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.split-box__value {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}

.split-box__labels {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

.risk-summary-box h3 {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 1rem;
}

.risk-summary-box p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 600;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.risk-alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.risk-alert__icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.risk-alert h3 {
  margin-bottom: 0.35rem;
  color: var(--text-light);
  font-size: 1rem;
}

.risk-alert p {
  margin: 0;
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  font-weight: 700;
}

.benefit-card h3,
.workflow-card h3 {
  font-size: 1rem;
  color: var(--text-light);
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.broker-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.broker-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 1.6rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.broker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  font-weight: 700;
}

.broker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.copy-link-btn {
  background: rgba(255,255,255,0.06);
  color: var(--text-light);
  border-color: rgba(255,255,255,0.16);
}

.workflow-card {
  min-height: 220px;
}

.workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.workflow-card p {
  margin-top: 0.5rem;
}

.live-results {
  padding: 3rem 0;
}

.live-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 1rem;
  align-items: center;
}

.live-action {
  display: flex;
  justify-content: flex-end;
}

.pricing-intro {
  margin-bottom: 2rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
  padding: 1.75rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(18, 18, 18, 0.85);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.pricing-card h3 {
  color: var(--text-light);
}

.pricing-free {
  background: linear-gradient(180deg, rgba(29, 185, 84, 0.12), rgba(255,255,255,0.03));
  border-color: rgba(29, 185, 84, 0.2);
}

.pricing-popular {
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(255,255,255,0.03));
  border-color: rgba(212,175,55,0.26);
}

.badge-popular {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pricing-title {
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-card .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pricing-card .price-tag span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-steps,
.pricing-features {
  margin: 0;
  padding-left: 1.2rem;
}

.pricing-steps li,
.pricing-features li {
  margin-bottom: 0.75rem;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.source-card {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(212, 175, 55, 0.06);
}

.source-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.source-features {
  padding-left: 1.25rem;
}

.source-features li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.steps-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-weight: 700;
}

.step-tip {
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-mock {
  display: grid;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1rem;
}

.form-mock label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-mock span {
  color: var(--text-light);
}

.cta-bar {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.download-file {
  color: var(--gold);
  font-weight: 700;
}

.download-note-card,
.setup-note-card {
  margin-top: 1.25rem;
  padding: 1.5rem;
}

.download-note-card {
  border-color: rgba(255,255,255,0.08);
}

.setup-note-card {
  border-color: rgba(212, 175, 55, 0.2);
}

.copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0.75rem 0;
}

.copy-row code {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  overflow-x: auto;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.faq-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}

.faq-tab.active {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: transparent;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem;
  padding: 0 1.1rem;
  margin-top: 15px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
  margin-bottom: 1rem;
}

.faq-answer p {
  padding-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.6rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  width: fit-content;
}

.contact-channel span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-channel a {
  color: var(--gold);
  font-weight: 700;
}

.contact-note {
  margin-top: 1.25rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 1rem;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-tagline {
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-note {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.footer-telegram-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 0.25rem;
}
.footer-telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.footer-telegram-link svg {
  display: block;
}
.footer-telegram-link:hover {
  color: #fff;
}

.hidden {
  display: none !important;
}

@media (max-width: 992px) {
  .hero-grid,
  .pricing-grid,
  .source-card,
  .live-grid,
  .download-grid,
  .profit-drawdown-grid,
  .broker-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .source-card {
    padding: 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .pricing-grid,
  .source-card,
  .live-grid,
  .download-grid,
  .profit-drawdown-grid,
  .broker-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .source-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 0.75rem;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .benefits-grid,
  .workflow-grid,
  .steps-grid,
  .download-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .live-action {
    justify-content: flex-start;
  }

  .announcement-inner,
  .chart-header,
  .chart-footer,
  .source-actions,
  .cta-bar,
  .copy-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions,
  .broker-actions,
  .contact-card .telegram-contact-btn,
  .contact-card .btn {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn,
  .broker-actions .btn,
  .telegram-contact-btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    min-height: 42px;
  }

  .telegram-contact-btn {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .announcement-actions {
    justify-content: flex-start;
  }

  .pricing-card {
    padding: 1.5rem;
    border-radius: 1.75rem;
  }

  .pricing-card h3 {
    font-size: 1.75rem;
  }

  .price-tag {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .announcement-bar {
    padding: 0 0.5rem;
  }

  .announcement-inner {
    gap: 0.75rem;
  }

  .chart-viewport {
    height: 280px;
  }

  .pricing-grid,
  .steps-grid,
  .download-grid {
    gap: 1rem;
  }
}


