:root {
  color-scheme: light;
  --ink: #1d2528;
  --muted: #5f6f74;
  --line: #d9e1e3;
  --paper: #fbfcfb;
  --panel: #ffffff;
  --brand: #1d4375;
  --brand-deep: #173760;
  --green: #176f5c;
  --blue: #235c8f;
  --gold: #b7791f;
  --red: #9f3a38;
  --shadow: 0 18px 45px rgba(29, 37, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--brand);
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 251, 0.92);
  border-bottom: 1px solid rgba(217, 225, 227, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.former-name {
  display: inline-block;
  margin: 12px 0 0;
  padding: 5px 10px;
  border: 1px solid rgba(29, 67, 117, 0.22);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(29, 67, 117, 0.06);
  font-size: 0.82rem;
  font-weight: 700;
}

.lead {
  max-width: 60ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel);
  text-decoration: none;
  font-weight: 750;
}

.button.primary {
  color: white;
  border-color: var(--brand);
  background: var(--brand);
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(100%, 370px);
  padding: 16px;
  border-radius: 34px;
  background: var(--brand-deep);
  box-shadow: var(--shadow);
}

.screen {
  min-height: 700px;
  overflow: hidden;
  border-radius: 24px;
  background: #f2f6f5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-top {
  padding: 24px 20px 14px;
  background: var(--panel);
}

.app-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.app-title strong {
  font-size: 1.72rem;
  letter-spacing: 0;
}

.app-tools {
  display: flex;
  gap: 10px;
  color: #087cf0;
}

.app-tools span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  position: relative;
}

.tool-calendar::before {
  content: "";
  width: 12px;
  height: 11px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
  box-sizing: border-box;
}

.tool-calendar::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1.6px;
  top: 8px;
  background: currentColor;
}

.tool-sort::before,
.tool-sort::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 9px;
  height: 9px;
  border: solid currentColor;
  border-width: 0 1.6px 1.6px 0;
}

.tool-sort::before {
  top: 4px;
  transform: rotate(-135deg);
}

.tool-sort::after {
  bottom: 4px;
  transform: rotate(45deg);
}

.stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.stat {
  padding: 8px 3px;
  text-align: center;
  border-radius: 10px;
}

.stat b {
  display: block;
  font-size: 0.98rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.75rem;
}

.stat.active { background: rgba(0, 122, 255, 0.1); }
.stat.active b { color: #007aff; }
.stat.overdue { background: rgba(255, 59, 48, 0.1); }
.stat.overdue b { color: #ff3b30; }
.stat.unbilled { background: rgba(201, 75, 70, 0.12); }
.stat.unbilled b { color: #b33b37; }
.stat.proofing { background: rgba(175, 82, 222, 0.1); }
.stat.proofing b { color: #af52de; }
.stat.earnings { background: rgba(52, 199, 89, 0.1); }
.stat.earnings b { color: #248a3d; }

.workload {
  margin-top: 8px;
  padding: 6px;
  border-radius: 8px;
  color: #8944ab;
  background: rgba(175, 82, 222, 0.08);
  font-size: 0.68rem;
  line-height: 1.25;
}

.today-goal {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  text-align: center;
}

.app-body {
  padding: 0 16px 16px;
}

.filters {
  display: flex;
  gap: 7px;
  margin: 0 -16px 2px;
  padding: 10px 16px;
  overflow: hidden;
  white-space: nowrap;
}

.filters span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #007aff;
  background: rgba(0, 122, 255, 0.12);
  font-size: 0.68rem;
}

.filters .selected {
  color: white;
  background: #007aff;
}

.job-card {
  margin-bottom: 9px;
  padding: 13px;
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 2px 5px rgba(29, 37, 40, 0.07);
}

.calendar-preview {
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 2px 5px rgba(29, 37, 40, 0.07);
}

.calendar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.info-dot {
  position: absolute;
  right: 0;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1.4px solid #087cf0;
  border-radius: 50%;
  color: #087cf0;
  font-size: 0.72rem;
  font-weight: 800;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-grid span {
  min-height: 42px;
  padding: 4px 2px;
  border-radius: 8px;
  background: #eef3f2;
  color: var(--muted);
  text-align: center;
  font-size: 0.68rem;
}

.calendar-grid b {
  display: block;
  margin-top: 3px;
  font-size: 0.55rem;
  line-height: 1;
}

.calendar-grid .due {
  color: #7e211f;
  background: rgba(159, 58, 56, 0.14);
}

.calendar-grid .due b {
  display: inline-block;
  padding: 3px 5px;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.calendar-grid .load {
  color: #9a4c12;
  background: rgba(183, 121, 31, 0.14);
}

.calendar-grid .proof {
  color: #60409a;
  background: rgba(105, 68, 163, 0.12);
}

.job-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.job-head strong {
  display: block;
  max-width: 205px;
  font-size: 0.88rem;
  line-height: 1.25;
}

.pill {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.pill.editing {
  color: #007aff;
  background: rgba(0, 122, 255, 0.15);
}

.pill.proofing {
  color: #6944a3;
  background: rgba(105, 68, 163, 0.12);
}

.pill.writing {
  color: #c65d00;
  background: rgba(255, 149, 0, 0.15);
}

.pill.ready {
  color: #4b49a5;
  background: rgba(75, 73, 165, 0.14);
}

.ordered-by {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.job-meta {
  margin: 8px 0 0;
  font-size: 0.72rem;
}

.pacing-low { color: #248a3d; }
.pacing-medium { color: #c65d00; }

.job-bottom {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.job-bottom b {
  color: #248a3d;
}

.mini-calendar {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 4px;
  vertical-align: -1px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  position: relative;
}

.mini-calendar::before {
  content: "";
  position: absolute;
  left: -1.5px;
  right: -1.5px;
  top: 2px;
  height: 1.5px;
  background: currentColor;
}

.section {
  border-top: 1px solid var(--line);
  padding: 58px 24px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-intro {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: start;
}

.feature-list {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-list p {
  margin: 0;
  color: var(--muted);
}

.feature-list p + p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.content-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 68px 24px;
}

.content-page h1 {
  max-width: none;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.content-page h2 {
  margin-top: 34px;
  font-size: 1.6rem;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.content-page ul {
  padding-left: 22px;
}

.callout {
  margin: 28px 0;
  padding: 18px;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: #eef3f9;
}

.guide-promo {
  margin: 30px 0;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.guide-promo h2,
.guide-promo p {
  margin: 0;
}

.guide-promo p {
  margin-top: 8px;
}

.pricing-grid {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.pricing-card.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 14px 36px rgba(29, 67, 117, 0.12);
}

.pricing-label {
  margin: 0;
  color: var(--brand) !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  margin: 12px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.price strong {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1;
}

.price span,
.annual-price,
.fine-print {
  color: var(--muted);
}

.pricing-card ul {
  margin-bottom: 0;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fine-print {
  margin-top: 34px;
  font-size: 0.9rem;
}

/* 2026 pacing-first product site */
.product-hero h1 { max-width: 10ch; }
.role-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.role-row span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); color: var(--muted); font-size: .78rem; font-weight: 700; }
.availability-note { margin: 18px 0 0; color: var(--muted); font-size: .86rem; }
.app-shot .screen { position: relative; min-height: 700px; padding-bottom: 64px; }
.ios-status { display: flex; justify-content: space-between; padding: 12px 19px 4px; background: var(--panel); font-size: .68rem; font-weight: 800; }
.round-add { display: inline-grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: white; background: #087cf0; font-size: 1.35rem; line-height: 1; }
.compact-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
.goal-panel { position: relative; overflow: hidden; margin-top: 8px; padding: 10px 11px 13px; border: 1px solid rgba(29,67,117,.1); border-radius: 11px; background: #f7f9fc; }
.goal-panel strong, .goal-panel span { display: block; font-size: .68rem; }
.goal-panel span { margin-top: 2px; color: var(--muted); }
.goal-panel i { position: absolute; left: 10px; bottom: 6px; height: 3px; border-radius: 99px; background: #087cf0; }
.simple-list { padding-top: 14px; }
.progress-line, .writing-note { margin: 4px 0 0; color: var(--muted); font-size: .69rem; }
.complete-line { color: #248a3d; font-weight: 700; }
.writing-note { color: #9a4c12; font-weight: 650; }
.tab-bar { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: repeat(3,1fr); padding: 9px 14px 11px; border-top: 1px solid #d9e1e3; background: rgba(255,255,255,.96); text-align: center; }
.tab-bar span, .tab-bar b { display: grid; color: #778388; font-size: 1rem; }
.tab-bar b { color: #087cf0; }
.tab-bar small { margin-top: 2px; font-size: .56rem; }
.proof-strip { max-width: 1120px; margin: 12px auto 58px; padding: 0 24px; display: grid; grid-template-columns: repeat(3,1fr); }
.proof-strip div { padding: 20px 24px; border: 1px solid var(--line); background: var(--panel); }
.proof-strip div:first-child { border-radius: 12px 0 0 12px; }
.proof-strip div:last-child { border-radius: 0 12px 12px 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip span { margin-top: 4px; color: var(--muted); font-size: .86rem; }
.steps-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step-card { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.step-card > span { display: grid; width: 34px; height: 34px; margin-bottom: 28px; place-items: center; border-radius: 50%; color: white; background: var(--brand); font-weight: 900; }
.step-card h3 { font-size: 1.2rem; }
.step-card p { margin-bottom: 0; color: var(--muted); }
.showcase-section, .pro-preview-section { background: #f1f5f6; }
.screenshot-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,430px); gap: 68px; align-items: center; }
.screenshot-grid.reverse { grid-template-columns: minmax(300px,430px) minmax(0,1fr); }
.showcase-copy h2 { max-width: 13ch; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: 13px 0; padding-left: 28px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.product-screenshot { margin: 0; }
.product-screenshot > div { overflow: hidden; border: 10px solid var(--brand-deep); border-radius: 30px; background: #f2f5f4; box-shadow: var(--shadow); }
.product-screenshot figcaption { margin-top: 12px; color: var(--muted); text-align: center; font-size: .78rem; }
.detail-shot { padding: 14px; }
.shot-nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 5px 18px; color: #087cf0; }
.shot-nav strong { color: var(--ink); }
.detail-summary, .next-card, .detail-shot details { padding: 18px; border-radius: 15px; background: white; box-shadow: 0 2px 6px rgba(29,37,40,.06); }
.detail-summary h3 { margin-top: 14px; font-size: 1.6rem; }
.detail-summary p, .next-card p { margin: 6px 0 0; color: var(--muted); font-size: .88rem; }
.mini-progress { overflow: hidden; height: 7px; margin-top: 16px; border-radius: 99px; background: #e3e9e8; }
.mini-progress i { display: block; height: 100%; background: #087cf0; }
.shot-button { width: 100%; margin: 12px 0; padding: 13px; border: 0; border-radius: 12px; color: white; background: #087cf0; font: inherit; font-weight: 800; }
.next-card small { color: var(--brand); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.next-card h3 { margin-top: 7px; }
.detail-shot details { margin-top: 12px; }
.detail-shot summary { display: flex; justify-content: space-between; font-weight: 800; list-style: none; }
.plan-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.plan-card { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.pro-plan { border: 2px solid var(--brand); box-shadow: 0 15px 38px rgba(29,67,117,.12); }
.plan-heading { display: flex; justify-content: space-between; gap: 15px; align-items: start; }
.plan-heading h3 { margin-top: 5px; font-size: 1.55rem; }
.plan-heading > strong { font-size: 1.4rem; }
.recommended { padding: 6px 9px; border-radius: 999px; color: white; background: var(--brand); font-size: .68rem; font-weight: 800; white-space: nowrap; }
.plan-card > p, .plan-card li { color: var(--muted); }
.plan-card ul { padding-left: 20px; }
.text-link { display: inline-block; margin-top: 10px; font-weight: 800; }
.scope-note { margin-top: 22px; padding: 15px 18px; border-radius: 10px; color: var(--muted); background: #eef3f9; }
.month-label { display: flex; justify-content: space-between; padding: 5px 16px 14px; font-size: .82rem; }
.month-label span { color: #087cf0; }
.weekdays, .month-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.weekdays { padding: 0 12px; color: var(--muted); text-align: center; font-size: .68rem; font-weight: 800; }
.month-grid { gap: 5px; padding: 8px 12px 16px; }
.month-grid > span { min-height: 52px; padding: 5px 2px; border-radius: 8px; background: white; text-align: center; font-size: .7rem; }
.month-grid .dim { color: #aab3b5; background: transparent; }
.month-grid i, .month-grid b { display: block; margin: 4px auto 0; font-size: .58rem; font-style: normal; }
.month-grid i { width: 25px; padding: 2px; border-radius: 5px; color: #1e5a8b; background: #dbeaf8; }
.month-grid .due-day { color: #8d2f2c; background: #f8e4e3; }
.month-grid .due-day b { color: #a83330; }
.month-grid .proof-day { color: #6944a3; background: #eee7f5; }
.calendar-legend { display: flex; justify-content: center; gap: 16px; padding: 13px; border-top: 1px solid var(--line); background: white; color: var(--muted); font-size: .66rem; }
.calendar-legend i { display: inline-block; width: 7px; height: 7px; margin-right: 4px; border-radius: 50%; }
.blue-dot { background: #5b9bd5; } .purple-dot { background: #9667bd; } .red-dot { background: #cc5550; }
.final-cta { text-align: center; }
.final-cta h2 { max-width: 18ch; margin: 0 auto; }
.final-cta p:not(.eyebrow) { color: var(--muted); }
.final-cta .actions { justify-content: center; }
.quick-guide { max-width: 760px; }
.quick-guide > h1 { max-width: 10ch; }
.quick-path { margin: 42px 0; border-top: 1px solid var(--line); }
.quick-path section { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.quick-path section > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: white; background: var(--brand); font-weight: 900; }
.quick-path h2 { margin: 0; font-size: 1.35rem; }
.quick-path p { margin: 6px 0 0; }
.gentle-section { margin: 58px 0 28px; }
.gentle-section h2 { margin-top: 0; }
.ready-details { border-top: 1px solid var(--line); }
.ready-details details { border-bottom: 1px solid var(--line); }
.ready-details summary { display: flex; justify-content: space-between; gap: 20px; padding: 20px 2px; color: var(--ink); cursor: pointer; font-weight: 800; list-style: none; }
.ready-details summary::-webkit-details-marker { display: none; }
.ready-details summary b { color: var(--brand); font-size: 1.2rem; }
.ready-details details[open] summary b { transform: rotate(45deg); }
.ready-details details > div { padding: 0 32px 18px 2px; }
.ready-details details > div p { margin-top: 0; }

@media (max-width: 780px) {
  .proof-strip, .steps-grid, .plan-grid, .screenshot-grid, .screenshot-grid.reverse { grid-template-columns: 1fr; }
  .proof-strip { gap: 10px; }
  .proof-strip div, .proof-strip div:first-child, .proof-strip div:last-child { border-radius: 12px; }
  .screenshot-grid { gap: 36px; }
  .screenshot-grid.reverse .product-screenshot { order: 2; }
}

.guide-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 68px 24px 90px;
}

.guide-hero {
  max-width: 850px;
}

.guide-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.guide-layout {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 54px;
}

.guide-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(29, 37, 40, 0.06);
}

.guide-toc strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.guide-toc a {
  padding: 3px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.guide-toc a:hover {
  color: var(--brand);
}

.guide-content {
  min-width: 0;
}

.guide-section {
  scroll-margin-top: 96px;
  padding: 0 0 48px;
  border-bottom: 1px solid var(--line);
}

.guide-section + .guide-section {
  padding-top: 48px;
}

.guide-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.guide-section h3 {
  margin-top: 26px;
  font-size: 1.15rem;
}

.guide-section p,
.guide-section li,
.guide-contact p {
  color: var(--muted);
}

.guide-section ol,
.guide-section ul {
  padding-left: 23px;
}

.guide-section li + li {
  margin-top: 8px;
}

.section-number {
  margin: 0 0 8px;
  color: var(--brand) !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-grid > div,
.example {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.guide-grid h3,
.example p {
  margin-top: 0;
}

.example {
  margin: 22px 0;
  border-left: 4px solid var(--gold);
}

.example p {
  margin: 6px 0 0;
}

.glossary {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
  gap: 14px 24px;
}

.glossary dt {
  color: var(--ink);
  font-weight: 800;
}

.glossary dd {
  margin: 0;
  color: var(--muted);
}

.guide-contact {
  margin-top: 48px;
  padding: 28px;
  border-radius: 14px;
  color: white;
  background: var(--brand-deep);
}

.guide-contact p {
  color: rgba(255, 255, 255, 0.8);
}

.guide-contact .button:not(.primary) {
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  color: var(--muted);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 820px) {
  .nav {
    align-items: center;
  }

  .nav-links {
    max-width: 58vw;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .phone-wrap {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .feature-columns {
    grid-template-columns: 1fr;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .actions,
  .footer-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav { padding: 12px 16px; }
  .brand { flex: 0 0 auto; }
  .brand-mark { width: 30px; height: 30px; }
  .nav-links { gap: 14px; font-size: .84rem; }

  .button {
    width: 100%;
  }

  .screen {
    min-height: 560px;
  }

  .guide-promo {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-toc,
  .guide-grid,
  .glossary {
    grid-template-columns: 1fr;
  }
}
