/* StratNinja Platform — landing page styles (builds on style.css variables) */
body { background: radial-gradient(1200px 600px at 50% -10%, #1a1f2e 0%, var(--bg) 55%); }

#landing { max-width: 1080px; margin: 0 auto; padding: 22px 22px 60px; }

.lp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.lp-header .brand { display: flex; align-items: center; gap: 12px; font-size: 17px; }
.lp-header .tag { color: var(--muted); }
.lp-nav { display: flex; align-items: center; gap: 18px; }
.lp-nav a { color: var(--muted); font-size: 14px; }
.lp-nav a:hover { color: var(--ink); }
.btn.sm { padding: 7px 14px; font-size: 13px; }

.hero { text-align: center; padding: 40px 0 30px; }
.hero-badge {
  display: inline-block; background: var(--accentbg); color: #b3a9e8;
  border-radius: 20px; padding: 6px 16px; font-size: 13px; margin-bottom: 22px;
}
.hero h1 { font-size: 54px; line-height: 1.08; margin: 0 0 18px; font-weight: 800; letter-spacing: -1px; }
.hero h1 .grad {
  background: linear-gradient(120deg, #7c6cf0, #16b877);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 auto 30px; line-height: 1.6; }

.btn.google {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: #1c2230; border: none; border-radius: 12px;
  padding: 14px 26px; font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 30px rgba(124, 108, 240, .25); transition: transform .12s;
}
.btn.google:hover { transform: translateY(-2px); }
.mode-note {
  margin: 16px auto 0; max-width: 460px; font-size: 12px; color: var(--muted);
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px;
}
.hero-trust { margin-top: 22px; color: var(--muted); font-size: 13px; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 50px; }
.fcard {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  transition: transform .12s, border-color .12s;
}
.fcard:hover { transform: translateY(-3px); border-color: #3a4150; }
.fcard .fico { font-size: 30px; margin-bottom: 12px; }
.fcard h3 { margin: 0 0 8px; font-size: 17px; }
.fcard p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.lp-footer { text-align: center; color: var(--muted); font-size: 13px; margin-top: 60px; }

/* logged-in user area in the app header */
.user-area { display: flex; align-items: center; gap: 10px; }
.user-area .avatar { width: 30px; height: 30px; border-radius: 50%; }
.user-area .uname { font-size: 14px; color: var(--ink); }

@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
}
