* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: #0E0E0E;
  color: #C8C0B0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #DAA520;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

strong { color: #E8E4DC; font-weight: 700; }

.site-header {
  text-align: center;
  padding: 32px 24px 24px;
  border-bottom: 1px solid #222;
}
.brand-mark {
  font-size: 22px;
  font-weight: 800;
  color: #DAA520;
  letter-spacing: 4px;
  margin: 0;
}
.tagline {
  font-size: 12px;
  color: #6A6050;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 6px 0 0;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  color: #FFF;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 20px;
  font-weight: 700;
  color: #DAA520;
  margin: 36px 0 12px;
}
h3 {
  font-size: 16px;
  font-weight: 700;
  color: #E8E4DC;
  margin: 20px 0 8px;
}
p {
  font-size: 15px;
  color: #C8C0B0;
  margin: 0 0 16px;
}
ul { padding-left: 24px; margin: 0 0 16px; }
li { font-size: 15px; color: #C8C0B0; margin-bottom: 6px; }

.updated {
  font-size: 13px;
  color: #6A6050;
  margin-bottom: 32px;
}
.intro {
  font-size: 16px;
  color: #9A8C6A;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero {
  text-align: center;
  padding: 80px 24px 48px;
}
.hero h1 { font-size: 44px; margin-bottom: 24px; }
.hero .lead {
  font-size: 17px;
  color: #9A8C6A;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 32px;
}
.cta {
  display: inline-block;
  background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
  color: #FFF;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.cta:hover { text-decoration: none; opacity: 0.9; }

.site-footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid #222;
  margin-top: 64px;
  color: #6A6050;
  font-size: 13px;
}
.site-footer a { margin: 0 10px; }

@media (max-width: 480px) {
  .hero { padding: 48px 16px 32px; }
  .hero h1 { font-size: 32px; }
  .container { padding: 32px 18px; }
  h1 { font-size: 28px; }
  h2 { font-size: 18px; }
}

.header-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: block;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.25);
}

/* =====================================================================
   LANDING PAGE + UPDATES PAGE STYLES
   Namespaced .lp-* (landing) and .up-* (updates) to avoid collisions.
   ===================================================================== */

:root {
  --lp-gold: #d4af37;
  --lp-gold-bright: #f4c430;
  --lp-gold-dim: rgba(212, 175, 55, 0.15);
  --lp-gold-border: rgba(212, 175, 55, 0.35);
  --lp-card-bg: rgba(255, 255, 255, 0.03);
  --lp-card-border: rgba(255, 255, 255, 0.08);
  --lp-text-muted: #a0a8b0;
}

/* ---------- Site nav (used on landing + updates) ---------- */
.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--lp-gold);
}
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Hero ---------- */
.lp-hero {
  padding: 100px 0 80px;
  text-align: center;
}
.lp-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.lp-hero-accent {
  background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero-subhead {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--lp-text-muted);
}
.lp-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lp-coming-soon-badge {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid var(--lp-gold-border);
  border-radius: 10px;
  background: var(--lp-gold-dim);
  color: var(--lp-gold-bright);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.lp-trial-microcopy {
  font-size: 0.92rem;
  color: var(--lp-text-muted);
  margin: 0;
}

/* ---------- Section base ---------- */
.lp-section {
  padding: 80px 0;
}
.lp-section-alt {
  background: rgba(255, 255, 255, 0.02);
}
.lp-section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 56px;
  letter-spacing: -0.01em;
}

/* ---------- Features grid ---------- */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.lp-feature-card {
  padding: 28px;
  border-radius: 14px;
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-card-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.lp-feature-card:hover {
  border-color: var(--lp-gold-border);
  transform: translateY(-2px);
}
.lp-feature-icon {
  width: 36px;
  height: 36px;
  color: var(--lp-gold);
  margin-bottom: 18px;
}
.lp-feature-icon svg {
  width: 100%;
  height: 100%;
}
.lp-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.lp-feature-card p {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.6;
  font-size: 0.96rem;
}
.lp-feature-card em {
  color: var(--lp-gold);
  font-style: normal;
  font-weight: 500;
}

/* ---------- How it works ---------- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: lp-step;
}
.lp-steps li {
  text-align: center;
}
.lp-step-num {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lp-gold-dim);
  border: 2px solid var(--lp-gold-border);
  color: var(--lp-gold);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.lp-steps h3 {
  font-size: 1.3rem;
  margin: 0 0 12px;
}
.lp-steps p {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* ---------- Trial callout ---------- */
.lp-trial-section {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 196, 48, 0.04) 100%);
  border-top: 1px solid var(--lp-gold-border);
  border-bottom: 1px solid var(--lp-gold-border);
}
.lp-trial-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.lp-trial-body {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 36px;
  color: var(--lp-text-muted);
}
.lp-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.lp-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-gold-bright);
}
.lp-price-suffix {
  font-size: 1rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  margin-left: 2px;
}
.lp-price-or {
  color: var(--lp-text-muted);
  font-size: 1rem;
}
.lp-savings-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--lp-gold-dim);
  border: 1px solid var(--lp-gold-border);
  color: var(--lp-gold-bright);
  font-size: 0.9rem;
  font-weight: 600;
}
.lp-fineprint {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.lp-faq {
  max-width: 760px;
  margin: 0 auto;
}
.lp-faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--lp-card-border);
}
.lp-faq-item:last-child {
  border-bottom: none;
}
.lp-faq-item summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lp-faq-item summary::-webkit-details-marker {
  display: none;
}
.lp-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--lp-gold);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.lp-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.lp-faq-item p {
  margin: 12px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* ---------- Site footer ---------- */
.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 40px 0;
}
.site-footer-inner p {
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 0.9rem;
}
.site-footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer-nav a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.site-footer-nav a:hover {
  color: var(--lp-gold);
}

/* ---------- Updates page ---------- */
.up-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.up-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.up-subhead {
  font-size: 1.1rem;
  color: var(--lp-text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.up-current-version {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--lp-gold-dim);
  border: 1px solid var(--lp-gold-border);
  font-size: 0.95rem;
  color: var(--lp-gold-bright);
}
.up-current-version strong {
  font-weight: 700;
  color: var(--lp-gold-bright);
}

.up-list {
  padding: 40px 0 100px;
}
.up-version {
  padding: 36px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-card-border);
}
.up-version-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.up-version-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.up-version-status {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-active {
  background: rgba(212, 175, 55, 0.18);
  color: var(--lp-gold-bright);
  border: 1px solid var(--lp-gold-border);
}
.status-planned {
  background: rgba(255, 255, 255, 0.06);
  color: var(--lp-text-muted);
  border: 1px solid var(--lp-card-border);
}
.status-shipped {
  background: rgba(80, 200, 120, 0.15);
  color: #6ed993;
  border: 1px solid rgba(80, 200, 120, 0.3);
}
.up-version-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.up-version-body {
  color: var(--lp-text-muted);
  line-height: 1.7;
  margin: 0 0 18px;
  font-size: 1rem;
}
.up-version-features {
  margin: 0;
  padding-left: 20px;
  color: var(--lp-text-muted);
  line-height: 1.8;
}
.up-version-features li {
  margin-bottom: 4px;
}

.up-request {
  margin-top: 48px;
  padding: 32px;
  text-align: center;
  border: 1px dashed var(--lp-card-border);
  border-radius: 14px;
}
.up-request h3 {
  font-size: 1.3rem;
  margin: 0 0 10px;
}
.up-request p {
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.up-request-link {
  color: var(--lp-gold);
  font-weight: 600;
  text-decoration: none;
}
.up-request-link:hover {
  text-decoration: underline;
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 600px) {
  .lp-hero { padding: 60px 0 50px; }
  .lp-section { padding: 60px 0; }
  .lp-trial-section { padding: 60px 0; }
  .lp-feature-card { padding: 22px; }
  .up-version { padding: 24px; }
  .site-header-inner { justify-content: center; }
  .site-footer-inner { justify-content: center; text-align: center; }
}

/* ---------- Brand / logo (landing + updates pages) ---------- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
  flex-shrink: 0;
}
.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--lp-gold-bright);
}
@media (max-width: 600px) {
  .brand-logo { width: 48px; height: 48px; }
  .brand-name { font-size: 1.1rem; }
}
