/* Final deployment polish: keeps the reference black/gold frontend clean and prevents legacy public CSS or scripts from interfering. */
:root {
  --polish-gold: #f6d26f;
  --polish-deep: #020202;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  min-width: 320px;
  background: #000;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--polish-gold);
  outline-offset: 3px;
}

#root {
  isolation: isolate;
}

.brand-lockup,
.desktop-nav button,
.header-cta,
.gold-button,
.send-button,
.biometric,
.info-cards button,
.footer button,
.login-card p button {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.brand-lockup:hover,
.desktop-nav button:hover,
.header-cta:hover,
.gold-button:hover,
.send-button:hover,
.biometric:hover,
.info-cards button:hover,
.footer button:hover,
.login-card p button:hover {
  transform: translateY(-1px);
}

.icon-card,
.step-card,
.faq-card,
.support-card,
.contact-form,
.info-cards article,
.story-panel,
.pricing-card,
.trust-strip,
.brain-banner,
.login-card {
  position: relative;
}

.icon-card::after,
.step-card::after,
.faq-card::after,
.support-card::after,
.contact-form::after,
.info-cards article::after,
.story-panel::after,
.pricing-card::after,
.brain-banner::after,
.login-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,210,111,.8), transparent);
  box-shadow: 0 0 16px rgba(246,210,111,.45);
  pointer-events: none;
}

.faq-card h3,
.icon-card h3,
.step-card h3,
.support-card h3,
.info-cards h3,
.pricing-card h3 {
  overflow-wrap: anywhere;
}

.contact-form input,
.contact-form textarea,
.login-card input {
  box-shadow: inset 0 0 18px rgba(0,0,0,.32);
}

.login-card input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,248,238,.58);
}

.footer button:hover,
.login-card p button:hover {
  color: var(--polish-gold);
}

.lanhorz-account-app {
  min-height: 100vh;
}

.account-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 68px) 26px 42px;
}

.account-hero,
.account-layout,
.account-top-grid,
.account-bottom-grid {
  display: grid;
  gap: 22px;
}

.account-hero {
  grid-template-columns: 1.25fr .75fr;
  align-items: stretch;
  margin-bottom: 24px;
}

.account-hero > div:first-child,
.account-balance-card,
.account-top-grid article,
.account-main-panel,
.account-side-panel,
.account-bottom-grid article {
  border: 1px solid rgba(236,177,71,.48);
  background: linear-gradient(145deg, rgba(10,10,9,.92), rgba(0,0,0,.78)), radial-gradient(circle at 50% 100%, rgba(214,154,47,.14), transparent 44%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 18px 48px rgba(0,0,0,.45);
  border-radius: 10px;
}

.account-hero > div:first-child {
  padding: clamp(28px, 4vw, 54px);
}

.account-eyebrow {
  margin: 0 0 14px;
  color: var(--polish-gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 900;
}

.account-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: linear-gradient(180deg, #fff2c0 0%, #d69a2f 42%, #7d4a10 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.account-hero p,
.account-top-grid p,
.rule-card p,
.pot-row p,
.account-bottom-grid p,
.account-banner p {
  color: #cfc6b6;
  line-height: 1.6;
}

.account-balance-card {
  display: grid;
  align-content: center;
  padding: 34px;
}

.account-balance-card span,
.account-top-grid span,
.panel-title span {
  color: var(--polish-gold);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
}

.account-balance-card strong {
  display: block;
  margin: 12px 0;
  color: #fff8ee;
  font-size: clamp(42px, 5vw, 68px);
}

.account-balance-card small {
  color: #cfc6b6;
}

.account-top-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.account-top-grid article {
  padding: 24px;
}

.account-top-grid strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--polish-gold);
  font-size: 36px;
}

.account-layout {
  grid-template-columns: 1.35fr .65fr;
  margin-bottom: 24px;
}

.account-main-panel,
.account-side-panel {
  padding: 28px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(246,210,111,.22);
  padding-bottom: 16px;
}

.panel-title h2 {
  margin: 0;
  color: var(--polish-gold);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.pot-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(246,210,111,.16);
}

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

.pot-row h3 {
  margin: 0 0 4px;
  color: #fff8ee;
}

.pot-row strong {
  color: var(--polish-gold);
  font-size: 24px;
  text-align: right;
}

.pot-row span {
  grid-column: 1 / -1;
  height: 10px;
  background: rgba(255,255,255,.09);
  border-radius: 20px;
  overflow: hidden;
}

.pot-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b5714, #f6d26f);
  box-shadow: 0 0 18px rgba(246,210,111,.34);
}

.rule-card {
  padding: 18px 0;
  border-bottom: 1px solid rgba(246,210,111,.16);
}

.rule-card:last-child {
  border-bottom: 0;
}

.rule-card b {
  display: block;
  color: var(--polish-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.account-bottom-grid article {
  padding: 24px;
}

.account-bottom-grid h3 {
  margin: 0 0 12px;
  color: var(--polish-gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.account-banner {
  margin-top: 24px;
}

@media (min-width: 981px) {
  .lux-header {
    max-width: 100%;
  }

  .feature-grid.four .icon-card {
    min-height: 315px;
  }

  .faq-card:nth-child(odd) {
    margin-right: 2px;
  }
}

@media (max-width: 980px) {
  .lux-header {
    position: relative;
  }

  .desktop-nav {
    scrollbar-width: thin;
    scrollbar-color: rgba(246,210,111,.45) transparent;
  }

  .desktop-nav::-webkit-scrollbar {
    height: 4px;
  }

  .desktop-nav::-webkit-scrollbar-thumb {
    background: rgba(246,210,111,.45);
    border-radius: 20px;
  }

  .home-hero,
  .page-hero,
  .security-hero,
  .about-hero,
  .contact-hero,
  .login-layout {
    min-height: auto;
  }

  .account-hero,
  .account-layout,
  .account-top-grid,
  .account-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .account-hero > div:first-child,
  .account-main-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav button {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 12px 0;
  }

  .section-title p:empty {
    display: none;
  }

  .section-title span,
  .home-hero p,
  .page-hero p,
  .security-hero p,
  .brain-banner p,
  .login-card p,
  .login-left > p {
    font-size: 17px;
  }

  .home-hero h1,
  .login-left h1,
  .brand-lockup {
    word-break: keep-all;
  }

  .icon-card,
  .step-card,
  .story-panel,
  .pricing-card,
  .contact-form,
  .login-card {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 14px 32px rgba(0,0,0,.42);
  }

  .faq-card {
    min-height: auto;
  }

  .footer-grid,
  .footer-bottom {
    text-align: left;
  }

  .account-shell {
    padding: 28px 16px;
  }

  .account-hero,
  .account-layout,
  .account-top-grid,
  .account-bottom-grid {
    grid-template-columns: 1fr;
  }

  .account-hero > div:first-child,
  .account-main-panel {
    grid-column: auto;
  }

  .account-balance-card,
  .account-main-panel,
  .account-side-panel,
  .account-bottom-grid article,
  .account-top-grid article {
    padding: 20px;
  }

  .pot-row {
    grid-template-columns: 1fr;
  }

  .pot-row strong {
    text-align: left;
  }

  .panel-title {
    align-items: flex-start;
    flex-direction: column;
  }
}
