:root {
  --bg-main: #090b0f;
  --bg-soft: #0f1218;
  --bg-card: #151922;
  --bg-card-light: #1a1f2a;

  --text-main: #ffffff;
  --text-soft: #c7ceda;
  --text-muted: #8b95a7;
  --text-faint: #5f6877;

  --gold: #f0b90b;
  --gold-soft: rgba(240, 185, 11, 0.12);
  --gold-border: rgba(240, 185, 11, 0.22);

  --green: #0ecb81;
  --red: #f6465d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);

  --font-main: "Plus Jakarta Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.42);
  --transition: 0.22s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 8%, rgba(240,185,11,0.10), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(14,203,129,0.05), transparent 26%),
    linear-gradient(180deg, #090b0f 0%, #0b0e13 100%);
}

.bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.5;
}

.bg-glow-one {
  width: 380px;
  height: 380px;
  top: -160px;
  left: -120px;
  background: rgba(240, 185, 11, 0.10);
}

.bg-glow-two {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 340px;
  background: rgba(90, 103, 216, 0.10);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 11, 15, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid;
  place-items: center;
  box-shadow: 0 0 22px rgba(240, 185, 11, 0.08);
}

.brand-mark span {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.brand-name {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.brand-name span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--text-main);
  display: block;
  margin: 5px auto;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost-soft {
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-ghost-soft:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-lg {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 15px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, #f2c94c, #d6a700);
  color: #0b0e11;
  box-shadow: 0 12px 30px rgba(240, 185, 11, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(240, 185, 11, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border-color: var(--border-strong);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border);
}

.btn-plan {
  width: 100%;
  margin-top: 22px;
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
}

/* HERO */

.hero {
  padding: 96px 0 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(14, 203, 129, 0.8);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -3px;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--text-soft);
}

.hero-text {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-faint);
  font-size: 13px;
  max-width: 600px;
}

.hero-note span {
  color: var(--gold);
}

/* PREVIEW */

.hero-preview {
  order: 2;
}

.hero-content {
  order: 1;
}

.preview-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.preview-topbar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.window-dots span:first-child {
  background: rgba(246,70,93,0.8);
}

.window-dots span:nth-child(2) {
  background: rgba(240,185,11,0.75);
}

.window-dots span:nth-child(3) {
  background: rgba(14,203,129,0.75);
}

.preview-title {
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-mono);
}

.preview-chart {
  height: 330px;
  position: relative;
  padding: 28px;
  background:
    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: 52px 52px;
}

.chart-line {
  position: absolute;
  left: 26px;
  right: 26px;
  height: 1px;
}

.line-one {
  top: 34%;
  background: rgba(14,203,129,0.65);
}

.line-two {
  top: 52%;
  background: rgba(240,185,11,0.55);
  border-top: 1px dashed rgba(240,185,11,0.7);
}

.line-three {
  top: 69%;
  background: rgba(246,70,93,0.65);
}

.signal-pill {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  border-radius: 999px;
  padding: 7px 10px;
}

.signal-pill.long {
  color: var(--green);
  background: rgba(14,203,129,0.10);
  border: 1px solid rgba(14,203,129,0.22);
}

.chart-candles {
  position: absolute;
  inset: 70px 34px 34px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.chart-candles span {
  flex: 1;
  min-width: 8px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(14,203,129,0.9), rgba(14,203,129,0.25));
}

.chart-candles span:nth-child(3n) {
  background: linear-gradient(180deg, rgba(246,70,93,0.85), rgba(246,70,93,0.22));
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.preview-stats div {
  padding: 18px;
  border-right: 1px solid var(--border);
}

.preview-stats div:last-child {
  border-right: none;
}

.preview-stats span {
  display: block;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.preview-stats strong {
  font-family: var(--font-mono);
  color: var(--text-main);
  font-size: 13px;
}

.preview-setup {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.setup-row {
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.setup-row span {
  color: var(--text-muted);
  font-size: 12px;
}

.setup-row strong {
  font-family: var(--font-mono);
  font-size: 12px;
}

.green {
  color: var(--green) !important;
}

.red {
  color: var(--red) !important;
}


/* SECTIONS */

.section {
  padding: 96px 0;
}

.section-soft {
  background: rgba(255,255,255,0.018);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 16px;
}

.section-heading p,
.cta-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

/* FEATURES */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.step-card,
.pricing-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.018)),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  transition: var(--transition);
}

.feature-card:hover,
.step-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.058), rgba(255,255,255,0.022)),
    var(--bg-card-light);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(240,185,11,0.08);
  border: 1px solid rgba(240,185,11,0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.feature-card h3,
.step-card h3,
.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.feature-card p,
.step-card p,
.pricing-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* STEPS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card span {
  display: inline-flex;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 28px;
}

.pricing-card.popular {
  border-color: rgba(240,185,11,0.36);
  box-shadow: 0 24px 80px rgba(240,185,11,0.08);
}

.popular-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  color: var(--gold);
  background: rgba(240,185,11,0.09);
  border: 1px solid rgba(240,185,11,0.18);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-header p {
  margin-bottom: 24px;
}

.price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.price span {
  font-size: 20px;
  vertical-align: 18px;
  color: var(--gold);
}

.price small {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.pricing-card li {
  color: var(--text-soft);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(14,203,129,0.55);
}

.pricing-note {
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 13px;
  text-align: center;
}

/* CTA */

.cta-section {
  padding-top: 20px;
}

.cta-card {
  background:
    radial-gradient(circle at top right, rgba(240,185,11,0.11), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-lg);
}

.cta-card p {
  max-width: 650px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FAQ */

.faq-container {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text-main);
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.faq-question span {
  color: var(--gold);
  font-size: 22px;
  transition: var(--transition);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
  background: rgba(255,255,255,0.018);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-text {
  color: var(--text-muted);
  max-width: 380px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text-main);
}

.risk-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu.open {
    display: grid;
    gap: 12px;
    padding: 18px 20px 24px;
    background: rgba(9, 11, 15, 0.96);
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu a {
    padding: 14px;
    background: rgba(255,255,255,0.035);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-soft);
    font-weight: 800;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid,
  .pricing-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    order: -1;
  }

  .preview-card {
    transform: none;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-container {
    height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 19px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn-lg,
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .preview-chart {
    height: 250px;
    padding: 18px;
  }

  .chart-candles {
    gap: 8px;
    inset: 64px 22px 26px;
  }

  .preview-stats {
    grid-template-columns: 1fr;
  }

  .preview-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .cta-card {
    padding: 28px;
  }

  .footer-grid {
    flex-direction: column;
  }
}

/* ================================
   Smooth Entrance Animations
================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  animation: heroTextIn 0.9s ease both;
}

.hero-preview {
  animation: heroPreviewIn 1s ease 0.12s both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPreviewIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.preview-card {
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.preview-card:hover {
  border-color: rgba(240, 185, 11, 0.22);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    0 0 50px rgba(240, 185, 11, 0.055);
}

.chart-candles span {
  animation: candlePulse 2.8s ease-in-out infinite;
}

.chart-candles span:nth-child(2n) {
  animation-delay: 0.18s;
}

.chart-candles span:nth-child(3n) {
  animation-delay: 0.32s;
}

@keyframes candlePulse {
  0%, 100% {
    opacity: 0.82;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-content,
  .hero-preview,
  .chart-candles span,
  .preview-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ================================
   Mobile Hero Order Fix
   Text first, chart preview second
================================ */

@media (max-width: 980px) {
  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-content {
    order: 1 !important;
  }

  .hero-preview {
    order: 2 !important;
  }
}

/* ================================
   Download Section
================================ */

.download-section {
  padding: 24px 0 46px;
  scroll-margin-top: 90px;
}

.download-card {
  background:
    radial-gradient(circle at top left, rgba(240,185,11,0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(14,203,129,0.055), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.download-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  margin-bottom: 14px;
}

.download-content p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.big-download-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.download-big-btn {
  min-height: 126px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.download-big-btn::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.download-big-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(240,185,11,0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: 0 22px 46px rgba(0,0,0,0.28);
}

.download-big-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  flex: 0 0 auto;
}

.exe-btn .download-big-icon {
  color: #0b0e11;
  background: linear-gradient(135deg, #f2c94c, #d6a700);
  box-shadow: 0 12px 30px rgba(240,185,11,0.18);
}

.apk-btn .download-big-icon {
  color: var(--text-muted);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
}

.download-big-text strong {
  display: block;
  color: var(--text-main);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.download-big-text small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.disabled-download {
  opacity: 0.58;
  cursor: not-allowed;
}

.disabled-download:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border-strong);
}

@media (max-width: 980px) {
  .download-card {
    grid-template-columns: 1fr;
  }

  .big-download-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .download-section {
    padding: 34px 0 22px;
  }

  .download-card {
    padding: 26px;
    border-radius: 24px;
  }

  .download-big-btn {
    min-height: 110px;
    padding: 20px;
  }

  .download-big-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .download-big-text strong {
    font-size: 18px;
  }
}

.brand-logo-img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(240, 185, 11, 0.18));
}


/* ================================
   Brand Logo Image
================================ */

.brand-logo-img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(240, 185, 11, 0.16));
}

/* ================================
   Dashboard Page
================================ */

.dashboard-body {
  min-height: 100vh;
  background: var(--bg-main);
}

.dashboard-header {
  position: sticky;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-user span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-main {
  padding: 62px 0 90px;
}

.dashboard-container {
  display: grid;
  gap: 24px;
}

.dashboard-hero {
  background:
    radial-gradient(circle at top right, rgba(240,185,11,0.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
}

.dashboard-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.dashboard-hero p {
  color: var(--text-muted);
  max-width: 680px;
  font-size: 16px;
  line-height: 1.75;
}

.dashboard-status-pill {
  min-width: 170px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(240,185,11,0.25);
  background: rgba(240,185,11,0.08);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}

.dashboard-status-pill.active {
  border-color: rgba(14,203,129,0.28);
  background: rgba(14,203,129,0.10);
  color: var(--green);
}

.dashboard-status-pill.warning {
  border-color: rgba(240,185,11,0.28);
  background: rgba(240,185,11,0.08);
  color: var(--gold);
}

.dashboard-grid-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.dashboard-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.018)),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.dashboard-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-card-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -1.1px;
  line-height: 1.1;
}

.dashboard-card-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
}

.status-badge {
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.status-badge.status-active {
  color: var(--green);
  border: 1px solid rgba(14,203,129,0.26);
  background: rgba(14,203,129,0.10);
}

.status-badge.status-warning {
  color: var(--gold);
  border: 1px solid rgba(240,185,11,0.24);
  background: rgba(240,185,11,0.08);
}

.account-detail-list {
  display: grid;
  gap: 12px;
}

.account-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
}

.account-detail-row span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.account-detail-row strong {
  color: var(--text-main);
  font-size: 13px;
  font-family: var(--font-mono);
  text-align: right;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.next-step-list {
  display: grid;
  gap: 14px;
}

.next-step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  border-radius: 18px;
}

.next-step-item > span {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: rgba(240,185,11,0.08);
  border: 1px solid rgba(240,185,11,0.18);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
}

.next-step-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.next-step-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.downloads-dashboard-card {
  scroll-margin-top: 90px;
}

.dashboard-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 16px;
}

.help-list {
  display: grid;
  gap: 12px;
}

.help-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  overflow: hidden;
}

.help-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-main);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
  font-size: 14px;
}

.help-question span {
  color: var(--gold);
  font-size: 22px;
  transition: 0.22s ease;
}

.help-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.help-item.active .help-answer {
  display: block;
}

.help-item.active .help-question span {
  transform: rotate(45deg);
}

/* ================================
   Payment Required Modal
================================ */

.payment-modal.hidden {
  display: none;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(12px);
}

.payment-modal-card {
  width: min(440px, 100%);
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at top, rgba(240,185,11,0.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02)),
    var(--bg-card);
  border: 1px solid rgba(240,185,11,0.24);
  border-radius: 26px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
  animation: modalPop 0.28s ease both;
}

.payment-modal-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: rgba(240,185,11,0.10);
  border: 1px solid rgba(240,185,11,0.24);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
}

.payment-modal-card h2 {
  font-size: 28px;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.payment-modal-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.payment-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================================
   Dashboard Responsive
================================ */

@media (max-width: 980px) {
  .dashboard-nav-links {
    display: none;
  }

  .dashboard-grid-section {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .dashboard-main {
    padding: 34px 0 70px;
  }

  .dashboard-user {
    width: 100%;
    justify-content: space-between;
  }

  .dashboard-hero,
  .dashboard-card {
    padding: 24px;
    border-radius: 22px;
  }

  .dashboard-actions {
    flex-direction: column;
  }

  .dashboard-actions .btn {
    width: 100%;
  }

  .account-detail-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-detail-row strong {
    text-align: left;
  }

  .payment-modal-actions {
    flex-direction: column;
  }

  .payment-modal-actions .btn {
    width: 100%;
  }
}

/* ================================
   Dashboard Login Modal
================================ */

.login-modal-card {
  text-align: left;
}

.dashboard-login-form {
  display: grid;
  gap: 12px;
  margin: 22px 0 12px;
}

.dashboard-login-form input {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-main);
  padding: 0 14px;
  outline: none;
  font-size: 14px;
}

.dashboard-login-form input:focus {
  border-color: rgba(240, 185, 11, 0.42);
  box-shadow: 0 0 0 4px rgba(240, 185, 11, 0.08);
}

.dashboard-login-form .btn {
  width: 100%;
  height: 48px;
}

.dashboard-login-error {
  min-height: 18px;
  color: var(--red);
  font-size: 13px;
  margin: 8px 0 0;
}

.dashboard-login-footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.dashboard-login-footer a {
  color: var(--gold);
  font-weight: 800;
}

/* ================================
   Auth Modal / Google Login
================================ */

.auth-modal.hidden {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(12px);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  background: linear-gradient(135deg, rgba(26, 31, 42, 0.98), rgba(13, 16, 23, 0.98));
  border: 1px solid rgba(240, 185, 11, 0.22);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.auth-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.auth-brand h2 {
  font-size: 24px;
  line-height: 1.1;
}

.auth-brand p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 5px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
}

.auth-tab {
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.active {
  background: rgba(240, 185, 11, 0.14);
  color: var(--gold);
}

.auth-form {
  display: grid;
  gap: 13px;
}

.auth-field {
  display: grid;
  gap: 7px;
}

.auth-field label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.auth-field input {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-main);
  padding: 0 14px;
  outline: none;
}

.auth-field input:focus {
  border-color: rgba(240, 185, 11, 0.42);
  box-shadow: 0 0 0 4px rgba(240, 185, 11, 0.08);
}

.auth-submit {
  width: 100%;
  height: 48px;
  margin-top: 4px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
  font-size: 12px;
  margin: 18px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.google-render-target {
  width: 100%;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-render-target > div {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}

.google-render-target iframe {
  max-width: 100% !important;
}

.auth-error {
  min-height: 18px;
  margin-top: 12px;
  color: var(--red);
  font-size: 13px;
}

.auth-note {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 12px;
}

.mobile-auth-link {
  background: transparent;
  border: 0;
  color: var(--text-soft);
  text-align: left;
  font: inherit;
  padding: 12px 0;
  cursor: pointer;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.footer-policy-links a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-policy-links a:hover {
  color: var(--gold);
}

.policy-page {
  min-height: 100vh;
  background: var(--bg-main);
  color: var(--text-main);
  padding: 120px 20px 60px;
}

.policy-container {
  width: min(900px, 100%);
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 31, 42, 0.92), rgba(13, 16, 23, 0.96));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
}

.policy-container h1 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 12px;
}

.policy-container h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--gold);
}

.policy-container p,
.policy-container li {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 15px;
}

.policy-container ul {
  padding-left: 22px;
}

.policy-updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 26px;
}

.policy-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.dashboard-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 34px 0 10px;
  padding-bottom: 30px;
}

.dashboard-policy-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.dashboard-policy-links a:hover {
  color: var(--gold);
}