:root {
  --navy: #0b1220;
  --black: #050505;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --gold: #d4af37;
  --gold-bright: #f5c542;
  --white: #ffffff;
  --muted: #9ca3af;
  --line: rgba(212, 175, 55, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 6%, rgba(212, 175, 55, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 16%, rgba(54, 83, 132, 0.24), transparent 32rem),
    linear-gradient(180deg, #050505 0%, #0b1220 44%, #050505 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(calc(100% - 36px), 1220px);
  min-height: 72px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, top 220ms ease;
}

.navbar.scrolled {
  top: 10px;
  border-color: rgba(245, 197, 66, 0.32);
  background: rgba(11, 18, 32, 0.86);
}

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

.brand-logo {
  display: block;
  width: 232px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 197, 66, 0.48);
  border-radius: var(--radius);
  color: #050505;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18);
  font-size: 14px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  transition: color 180ms ease, background 180ms ease;
}

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

.nav-cta,
.btn,
.footer-cta,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  color: #080808;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.22);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: #050505;
  background: linear-gradient(135deg, #ffe178, var(--gold-bright));
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn:hover,
.nav-cta:hover,
.footer-cta:hover,
.mobile-sticky-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #050505;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 44px rgba(212, 175, 55, 0.24);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.btn-secondary:hover {
  border-color: rgba(245, 197, 66, 0.6);
  background: rgba(245, 197, 66, 0.08);
}

.btn-compact {
  min-height: 48px;
  padding: 0 18px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  white-space: nowrap;
}

.btn-large {
  min-height: 62px;
  padding: 0 28px;
  font-size: 17px;
}

.icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.telegram-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: polygon(0 42%, 100% 0, 70% 100%, 48% 62%, 30% 78%);
  background: currentColor;
}

.arrow-icon::before {
  content: "";
  position: absolute;
  inset: 4px 2px 4px 4px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--gold-bright);
}

.hero {
  min-height: 100vh;
  padding-top: 160px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 34%, rgba(212, 175, 55, 0.18), transparent 25rem),
    linear-gradient(120deg, rgba(212, 175, 55, 0.06), transparent 35%),
    repeating-linear-gradient(115deg, transparent 0 30px, rgba(255, 255, 255, 0.025) 31px 32px);
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-bright);
  box-shadow: 0 0 24px var(--gold-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  font-size: 19px;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.hero-actions,
.center-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.trust-line {
  max-width: 570px;
  margin: 20px 0 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-micro span {
  padding: 9px 12px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-wrap {
  position: relative;
  min-height: 560px;
}

.dashboard {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.68);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.34), transparent 42%, rgba(255, 255, 255, 0.08));
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dash-top strong,
.dash-price span {
  display: block;
  font-size: 18px;
}

.dash-top span,
.mini-title,
.dash-price b,
.risk-box small,
.risk-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dash-price {
  text-align: right;
}

.dash-price b {
  color: #6ee7b7;
}

.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
}

.chart-panel,
.pairs-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.chart-panel svg {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.grid-lines path {
  stroke: rgba(255, 255, 255, 0.075);
  stroke-width: 1;
}

.market-line {
  fill: none;
  stroke: url("#goldLine");
  stroke-width: 5;
  filter: drop-shadow(0 0 10px rgba(245, 197, 66, 0.34));
  stroke-dasharray: 900;
  animation: drawLine 4.4s ease-in-out infinite alternate;
}

.structure-line {
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 2;
  stroke-dasharray: 8 8;
}

.zone-gold {
  fill: rgba(245, 197, 66, 0.14);
  stroke: rgba(245, 197, 66, 0.45);
}

.zone-blue {
  fill: rgba(59, 130, 246, 0.14);
  stroke: rgba(147, 197, 253, 0.36);
}

.candles path {
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 2;
}

.candles rect {
  fill: rgba(245, 197, 66, 0.72);
}

.chart-label,
.floating-label {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(245, 197, 66, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}

.chart-label {
  padding: 7px 9px;
}

.premium-zone {
  top: 78px;
  left: 88px;
}

.liquidity {
  top: 58px;
  right: 48px;
}

.order-block {
  right: 74px;
  bottom: 122px;
}

.bos {
  top: 132px;
  right: 138px;
}

.choch {
  left: 160px;
  bottom: 150px;
}

.floating-label {
  padding: 10px 12px;
  animation: float 4s ease-in-out infinite;
}

.label-one {
  top: 60px;
  right: -14px;
}

.label-two {
  top: 176px;
  left: -22px;
  animation-delay: 0.8s;
}

.label-three {
  right: 38px;
  bottom: 108px;
  animation-delay: 1.4s;
}

.label-four {
  left: 28px;
  bottom: 34px;
  animation-delay: 2s;
}

.pairs-panel {
  padding: 14px;
}

.pair-row {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.pair-row span {
  font-weight: 900;
}

.pair-row b {
  color: var(--gold-bright);
  font-size: 11px;
}

.pair-row.active {
  border-color: rgba(245, 197, 66, 0.38);
  background: rgba(245, 197, 66, 0.08);
}

.risk-box {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(245, 197, 66, 0.13), rgba(255, 255, 255, 0.04));
}

.risk-box strong {
  display: block;
  margin: 6px 0;
  color: var(--gold-bright);
  font-size: 24px;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.pain-grid,
.service-grid,
.concept-grid,
.stats-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.pain-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
  grid-template-columns: repeat(6, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pain-card,
.service-card,
.concept-card,
.stat-card,
.testimonial-card,
.founder-card,
.cta-panel,
details {
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.pain-card,
.service-card,
.concept-card,
.testimonial-card {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pain-card:hover,
.service-card:hover,
.concept-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 197, 66, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(245, 197, 66, 0.3);
  border-radius: var(--radius);
  color: var(--gold-bright);
  background: rgba(245, 197, 66, 0.08);
}

.card-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
}

.chart-icon::before,
.scan-icon::before,
.pulse-icon::before {
  clip-path: polygon(0 82%, 18% 62%, 35% 70%, 52% 36%, 70% 48%, 100% 12%, 100% 27%, 72% 64%, 56% 51%, 39% 84%, 20% 76%, 0 100%);
}

.target-icon::before {
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 5px rgba(245, 197, 66, 0.22);
}

.shield-icon::before {
  clip-path: polygon(50% 0, 92% 16%, 86% 64%, 50% 100%, 14% 64%, 8% 16%);
}

.mind-icon::before {
  clip-path: polygon(50% 0, 74% 8%, 90% 28%, 94% 52%, 78% 74%, 58% 76%, 58% 100%, 38% 100%, 38% 77%, 18% 76%, 6% 54%, 10% 28%, 26% 8%);
}

.gold-icon::before {
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
}

.layers-icon::before {
  clip-path: polygon(50% 0, 100% 28%, 50% 56%, 0 28%);
  box-shadow: 0 8px 0 rgba(245, 197, 66, 0.48), 0 16px 0 rgba(245, 197, 66, 0.24);
}

.center-cta {
  justify-content: center;
  margin-top: 36px;
  text-align: center;
}

.center-cta p {
  flex-basis: 100%;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.strip {
  padding: 38px 0;
  border-block: 1px solid rgba(212, 175, 55, 0.16);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.04), rgba(212, 175, 55, 0.12)),
    rgba(5, 5, 5, 0.56);
}

.strip-alt {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(245, 197, 66, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(11, 18, 32, 0.7);
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.strip h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
}

.smc-grid-layout,
.founder-grid,
.faq-grid {
  display: grid;
  align-items: start;
  gap: 48px;
}

.smc-grid-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

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

.mini-chart {
  position: relative;
  height: 92px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(5, 5, 5, 0.22);
  background-size: 24px 24px;
  overflow: hidden;
}

.mini-chart::before {
  content: "";
  position: absolute;
  inset: 16px 14px;
  border-bottom: 3px solid var(--gold-bright);
  border-right: 3px solid var(--gold-bright);
  transform: skewX(-18deg) rotate(-18deg);
  filter: drop-shadow(0 0 8px rgba(245, 197, 66, 0.28));
}

.liquidity-chart::after,
.block-chart::after,
.fvg-chart::after,
.zone-chart::after,
.rr-chart::after {
  content: "";
  position: absolute;
  border-radius: 6px;
}

.liquidity-chart::after {
  left: 12px;
  right: 12px;
  top: 26px;
  border-top: 2px dashed rgba(255, 255, 255, 0.58);
}

.block-chart::after {
  width: 76px;
  height: 32px;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(245, 197, 66, 0.55);
  background: rgba(245, 197, 66, 0.14);
}

.fvg-chart::after {
  width: 42px;
  height: 62px;
  left: 46%;
  top: 16px;
  border: 1px solid rgba(125, 211, 252, 0.48);
  background: rgba(59, 130, 246, 0.13);
}

.zone-chart::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.14) 0 50%, rgba(59, 130, 246, 0.12) 50% 100%);
}

.rr-chart::after {
  left: 18px;
  right: 18px;
  top: 32px;
  height: 28px;
  border-left: 2px solid #ef4444;
  border-right: 2px solid #6ee7b7;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.14), rgba(110, 231, 183, 0.14));
}

.founder {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.055), transparent);
}

.founder-grid {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
}

.founder-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.founder-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.22), transparent 68%);
}

.founder-avatar {
  display: grid;
  width: 118px;
  height: 118px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(245, 197, 66, 0.48);
  border-radius: var(--radius);
  color: #050505;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent),
    linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-size: 34px;
  font-weight: 900;
}

.signature {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-copy p {
  font-size: 18px;
}

.stat-card {
  min-height: 140px;
  padding: 24px 14px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.stat-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.disclaimer {
  max-width: 780px;
  margin: 30px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(245, 197, 66, 0.055);
}

.stars {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.testimonial-user span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: var(--radius);
  color: #050505;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-size: 12px;
  font-weight: 900;
}

.cta-panel {
  position: relative;
  max-width: 980px;
  padding: clamp(34px, 7vw, 76px);
  text-align: center;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 197, 66, 0.2), transparent 28rem),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.14), transparent 24rem);
}

.cta-panel p {
  max-width: 730px;
  margin-inline: auto;
  font-size: 18px;
}

.cta-panel strong {
  display: block;
  margin-top: 22px;
  color: var(--gold-bright);
}

.faq-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0;
}

summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

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

summary::after {
  content: "+";
  color: var(--gold-bright);
  font-size: 24px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.footer {
  padding: 70px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(5, 5, 5, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.3fr;
  gap: 34px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 14px;
  text-transform: uppercase;
}

.footer a:not(.brand):not(.footer-cta) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-tagline {
  color: var(--gold-bright);
  font-weight: 900;
}

.footer-brand .brand-logo {
  width: 300px;
  height: 70px;
  object-position: left center;
}

.footer-cta {
  width: fit-content;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 16px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.copyright {
  display: flex;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  min-height: 52px;
  padding: 0 18px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.mobile-sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 230ms;
}

.delay-4 {
  transition-delay: 300ms;
}

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

@keyframes drawLine {
  from {
    stroke-dashoffset: 160;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .smc-grid-layout,
  .founder-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-wrap {
    min-height: auto;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 860px) {
  .navbar {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 100px);
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    overflow-y: auto;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 15px;
    border-radius: var(--radius);
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.055);
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    padding-top: 130px;
  }

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

  .pairs-panel {
    min-height: auto;
  }

  .floating-label {
    display: none;
  }

  .strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 42px);
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    width: 170px;
    height: 42px;
  }

  .footer-brand .brand-logo {
    width: 240px;
    height: 58px;
  }

  .hero-actions,
  .center-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .pain-grid,
  .service-grid,
  .concept-grid,
  .stats-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard {
    padding: 12px;
  }

  .dash-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .dash-price {
    text-align: left;
  }

  .chart-panel,
  .chart-panel svg {
    min-height: 330px;
  }

  .chart-label {
    font-size: 10px;
  }

  .premium-zone {
    left: 38px;
  }

  .order-block {
    right: 22px;
  }

  .bos {
    right: 90px;
  }

  .choch {
    left: 84px;
  }

  .copyright {
    padding-bottom: 66px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
