/* Shared styles for the static, crawlable marketing/SEO pages: the landing (/) and the
   per-keyword cluster pages (/tonight/, /eclipses/, /surface/, …). The 3D app (/app/, /embed/)
   does NOT use this. Kept dependency-free and small so these pages render fast for crawlers. */

#seo-landing {
    min-height: 100vh;
    background: radial-gradient(ellipse at 50% -10%, #14182e 0%, #0a0a1a 55%, #060610 100%);
    color: #cdd3e0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
#seo-landing .wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px 64px; }
#seo-landing header.hero { text-align: center; padding: 64px 20px 40px; max-width: 880px; margin: 0 auto; }
#seo-landing .brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .5px; color: #add6ff; margin-bottom: 22px; text-decoration: none; }
#seo-landing .brand img { width: 28px; height: 28px; border-radius: 6px; }
#seo-landing h1 { font-size: clamp(28px, 5vw, 46px); line-height: 1.12; margin: 0 0 16px; color: #f3f6ff; font-weight: 800; }
#seo-landing h1 .grad { background: linear-gradient(90deg,#5db5ff,#a98bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
#seo-landing .lede { font-size: clamp(16px, 2.4vw, 20px); color: #b6bdd0; margin: 0 auto 28px; max-width: 760px; }
#seo-landing .cta { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(90deg,#3a86ff,#7c5cff); color: #fff; border: 0; border-radius: 999px; padding: 15px 34px; font-size: 17px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 30px rgba(80,120,255,.35); transition: transform .12s ease, box-shadow .12s ease; text-decoration: none; }
#seo-landing .cta:hover { transform: translateY(-1px); box-shadow: 0 10px 36px rgba(80,120,255,.5); }
#seo-landing .cta-note { display: block; margin-top: 12px; font-size: 13px; color: #7e879d; }
#seo-landing .hero-shot { width: 100%; max-width: 960px; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; border: 1px solid #232842; margin: 36px auto 0; display: block; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
#seo-landing h2 { font-size: clamp(22px, 3.4vw, 30px); color: #f3f6ff; margin: 56px 0 8px; font-weight: 800; }
#seo-landing .section-sub { color: #9aa2b8; margin: 0 0 28px; max-width: 760px; }
#seo-landing p { color: #a7afc4; }
#seo-landing a { color: #9db8ff; }
#seo-landing .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
#seo-landing .card { background: rgba(20,24,44,.55); border: 1px solid #20243c; border-radius: 12px; padding: 20px 22px; }
#seo-landing .card h3 { margin: 0 0 8px; font-size: 18px; color: #e8ecf7; }
#seo-landing .card p { margin: 0; font-size: 14.5px; color: #a7afc4; }
#seo-landing .shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 8px; }
#seo-landing figure { margin: 0; }
#seo-landing figure img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px; border: 1px solid #20243c; display: block; }
#seo-landing figcaption { font-size: 13px; color: #8b93a8; margin-top: 7px; }
#seo-landing .faq { margin-top: 12px; }
#seo-landing .faq h3 { font-size: 17px; color: #e8ecf7; margin: 22px 0 4px; }
#seo-landing .faq p { margin: 0; color: #a7afc4; font-size: 14.5px; }
#seo-landing .footer { margin-top: 60px; padding-top: 24px; border-top: 1px solid #1c2036; text-align: center; color: #6f7790; font-size: 13.5px; }
#seo-landing .footer a { color: #9db8ff; }
#seo-landing .center-cta { text-align: center; margin-top: 48px; }

/* Cluster-page extras */
#seo-landing .crumbs { padding: 18px 0 0; font-size: 13.5px; color: #7e879d; }
#seo-landing .crumbs a { color: #9db8ff; text-decoration: none; }
#seo-landing .morelinks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
#seo-landing .morelinks a { display: inline-block; padding: 8px 14px; border: 1px solid #2a2f4a; border-radius: 999px; background: rgba(20,24,44,.5); color: #cdd6ec; text-decoration: none; font-size: 14px; }
#seo-landing .morelinks a:hover { border-color: #3a86ff; }

@media (max-width: 600px) { #seo-landing header.hero { padding: 40px 16px 24px; } }
