@font-face {
  font-family: 'LiterataCustom';
  src: local('Literata');
  font-display: swap;
}

:root {
  --ink: #17140f;
  --muted: #655f56;
  --paper: #f4ecd9;
  --paper-2: #fff8e9;
  --acid: #baff29;
  --red: #ff4d2e;
  --blue: #1924ff;
  --line: rgba(23, 20, 15, 0.16);
  --shadow: 0 28px 80px rgba(23, 20, 15, 0.18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(186, 255, 41, 0.55), transparent 24rem),
    radial-gradient(circle at 10% 28%, rgba(255, 77, 46, 0.16), transparent 20rem),
    linear-gradient(135deg, #fff8e9 0%, #f4ecd9 45%, #e6dcc7 100%);
  min-height: 100vh;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
}
.brand, .nav-actions a { color: var(--ink); text-decoration: none; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.04em; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border: 2px solid var(--ink);
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--ink);
}
.nav-actions { display: flex; align-items: center; gap: 18px; font-size: 14px; }
.pill-link { border: 1px solid var(--ink); border-radius: 999px; padding: 10px 14px; background: rgba(255,255,255,0.35); }

.hero { min-height: 760px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
  padding: 58px 0 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  font-weight: 700;
}
.live-dot { width: 9px; height: 9px; background: var(--red); border-radius: 999px; box-shadow: 0 0 0 6px rgba(255,77,46,.12); }
h1, h2, h3 { margin: 0; letter-spacing: -0.07em; line-height: 0.94; }
h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(58px, 8vw, 116px);
  max-width: 880px;
  margin: 18px 0 24px;
}
.lede { font-size: 20px; line-height: 1.55; color: #332c22; max-width: 680px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease;
  font-family: inherit;
  font-size: 15px;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.primary { background: var(--ink); color: var(--paper-2); }
.secondary { background: var(--acid); color: var(--ink); }
.microcopy { color: var(--muted); font-size: 13px; margin-top: 16px; }

.feed-card {
  background: rgba(255, 248, 233, 0.72);
  backdrop-filter: blur(12px);
  border: 2px solid var(--ink);
  border-radius: 30px;
  box-shadow: var(--shadow), 10px 10px 0 var(--ink);
  overflow: hidden;
  transform: rotate(1.5deg);
}
.feed-topbar { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 2px solid var(--ink); background: #fff3d0; }
.window-dot { width: 12px; height: 12px; border-radius: 99px; border: 1px solid var(--ink); }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.feed-label { margin-left: auto; font-size: 12px; color: var(--muted); }
.post { display: grid; grid-template-columns: 62px 1fr; gap: 14px; padding: 20px; border-bottom: 1px solid var(--line); }
.post:last-child { border-bottom: 0; }
.score { color: var(--muted); font-size: 13px; padding-top: 5px; }
.post h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 24px; letter-spacing: -0.045em; line-height: 1.05; margin-bottom: 8px; }
.post p { margin: 0; color: #4a4238; line-height: 1.45; }
.tag { display: inline-flex; border-radius: 999px; padding: 4px 8px; font-size: 11px; font-weight: 900; margin-bottom: 8px !important; border: 1px solid var(--ink); }
.human { background: var(--acid); color: var(--ink) !important; }
.review { background: #d9dbff; color: var(--blue) !important; }
.slop { background: rgba(255, 77, 46, 0.08); }
.slop h2, .slop p { filter: blur(2px); opacity: 0.52; user-select: none; }
.folded-banner { display: grid; gap: 4px; background: var(--ink); color: var(--paper-2); border-radius: 16px; padding: 13px 14px; margin-bottom: 12px; }
.folded-banner span { color: #d7cdb8; font-size: 12px; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 96px;
}
.proof-strip div { padding: 24px; border-right: 1px solid rgba(255,255,255,.22); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { display: block; font-family: Georgia, serif; font-size: 30px; letter-spacing: -0.06em; }
.proof-strip span { display: block; color: #d8d1c4; font-size: 13px; margin-top: 6px; line-height: 1.35; }

.section { margin: 0 0 96px; }
.split { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: 56px; }
.section h2 { font-family: Georgia, serif; font-size: clamp(42px, 5vw, 72px); }
.steps { display: grid; gap: 16px; }
.step, .card, .interest-form {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255,248,233,.72);
  padding: 24px;
  box-shadow: 5px 5px 0 rgba(23,20,15,.9);
}
.step span { color: var(--red); font-weight: 900; }
.step h3, .card h3 { font-family: Georgia, serif; font-size: 30px; margin: 8px 0 10px; }
.step p, .card p, .form-copy p { color: var(--muted); line-height: 1.55; margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.form-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
.form-copy h2 { font-family: Georgia, serif; font-size: clamp(42px, 5vw, 74px); margin: 12px 0 18px; }
.interest-form { display: grid; gap: 18px; }
label, legend { font-weight: 900; }
input, textarea {
  width: 100%;
  margin-top: 8px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fffdf5;
  color: var(--ink);
}
textarea { resize: vertical; }
fieldset { border: 0; padding: 0; margin: 0; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 10px; }
.checkbox-grid label { border: 1px solid var(--line); border-radius: 14px; padding: 12px; background: rgba(255,255,255,.35); }
.checkbox-grid input { width: auto; margin: 0 8px 0 0; }
.form-status { min-height: 22px; margin: 0; font-weight: 900; color: var(--blue); }
.local-tools { display: flex; gap: 12px; flex-wrap: wrap; }
.text-button { background: transparent; border: 0; color: var(--blue); font-weight: 900; cursor: pointer; text-decoration: underline; font: inherit; padding: 0; }
.text-button.danger { color: var(--red); }
footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 34px 0 46px; display: flex; justify-content: space-between; color: var(--muted); border-top: 1px solid var(--line); font-size: 13px; }

@media (max-width: 900px) {
  .hero-grid, .split, .form-section { grid-template-columns: 1fr; }
  .proof-strip, .cards { grid-template-columns: 1fr 1fr; }
  .feed-card { transform: none; }
}
@media (max-width: 620px) {
  main, footer { width: min(100% - 22px, 1180px); }
  .nav { align-items: flex-start; gap: 16px; }
  .nav-actions { display: none; }
  h1 { font-size: 54px; }
  .proof-strip, .cards, .checkbox-grid { grid-template-columns: 1fr; }
  .post { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 8px; }
}

/* Homepage v2: first-screen research form + SEO content hub */
.hero-grid-survey {
  grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr);
  align-items: start;
  padding-top: 38px;
}
.survey-card {
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: rgba(255, 248, 233, 0.82);
  box-shadow: var(--shadow), 10px 10px 0 var(--ink);
  padding: 26px;
  position: sticky;
  top: 18px;
}
.survey-card h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: .98;
  margin: 12px 0 12px;
}
.survey-intro,
.privacy-note {
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 16px;
  font-size: 14px;
}
.interest-form.compact {
  box-shadow: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
button[disabled] {
  opacity: .62;
  cursor: wait;
}
.form-status[data-type="success"] { color: #0d7a38; }
.form-status[data-type="error"] { color: var(--red); }
.demo-section .feed-card {
  max-width: 900px;
  margin: 0 auto;
  transform: rotate(-.6deg);
}
.faq-section h2,
.blog-teaser h2,
.blog-home h1 {
  font-family: Georgia, 'Times New Roman', serif;
}
.faq-section h2 { margin: 12px 0 22px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
details {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255,248,233,.72);
  padding: 20px;
  box-shadow: 5px 5px 0 rgba(23,20,15,.9);
}
summary { font-weight: 900; cursor: pointer; }
details p { color: var(--muted); line-height: 1.55; }
.blog-teaser {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper-2);
  border-radius: var(--radius);
  padding: 28px;
}
.blog-teaser p { color: #d8d1c4; max-width: 720px; line-height: 1.55; }
.blog-home { margin-top: 42px; }
.blog-home h1 {
  font-size: clamp(52px, 7vw, 96px);
  max-width: 980px;
}
.blog-list .card h3 { line-height: 1.02; }
footer a { color: inherit; font-weight: 900; }

@media (max-width: 900px) {
  .hero-grid-survey, .faq-grid { grid-template-columns: 1fr; }
  .survey-card { position: static; }
  .blog-teaser { flex-direction: column; align-items: flex-start; }
}

.seo-depth {
  max-width: 980px;
  margin: 0 auto 96px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: rgba(255,248,233,.72);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 8px 8px 0 rgba(23,20,15,.9);
}
.guide-intro {
  max-width: 900px;
}
.guide-intro h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5vw, 72px);
  margin: 12px 0 18px;
}
.guide-intro p,
.guide-card p,
.guide-card li {
  color: var(--muted);
  line-height: 1.6;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.guide-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.34);
  padding: 20px;
}
.guide-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  margin-bottom: 10px;
}
.guide-card ul {
  margin: 0;
  padding-left: 20px;
}
@media (max-width: 900px) {
  .guide-grid { grid-template-columns: 1fr; }
}

.competitor-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 28px;
  align-items: start;
}
.competitor-copy h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 4.6vw, 64px);
  margin: 12px 0 16px;
}
.competitor-copy p {
  color: var(--muted);
  line-height: 1.6;
}
.comparison-table {
  display: grid;
  border: 2px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,248,233,.82);
  box-shadow: 6px 6px 0 rgba(23,20,15,.9);
}
.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: .72fr 1fr 1.25fr;
  border-bottom: 1px solid var(--line);
}
.comparison-table [role="row"]:last-child { border-bottom: 0; }
.comparison-table span {
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}
.comparison-table span:last-child { border-right: 0; }
.comparison-table .table-head {
  background: var(--ink);
}
.comparison-table .table-head span {
  color: var(--paper-2);
  font-weight: 900;
}
.comparison-table [role="row"] span:first-child {
  color: var(--ink);
  font-weight: 900;
}
@media (max-width: 900px) {
  .competitor-section { grid-template-columns: 1fr; }
  .comparison-table [role="row"] { grid-template-columns: 1fr; }
  .comparison-table span { border-right: 0; border-bottom: 1px solid var(--line); }
  .comparison-table span:last-child { border-bottom: 0; }
}

.legal-page {
  max-width: 880px;
  margin: 44px auto 96px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: rgba(255,248,233,.78);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: 8px 8px 0 rgba(23,20,15,.9);
}
.legal-page h1,
.legal-page h2 {
  font-family: Georgia, 'Times New Roman', serif;
}
.legal-page h1 {
  font-size: clamp(54px, 7vw, 96px);
  margin: 12px 0 20px;
}
.legal-page h2 {
  font-size: 34px;
  margin: 34px 0 10px;
}
.legal-page p {
  color: var(--muted);
  line-height: 1.65;
}
.legal-page strong { color: var(--ink); }

.article-card {
  color: inherit;
  text-decoration: none;
  display: block;
}
.article-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(23,20,15,.95);
}
.read-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
}
.article-page ul {
  color: var(--muted);
  line-height: 1.65;
}

.article-page a:not(.button) { color: var(--blue); font-weight: 800; }
.article-page ol,
.article-page ul { color: var(--muted); line-height: 1.65; }
.article-cta {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 2px solid var(--line);
}

.lang-switcher {
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}
.lang-switcher a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}
.lang-switcher a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
}

/* Gefei-style homepage SEO refinement: direct answer block near top */
.answer-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: start;
}
.answer-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(40px, 4.8vw, 68px);
}
.answer-card {
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: rgba(255,248,233,.82);
  padding: 26px;
  box-shadow: 7px 7px 0 rgba(23,20,15,.9);
}
.answer-card p,
.answer-card li {
  color: var(--muted);
  line-height: 1.62;
}
.answer-card p:first-child {
  margin-top: 0;
  color: #332c22;
  font-size: 18px;
}
.answer-card strong { color: var(--ink); }
@media (max-width: 900px) {
  .answer-section { grid-template-columns: 1fr; }
}

/* Homepage redesign: Reddit-inspired product landing */
.home-page {
  --reddit-orange: #ff4500;
  --reddit-blue: #0079d3;
  --reddit-bg: #dae0e6;
  --reddit-card: #ffffff;
  --soft-ink: #1a1a1b;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 69, 0, .16), transparent 24rem),
    radial-gradient(circle at 84% 12%, rgba(0, 121, 211, .14), transparent 22rem),
    linear-gradient(180deg, #f7f8fa 0%, var(--reddit-bg) 58%, #eef1f4 100%);
  color: var(--soft-ink);
}
.home-page .grain { display: none; }
.home-page main { width: min(1120px, calc(100% - 32px)); }
.home-page .nav {
  position: sticky;
  top: 0;
  z-index: 10;
  margin: 0 calc((100vw - min(1120px, calc(100vw - 32px))) / -2);
  padding: 12px max(16px, calc((100vw - 1120px) / 2));
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid #d7dce1;
  backdrop-filter: blur(14px);
}
.home-page .brand { letter-spacing: -.02em; }
.home-page .brand-mark {
  border: 0;
  border-radius: 999px;
  background: var(--reddit-orange);
  color: white;
  box-shadow: none;
}
.home-page .pill-link,
.home-page .button {
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}
.home-page .pill-link { background: #eef6ff; color: var(--reddit-blue); font-weight: 800; }
.home-hero { min-height: auto; }
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0 54px;
}
.home-page .eyebrow { color: #56616b; letter-spacing: .08em; }
.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -.045em;
}
.home-page h1 {
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: .98;
  max-width: 720px;
}
.home-page .lede { font-size: 19px; line-height: 1.62; color: #39434d; max-width: 660px; }
.home-page .primary { background: var(--reddit-orange); color: white; }
.home-page .secondary { background: white; color: var(--soft-ink); border: 1px solid #cfd6de; }
.home-page .button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(26,26,27,.14); }
.platform-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.platform-pills span,
.post-tags span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255,255,255,.72);
  border: 1px solid #d9dfe5;
  color: #4b5661;
  font-size: 12px;
  font-weight: 800;
}
.reddit-panel {
  border: 1px solid #c9d1d9;
  border-radius: 22px;
  background: #eef1f4;
  box-shadow: 0 24px 80px rgba(28, 35, 43, .18);
  overflow: hidden;
}
.reddit-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: #fff;
  border-bottom: 1px solid #d7dce1;
  color: #59636e;
  font-size: 13px;
}
.reddit-topbar strong { color: var(--soft-ink); margin-right: auto; }
.reddit-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--reddit-orange);
  color: white;
  font-weight: 900;
}
.reddit-post {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  margin: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d5dce3;
  border-radius: 14px;
}
.vote-box {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  color: #67727e;
  font-size: 13px;
}
.vote-box strong { color: #24292f; }
.post-copy h2 {
  font-size: 22px;
  line-height: 1.18;
  margin: 4px 0 8px;
  letter-spacing: -.03em;
}
.post-copy p { margin: 0; color: #3f4953; line-height: 1.5; }
.post-meta { font-size: 12px; color: #6d7680 !important; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.high-signal { border-left: 5px solid #46d160; }
.folded-post { border-left: 5px solid var(--reddit-orange); background: #fffaf7; }
.review-post { border-left: 5px solid var(--reddit-blue); }
.folded-post h2,
.folded-post .post-copy > p { filter: blur(1.5px); opacity: .58; }
.home-page .folded-banner {
  background: #1a1a1b;
  border-radius: 12px;
  padding: 11px 13px;
  margin-bottom: 10px;
}
.inline-reveal {
  margin-top: 12px;
  border: 1px solid #cfd6de;
  background: white;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 800;
}
.home-page .proof-strip {
  background: #fff;
  color: var(--soft-ink);
  border: 1px solid #d3d9df;
  box-shadow: 0 14px 44px rgba(28,35,43,.08);
}
.home-page .proof-strip div { border-right: 1px solid #e1e5e9; }
.home-page .proof-strip strong { font-family: inherit; font-size: 22px; letter-spacing: -.04em; }
.home-page .proof-strip span { color: #5d6771; }
.home-page .section { margin-bottom: 84px; }
.home-page .answer-section,
.home-page .split,
.research-section {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: start;
}
.home-page .section h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.02; }
.home-page .answer-card,
.home-page .step,
.home-page .card,
.research-section,
.home-page .seo-depth,
.home-page .faq-section {
  background: rgba(255,255,255,.88);
  border: 1px solid #d4dbe2;
  box-shadow: 0 12px 36px rgba(28,35,43,.08);
}
.home-page .answer-card { border-radius: 20px; padding: 26px; }
.home-page .steps { gap: 12px; }
.home-page .step { border-radius: 16px; padding: 20px; }
.home-page .step span { color: var(--reddit-orange); }
.home-page .step h3,
.home-page .card h3 { font-family: inherit; font-size: 24px; line-height: 1.12; letter-spacing: -.035em; }
.home-page .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-page .card { border-radius: 18px; padding: 22px; }
.research-section {
  border-radius: 24px;
  padding: 28px;
}
.research-section p { color: #4d5863; line-height: 1.6; }
.home-page .interest-form.compact {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.home-page input,
.home-page textarea {
  border: 1px solid #cbd3db;
  border-radius: 12px;
  background: #fff;
}
.home-page .checkbox-grid label { background: #f7f9fb; border-color: #d8dee5; }
.home-page .seo-depth { border-radius: 24px; max-width: 920px; }
.home-page .seo-depth h2 { margin-bottom: 18px; }
.home-page .seo-depth p,
.home-page .seo-depth li,
.home-page .faq-section p { color: #4d5863; line-height: 1.68; }
.home-page .seo-depth ul { padding-left: 22px; }
.home-page .faq-section {
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.home-page .faq-section h3 { font-size: 22px; line-height: 1.15; margin-top: 24px; }
.home-page .blog-teaser { border: 0; border-radius: 24px; background: #1a1a1b; box-shadow: 0 18px 52px rgba(26,26,27,.18); }
.home-page .lang-switcher,
.home-page footer { width: min(1120px, calc(100% - 32px)); }

.beta-page .hero { min-height: auto; }
.beta-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  align-items: center;
}
.beta-side-panel {
  background: #fff;
}
.beta-package {
  display: grid;
  gap: 16px;
  padding: 24px;
}
.beta-package strong {
  font-size: 24px;
  letter-spacing: -.035em;
}
.beta-package p {
  margin: 0;
  color: #4d5863;
  line-height: 1.55;
}
.beta-price {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.06em;
}
.beta-auth-card {
  position: static;
}
.beta-auth-card .button {
  width: 100%;
}
.beta-dashboard {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
  gap: 42px;
  align-items: start;
  margin-top: 54px;
}
.beta-dashboard h1 {
  font-size: clamp(46px, 6.8vw, 86px);
  line-height: .98;
}
.account-metrics {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.account-metrics div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #d7dce1;
  border-radius: 14px;
  background: #f7f9fb;
}
.account-metrics span {
  color: #66717c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.account-metrics strong {
  overflow-wrap: anywhere;
  font-size: 22px;
}
.paypal-box {
  min-height: 56px;
}
.google-button-slot {
  min-height: 44px;
}
.list-section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.managed-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.managed-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #d4dbe2;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 24px rgba(28,35,43,.06);
  padding: 12px 14px;
}
.managed-list span {
  overflow-wrap: anywhere;
  font-weight: 800;
}
.managed-list button {
  border: 1px solid #cfd6de;
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.beta-page textarea {
  min-height: 220px;
}

@media (max-width: 900px) {
  .home-hero-grid,
  .home-page .answer-section,
  .home-page .split,
  .research-section,
  .beta-hero-grid,
  .beta-dashboard { grid-template-columns: 1fr; }
  .home-page .cards,
  .home-page .proof-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .home-page main,
  .home-page footer,
  .home-page .lang-switcher { width: min(100% - 22px, 1120px); }
  .home-page .nav { margin: 0 -11px; padding: 10px 11px; }
  .home-page h1 { font-size: 44px; }
  .home-page .lede { font-size: 17px; }
  .home-page .cards,
  .home-page .proof-strip { grid-template-columns: 1fr; }
  .reddit-post { grid-template-columns: 38px minmax(0, 1fr); padding: 12px; }
  .home-page .section { margin-bottom: 58px; }
  .managed-list li { grid-template-columns: 1fr; }
}

.home-page .research-microcopy {
  margin: -8px 0 0;
  line-height: 1.45;
}

/* Keep homepage section rhythm consistent */
.home-page main > section {
  margin: 0 0 72px;
}
.home-page .home-hero-grid {
  padding-bottom: 0;
}
.home-page main > section:last-child {
  margin-bottom: 72px;
}

.home-page main > section.section,
.home-page main > section.proof-strip,
.home-page main > section.home-hero {
  margin-bottom: 72px;
}

.home-page #ai-slop-blocker-guide {
  margin-left: auto;
  margin-right: auto;
}

/* Normalize homepage text-card padding and centered content width */
.home-page {
  --home-card-padding: 28px;
  --home-centered-card-width: 920px;
}
.home-page .answer-card,
.home-page .step,
.home-page .card,
.home-page .research-section,
.home-page #ai-slop-blocker-guide,
.home-page .faq-section,
.home-page .blog-teaser {
  padding: var(--home-card-padding);
}
.home-page #ai-slop-blocker-guide,
.home-page .faq-section,
.home-page .blog-teaser {
  width: min(var(--home-centered-card-width), 100%);
  max-width: var(--home-centered-card-width);
  margin-left: auto;
  margin-right: auto;
}
.home-page #ai-slop-blocker-guide,
.home-page .faq-section {
  border-radius: 24px;
}

@media (max-width: 620px) {
  .home-page {
    --home-card-padding: 22px;
  }
}

/* Match centered homepage sections to research-section width */
.home-page {
  --home-centered-card-width: 1120px;
}

/* Apply homepage visual system to non-home pages too */
.home-page .blog-home,
.home-page .article-page,
.home-page .legal-page {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,.88);
  border: 1px solid #d4dbe2;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(28,35,43,.08);
  padding: var(--home-card-padding, 28px);
}
.home-page .blog-home h1,
.home-page .article-page h1,
.home-page .legal-page h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 12px 0 18px;
}
.home-page .article-page h2,
.home-page .legal-page h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 34px 0 12px;
}
.home-page .article-page p,
.home-page .article-page li,
.home-page .legal-page p,
.home-page .legal-page li {
  color: #4d5863;
  line-height: 1.68;
  font-size: 17px;
}
.home-page .blog-list .card {
  min-height: 100%;
}
.home-page .article-card {
  background: rgba(255,255,255,.88);
  border: 1px solid #d4dbe2;
  box-shadow: 0 12px 36px rgba(28,35,43,.08);
}
.home-page .read-more {
  color: var(--reddit-orange);
}
.home-page .legal-page {
  max-width: 1120px;
}
.home-page .article-page {
  max-width: 1120px;
}

/* Bring legacy localized home pages closer to the redesigned homepage without changing copy */
.home-page .hero:not(.home-hero) {
  min-height: auto;
}
.home-page .hero-grid-survey {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 44px;
  align-items: start;
  padding: 72px 0 0;
}
.home-page .survey-card {
  background: rgba(255,255,255,.88);
  border: 1px solid #d4dbe2;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(28,35,43,.08);
  padding: var(--home-card-padding, 28px);
}
.home-page .demo-section .feed-card {
  background: #fff;
  border: 1px solid #d5dce3;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(28,35,43,.14);
  transform: none;
}
.home-page .feed-topbar {
  background: #fff;
  border-bottom: 1px solid #d7dce1;
}

@media (max-width: 900px) {
  .home-page .hero-grid-survey {
    grid-template-columns: 1fr;
  }
}

/* Blog index intro should read like a page header, not a card */
.home-page .blog-home {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 56px 0 8px;
}

.home-page .article-header {
  width: min(1120px, 100%);
  margin: 56px auto 24px;
  padding: 0;
}
.home-page .article-header h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(46px, 5.8vw, 84px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0;
}
.home-page .article-header + .article-page {
  margin-top: 0;
}
