/* ── Landing Page Styles ─────────────────────────────────────────────── */
.landing-body { background: var(--bg); color: var(--text); font-family: var(--font); display: block; }

/* Nav */
.land-nav { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.land-nav-inner { max-width: 1100px; margin: 0 auto; padding: 14px 32px; display: flex; justify-content: space-between; align-items: center; }
.land-logo { height: 48px; border-radius: 6px; background: #f4f5f7; padding: 4px 10px; }
.land-nav-links { display: flex; gap: 24px; align-items: center; }
.land-nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; }
.land-nav-links a:hover { color: var(--text); }

/* Hero */
.hero { padding: 100px 32px 80px; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(79,142,247,0.12) 0%, transparent 70%); }
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(79,142,247,.15); color: var(--accent); border: 1px solid rgba(79,142,247,.3); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.hero-title { font-size: clamp(36px, 6vw, 58px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; max-width: 600px; margin: 0 auto 36px; }
.hero-cta { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-note { color: var(--text-muted); font-size: 13px; }
.hero-stats { display: flex; gap: 0; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); max-width: 500px; margin: 0 auto; }
.hero-stat { flex: 1; padding: 16px; text-align: center; border-right: 1px solid var(--border); }
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-size: 15px; color: var(--accent); }
.hero-stat span { font-size: 11px; color: var(--text-muted); }

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section-title-lg { font-size: clamp(26px, 4vw, 38px); font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 16px; }

/* Features */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.feature-card:hover { border-color: var(--accent); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* How it works */
.how-it-works { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; }
.step { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; max-width: 240px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }
.step-arrow { font-size: 28px; color: var(--text-muted); }

/* Pricing */
.pricing { padding: 80px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 0; position: relative; }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(135deg, rgba(79,142,247,.08), var(--surface)); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.pricing-name { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { font-size: 48px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 24px; }
.pricing-price span { font-size: 18px; color: var(--text-muted); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li { font-size: 14px; color: var(--text-muted); }
.pricing-features li:first-child { color: var(--text); }

/* Auth pages */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); padding: 24px; }
.auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 40px; width: 100%; max-width: 460px; }
.auth-logo { display: block; height: 52px; border-radius: 6px; background: #f4f5f7; padding: 4px 10px; margin: 0 auto 28px; }
.auth-title { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-muted); }
.auth-footer a { color: var(--accent); text-decoration: none; }

/* Plan selector on register */
.plan-selector { display: flex; gap: 8px; margin-bottom: 20px; }
.plan-opt { flex: 1; border: 1px solid var(--border); border-radius: 8px; padding: 12px 8px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; }
.plan-opt input[type=radio] { display: none; }
.plan-opt.selected { border-color: var(--accent); background: rgba(79,142,247,.1); }
.plan-opt-name { font-size: 13px; font-weight: 700; }
.plan-opt-price { font-size: 12px; color: var(--text-muted); }

/* Billing page */
.billing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.billing-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.billing-card.current { border-color: var(--green); }
.billing-card.featured { border-color: var(--accent); }
.current-badge { position: absolute; top: -10px; right: 12px; background: var(--green); color: #fff; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }

/* Footer */
.land-footer { border-top: 1px solid var(--border); padding: 40px 32px; text-align: center; color: var(--text-muted); font-size: 13px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.land-footer a { color: var(--text-muted); text-decoration: none; }
.land-footer a:hover { color: var(--text); }
