/* ============================================================
   Custom Fanfiction Generator — design system (stage 008)
   ============================================================ */
:root {
  --bg:            #fafaf9;
  --bg-elev:       #ffffff;
  --surface:       #ffffff;
  --surface-2:     #f4f4f5;
  --surface-soft:  #f8f7f4;
  --border:        #e7e5e4;
  --border-strong: #d6d3d1;
  --text:          #1c1917;
  --text-muted:    #57534e;
  --text-subtle:   #8a8682;
  --brand:         #4f46e5;
  --brand-hover:   #4338ca;
  --brand-soft:    #eef2ff;
  --brand-soft-2:  #e0e7ff;
  --ink:           #0c0a09;
  --paper:         #fcfbf7;
  --success:       #047857;
  --success-soft:  #ecfdf5;
  --danger:        #b91c1c;
  --danger-soft:   #fef2f2;
  --radius-xs:     6px;
  --radius-sm:     10px;
  --radius:        14px;
  --radius-lg:     20px;
  --shadow-xs:     0 1px 2px rgba(15, 12, 8, 0.04);
  --shadow-sm:     0 1px 2px rgba(15, 12, 8, 0.05), 0 1px 3px rgba(15, 12, 8, 0.04);
  --shadow:        0 1px 2px rgba(15, 12, 8, 0.04), 0 8px 24px -8px rgba(15, 12, 8, 0.10);
  --shadow-lg:     0 4px 8px rgba(15, 12, 8, 0.04), 0 24px 48px -16px rgba(15, 12, 8, 0.14);
  --font-sans:     'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif:    'Charter', 'Iowan Old Style', 'Palatino Linotype', 'Cambria', Georgia, serif;
  --container:     1080px;
  --container-narrow: 720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); text-decoration: underline; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------------
   Header
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 64px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--ink); color: #fff;
  border-radius: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
}
.site-nav {
  display: flex; gap: 1.4rem;
  font-size: 0.9rem;
}
.site-nav a {
  color: var(--text-muted);
  font-weight: 500;
}
.site-nav a:hover { color: var(--ink); text-decoration: none; }

@media (max-width: 640px) {
  .site-nav { display: none; }
}

/* ----------------------------------------------------------------
   Layout
   ---------------------------------------------------------------- */
main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media (max-width: 640px) {
  main { gap: 3rem; padding: 0 1.1rem 4rem; }
}

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
.hero {
  margin-top: 4rem;
  max-width: 760px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 1.75rem;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-meta {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero-meta li {
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}

@media (max-width: 640px) {
  .hero { margin-top: 2.5rem; }
}

/* ----------------------------------------------------------------
   Sections
   ---------------------------------------------------------------- */
.section-head {
  margin-bottom: 1.4rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.section-sub {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 60ch;
}

/* ----------------------------------------------------------------
   Card primitive
   ---------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}
@media (max-width: 640px) {
  .card { padding: 1.25rem; border-radius: var(--radius-sm); }
}

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.btn-lg { padding: 0.78rem 1.35rem; font-size: 0.98rem; border-radius: 8px; }

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover:not(:disabled) {
  background: #000;
  border-color: #000;
  text-decoration: none;
  color: #fff;
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--surface-2);
  text-decoration: none;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover:not(:disabled) {
  background: var(--surface-2);
  color: var(--ink);
  text-decoration: none;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}
.icon-btn:hover { background: var(--surface-2); color: var(--ink); }

/* ----------------------------------------------------------------
   Popular preset cards
   ---------------------------------------------------------------- */
.preset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
}
.preset-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.1rem 1.15rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.preset-card:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
}
.preset-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.preset-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.preset-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   Compact generator form (single page, progressive disclosure)
   ---------------------------------------------------------------- */
#story-form { display: block; }

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.25rem;
}
/* Wide fields (textareas, setting) span the full row; selects pair up. */
.field-wide { grid-column: 1 / -1; }
.field { min-width: 0; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.field-hint {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  max-width: 60ch;
  line-height: 1.5;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xs);
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text);
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.field textarea { resize: vertical; min-height: 4.5rem; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-subtle); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
  background: var(--surface);
}
.field select[multiple] {
  padding: 0.4rem;
  background: var(--surface);
}
.field select[multiple] option {
  padding: 0.4rem 0.55rem;
  border-radius: 4px;
}
.field select[multiple] option:checked {
  background: var(--brand-soft);
  color: var(--brand-hover);
  font-weight: 600;
}

/* "More options" progressive-disclosure section */
.more-options {
  margin-top: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}
.more-options > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.7rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
}
.more-options > summary::-webkit-details-marker { display: none; }
.more-options > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--brand);
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  background: var(--surface);
}
.more-options[open] > summary::before { content: "\2212"; } /* minus */
.more-options > summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.more-options-grid {
  padding: 0.25rem 0.95rem 1rem;
}

/* Primary submit row */
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.form-actions-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

@media (max-width: 600px) {
  .field-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ----------------------------------------------------------------
   Preset notice (when /?preset=<slug>)
   ---------------------------------------------------------------- */
.preset-notice {
  margin: 0 0 1.1rem;
  padding: 0.7rem 0.95rem;
  background: var(--brand-soft);
  border: 1px solid var(--brand-soft-2);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-xs);
  color: var(--brand-hover);
  font-size: 0.9rem;
  line-height: 1.5;
}
.preset-notice strong { color: var(--ink); }

/* ----------------------------------------------------------------
   Draft / story display
   ---------------------------------------------------------------- */
.story-display[hidden] { display: none; }

.draft-card { padding: 0; overflow: hidden; }
.draft-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: static;
  flex-wrap: wrap;
}
.toolbar-spacer { flex: 1 1 auto; }
.draft-toolbar .btn { padding: 0.5rem 0.85rem; font-size: 0.88rem; }

.story-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--ink);
  padding: 2.25rem 2.5rem 2rem;
  background: var(--paper);
  max-height: 620px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.story-text p { margin: 0 0 1em; }
.story-text p:last-child { margin-bottom: 0; }
.story-text::-webkit-scrollbar { width: 8px; }
.story-text::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 8px; }
.story-text::-webkit-scrollbar-thumb:hover { background: var(--text-subtle); }

@media (max-width: 640px) {
  .story-text { padding: 1.5rem 1.25rem; font-size: 1.02rem; }
  .draft-toolbar { padding: 0.7rem 0.85rem; position: static; }
}

.status-line {
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--surface);
  min-height: 1.1em;
  display: flex; align-items: center; gap: 0.45rem;
}
.status-line:empty { padding: 0; min-height: 0; border-top: none; }
.status-line.is-success { color: var(--success); }
.status-line.is-error { color: var(--danger); }
.status-line.is-loading { color: var(--text-muted); }
.status-line.is-loading::before {
  content: "";
  width: 10px; height: 10px;
  border: 2px solid var(--border-strong);
  border-top-color: var(--brand);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----------------------------------------------------------------
   History shelf
   ---------------------------------------------------------------- */
.history-shelf {
  margin-top: 1.25rem;
}
.history-shelf-head {
  margin-bottom: 0.9rem;
}
.history-shelf-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.history-shelf-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
}
.history-shelf-sub strong { color: var(--ink); font-weight: 600; }

.history-shelf-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.history-shelf-row input[type="email"] {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xs);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--text);
}
.history-shelf-row input[type="email"]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.history-shelf .status-line {
  padding: 0.55rem 0;
  border-top: none;
  background: transparent;
}

.history-panel {
  margin-top: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.history-panel[hidden] { display: none; }
.history-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.history-panel-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}
.history-item {
  padding: 0.75rem 0.95rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.12s ease;
}
.history-item:last-child { border-bottom: none; }
.history-item:hover { background: var(--surface-2); }
.history-item-meta {
  font-size: 0.74rem;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.history-item-preview {
  font-size: 0.88rem;
  color: var(--text);
  font-family: var(--font-serif);
  line-height: 1.55;
}
.history-empty {
  padding: 1rem 0.95rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ----------------------------------------------------------------
   All generators link grid
   ---------------------------------------------------------------- */
.generator-link-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
}
.generator-link-grid a {
  display: block;
  padding: 0.7rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.generator-link-grid a:hover {
  border-color: var(--ink);
  background: var(--surface-soft);
  text-decoration: none;
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-top: 2rem;
}
.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 1.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 75ch;
}
.footer-meta {
  font-size: 0.78rem;
  color: var(--text-subtle);
}
.footer-links {
  font-size: 0.82rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); text-decoration: underline; }

/* Legal pages (Terms, Privacy) reuse .seo-page; add section heading spacing */
.legal-page .legal-h2 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.6rem 0 0.5rem;
  letter-spacing: -0.01em;
}
.legal-page p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
  max-width: 70ch;
}

/* ============================================================
   SEO landing pages — share the design system
   ============================================================ */
.seo-page {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem 2.4rem 2rem;
  max-width: 760px;
}
.seo-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.seo-h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.seo-intro p {
  margin: 0 0 0.95rem;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--text);
}
.seo-intro p:last-child { margin-bottom: 0; }
.seo-cta-wrap {
  margin: 1.75rem 0 1.75rem;
}
.seo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.78rem 1.35rem;
  border-radius: 8px;
  border: 1px solid var(--ink);
  transition: background 0.12s ease;
}
.seo-cta:hover { background: #000; color: #fff; text-decoration: none; }
.seo-cta:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.seo-faq, .seo-related {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.seo-faq h2, .seo-related h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
.seo-faq dl { margin: 0; }
.seo-faq dt {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  margin-top: 1rem;
}
.seo-faq dt:first-child { margin-top: 0; }
.seo-faq dd {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.seo-related ul {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0; padding: 0;
}
.seo-related a {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.seo-related a:hover {
  background: var(--surface-2);
  border-color: var(--ink);
  text-decoration: none;
}
.seo-disclaimer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.6;
}
.seo-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.seo-back:hover { color: var(--ink); text-decoration: none; }

@media (max-width: 640px) {
  .seo-page { padding: 1.5rem 1.25rem 1.5rem; }
  .seo-intro p { font-size: 0.98rem; }
}
