/* theme/mothaship/mothaship.css */
:root {
  --ms-bg: #111;
  --ms-stripe: #0a0a0a;
  --ms-border: #2a2a2a;
  --ms-text: #e8e8e8;
  --ms-text-muted: #999;
  --ms-accent: #f0a040;
  --ms-accent-dim: #c07820;
  --ms-link: #f0a040;
  --ms-link-hover: #ffe0a0;
  --ms-code-bg: #1a1a1a;
  --ms-stripe-width: 720px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--ms-bg);
  color: var(--ms-text);
  line-height: 1.7;
}
a {
  color: var(--ms-link);
  text-decoration: none;
}
a:hover {
  color: var(--ms-link-hover);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--ms-stripe-width);
  margin: 0 auto;
  padding: 1rem 2rem;
}
.topbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ms-text);
  letter-spacing: 0.02em;
}
.topbar-brand:hover {
  color: var(--ms-accent);
}
.topbar-nav {
  display: flex;
  gap: 1.5rem;
}
.topbar-nav a {
  color: var(--ms-text-muted);
  font-size: 0.9rem;
}
.topbar-nav a:hover {
  color: var(--ms-text);
}
main {
  max-width: var(--ms-stripe-width);
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.hero {
  margin: 0 -2rem;
  background: var(--ms-stripe);
  border-bottom: 1px solid var(--ms-border);
}
.hero-stripe {
  max-width: var(--ms-stripe-width);
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 3rem;
}
.hero-stripe img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-stripe h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  background:
    linear-gradient(
      135deg,
      var(--ms-accent),
      #ffd080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stripe .tagline {
  font-size: 1.25rem;
  color: var(--ms-text-muted);
  font-style: italic;
}
h1,
h2,
h3,
h4 {
  color: var(--ms-text);
}
h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--ms-border);
  padding-bottom: 0.5rem;
}
h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
}
p {
  margin-bottom: 1rem;
}
ul,
ol {
  margin: 0 0 1rem 1.5rem;
}
li {
  margin-bottom: 0.25rem;
}
strong {
  color: var(--ms-text);
}
em {
  color: var(--ms-text-muted);
}
code {
  background: var(--ms-code-bg);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  font-family:
    "SF Mono",
    "Fira Code",
    monospace;
}
pre {
  background: var(--ms-code-bg);
  border: 1px solid var(--ms-border);
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
pre code {
  background: none;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.6;
}
hr {
  border: none;
  border-top: 1px solid var(--ms-border);
  margin: 3rem 0;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.feature {
  background: var(--ms-stripe);
  border: 1px solid var(--ms-border);
  border-radius: 8px;
  padding: 1.5rem;
}
.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--ms-accent);
}
.feature p {
  font-size: 0.9rem;
  color: var(--ms-text-muted);
  margin: 0;
}
.site-footer {
  text-align: center;
  padding: 2rem;
  color: var(--ms-text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--ms-border);
  max-width: var(--ms-stripe-width);
  margin: 4rem auto 0;
}
.site-footer a {
  color: var(--ms-accent-dim);
}
.site-footer a:hover {
  color: var(--ms-accent);
}
/*# sourceMappingURL=mothaship-XSQMRAYX.css.map */
