/* docs.css — the app-shell frame for the public Blog (2026-09-08).
 * Mirrors the SPA's desktop chrome (AppNav rail + TopBar) so blog pages
 * read as the same product as app.recpt.com.au: 232px white rail with a
 * 1px #ebebeb edge, 14px-radius rows, #f0f0f0 active pill, 88px top bar
 * with a 30px black title and one orange pill. Values are copied from
 * web/src/components/AppNav.tsx and TopBar.tsx; keep them in step.
 * The SPA help centre (web/src/pages/Help.tsx) is the Tailwind twin. */

body.dk-shell { background: #fff; color: #222; }
body.dk-shell .public-nav { display: none; }

/* rail */
.dk-rail {
  position: fixed; left: 0; top: 0; bottom: 0; width: 232px; z-index: 40;
  display: flex; flex-direction: column;
  background: #fff; border-right: 1px solid #ebebeb;
  padding: 24px 16px; overflow-y: auto;
}
.dk-rail .dk-logo {
  font-weight: 900; font-size: 19px; letter-spacing: -0.5px; color: #0a0a0a;
  text-decoration: none; padding: 0 14px;
}
.dk-rail .dk-logo .dot { color: #ff5722; }
.dk-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #6b6b6b; padding: 0 14px; margin: 28px 0 6px;
}
.dk-row {
  display: flex; align-items: center; gap: 14px;
  border-radius: 14px; padding: 11px 14px;
  font-size: 14.5px; font-weight: 500; color: #222; text-decoration: none;
  transition: background 0.15s;
}
.dk-row:hover { background: #f7f7f7; }
.dk-row.on { background: #f0f0f0; font-weight: 700; }
.dk-row svg { width: 20px; height: 20px; flex: none; }
.dk-sub { display: flex; flex-direction: column; gap: 2px; }
.dk-sub a {
  padding: 6px 14px; border-radius: 10px;
  font-size: 13.5px; color: #717171; text-decoration: none; line-height: 1.35;
}
.dk-sub a:hover { background: #f7f7f7; color: #222; }
.dk-sub a.on { color: #222; font-weight: 700; }
.dk-rail .dk-bottom {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; gap: 14px;
  border-radius: 14px; padding: 11px 14px;
  font-size: 14.5px; font-weight: 500; color: #717171; text-decoration: none;
}
.dk-rail .dk-bottom:hover { background: #f7f7f7; color: #222; }
.dk-rail .dk-bottom svg { width: 20px; height: 20px; flex: none; }

/* top bar */
.dk-top {
  position: fixed; top: 0; right: 0; left: 232px; height: 88px; z-index: 40;
  display: flex; align-items: center; gap: 10px;
  padding: 0 24px; background: #fff;
}
.dk-top h1, .dk-top .dk-title {
  font-size: 30px; font-weight: 900; letter-spacing: -0.8px; color: #0a0a0a;
  margin: 0; white-space: nowrap; text-decoration: none;
}
.dk-top .dk-sp { flex: 1; }
.dk-search { position: relative; }
.dk-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: #9a9a9a;
}
.dk-search input {
  width: 260px; border-radius: 100px; border: 1px solid transparent;
  background: #f4f4f5; padding: 10px 16px 10px 40px;
  font: inherit; font-size: 13.5px; color: #222; outline: none;
}
.dk-search input::placeholder { color: #9a9a9a; }
.dk-search input:focus {
  background: #fff; border-color: #e8e8e8;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.10);
}
.dk-pill {
  display: inline-flex; align-items: center; white-space: nowrap;
  border-radius: 100px; background: #ff5722; color: #fff;
  font-weight: 800; font-size: 13px; padding: 8px 16px;
  border: 0; text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.35);
}
.dk-pill:hover { filter: brightness(0.95); }

/* content column */
.dk-content { padding: 112px 32px 0 264px; }
.dk-content .dk-inner { max-width: 1240px; }
body.dk-shell .blog-wrap { max-width: none; margin: 0; padding: 0 0 72px; }
body.dk-shell .article { max-width: 760px; }
.dk-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #8a8a8a; margin-bottom: 18px;
}
.dk-crumb a { color: #222; font-weight: 600; text-decoration: none; }
.dk-crumb a:hover { text-decoration: underline; }

/* tint hero (blog index) */
.dk-hero {
  border-radius: 18px; background: #f6f1ea;
  padding: 40px; margin-bottom: 28px;
  display: grid; grid-template-columns: 1fr 200px; align-items: center; gap: 32px;
}
.dk-hero .dk-eyebrow { font-size: 11px; font-weight: 600; color: #8a7458; margin-bottom: 6px; }
.dk-hero h1 {
  font-size: 34px; font-weight: 900; letter-spacing: -1px; line-height: 1.05;
  color: #0a0a0a; margin: 0 0 10px;
}
.dk-hero p { margin: 0; font-size: 15px; color: #6f6252; max-width: 460px; line-height: 1.5; }
.dk-hero svg { width: 72px; height: 72px; color: #ff5722; justify-self: end; }

/* post cards (blog index) */
body.dk-shell .post-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0;
}
body.dk-shell .post-card {
  display: flex; flex-direction: column; gap: 8px; margin: 0;
  border-radius: 18px; border: 1px solid #ececec; background: #fff;
  padding: 22px; text-decoration: none; transform: none;
  transition: background 0.15s;
}
body.dk-shell .post-card:hover { background: #f7f7f7; border-color: #ececec; transform: none; }
body.dk-shell .post-card:first-child { grid-column: span 2; background: #fff4ef; border-color: transparent; }
body.dk-shell .post-card:first-child:hover { background: #ffeee6; }
body.dk-shell .post-card h2 {
  font-size: 17px; font-weight: 800; letter-spacing: -0.3px; line-height: 1.3;
  color: #222; margin: 0;
}
body.dk-shell .post-card:first-child h2 { font-size: 24px; }
body.dk-shell .post-card p { font-size: 13.5px; color: #717171; margin: 0; line-height: 1.5; }
body.dk-shell .post-card:first-child p { color: #6b4a38; }
body.dk-shell .post-card[hidden] { display: none; }

/* article body: keep style.css type, soften chrome */
body.dk-shell .blog-cta {
  border: 0; border-radius: 18px; background: #fff4ef; box-shadow: none;
}
body.dk-shell .blog-cta .btn { border: 0; box-shadow: 0 4px 12px rgba(255, 87, 34, 0.35); border-radius: 100px; }
body.dk-shell .note { border-radius: 14px; }

/* footer inside the column */
body.dk-shell footer.site { margin-top: 64px; }

/* below the desktop breakpoint the rail goes, the bar stays */
@media (max-width: 1023px) {
  .dk-rail { display: none; }
  .dk-top { left: 0; height: 72px; padding: 0 16px; border-bottom: 1px solid #ebebeb; }
  .dk-top h1, .dk-top .dk-title { font-size: 22px; }
  .dk-search input { width: 150px; }
  .dk-content { padding: 92px 16px 0; }
  .dk-hero { grid-template-columns: 1fr; padding: 28px 24px; }
  .dk-hero svg { display: none; }
  body.dk-shell .post-list { grid-template-columns: 1fr; }
  body.dk-shell .post-card:first-child { grid-column: auto; }
}
@media (max-width: 480px) {
  .dk-search { display: none; }
}


/* ── Blog index: top-nav editorial layout (2026-09-08, Untitled UI blog ref) ──
 * Not the rail. Big title left, tagline right, subscribe pill, category tabs,
 * two-column photo cards with a frosted meta strip. Post pages keep the rail. */
body.bh { background: #fff; }
body.bh .public-nav { display: none; }
.bh-nav {
  max-width: 1180px; margin: 0 auto; padding: 28px 24px 0;
  display: flex; align-items: center; gap: 28px;
}
.bh-logo { font-weight: 900; font-size: 19px; letter-spacing: -0.5px; color: #0a0a0a; text-decoration: none; margin-right: 8px; }
.bh-logo .dot { color: #ff5722; }
.bh-links { display: flex; align-items: center; gap: 26px; }
.bh-links a { font-size: 15px; font-weight: 600; color: #222; text-decoration: none; }
.bh-links a:hover, .bh-links a.on { color: #ff5722; }
.bh-sp { flex: 1; }
.bh-login { font-size: 15px; font-weight: 600; color: #222; text-decoration: none; margin-right: 6px; }
.bh-legal { margin-right: 20px; }
.bh-legal.on { color: #ff5722; }
.bh-cta {
  display: inline-flex; align-items: center; white-space: nowrap;
  border-radius: 100px; background: #0a0a0a; color: #fff;
  font-weight: 700; font-size: 15px; padding: 11px 22px; text-decoration: none;
}
.bh-cta:hover { background: #222; }

body.bh .blog-wrap.bh-main { max-width: 1180px; margin: 0 auto; padding: 96px 24px 64px; }
.bh-head { margin-bottom: 56px; }
.bh-head h1 {
  font-size: 64px; font-weight: 900; letter-spacing: -2.5px; line-height: 1;
  color: #0a0a0a; margin: 0 0 40px;
}
.bh-tag { font-size: 20px; line-height: 1.5; color: #555; margin: 8px 0 0; }
.bh-sub { position: relative; display: flex; max-width: 520px; }
.bh-sub input {
  flex: 1; min-width: 0; border-radius: 100px; border: 1px solid #ebebeb;
  padding: 17px 170px 17px 24px; font: inherit; font-size: 17px; color: #222; outline: none;
}
.bh-sub input:focus { border-color: #d8d8d8; box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.10); }
.bh-sub button {
  position: absolute; right: 5px; top: 5px; bottom: 5px;
  border-radius: 100px; background: #0a0a0a; color: #fff; border: 0;
  font: inherit; font-weight: 700; font-size: 16px; padding: 0 30px; cursor: pointer;
}
.bh-sub button:hover { background: #222; }
.bh-sub button:disabled { opacity: 0.6; cursor: default; }
.bh-sub-msg { position: absolute; left: 24px; top: calc(100% + 8px); font-size: 13.5px; color: #717171; }

.bh-tabs { display: flex; gap: 6px; border-bottom: 1px solid #ebebeb; margin-bottom: 40px; overflow-x: auto; }
.bh-tabs button {
  background: transparent; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px;
  padding: 10px 6px 14px; font: inherit; font-size: 17px; font-weight: 600; color: #717171;
  cursor: pointer; white-space: nowrap;
}
.bh-tabs button + button { margin-left: 22px; }
.bh-tabs button:hover { color: #222; }
.bh-tabs button.on { color: #0a0a0a; border-bottom-color: #0a0a0a; }

body.bh .post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 40px; margin: 0; }
body.bh .post-card {
  display: block; margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent;
  text-decoration: none; transform: none; box-shadow: none;
}
body.bh .post-card:hover { border: 0; transform: none; background: transparent; }
body.bh .post-card[hidden] { display: none; }
.bh-fig {
  position: relative; margin: 0 0 22px; aspect-ratio: 3 / 2; overflow: hidden;
  background: #fff4ef;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' fill='none' stroke='%23ffd9cb' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M40 20h40v80l-6-5-7 5-7-5-7 5-7-5-6 5z'/%3E%3Cpath d='M50 42h20M50 56h14M50 70h18'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.bh-fig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.bh-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 22px 28px; color: #fff; font-weight: 700; font-size: 15px;
  background: rgba(20, 20, 20, 0.35);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.bh-date { font-weight: 500; font-size: 14px; opacity: 0.9; }
.bh-cat { font-weight: 700; }
body.bh .post-card h2 {
  font-size: 24px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.25;
  color: #0a0a0a; margin: 0 0 8px;
}
body.bh .post-card:hover h2 { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
body.bh .post-card p { font-size: 17px; line-height: 1.55; color: #555; margin: 0 0 18px; }
.bh-read { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 700; color: #0a0a0a; }
.bh-read svg { width: 16px; height: 16px; }
body.bh .blog-cta { margin-top: 64px; border: 0; border-radius: 18px; background: #fff4ef; box-shadow: none; }
body.bh .blog-cta .btn { border: 0; border-radius: 100px; box-shadow: 0 4px 12px rgba(255, 87, 34, 0.35); }

@media (max-width: 1023px) {
  .bh-nav { padding: 20px 16px 0; gap: 16px; }
  .bh-links { display: none; }
  body.bh .blog-wrap.bh-main { padding: 56px 16px 48px; }
  .bh-head { margin-bottom: 36px; }
  .bh-head h1 { font-size: 44px; letter-spacing: -1.5px; margin-bottom: 24px; }
  .bh-tag { font-size: 17px; }
  .bh-sub input { padding-right: 130px; font-size: 15px; }
  .bh-sub button { padding: 0 20px; font-size: 14px; }
  body.bh .post-list { grid-template-columns: 1fr; gap: 36px; }
}


/* ── Pricing page (2026-09-08, Untitled UI pricing-table ref) ──
 * Headline + lede, then ONE grid: a label column and three plan columns.
 * The plan cards sit in the first row over their columns, comparison rows
 * follow with the same column tracks so values line up under the cards. */
.pr-head { margin-bottom: 56px; max-width: 820px; }
.pr-head h1 { font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1.08; color: #0a0a0a; margin: 0 0 22px; }
.pr-lede { font-size: 19px; line-height: 1.55; color: #666; margin: 0; }
.pr-grid { display: flex; flex-direction: column; }
.pr-row { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1fr; align-items: center; border-bottom: 1px solid #ececec; }
.pr-row.pr-cards { align-items: end; border-bottom: 0; padding-bottom: 24px; }
.pr-row.pr-cards .pr-cell { padding: 0 8px; }
.pr-label { padding: 20px 0; font-size: 15.5px; font-weight: 700; color: #0a0a0a; display: flex; align-items: center; gap: 7px; }
.pr-cell { padding: 20px 8px; font-size: 15px; color: #444; }
.pr-ok { width: 20px; height: 20px; color: #0a0a0a; display: block; }
.pr-dash { color: #9a9a9a; }
.pr-hint {
  display: inline-grid; place-items: center; width: 15px; height: 15px; border-radius: 100px;
  border: 1.5px solid #c9c9c9; color: #9a9a9a; font-size: 10px; font-weight: 700; cursor: help;
}
.pr-eyebrow {
  grid-column: 1 / -1; padding: 44px 0 12px; font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #717171; border-bottom: 1px solid #ececec;
}
.pr-eyebrow-first { grid-column: auto; padding: 0 0 0; border: 0; align-self: end; }
.pr-plan {
  position: relative; border-radius: 16px; border: 1px solid #e5e5e5; background: #fff;
  padding: 22px 22px 20px; display: flex; flex-direction: column;
}
.pr-plan-hot { background: #0a0a0a; border-color: #0a0a0a; color: #fff; }
.pr-tag {
  position: absolute; top: 20px; right: 18px; border-radius: 100px;
  background: #ff5722; color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: 0.6px;
  text-transform: uppercase; padding: 4px 9px;
}
.pr-name { font-size: 17px; font-weight: 800; }
.pr-desc { font-size: 14px; color: #717171; margin: 2px 0 34px; }
.pr-plan-hot .pr-desc { color: #b5b5b5; }
.pr-strike { font-size: 15px; color: #9a9a9a; text-decoration: line-through; margin-bottom: -6px; }
.pr-plan-hot .pr-strike { color: #8a8a8a; }
.pr-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.pr-price b { font-size: 32px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.pr-price span { font-size: 14px; color: #717171; white-space: nowrap; }
.pr-plan-hot .pr-price span { color: #b5b5b5; }
.pr-btn {
  display: block; text-align: center; border-radius: 12px; padding: 11px 16px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  border: 1px solid #d9d9d9; background: #fff; color: #0a0a0a;
}
.pr-btn:hover { background: #f7f7f7; }
.pr-btn-accent { background: #ff5722; border-color: #ff5722; color: #fff; }
.pr-btn-accent:hover { filter: brightness(0.95); background: #ff5722; }
.pr-note { font-size: 13.5px; color: #717171; margin: 22px 0 0; }
.pr-h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; color: #0a0a0a; margin: 64px 0 18px; }
.pr-faq { max-width: 760px; border-top: 1px solid #ececec; }
.pr-faq details { border-bottom: 1px solid #ececec; padding: 0; }
.pr-faq summary { cursor: pointer; padding: 22px 0; font-size: 17px; font-weight: 700; color: #0a0a0a; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.pr-faq summary::-webkit-details-marker { display: none; }
.pr-faq summary::after {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 100px; border: 1.5px solid #d9d9d9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: 12px 12px; background-position: center; background-repeat: no-repeat; transition: transform 0.15s;
}
.pr-faq details[open] summary::after { transform: rotate(45deg); }
.pr-faq p { margin: -6px 0 22px; padding-right: 48px; font-size: 15.5px; line-height: 1.65; color: #555; }
body.pr .note { margin-top: 40px; }
@media (max-width: 1023px) {
  .pr-head h1 { font-size: 36px; letter-spacing: -1.2px; }
  .pr-lede { font-size: 16px; }
  .pr-lede br, .pr-head h1 br { display: none; }
  .pr-row { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .pr-row.pr-cards { grid-template-columns: 1fr; gap: 12px; }
  .pr-eyebrow-first { display: none; }
  .pr-hint { display: none; }
  .pr-label { font-size: 13.5px; padding: 14px 0; }
  .pr-cell { font-size: 12.5px; padding: 14px 4px; }
  .pr-row.pr-cards .pr-cell { padding: 0; }
  .pr-h2 { margin-top: 44px; }
}


/* ── Pricing cards v2 (2026-09-08): centred head, three tall cards ── */
.pc-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.pc-head h1 { font-size: 52px; font-weight: 900; letter-spacing: -2px; line-height: 1.05; color: #0a0a0a; margin: 0; }
.pc-head p { font-size: 18px; line-height: 1.55; color: #666; margin: 0; }
.pc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pc {
  border-radius: 22px; border: 1px solid #ececec; background: #fff;
  padding: 28px 28px 26px; display: flex; flex-direction: column;
}
.pc-hot { background: #fff4ef; border-color: #ffd9cb; }
.pc-badge {
  align-self: flex-start; border-radius: 100px; padding: 8px 18px;
  background: #0a0a0a; color: #fff; font-size: 16px; font-weight: 800;
}
.pc-hot .pc-badge { background: #fff; color: #0a0a0a; }
.pc-desc { font-size: 15px; line-height: 1.55; color: #666; margin: 18px 0 28px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pc-strike { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #9a9a9a; margin-bottom: -4px; }
.pc-badges { display: flex; align-items: center; gap: 10px; }
.pc-save { border-radius: 100px; padding: 3px 10px; background: #ffd9cb; color: #b34a22; font-size: 12px; font-weight: 800; letter-spacing: 0.3px; }
.pc-price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 22px; border-bottom: 1px solid #ececec; }
.pc-hot .pc-price { border-bottom-color: #ffd9cb; }
.pc-price b { font-size: 46px; font-weight: 900; letter-spacing: -2px; line-height: 1; color: #0a0a0a; }
.pc-price span { font-size: 15px; color: #717171; }
.pc-feats { list-style: none; margin: 0; padding: 24px 0; display: flex; flex-direction: column; gap: 14px; flex: 1; border-bottom: 1px solid #ececec; }
.pc-hot .pc-feats { border-bottom-color: #ffd9cb; }
.pc-feats li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: #222; }
.pc-feats svg { width: 18px; height: 18px; flex: none; color: #0a0a0a; }
.pc-btn {
  display: block; text-align: center; margin-top: 24px; border-radius: 14px; padding: 14px 16px;
  font-size: 15.5px; font-weight: 700; text-decoration: none;
  border: 1px solid #e5e5e5; background: #fff; color: #0a0a0a;
}
.pc-btn:hover { background: #f7f7f7; }
.pc-btn-ink { background: #0a0a0a; border-color: #0a0a0a; color: #fff; }
.pc-btn-ink:hover { background: #222; }
.pr-headrow .pr-cell { font-size: 15.5px; font-weight: 800; color: #0a0a0a; }
.pr-headrow .pr-label { padding-bottom: 12px; }
@media (max-width: 1023px) {
  .pc-head h1 { font-size: 36px; letter-spacing: -1.2px; }
  .pc-head p { font-size: 16px; }
  .pc-grid { grid-template-columns: 1fr; gap: 14px; }
  .pc-desc { min-height: 0; }
}


/* ── Legal pages (privacy, terms, security), 2026-09-08: top nav + side panel ── */
.lg-wrap { display: grid; grid-template-columns: 272px 1fr; gap: 56px; align-items: start; }
.lg-side { position: sticky; top: 24px; }
.lg-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #6b6b6b; padding: 0 12px; margin: 0 0 6px; }
.lg-side .lg-row { display: block; border-radius: 12px; padding: 10px 12px; font-size: 14.5px; font-weight: 500; color: #222; text-decoration: none; }
.lg-side .lg-row:hover { background: #f7f7f7; }
.lg-side .lg-row.on { background: #f0f0f0; font-weight: 700; }
.lg-toc { margin-top: 26px; display: flex; flex-direction: column; gap: 2px; }
.lg-toc a { padding: 6px 12px; border-radius: 8px; font-size: 13px; color: #717171; text-decoration: none; line-height: 1.35; }
.lg-toc a:hover { background: #f7f7f7; color: #222; }
.lg-body { max-width: 760px; min-width: 0; }
.lg-body .lg-h1 { font-size: 44px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; color: #0a0a0a; margin: 0 0 8px; }
.lg-body .lg-updated { font-size: 14px; color: #8a8a8a; margin: 0 0 32px; }
.lg-body h2 { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; color: #0a0a0a; margin: 36px 0 10px; scroll-margin-top: 24px; }
.lg-body p, .lg-body li { font-size: 15.5px; line-height: 1.65; color: #444; }
.lg-body p { margin: 0 0 14px; }
.lg-body ul, .lg-body ol { margin: 0 0 16px 20px; padding: 0; }
.lg-body li { margin-bottom: 6px; }
.lg-body a { color: #ff5722; font-weight: 600; text-decoration: none; }
.lg-body a:hover { text-decoration: underline; }
.lg-body table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin: 0 0 18px; }
.lg-body th, .lg-body td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #ececec; vertical-align: top; color: #444; }
.lg-body th { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #717171; }
.lg-body code { font-size: 13px; background: #f4f4f5; border-radius: 6px; padding: 1px 6px; }
@media (max-width: 1023px) {
  .lg-wrap { grid-template-columns: 1fr; gap: 24px; }
  .lg-side { position: static; }
  .lg-toc { display: none; }
  .lg-body .lg-h1 { font-size: 34px; letter-spacing: -1px; }
}


/* ── Contact page (2026-09-08): three aligned rows, no cards ── */
.ct-head { margin-bottom: 48px; }
.ct-head p { margin-top: 12px; }
.ct-list { border-top: 1px solid #ececec; }
.ct-row { display: grid; grid-template-columns: 220px 1fr 300px; gap: 40px; align-items: start; padding: 28px 0; border-bottom: 1px solid #ececec; }
.ct-what { font-size: 17px; font-weight: 800; letter-spacing: -0.2px; color: #0a0a0a; }
.ct-why { font-size: 15.5px; line-height: 1.6; color: #555; }
.ct-why a { color: #0a0a0a; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.ct-how { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.ct-how a { font-size: 16px; font-weight: 700; color: #ff5722; text-decoration: none; }
.ct-how a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ct-how span { font-size: 13px; color: #8a8a8a; }
@media (max-width: 1023px) {
  .ct-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .ct-how { text-align: left; margin-top: 6px; }
}
