/* Shared styles for the generated public pages (about, pricing, platforms, blog). Landing keeps its own inline styles. */
html[data-theme="light"] { --ground: #F5F1EA; --card: #FFFFFF; --panel: #EBE4D8; --line: #E3DBCD; }
body { background: var(--ground); }
html, body { overflow-x: clip; }
.site { max-width: 1200px; margin: 0 auto; padding: 0 3vw 72px; }
.topnav { display: flex; align-items: center; gap: 18px; padding: 24px 0; flex-wrap: wrap; }
.logo { font-family: var(--serif); font-size: 22px; font-weight: 500; text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; }
.logo .mark { width: 30px; height: 30px; border-radius: 8px; }
.topnav .menu { display: flex; gap: 4px; margin-left: 8px; }
.topnav .menu a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 14.5px; padding: 6px 10px; border-radius: 999px; }
.topnav .menu a:hover, .topnav .menu a.on { color: var(--ink); background: var(--panel); }
.topnav .links { margin-left: auto; display: flex; gap: 8px; }
.btn.big { font-size: 16px; padding: 12px 24px; border-radius: 999px; }
.btn.primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn.primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); opacity: 1; }
.kicker { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent2); font-weight: 700; }
.phead { padding: 36px 0 8px; max-width: 46em; }
.phead h1 { font-size: 46px; line-height: 1.06; margin: 12px 0 16px; font-weight: 500; letter-spacing: -0.02em; }
.phead .lead { font-size: 19px; color: var(--muted); margin: 0; line-height: 1.5; max-width: 34em; }
.define { margin-top: 28px; padding: 20px 26px; border-left: 3px solid var(--accent); background: var(--panel); border-radius: 0 14px 14px 0; }
.define p { margin: 0; font-size: 17px; line-height: 1.55; max-width: 62em; color: var(--ink); }
.sect { padding: 64px 0 0; }
.sect h2 { font-size: 34px; margin: 10px 0 12px; line-height: 1.1; font-weight: 500; letter-spacing: -0.01em; }
.sect p.lead { color: var(--muted); font-size: 17px; max-width: 34em; margin: 0 0 8px; line-height: 1.5; }
.sect > p { max-width: 40em; font-size: 16.5px; line-height: 1.55; color: var(--ink); margin: 0 0 12px; }
ul.bul { margin: 12px 0 0; padding: 0; list-style: none; font-size: 16.5px; color: var(--ink); max-width: 44em; }
ul.bul li { padding: 5px 0 5px 22px; position: relative; line-height: 1.5; }
ul.bul li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); }
ul.bul li b { font-weight: 600; }
.cards { display: grid; gap: 14px; margin-top: 24px; }
.cards.c3 { grid-template-columns: repeat(3, 1fr); } .cards.c2 { grid-template-columns: repeat(2, 1fr); }
.card2 { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 20px; box-shadow: var(--shadow); }
.card2 h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 21px; font-weight: 500; }
.card2 p { margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.card2 ul.bul { font-size: 15px; margin-top: 6px; } .card2 ul.bul li { padding: 3px 0 3px 18px; } .card2 ul.bul li::before { top: 10px; width: 6px; height: 6px; }
.card2 .ico { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; height: 36px; }
.card2 .ico svg { width: 32px; height: 32px; } .card2 .ico .at { font-weight: 700; font-size: 30px; line-height: 1; color: #111; font-family: var(--sans); }
.steps { margin: 24px 0 0; padding: 0; list-style: none; counter-reset: s; position: relative; max-width: 44em; }
.steps::before { content: ""; position: absolute; left: 21px; top: 24px; bottom: 40px; width: 2px; background: var(--line); }
.steps > li { counter-increment: s; position: relative; padding: 0 0 26px 64px; }
.steps > li::before { content: "0" counter(s); position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--accent-deep); color: #F2ECE1; font-family: var(--serif); font-size: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px var(--ground); }
.steps > li:nth-child(2)::before { background: var(--accent2); }
.steps h3 { margin: 8px 0 6px; font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.05; }
.steps ul.bul { margin-top: 4px; font-size: 16px; }
.plans { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin: 28px auto 0; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 26px; box-shadow: var(--shadow); text-align: center; position: relative; }
.plan.hi .name { color: var(--accent); } .plan.launch { background: var(--panel); } .plan.launch .name { color: var(--accent2); }
.plan .tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent2); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.plan .name { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.plan .amt { font-family: var(--serif); font-size: 44px; font-weight: 500; margin: 6px 0 2px; } .plan .amt small { font-family: var(--sans); font-size: 14px; color: var(--muted); }
.plan p { margin: 8px 0 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.plan ul { margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); list-style: none; text-align: left; font-size: 15px; color: var(--ink); }
.plan li { padding: 5px 0 5px 22px; position: relative; } .plan li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 40px; margin-top: 20px; }
.faq .q { border-top: 1px solid var(--line); padding: 18px 0 12px; }
.faq h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 21px; font-weight: 500; letter-spacing: -0.01em; }
.faq p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.5; }
.cta { text-align: center; margin: 72px 0 0; background: var(--panel); border-radius: 20px; padding: 48px 5vw; }
.cta h2 { font-size: 34px; margin: 0 0 10px; font-weight: 500; } .cta p { color: var(--muted); margin: 0 0 22px; font-size: 17px; }
.foot2 { margin-top: 64px; border-top: 1px solid var(--line); padding-top: 28px; color: var(--muted); font-size: 14px; }
.foot2 .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot2 h4 { margin: 0 0 8px; font-family: var(--serif); font-weight: 500; font-size: 16px; color: var(--ink); }
.foot2 .cols a { display: block; color: var(--muted); text-decoration: none; padding: 3px 0; } .foot2 .cols a:hover { color: var(--ink); }
.foot2 .fine { margin-top: 26px; display: grid; gap: 4px; font-size: 13px; max-width: 60em; }
.foot2 .fine span:first-child { font-family: var(--serif); color: var(--ink); font-size: 15px; }
/* blog */
.postlist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.postcard { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow); text-decoration: none; color: var(--ink); display: block; }
.postcard:hover { border-color: var(--hair); }
.postcard h3 { margin: 6px 0 8px; font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.15; }
.postcard p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.postcard .meta { font-size: 12.5px; color: var(--muted); }
.prose { max-width: 42em; font-size: 17px; line-height: 1.6; }
.prose h2 { font-size: 28px; margin: 40px 0 10px; line-height: 1.15; font-weight: 500; }
.prose h3 { font-family: var(--serif); font-size: 21px; margin: 26px 0 6px; font-weight: 500; }
.prose p { margin: 0 0 14px; }
.prose ul.bul { margin: 4px 0 16px; font-size: 17px; }
.prose a { color: var(--accent); }
.prose .byline { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.prose blockquote { margin: 18px 0; padding: 14px 20px; border-left: 3px solid var(--accent); background: var(--panel); border-radius: 0 12px 12px 0; }
.prose blockquote p { margin: 0; }
.prose .box { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin: 18px 0; }
.prose .box p { margin: 0 0 8px; } .prose .box p:last-child { margin: 0; }
.related { margin-top: 48px; } .related h2 { font-size: 24px; }
@media (max-width: 900px) {
  .topnav .menu { order: 3; width: 100%; margin-left: 0; flex-wrap: wrap; }
  .phead h1 { font-size: 34px; } .sect h2, .cta h2 { font-size: 28px; }
  .cards.c3, .cards.c2, .faq, .postlist, .foot2 .cols { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; }
  .sect { padding-top: 48px; }
}
