:root{
  --canvas:#ffffff;
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#f5f2ec;
  --ink:#1d1a16;
  --text:#433f39;
  --muted:#726c63;
  --faint:#9c958b;
  --line:#ece5da;
  --line-2:#f4efe7;
  --primary:#f4694b;
  --primary-d:#d9532f;
  --primary-dd:#c0461f;
  --primary-l:#f6886e;
  --primary-soft:#fde7e0;
  --primary-tint:#fff5f1;
  --coral:#f4694b;
  --coral-d:#d9532f;
  --mock-coral-soft:#fde9e3;
  --mock-coral-tint:#fff4ef;
  --mock-coral-line:#f6cdbf;
  --spruce:#211d19;
  --spruce-2:#2a241f;
  --shadow-xs:0 1px 2px rgba(29,26,22,.05);
  --shadow:0 1px 2px rgba(29,26,22,.04),0 1px 3px rgba(29,26,22,.06);
  --shadow-md:0 8px 22px rgba(29,26,22,.08);
  --shadow-lg:0 18px 50px rgba(29,26,22,.13);
  --r:14px;
  --r-sm:10px;
  --r-xs:8px;
  --maxw:1180px;
  --sans:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --serif:"Spectral",Georgia,serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:84px}
body{
  margin:0;
  font-family:var(--sans);
  background:var(--canvas);
  color:var(--text);
  font-size:14.4px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%}
a{color:var(--primary-d);text-decoration:none}
::selection{background:var(--primary-soft)}
:focus-visible{outline:2.5px solid var(--primary);outline-offset:2px;border-radius:4px}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}

/* Header matches the homepage rhythm */
.site-head{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(232,221,202,.56);
  box-shadow:0 1px 0 rgba(255,255,255,.45);
  transition:border-color .2s,box-shadow .2s;
}
.site-head.scrolled{
  border-bottom-color:rgba(219,207,185,.82);
  box-shadow:0 1px 0 rgba(255,255,255,.65),0 10px 32px rgba(16,42,38,.08);
}
.head-in{display:flex;align-items:center;gap:30px;height:72px}
.logo{display:flex;align-items:center;color:var(--ink)}
.logo-img{width:112px;height:auto}
.main-nav{display:flex;gap:4px;margin-left:8px}
.main-nav a{
  position:relative;
  padding:9px 14px;
  border-radius:10px;
  font-size:13.05px;
  font-weight:600;
  color:var(--muted);
  transition:.14s;
  white-space:nowrap;
}
.main-nav a:hover,
.main-nav a.on{
  color:var(--ink);
  background:transparent;
  box-shadow:none;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:5px;
  height:2px;
  border-radius:999px;
  background:var(--coral);
  opacity:0;
  transform:scaleX(.5);
  transition:opacity .16s ease,transform .16s ease;
}
.main-nav a:hover::after,
.main-nav a.on::after{
  opacity:1;
  transform:scaleX(1);
}
.main-nav a.on{
  color:var(--primary-d);
}
.head-cta{margin-left:auto;display:flex;gap:10px;align-items:center}
.login-link{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:8px 10px;border-radius:10px;font-size:12.15px;font-weight:700;color:var(--muted)}
.login-link:hover{color:var(--ink);background:var(--surface-2)}
.mobile-login-link{display:none}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:14px;
  padding:13px 24px;
  font-weight:650;
  font-size:13.5px;
  border:1px solid transparent;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
  text-align:center;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(135deg,#fa6f59 0%,#e85d46 52%,#c94732 100%);
  color:#fff;
  box-shadow:0 10px 24px rgba(250,111,89,.22),inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover{background:linear-gradient(135deg,#ef624b 0%,#d94f39 58%,#b83d29 100%);box-shadow:0 14px 30px rgba(250,111,89,.28),inset 0 1px 0 rgba(255,255,255,.18)}
.btn-sm{padding:9px 16px;font-size:12.15px;border-radius:14px}
.mobile-nav-demo{display:none}

.hero{
  padding:64px 0 36px;
  background:linear-gradient(180deg,var(--canvas) 0%,#f7f1e8 100%);
  border-bottom:1px solid var(--line);
}
.crumbs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--faint);
  font-size:10.8px;
  font-weight:750;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.crumbs a{color:var(--primary-d)}
.library-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) 250px;
  gap:28px;
  align-items:end;
}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(34.2px,5.8vw,55.8px);
  line-height:1.04;
  letter-spacing:-.02em;
  color:var(--ink);
  max-width:760px;
  margin:20px 0 0;
  font-weight:500;
  text-wrap:balance;
}
.hero p{
  max-width:680px;
  margin:20px 0 0;
  font-size:15.75px;
  line-height:1.72;
  color:var(--muted);
}
.library-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:20px;
  box-shadow:var(--shadow);
}
.library-card b{
  display:block;
  font-size:27px;
  line-height:1;
  color:var(--primary-d);
  margin-bottom:8px;
  letter-spacing:-.03em;
}
.library-card span{display:block;color:var(--muted);font-size:12.15px;line-height:1.55}

.category-nav{
  padding:14px 0;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.92);
  position:sticky;
  top:73px;
  z-index:30;
  backdrop-filter:blur(10px);
}
.category-row{
  display:flex;
  gap:8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.category-row::-webkit-scrollbar{display:none}
.chip{
  white-space:nowrap;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--muted);
  border-radius:10px;
  padding:7px 11px;
  font-size:11.25px;
  font-weight:700;
  box-shadow:var(--shadow-xs);
}
.chip:hover{border-color:rgba(244,105,75,.35);color:var(--primary-d)}

.featured-resources{padding:44px 0 22px}
.resource-section{padding:22px 0 30px}
.resource-section + .resource-section{border-top:1px solid var(--line)}
.resource-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:18px;
}
.resource-section-head h2{
  font-family:var(--serif);
  font-size:clamp(25.2px,3.6vw,36px);
  line-height:1.08;
  letter-spacing:-.015em;
  font-weight:500;
  color:var(--ink);
  margin:0;
  text-wrap:balance;
}
.resource-section-head p{
  color:var(--muted);
  font-size:13.5px;
  line-height:1.62;
  margin:10px 0 0;
  max-width:640px;
}
.resource-section-head>span{
  color:var(--faint);
  font-size:10.8px;
  font-weight:750;
  text-transform:uppercase;
  letter-spacing:.08em;
  white-space:nowrap;
}
.featured-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.featured-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:20px;
  box-shadow:var(--shadow);
  min-height:178px;
  display:flex;
  flex-direction:column;
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
}
.featured-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:rgba(244,105,75,.28)}
.featured-card h2{
  font-family:var(--serif);
  color:var(--ink);
  font-size:21.6px;
  font-weight:500;
  line-height:1.12;
  letter-spacing:-.015em;
  margin:0;
}
.featured-card p{
  color:var(--muted);
  font-size:12.6px;
  line-height:1.55;
  margin:12px 0 0;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.featured-card span{
  margin-top:auto;
  color:var(--primary-d);
  font-size:11.7px;
  font-weight:750;
  padding-top:14px;
}
.resource-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.resource-link{
  min-height:48px;
  display:flex;
  align-items:center;
  background:rgba(255,253,250,.68);
  border:1px solid rgba(232,221,202,.78);
  border-radius:var(--r-sm);
  padding:10px 12px;
  color:var(--text);
  box-shadow:var(--shadow-xs);
  transition:border-color .15s ease,background .15s ease,transform .15s ease;
}
.resource-link:hover{
  transform:translateY(-1px);
  background:var(--surface);
  border-color:rgba(244,105,75,.24);
  color:var(--ink);
}
.resource-link span{
  font-size:12.15px;
  line-height:1.3;
  font-weight:650;
}

.article-shell{
  display:grid;
  grid-template-columns:minmax(0,720px) 280px;
  gap:48px;
  align-items:start;
  padding:46px 28px 76px;
}
.article-body{
  background:transparent;
  border:none;
  padding:0;
  max-width:720px;
}
.back-link{
  display:inline-flex;
  color:var(--primary-d);
  font-size:11.7px;
  font-weight:750;
  margin-bottom:20px;
}
.back-link::before{content:"←";margin-right:7px}
.article-body h1{
  font-family:var(--serif);
  font-size:clamp(30.6px,5vw,46.8px);
  line-height:1.04;
  letter-spacing:-.018em;
  color:var(--ink);
  font-weight:500;
  margin:0 0 18px;
  text-wrap:balance;
}
.dek{
  font-size:16.2px;
  line-height:1.65;
  color:var(--muted);
  margin:0 0 34px;
  max-width:660px;
}
.article-body h2{
  font-family:var(--serif);
  font-size:clamp(22.5px,3.2vw,30.6px);
  line-height:1.12;
  letter-spacing:-.012em;
  font-weight:500;
  color:var(--ink);
  margin:42px 0 12px;
}
.article-body h3{
  font-size:15.3px;
  line-height:1.3;
  color:var(--ink);
  margin:26px 0 8px;
}
.article-body p{
  font-size:14.4px;
  line-height:1.78;
  color:#44504b;
  margin:0 0 17px;
}
.article-body ul,
.article-body ol{
  padding-left:1.15rem;
  margin:0 0 22px;
  color:#44504b;
}
.article-body li{
  margin:7px 0;
  padding-left:3px;
  font-size:13.95px;
  line-height:1.66;
}
.article-body a{color:var(--primary-d);font-weight:750}
.clara-ai-text{color:var(--coral-d);font-weight:800}
.answer-card,
.article-faq{
  margin:34px 0;
  padding:22px;
  border:1px solid rgba(244,105,75,.22);
  border-radius:var(--r);
  background:linear-gradient(180deg,#f6fffb 0%,#fffdfa 100%);
  box-shadow:var(--shadow-xs);
}
.answer-card .bridge-kicker,
.article-faq .bridge-kicker{
  margin:0 0 8px;
  color:var(--primary-d);
  font-size:10.8px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.answer-card h2,
.article-faq h2{
  margin:0 0 10px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.25;
  letter-spacing:-.01em;
}
.answer-card p{
  margin:0;
  max-width:660px;
  font-size:14.4px;
  line-height:1.7;
}
.article-faq{
  display:grid;
  gap:10px;
  background:var(--surface);
}
.article-faq details{
  border:1px solid var(--line-2);
  border-radius:10px;
  background:#fffdfa;
  overflow:hidden;
}
.article-faq summary{
  cursor:pointer;
  padding:13px 14px;
  color:var(--ink);
  font-size:13.05px;
  font-weight:800;
  line-height:1.35;
}
.article-faq p{
  margin:0;
  padding:0 14px 14px;
  color:var(--muted);
  font-size:13.05px;
  line-height:1.62;
}
.clara-article-bridge{
  margin:48px 0 44px;
  padding:24px;
  border:1px solid rgba(244,105,75,.28);
  border-radius:var(--r);
  background:linear-gradient(180deg,#fff7ef 0%,#fffdfa 100%);
  box-shadow:var(--shadow);
}
.clara-article-bridge .bridge-kicker{
  margin:0 0 8px;
  color:var(--coral-d);
  font-size:10.8px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.clara-article-bridge h2{
  margin:0 0 12px;
  font-size:clamp(21.6px,3vw,28.8px);
}
.clara-article-bridge p{
  max-width:640px;
}
.clara-article-bridge ul{
  display:grid;
  gap:10px;
  padding:0;
  margin:18px 0 22px;
  list-style:none;
}
.clara-article-bridge li{
  position:relative;
  margin:0;
  padding-left:25px;
  font-size:13.95px;
}
.clara-article-bridge li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:8px;
  height:8px;
  border-radius:3px;
  background:var(--primary);
  box-shadow:0 0 0 4px rgba(244,105,75,.12);
}
.clara-article-bridge .btn{
  width:auto;
}
.clara-article-bridge .btn.btn-primary{
  color:#fff;
  font-weight:750;
}
.article-internal-links{
  margin:38px 0 10px;
  padding:22px;
  background:linear-gradient(135deg,#fffdfa,#fff7ee);
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--shadow-xs);
}
.article-internal-links h2{
  margin:4px 0 14px;
  font-family:var(--sans);
  font-size:18px;
  letter-spacing:-.01em;
}
.article-internal-links div{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.article-internal-links a{
  display:flex;
  align-items:center;
  min-height:42px;
  padding:10px 12px;
  border:1px solid var(--line-2);
  border-radius:10px;
  background:rgba(255,255,255,.74);
  color:var(--text);
  font-size:12.6px;
  font-weight:700;
  line-height:1.35;
}
.article-internal-links a:hover{
  color:var(--primary-d);
  border-color:rgba(244,105,75,.32);
  background:#fff;
}

.seo-discovery{
  padding:26px 0 20px;
}
.seo-discovery-alt{
  padding-top:18px;
}
.seo-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.seo-card{
  display:flex;
  flex-direction:column;
  gap:9px;
  min-height:168px;
  padding:19px;
  border:1px solid var(--line);
  border-radius:var(--r);
  background:var(--surface);
  box-shadow:var(--shadow-xs);
  color:var(--text);
}
.seo-card h3{
  margin:0;
  color:var(--ink);
  font-size:15.75px;
  letter-spacing:-.01em;
}
.seo-card p{
  margin:0;
  color:var(--muted);
  font-size:12.6px;
  line-height:1.58;
}
.seo-card span{
  margin-top:auto;
  color:var(--primary-d);
  font-size:11.7px;
  font-weight:800;
}
.seo-card:hover{
  border-color:rgba(244,105,75,.32);
  box-shadow:var(--shadow-md);
  transform:translateY(-1px);
}
.solution-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}
.solution-pill-row a{
  display:inline-flex;
  padding:8px 11px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,253,250,.84);
  color:var(--muted);
  font-size:11.7px;
  font-weight:750;
}
.solution-pill-row a:hover{
  color:var(--primary-d);
  border-color:rgba(244,105,75,.32);
}

.seo-page-hero{
  padding:62px 0 34px;
  background:linear-gradient(180deg,var(--canvas),#fffaf3);
  border-bottom:1px solid var(--line);
}
.seo-page-hero .wrap{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:36px;
  align-items:end;
}
.seo-page-hero h1{
  max-width:820px;
  margin:18px 0 0;
  font-family:var(--serif);
  font-size:clamp(34.2px,5.4vw,55.8px);
  line-height:1.03;
  letter-spacing:-.026em;
  color:var(--ink);
  font-weight:500;
  text-wrap:balance;
}
.seo-page-hero p{
  max-width:700px;
  margin:18px 0 0;
  color:var(--muted);
  font-size:15.3px;
  line-height:1.68;
}
.seo-hero-card{
  padding:20px;
  border:1px solid var(--line);
  border-radius:var(--r);
  background:var(--surface);
  box-shadow:var(--shadow);
}
.seo-hero-card b{
  display:block;
  color:var(--ink);
  font-size:15.3px;
  margin-bottom:10px;
}
.seo-hero-card ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.seo-hero-card li{
  color:var(--muted);
  font-size:12.6px;
  line-height:1.45;
}
.seo-section{
  padding:46px 0;
}
.seo-answer-section{
  padding:28px 0 18px;
}
.seo-answer-section + .seo-section{
  padding-top:34px;
}
.seo-faq-section{
  padding-top:34px;
}
.seo-faq{
  max-width:820px;
  margin:0 auto;
}
.seo-section.alt{
  background:#fffaf3;
  border-top:1px solid var(--line-2);
  border-bottom:1px solid var(--line-2);
}
.seo-split{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(0,1fr);
  gap:34px;
  align-items:start;
}
.seo-section h2{
  margin:0;
  font-family:var(--serif);
  font-size:clamp(27px,3.4vw,39.6px);
  line-height:1.08;
  letter-spacing:-.02em;
  color:var(--ink);
  font-weight:500;
  text-wrap:balance;
}
.seo-section p{
  color:var(--muted);
}
.seo-list{
  display:grid;
  gap:12px;
}
.seo-list article,
.compare-callout,
.source-card{
  padding:18px;
  border:1px solid var(--line);
  border-radius:var(--r);
  background:var(--surface);
  box-shadow:var(--shadow-xs);
}
.seo-list h3,
.compare-callout h3{
  margin:0 0 7px;
  color:var(--ink);
  font-size:15.3px;
}
.seo-list p,
.compare-callout p{
  margin:0;
  font-size:13.05px;
  line-height:1.62;
}
.compare-table{
  overflow:auto;
  border:1px solid var(--line);
  border-radius:var(--r);
  background:var(--surface);
  box-shadow:var(--shadow-xs);
}
.compare-table table{
  width:100%;
  min-width:760px;
  border-collapse:collapse;
}
.compare-table th,
.compare-table td{
  padding:14px 16px;
  border-bottom:1px solid var(--line-2);
  text-align:left;
  vertical-align:top;
  font-size:12.6px;
  line-height:1.55;
}
.compare-table th{
  color:var(--ink);
  background:#fff8ef;
  font-size:11.7px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.compare-table th:nth-child(3){
  background:linear-gradient(135deg,#fa8a73,var(--coral-d));
  color:#fff;
}
.compare-table td:nth-child(3){
  background:var(--mock-coral-tint);
  border-left:1px solid var(--mock-coral-line);
}
.compare-table tr:last-child td{
  border-bottom:none;
}
.source-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.source-card a{
  font-weight:780;
}
.source-card p{
  margin:7px 0 0;
  font-size:12.15px;
  line-height:1.5;
}
.seo-cta-panel{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--r);
  background:linear-gradient(135deg,#fffdfa,#f1fbf7);
  box-shadow:var(--shadow-md);
}
.seo-cta-panel h2{
  margin:0 0 8px;
  font-family:var(--serif);
  color:var(--ink);
  font-size:28.8px;
  font-weight:500;
  letter-spacing:-.02em;
}
.seo-cta-panel p{
  margin:0;
  max-width:660px;
}
.article-aside{
  position:sticky;
  top:112px;
  display:grid;
  gap:14px;
}
.aside-card{
  background:linear-gradient(180deg,#2a241f,#211d19);
  color:white;
  border-radius:var(--r);
  padding:20px;
  box-shadow:var(--shadow-lg);
}
.aside-card h2{
  font-family:var(--serif);
  font-size:22.5px;
  line-height:1.08;
  font-weight:500;
  margin:0 0 10px;
}
.aside-card p{
  color:rgba(255,255,255,.76);
  font-size:12.6px;
  line-height:1.58;
  margin:0 0 16px;
}
.aside-card .btn{
  width:100%;
  background:#fff;
  color:var(--primary-d);
  box-shadow:none;
}
.related{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:18px;
  box-shadow:var(--shadow);
}
.related h2{
  font-size:10.8px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--faint);
  margin:0 0 10px;
}
.related a{
  display:block;
  color:var(--ink);
  font-weight:700;
  font-size:12.15px;
  line-height:1.35;
  margin-top:11px;
}
.related a:hover{color:var(--primary-d)}
.site-foot{
  border-top:1px solid var(--line);
  padding:40px 0 34px;
  background:#f4f0e7;
}
.foot-simple{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
}
.foot-links{
  margin-left:auto;
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.foot-links a{
  font-size:12.6px;
  color:var(--muted);
  font-weight:600;
  padding:8px 12px;
  border-radius:9px;
}
.foot-links a:hover{
  color:var(--ink);
  background:var(--surface-2);
}
.foot-base{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:30px;
  padding-top:24px;
  border-top:1px solid var(--line);
  color:var(--faint);
  font-size:11.25px;
  flex-wrap:wrap;
}
.foot-base .sp{
  margin-left:auto;
  display:flex;
  gap:20px;
}
.foot-base .flag{display:inline-flex;align-items:center;gap:7px;font-weight:650}
.foot-base a{
  color:var(--muted);
  font-weight:650;
}
.foot-base a:hover,
.foot-email{
  color:var(--primary-d);
}

@media(max-width:980px){
  .library-head{grid-template-columns:1fr}
  .library-card{max-width:340px}
  .featured-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .seo-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .seo-page-hero .wrap,
  .seo-split{grid-template-columns:1fr}
  .seo-hero-card{max-width:520px}
  .resource-list{grid-template-columns:repeat(2,minmax(0,1fr))}
  .article-shell{grid-template-columns:1fr;gap:30px}
  .article-aside{position:static;max-width:520px}
}
@media(max-width:760px){
  html{scroll-padding-top:76px}
  body{padding-top:64px;overflow-x:hidden}
  body.nav-open{overflow:hidden}
  .wrap{padding:0 18px}
  .site-head{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:100;
    background:rgba(255,255,255,.96);
  }
  .head-in{height:64px;padding-top:0;gap:12px;flex-wrap:nowrap}
  .logo-img{width:98px}
  .head-cta{display:none}
  .menu-toggle{
    margin-left:auto;
    width:44px;
    height:44px;
    border:1px solid var(--line);
    border-radius:14px;
    background:var(--surface);
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    box-shadow:var(--shadow-xs);
  }
  .menu-toggle span{
    width:18px;
    height:2px;
    border-radius:999px;
    background:var(--ink);
    transition:transform .18s ease,opacity .18s ease;
  }
  .site-head.menu-open .menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .site-head.menu-open .menu-toggle span:nth-child(2){opacity:0}
  .site-head.menu-open .menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .main-nav{
    position:fixed;
    top:72px;
    left:18px;
    right:18px;
    width:auto;
    max-height:calc(100dvh - 92px);
    margin:0;
    padding:10px;
    display:none;
    flex-direction:column;
    gap:4px;
    overflow:auto;
    background:rgba(255,253,250,.98);
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:0 24px 70px rgba(16,42,38,.18);
  }
  .site-head.menu-open .main-nav{display:flex}
  .main-nav a{
    min-height:46px;
    padding:12px 14px;
    border-radius:13px;
    font-size:13.5px;
    color:var(--ink);
    display:flex;
    align-items:center;
  }
  .main-nav a::after{display:none}
  .mobile-login-link{display:flex}
  .mobile-nav-demo{
    display:flex;
    width:100%;
    min-height:46px;
    margin-top:8px;
  }
  .hero{padding:42px 0 28px}
  .hero h1{font-size:34.2px}
  .hero p{font-size:14.4px;line-height:1.65}
  .category-nav{top:65px}
  .featured-resources{padding:34px 0 16px}
  .resource-section{padding:20px 0 26px}
  .resource-section-head{display:block}
  .resource-section-head>span{display:inline-flex;margin-top:10px}
  .featured-grid,
  .resource-list,
  .seo-card-grid,
  .source-grid,
  .article-internal-links div{grid-template-columns:1fr}
  .featured-card{min-height:0;padding:18px}
  .seo-card{min-height:0}
  .seo-page-hero{padding:38px 0 24px}
  .seo-page-hero h1{font-size:33.3px}
  .seo-section{padding:34px 0}
  .seo-cta-panel{display:block;padding:20px}
  .seo-cta-panel .btn{width:100%;margin-top:18px}
  .resource-link{min-height:44px}
  .article-shell{padding:34px 18px 58px}
  .article-body h1{font-size:30.6px}
  .dek{font-size:14.85px;margin-bottom:28px}
  .article-body p{font-size:14.22px;line-height:1.72}
  .article-body h2{margin-top:34px}
  .clara-article-bridge{padding:20px;margin:38px 0}
  .clara-article-bridge .btn{width:100%}
  .article-internal-links{padding:18px}
}
@media(max-width:640px){
  .foot-simple{flex-direction:column;align-items:flex-start;gap:18px}
  .foot-links{margin-left:0;padding:0}
  .foot-links a{padding:6px 10px 6px 0}
}
@media(max-width:600px){
  .foot-base .sp{margin-left:0}
}
@media(max-width:560px){
  .foot-simple{gap:14px}
  .foot-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:4px}
  .foot-links a{padding:8px 0}
  .foot-base{display:block;margin-top:22px;padding-top:18px}
  .foot-base span{display:block;margin-top:10px}
  .foot-base .flag{display:flex}
  .foot-base .sp{margin-top:14px}
}

/* True white page canvas for resource, comparison, and solution pages. */
html,
body,
main,
.hero,
.seo-page-hero,
.featured-resources,
.resource-section,
.seo-section,
.article-shell,
.article-body,
.seo-cta{
  background:#ffffff;
}
