:root {
  --bg: #07101f;
  --bg-elevated: rgba(12, 18, 36, 0.86);
  --bg-panel: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f2ea;
  --muted: rgba(245, 242, 234, 0.82);
  --gold: #d4af37;
  --gold-strong: #f4d16a;
  --gold-soft: rgba(212, 175, 55, 0.16);
  --emerald: #2fb573;
  --red: #d85c5c;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 48px rgba(3, 7, 18, 0.45);
  --shadow-hover: 0 34px 90px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 26px 70px rgba(212, 175, 55, 0.16);
  --radius-xl: 16px;
  --radius-lg: 13px;
  --radius-md: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.12), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(47, 181, 115, 0.08), transparent 24%),
    linear-gradient(180deg, #08101d 0%, #050915 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-mark__text strong,
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.skip-link {
  position: fixed;
  top: 0;
  left: 16px;
  z-index: 2000;
  background: #f4d16a;
  color: #141414;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 12px 12px;
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: rgba(5, 9, 21, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  --bs-navbar-padding-y: 0.9rem;
}

.navbar .nav-link {
  color: rgba(245, 242, 234, 0.82);
  font-weight: 600;
  font-size: 0.95rem;
  padding-inline: 0.8rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold);
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.05);
}

.brand-mark__text {
  display: flex;
  flex-direction: column;
}

.brand-mark__text strong {
  font-size: 1.45rem;
  line-height: 1;
}

.brand-mark__text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: linear-gradient(135deg, #f4d16a 0%, #c79e22 100%);
  color: #141414;
  border: none;
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #111;
  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.34);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.12), transparent 18%),
    radial-gradient(circle at 80% 35%, rgba(47, 181, 115, 0.08), transparent 20%);
  pointer-events: none;
}

.display-hero--subpage {
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.metric-card--compact {
  min-height: 138px;
}

.subpage-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.live-table {
  display: grid;
  gap: 1rem;
}

.live-table__row {
  padding: 1.05rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.live-table__label {
  color: rgba(245, 242, 234, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.live-table__value {
  margin-top: 0.35rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
}

.live-table__note {
  margin-top: 0.25rem;
  color: var(--muted);
}

.account-chart--tall {
  height: 360px;
}

.signal-template-list {
  display: grid;
  gap: 0.85rem;
}

.signal-format-row {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.signal-format-row__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(245, 242, 234, 0.68);
}

.signal-format-row__value {
  margin-top: 0.3rem;
  color: #fff;
  font-weight: 700;
}

.signal-example {
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 16, 32, 0.9), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.signal-example__header,
.signal-example__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.signal-example__header {
  margin-bottom: 1rem;
  font-weight: 800;
  color: #fff;
}

.signal-example__body {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7f2e7;
  line-height: 1.8;
}

.signal-example__footer {
  margin-top: 1rem;
  color: var(--muted);
}

@media (max-width: 767.98px) {
  .subpage-mini-grid {
    grid-template-columns: 1fr;
  }

  .signal-example__header,
  .signal-example__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.38;
  mask-image: radial-gradient(circle at center, #000 55%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
}

.hero-orb--left {
  width: 380px;
  height: 380px;
  background: rgba(27, 42, 83, 0.72);
  top: 7%;
  left: -110px;
}

.hero-orb--right {
  width: 430px;
  height: 430px;
  background: rgba(12, 18, 41, 0.88);
  right: -120px;
  bottom: 8%;
}

.display-hero {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.95;
  text-wrap: balance;
}

.eyebrow,
.section-kicker,
.trust-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.9);
}

.eyebrow span,
.section-kicker::before,
.trust-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  max-width: 42rem;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 1rem;
}

.hero-card__header,
.account-visual__top,
.info-row,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.1);
  color: #f5d77f;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.status-pill--small {
  padding: 0.35rem 0.7rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.feature-card,
.process-card,
.tier-card,
.package-card,
.journey-item,
.dashboard-card,
.role-card,
.field-chip {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 16, 32, 0.42);
}

.metric-card {
  padding: 1rem;
  min-height: 150px;
}

.metric-card__label,
.info-row span,
.micro-stat__label,
.package-route,
.tier-card__positioning {
  color: rgba(245, 242, 234, 0.66);
  font-size: 0.9rem;
}

.metric-card__value,
.package-price,
.tier-card__capital {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.45rem;
}

.metric-card__detail {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.section-shell {
  position: relative;
}

.section-shell--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-heading h2 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.trust-strip,
.info-panel,
.signal-template,
.join-panel,
.faq-footer,
.disclosure-box,
.risk-banner,
.risk-callout,
.risk-note-inline,
.security-warning {
  border-radius: var(--radius-lg);
}

.trust-title,
.footer-heading,
.feature-card h3,
.process-card h3,
.package-card h3,
.journey-item h3,
.join-panel h3,
.hero-card h3 {
  margin-bottom: 0.55rem;
}

.trust-title,
.footer-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.feature-card {
  padding: 1.75rem;
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.process-card {
  padding: 1.5rem;
}

.process-card__number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  color: #f4d16a;
  font-weight: 800;
  margin-bottom: 1rem;
}

.template-list,
.package-list,
.feature-bullets,
.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.template-list li,
.package-list li,
.feature-bullets li,
.footer-links li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.template-list li::before,
.package-list li::before,
.feature-bullets li::before,
.footer-links li::before {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
}

.info-panel {
  overflow: hidden;
}

.info-row {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-row:last-child {
  border-bottom: 0;
}

.risk-note-inline,
.risk-banner,
.disclosure-box,
.security-warning {
  padding: 1rem 1.25rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: #f6e8b3;
}

.risk-banner {
  text-align: center;
}

.account-visual {
  overflow: hidden;
  position: relative;
}

.account-chart {
  position: relative;
  height: 320px;
  margin-top: 1.25rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
}

.chart-line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 999px;
  transform-origin: left center;
  z-index: 1;
}

.chart-line--primary {
  top: 45%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), #f4d16a, rgba(244, 209, 106, 0));
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
}

.chart-line--secondary {
  top: 62%;
  background: linear-gradient(90deg, rgba(47, 181, 115, 0.1), rgba(47, 181, 115, 0.8), rgba(47, 181, 115, 0));
  opacity: 0.65;
}

.micro-stat {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-gold-soft,
.badge-danger-soft,
.badge-emerald-soft,
.badge-muted-soft {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
}

.badge-gold-soft {
  color: #f6e7ad;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.badge-danger-soft {
  color: #ffb1b1;
  background: rgba(216, 92, 92, 0.14);
  border: 1px solid rgba(216, 92, 92, 0.25);
}

.badge-emerald-soft {
  color: #aef0cc;
  background: rgba(47, 181, 115, 0.14);
  border: 1px solid rgba(47, 181, 115, 0.25);
}

.badge-muted-soft {
  color: #cfd7e6;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tier-card__capital {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.package-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: rgba(245, 242, 234, 0.68);
  font-weight: 800;
}

.package-card--featured {
  border-color: rgba(212, 175, 55, 0.36);
  box-shadow: 0 24px 80px rgba(212, 175, 55, 0.08);
}

.package-card--soon {
  opacity: 0.95;
}

.package-route {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.journey-list {
  display: grid;
  gap: 1rem;
}

.journey-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.journey-item__step {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.12);
  color: #f4d16a;
  font-weight: 800;
}

.field-chip,
.dashboard-card,
.role-card {
  padding: 0.95rem 1rem;
  text-align: center;
}

.field-chip {
  color: #f5f2ea;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.role-card--wide {
  grid-column: 1 / -1;
}

.dashboard-card {
  min-height: 84px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 17, 0.95);
}

.footer-brand {
  font-size: 2rem;
  color: #fff;
}

.footer-copy,
.footer-links a,
.footer-meta {
  color: rgba(245, 242, 234, 0.72);
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}

.sticky-telegram {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(36, 148, 207, 0.98), rgba(27, 110, 180, 0.98));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.sticky-telegram:hover,
.sticky-telegram:focus {
  color: #fff;
  transform: translateY(-2px);
}

.accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 1rem;
}

.accordion-button {
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: rgba(212, 175, 55, 0.12);
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  color: var(--muted);
  padding-top: 1rem;
}

.faq-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .site-header {
    position: static;
  }

  .display-hero {
    font-size: clamp(2.9rem, 13vw, 4.8rem);
  }

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

  .hero-section {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .metric-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .hero-card__header,
  .account-visual__top,
  .info-row,
  .footer-meta,
  .faq-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-telegram {
    left: 18px;
    right: 18px;
    justify-content: center;
  }

  .journey-item {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================== *
 *  PROFESSIONAL POLISH LAYER
 *  Finishing pass over the base theme: type rendering, depth, hover states,
 *  micro-interactions, and accessibility. Keeps the navy + gold identity.
 * ========================================================================== */

/* --- Global rendering & selection -------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(212, 175, 55, 0.28);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

.hero-lead,
.section-heading p,
p {
  text-wrap: pretty;
}

/* Custom scrollbar (WebKit) — subtle, on-theme */
* {
  scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(3, 7, 18, 0.6);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0.3));
  border: 3px solid transparent;
  background-clip: content-box;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(244, 209, 106, 0.8), rgba(212, 175, 55, 0.5));
  background-clip: content-box;
}

/* --- Accessible focus rings -------------------------------------------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.accordion-button:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 3px;
  border-radius: 12px;
}

/* --- Header: refined sticky + shrink-on-scroll -------------------------- */
.site-header {
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(4, 8, 18, 0.9);
  border-bottom-color: rgba(212, 175, 55, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.site-header.is-scrolled .navbar {
  --bs-navbar-padding-y: 0.55rem;
}

.navbar {
  transition: padding var(--transition);
}

/* Animated underline on nav links */
.navbar .nav-link {
  position: relative;
  transition: color var(--transition);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.35rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-strong), var(--gold));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.brand-mark__icon {
  transition: transform var(--transition), box-shadow var(--transition);
}

.brand-mark:hover .brand-mark__icon {
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.22), inset 0 0 24px rgba(212, 175, 55, 0.08);
}

/* --- Buttons: smooth motion, gold shine, honest active state ----------- */
.btn {
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), border-color var(--transition), color var(--transition);
  will-change: transform;
}

.btn-lg {
  padding-block: 0.85rem;
}

.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-gold:hover::before {
  transform: translateX(120%);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(212, 175, 55, 0.32);
}

.btn-gold:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.24);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
}

/* --- Unified card hover: lift + border-glow ---------------------------- */
.glass-card,
.metric-card,
.feature-card,
.process-card,
.tier-card,
.package-card,
.journey-item,
.dashboard-card,
.role-card,
.field-chip,
.micro-stat {
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition), background-color var(--transition);
}

.feature-card:hover,
.process-card:hover,
.tier-card:hover,
.journey-item:hover,
.metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: var(--shadow-hover);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: var(--shadow-gold), var(--shadow-hover);
}

.dashboard-card:hover,
.role-card:hover,
.field-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.06);
}

/* Icon flourish inside feature / process cards */
.feature-icon,
.process-card__number,
.journey-item__step {
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.feature-card:hover .feature-icon {
  transform: translateY(-3px) scale(1.06);
  background: rgba(212, 175, 55, 0.2);
}

.process-card:hover .process-card__number,
.journey-item:hover .journey-item__step {
  transform: scale(1.06);
  color: #fff;
}

/* --- Featured package: gold accent bar + "Popular" tag ----------------- */
.package-card--featured {
  position: relative;
  overflow: hidden;
}

.package-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-strong), var(--gold), transparent);
}

/* --- Section rhythm: hairline separators between blocks ---------------- */
.section-shell + .section-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-kicker,
.eyebrow,
.trust-kicker {
  animation: none;
}

/* Give the hero a touch more cinematic depth */
.hero-orb {
  filter: blur(60px);
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 120%, transparent 55%, rgba(3, 6, 15, 0.7) 100%);
}

/* --- Accordion refinement ---------------------------------------------- */
.accordion-button {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.accordion-button:hover {
  background: rgba(212, 175, 55, 0.08);
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.accordion-item:hover {
  border-color: rgba(212, 175, 55, 0.18);
}

/* --- Sticky Telegram: gentle attention pulse --------------------------- */
.sticky-telegram {
  transition: transform var(--transition), box-shadow var(--transition);
  animation: sticky-float 3.5s var(--ease) infinite;
}

.sticky-telegram:hover,
.sticky-telegram:focus-visible {
  box-shadow: 0 26px 54px rgba(36, 148, 207, 0.45);
}

@keyframes sticky-float {
  0%, 100% {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(36, 148, 207, 0.1);
  }
}

/* --- Badges / status pills: crisper edges ------------------------------ */
.status-pill,
.badge-gold-soft,
.badge-danger-soft,
.badge-emerald-soft,
.badge-muted-soft {
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

/* --- Footer links: animated hover -------------------------------------- */
.footer-links a {
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  padding-left: 0.25rem;
  color: var(--gold-strong);
}

/* --- Contrast fix: Bootstrap's .text-muted is dark-on-dark ------------- *
 * Without data-bs-theme="dark", .text-muted resolves to Bootstrap's light
 * secondary colour (near-black), which is invisible on this dark UI. Point
 * it (and other faint utilities) at the theme's readable muted tone.        */
.text-muted {
  color: var(--muted) !important;
}

.text-white-50 {
  color: rgba(245, 242, 234, 0.7) !important;
}

.text-secondary {
  color: var(--muted) !important;
}

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

/* ========================================================================== *
 *  COMPACT & REFINED
 *  Tightens the whole card system so it reads as dense/professional instead
 *  of oversized: less padding, smaller numbers, tighter grids and headings.
 * ========================================================================== */

/* Tame the oversized desktop padding on card containers (utilities were 3rem) */
@media (min-width: 992px) {
  .p-lg-5 {
    padding: 1.85rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }
}

.glass-card.p-4,
.feature-card,
.process-card,
.tier-card,
.package-card,
.join-panel,
.account-visual {
  padding: 1.5rem;
}

/* Metric cards: shorter, calmer numbers */
.metric-card {
  min-height: 118px;
  padding: 1rem 1.05rem;
}

.metric-card--compact {
  min-height: 104px;
}

.metric-grid {
  gap: 0.75rem;
}

.metric-card__value,
.package-price {
  font-size: 1.5rem;
  margin-top: 0.3rem;
}

.metric-card__detail {
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.metric-card__label,
.info-row span,
.micro-stat__label,
.package-route,
.tier-card__positioning {
  font-size: 0.82rem;
}

/* Tier capital number — was up to 3rem */
.tier-card__capital {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

/* Icons and step badges — trimmed */
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.process-card__number,
.journey-item__step {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.brand-mark__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

/* Headings: keep the serif identity but dial the scale back */
h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

.section-heading h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
}

.display-hero {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
}

.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.feature-card h3,
.process-card h3,
.package-card h3,
.tier-card h3,
.journey-item h3,
.join-panel h3 {
  font-size: 1.15rem;
}

/* Card list text a touch smaller/tighter */
.template-list li,
.package-list li,
.feature-bullets li,
.footer-links li {
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

/* Chart panels were very tall */
.account-chart {
  height: 240px;
}

.account-chart--tall {
  height: 280px;
}

/* Tighten vertical section padding on desktop */
@media (min-width: 992px) {
  .section-shell.py-5 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
}

/* Slightly reduce the hero card footprint */
.hero-card {
  padding: 0.85rem;
}

/* ========================================================================== *
 *  LAYOUT FIXES (from side-by-side with reference)
 *  The hero was a full-viewport void and the navbar was wrapping. These make
 *  the vertical rhythm and header read like a real product site.
 * ========================================================================== */

/* Hero: stop it eating a whole screen — controlled padding instead of 100vh */
.hero-section {
  min-height: auto;
}

.hero-section .container-xxl > .row {
  padding-top: clamp(2.5rem, 6vh, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
}

/* Navbar: keep every link on one line (desktop only — the mobile menu must
   still wrap when the hamburger is opened) */
@media (min-width: 992px) {
  .navbar .navbar-nav {
    flex-wrap: nowrap;
  }
}

.navbar .nav-link {
  font-size: 0.85rem;
  padding-inline: 0.6rem !important;
  white-space: nowrap;
}

.brand-mark__text strong {
  font-size: 1.05rem;
}

.brand-mark__text small {
  font-size: 0.72rem;
}

.brand-mark {
  gap: 0.6rem;
}

/* Header buttons: smaller so the whole bar fits on one row */
.navbar .btn-sm {
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  white-space: nowrap;
}

/* Buttons never wrap their label; trim the oversized large pills */
.btn {
  white-space: nowrap;
}

.btn-lg {
  font-size: 0.98rem;
  padding: 0.7rem 1.4rem;
}

/* Hero title: one more notch down for a product-grade scale */
.display-hero {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

/* On smaller desktops, allow the nav to collapse gracefully rather than crush */
@media (max-width: 1199.98px) {
  .navbar .nav-link {
    padding-inline: 0.45rem !important;
    font-size: 0.82rem;
  }
}

/* Floating Telegram CTA — refined: smaller footprint, official Telegram blue,
   cleaner single shadow, no pulsing ring, subtle lift on hover. */
.sticky-telegram {
  right: 20px;
  bottom: 20px;
  gap: 0.55rem;
  padding: 0.6rem 1.05rem 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  box-shadow: 0 10px 26px rgba(34, 158, 217, 0.42);
  animation: none;
}

.sticky-telegram i {
  font-size: 1.15rem;
}

.sticky-telegram:hover,
.sticky-telegram:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(34, 158, 217, 0.52);
}

@media (max-width: 767.98px) {
  .sticky-telegram {
    left: auto;
    right: 14px;
    bottom: 14px;
    padding: 0.55rem 0.95rem 0.55rem 0.7rem;
    font-size: 0.85rem;
  }
}

/* Inline legal links under the footer risk notice */
.footer-links--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 10px;
}
.footer-links--inline li { margin: 0; padding: 0; }
.footer-links--inline li::before { content: none; }
