/* TheseusDSP marketing site -- deliberately plain static HTML/CSS, no
   build step, no framework: cheapest possible thing to host (any static
   file host) and cheapest possible thing to maintain. Palette/accent
   mirrors the plugin GUIs themselves (dark neutral chrome, rich green
   accent, translucent top bar) for brand continuity between the site
   and the actual products. */

:root {
  --bg-0: #060a07;
  --bg-1: #0c130d;
  --panel: #142016;
  --panel-border: #23342a;
  --text-bright: #f0f4f1;
  --text-dim: #9fb3a6;
  --text-faint: #5f7268;
  --accent: #6ee06e;
  --accent-dark: #142014;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-bright);
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, #0f2412 0%, transparent 60%),
    var(--bg-0);
  background-attachment: fixed;
}

a { color: inherit; }

/* --- top bar ------------------------------------------------------- */
#top-bar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: linear-gradient(180deg, rgba(12,19,13,0.85) 0%, rgba(8,13,9,0.7) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
}
#brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: 0.3px; }
#brand-icon { width: 30px; height: 30px; border-radius: 7px; display: block; }
#top-bar nav { display: flex; gap: 28px; }
#top-bar nav a { text-decoration: none; color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color 120ms ease; }
#top-bar nav a:hover { color: var(--accent); }

/* --- hero ------------------------------------------------------------ */
#hero {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 96px 24px 72px;
}
#hero-logo { width: 120px; height: 120px; border-radius: 26px; margin-bottom: 28px; box-shadow: 0 0 60px rgba(110, 224, 110, 0.25); }
#hero h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; max-width: 720px; margin: 0 0 14px; }
#hero p { font-size: 17px; color: var(--text-dim); max-width: 560px; margin: 0 0 32px; }

/* --- buttons ----------------------------------------------------------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  padding: 12px 26px; border-radius: 8px; font-size: 15px; font-weight: 600;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--accent-dark); box-shadow: 0 0 24px rgba(110,224,110,0.3); }
.btn-primary:hover { background: #82ea82; }
.btn-disabled { background: #1b241d; color: var(--text-faint); border-color: var(--panel-border); }

/* --- products ------------------------------------------------------- */
#products { max-width: 1080px; margin: 0 auto; padding: 40px 24px 80px; }
#products h2, #about h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-faint); margin: 0 0 24px; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.product-card {
  background: linear-gradient(165deg, var(--panel) 0%, #0c1510 100%);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column;
}
.product-card.is-upcoming { opacity: 0.82; }
.product-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.product-card-head h3 { margin: 0; font-size: 21px; }

.badge { font-size: 11px; font-weight: 700; letter-spacing: 0.4px; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; }
.badge-free { background: var(--accent); color: var(--accent-dark); }
.badge-soon { background: #2a2a1a; color: #d8c878; border: 1px solid #4a4630; }

.tagline { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; margin: 0 0 16px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; }
.feature-list li { font-size: 13.5px; color: var(--text-dim); padding-left: 18px; position: relative; }
.feature-list li::before { content: "\2022"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.download-row { margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.download-meta { font-size: 12px; color: var(--text-faint); }

/* --- about / footer --------------------------------------------------- */
#about { max-width: 640px; margin: 0 auto; padding: 20px 24px 80px; text-align: center; }
#about p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

footer { border-top: 1px solid var(--panel-border); padding: 24px; text-align: center; }
footer p { color: var(--text-faint); font-size: 13px; margin: 0; }

@media (max-width: 560px) {
  #top-bar nav { gap: 16px; }
  #top-bar nav a { font-size: 13px; }
  #hero { padding: 64px 20px 56px; }
}
