body.has-fixed-nav { padding-top: 72px; }
:root{
  /* App (dark) */
  --bg: #0b0d10;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);

  /* Landing (light) */
  --l-bg: #ffffff;
  --l-text: #0f172a;       /* slate-900 */
  --l-muted: #475569;      /* slate-600 */
  --l-border: rgba(15,23,42,0.10);

  /* Accent */
  --gold: #d4af37;
  --gold-2: #f0d788;
}

.bg-app{
  background: radial-gradient(1200px 600px at 20% -10%, rgba(212,175,55,0.18), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(240,215,136,0.12), transparent 55%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.bg-landing{
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(212,175,55,0.18), transparent 55%),
    radial-gradient(1000px 600px at 95% 0%, rgba(59,130,246,0.12), transparent 60%),
    radial-gradient(900px 600px at 70% 80%, rgba(168,85,247,0.10), transparent 60%),
    var(--l-bg);
  color: var(--l-text);
  min-height: 100vh;
}

.nav-blur{
  background: rgba(10,12,15,0.72);
  backdrop-filter: blur(12px);
}

.nav-landing{
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
}

.brand-dot{
  display:inline-block;
  width:10px;height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(212,175,55,0.45);
}

.card-glass{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.card-glass:hover{ background: var(--panel-2); }

.card-soft{
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--l-border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
}

.card-soft:hover{
  box-shadow: 0 14px 40px rgba(2,6,23,0.10);
}

.text-muted-soft{ color: var(--muted) !important; }
.text-muted-landing{ color: var(--l-muted) !important; }

.btn-gold{
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: none;
  color: #111 !important;
  font-weight: 700;
}

.btn-gold:hover{ filter: brightness(1.03); }

.btn-ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover{
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.link-muted{ color: var(--l-muted); text-decoration: none; }
.link-muted:hover{ color: var(--l-text); text-decoration: underline; }

.hero-landing{
  padding: 72px 0 30px;
}

.hero-landing h1{
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.badge-soft{
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.25);
  color: #7a5c00;
  font-weight: 700;
}

.section{
  padding: 56px 0;
}

.hr-soft{
  border-top: 1px solid rgba(15,23,42,0.10);
}

.footer-muted{
  color: var(--l-muted);
  background: rgba(255,255,255,0.6);
}

/* Landing page should use full width */
.hero-landing,
.section {
  width: 100%;
}

.hero-landing .row,
.section .row {
  margin-left: 0;
  margin-right: 0;
}

/* Make the landing container wider (not boxed) */
.container,
.content-wrap,
.landing-wrap,
.sf-wrap {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Ultra-wide screens: allow a bit more width */
@media (min-width: 1600px){
  .container,
  .content-wrap,
  .landing-wrap,
  .sf-wrap {
    max-width: 1440px;
  }
}

/* If you want FULL-BLEED hero background but keep content aligned */
.bg-landing {
  width: 100%;
}

/* Preview mock UI blocks (no screenshots) */
.mock-ui{
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.10);
  background: linear-gradient(135deg, rgba(15,23,42,0.04), rgba(212,175,55,0.10));
  padding:12px;
  height:140px;
}

.mock-ui-alt{
  background: linear-gradient(135deg, rgba(59,130,246,0.10), rgba(168,85,247,0.10));
}

.mock-topbar{
  height:10px;
  border-radius:8px;
  background: rgba(15,23,42,0.12);
  margin-bottom:10px;
}

.mock-lines div{
  height:8px;
  border-radius:8px;
  background: rgba(15,23,42,0.09);
  margin-bottom:8px;
}

.mock-lines div:nth-child(2){ width:75%; }
.mock-lines div:nth-child(3){ width:55%; }

.mock-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:8px;
  margin-top:10px;
}

.mock-grid span{
  display:block;
  height:34px;
  border-radius:10px;
  background: rgba(15,23,42,0.08);
}

/* Hero typography polish */
.hero-title{
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.hero-subtitle{
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(15,23,42,0.70);
  margin: 0 0 22px 0;
  max-width: 44ch;
}

.hero-cta .btn{
  padding: 12px 18px;
  border-radius: 12px;
}

/* Demo panel (landing) */
.demo-panel{
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  padding: 18px;
}

.demo-kicker{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.55);
}

.demo-title{
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
  margin-top: 4px;
}

.demo-badge{
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.10);
  color: rgba(15,23,42,0.75);
}

.demo-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 991px){
  .demo-grid{ grid-template-columns: 1fr; }
}

.demo-tile{
  display: block;
  text-decoration: none;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.demo-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15,23,42,0.08);
  border-color: rgba(212,175,55,0.55);
}

.demo-tile-top{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.demo-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(59,130,246,0.12));
  border: 1px solid rgba(15,23,42,0.10);
  font-size: 18px;
}

.demo-tile-title{
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.demo-tile-sub{
  font-size: 13px;
  color: rgba(15,23,42,0.60);
  margin-top: 2px;
}

.demo-tile-body{
  font-size: 14px;
  color: rgba(15,23,42,0.70);
  margin-top: 10px;
  min-height: 44px;
}

.demo-tile-cta{
  font-weight: 700;
  color: rgba(15,23,42,0.90);
  margin-top: 10px;
}

.demo-note{
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(15,23,42,0.60);
}