:root {
  color-scheme: light;
  --bg: #f8f6ef;
  --ink: #1e1f24;
  --muted: #62636b;
  --card: #ffffff;
  --line: #e5dfd2;
  --accent: #5b3df5;
  --accent-dark: #432bc2;
  --good: #1f7a4d;
  --bad: #a12d2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
}

header,
main,
footer {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  padding: 28px 0 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-weight: 650;
}

.hero {
  padding: 56px 0 32px;
}

.hero h1 {
  font-size: clamp(2.25rem, 7vw, 5rem);
  line-height: 0.96;
  max-width: 880px;
  margin: 0 0 18px;
  letter-spacing: -0.06em;
}

.hero p {
  font-size: 1.15rem;
  max-width: 720px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.card,
.signup,
.article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(30, 31, 36, 0.06);
}

.card h2,
.card h3,
.article h1,
.article h2 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.badge {
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.signup {
  margin: 36px 0;
}

.signup form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

input[type="email"] {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 1rem;
}

button,
.button {
  border: 0;
  border-radius: 14px;
  padding: 14px 17px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.button:hover {
  background: var(--accent-dark);
}

.status {
  margin-top: 12px;
  font-weight: 700;
}

.status.good {
  color: var(--good);
}

.status.bad {
  color: var(--bad);
}

.article {
  max-width: 820px;
  margin: 24px auto 40px;
}

.article p,
.article li {
  font-size: 1.05rem;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Kiloparse glow reinforcement */
:root {
  --kiloparse-glow-a: rgba(122, 92, 255, 0.22);
  --kiloparse-glow-b: rgba(38, 198, 218, 0.18);
  --kiloparse-glow-c: rgba(255, 194, 102, 0.16);
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, var(--kiloparse-glow-a), transparent 34%),
    radial-gradient(circle at 88% 12%, var(--kiloparse-glow-b), transparent 32%),
    radial-gradient(circle at 50% 92%, var(--kiloparse-glow-c), transparent 38%);
  filter: blur(6px);
}

body > * {
  position: relative;
  z-index: 1;
}

.hero,
main section,
article,
form,
.card,
.panel,
.newsletter-card,
.article-card,
.signup-card {
  box-shadow:
    0 18px 50px rgba(30, 31, 36, 0.08),
    0 0 38px rgba(122, 92, 255, 0.08);
}

.hero h1,
h1,
.logo {
  text-shadow: 0 0 24px rgba(122, 92, 255, 0.16);
}

button,
.button,
.cta,
input[type="submit"] {
  box-shadow:
    0 10px 28px rgba(30, 31, 36, 0.12),
    0 0 22px rgba(38, 198, 218, 0.16);
}

/* Kiloparse monetization content build */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1rem;
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.article-page .lede,
.hero p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.panel,
.card,
.newsletter-card {
  border: 1px solid rgba(30, 31, 36, 0.08);
  border-radius: 24px;
  padding: 1.25rem;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.82);
}

.checklist {
  padding-left: 1.25rem;
}

.checklist li {
  margin: 0.55rem 0;
}

.site-footer nav,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button,
button {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

/* Kiloparse glow reinforcement */
:root {
  --kiloparse-glow-a: rgba(122, 92, 255, 0.22);
  --kiloparse-glow-b: rgba(38, 198, 218, 0.18);
  --kiloparse-glow-c: rgba(255, 194, 102, 0.16);
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, var(--kiloparse-glow-a), transparent 34%),
    radial-gradient(circle at 88% 12%, var(--kiloparse-glow-b), transparent 32%),
    radial-gradient(circle at 50% 92%, var(--kiloparse-glow-c), transparent 38%);
  filter: blur(6px);
}

body > * {
  position: relative;
  z-index: 1;
}

.hero,
main section,
article,
form,
.card,
.panel,
.newsletter-card {
  box-shadow:
    0 18px 50px rgba(30, 31, 36, 0.08),
    0 0 38px rgba(122, 92, 255, 0.08);
}

.hero h1,
h1,
.logo {
  text-shadow: 0 0 24px rgba(122, 92, 255, 0.16);
}

button,
.button,
.cta,
input[type="submit"] {
  box-shadow:
    0 10px 28px rgba(30, 31, 36, 0.12),
    0 0 22px rgba(38, 198, 218, 0.16);
}

/* Kiloparse final monetization content build */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 1rem; }
.content-page { max-width: 900px; margin: 0 auto; padding: 3rem 1.25rem; }
.article-page .lede, .hero p { font-size: 1.08rem; line-height: 1.75; }
.panel, .card, .newsletter-card { border: 1px solid rgba(30, 31, 36, 0.08); border-radius: 24px; padding: 1.25rem; margin: 1rem 0; background: rgba(255, 255, 255, 0.82); }
.checklist { padding-left: 1.25rem; }
.checklist li { margin: 0.55rem 0; }
.site-footer nav, .hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.button, button { border-radius: 999px; padding: 0.75rem 1rem; text-decoration: none; }
.eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.75; }
:root { --kiloparse-glow-a: rgba(122, 92, 255, 0.22); --kiloparse-glow-b: rgba(38, 198, 218, 0.18); --kiloparse-glow-c: rgba(255, 194, 102, 0.16); }
body { position: relative; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: -20%; pointer-events: none; z-index: 0; background: radial-gradient(circle at 12% 18%, var(--kiloparse-glow-a), transparent 34%), radial-gradient(circle at 88% 12%, var(--kiloparse-glow-b), transparent 32%), radial-gradient(circle at 50% 92%, var(--kiloparse-glow-c), transparent 38%); filter: blur(6px); }
body > * { position: relative; z-index: 1; }
.hero, main section, article, form, .card, .panel, .newsletter-card { box-shadow: 0 18px 50px rgba(30, 31, 36, 0.08), 0 0 38px rgba(122, 92, 255, 0.08); }
.hero h1, h1, .logo { text-shadow: 0 0 24px rgba(122, 92, 255, 0.16); }
button, .button, .cta, input[type="submit"] { box-shadow: 0 10px 28px rgba(30, 31, 36, 0.12), 0 0 22px rgba(38, 198, 218, 0.16); }
