/* =====================================================================
   FunnelX — Site map page
   Loaded after homepage.css. Owns the sitemap layout only.
   ===================================================================== */
.sm-hero { position: relative; overflow: hidden; background: var(--fx-navy); padding: 176px 0 var(--space-16); }
.sm-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(46% 56% at 12% 4%, rgba(50,101,255,0.55), transparent 62%), radial-gradient(40% 50% at 90% 88%, rgba(3,197,147,0.20), transparent 66%); }
.sm-hero .wrap { position: relative; z-index: 1; }
@media (max-width: 900px){ .sm-hero { padding: 124px 0 var(--space-12); } }
.sm-hero .eyebrow { color: var(--fx-yellow); }
.sm-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.2vw, 3rem); line-height: 1.06; letter-spacing: -0.025em; margin: var(--space-4) 0 var(--space-5); max-width: 20ch; }
.sm-hero p { color: #fff; font-size: var(--fs-18); line-height: var(--lh-relaxed); margin: 0; max-width: 56ch; opacity: 0.88; }

.sm-body { padding: var(--space-20) 0; }
.sm-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-6); align-items: start; }
@media (max-width: 860px){ .sm-grid { grid-template-columns: 1fr; } }
.sm-group { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius-xl); padding: var(--space-8); }
.sm-group.wide { grid-column: 1 / -1; }
.sm-group > h2 { font-size: var(--fs-20); color: var(--fx-navy); letter-spacing: -0.01em; margin: 0 0 var(--space-2); }
.sm-group > p { font-size: var(--fs-14); color: var(--fg-3); line-height: var(--lh-relaxed); margin: 0 0 var(--space-6); }
.sm-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.sm-group.wide .sm-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px var(--space-8); }
@media (max-width: 700px){ .sm-group.wide .sm-list { grid-template-columns: 1fr; } }
.sm-list li { border-top: 1px solid var(--border-1); }
.sm-list li:first-child { border-top: 0; }
.sm-group.wide .sm-list li:nth-child(2) { border-top: 0; }
@media (max-width: 700px){ .sm-group.wide .sm-list li:nth-child(2) { border-top: 1px solid var(--border-1); } }
.sm-list a { display: grid; gap: 3px; padding: 12px 28px 12px 0; text-decoration: none; position: relative; }
.sm-list a:hover { text-decoration: none; }
.sm-list a b { font-size: var(--fs-15, 15px); font-weight: var(--fw-medium); color: var(--fx-navy); line-height: var(--lh-snug); transition: color 180ms var(--ease-out); }
.sm-list a span { font-size: 13px; color: var(--fg-3); line-height: var(--lh-snug); }
.sm-list a::after { content: ""; position: absolute; right: 6px; top: 18px; width: 7px; height: 7px; border: solid var(--border-2); border-width: 2px 2px 0 0; transform: rotate(45deg); transition: border-color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.sm-list a:hover b { color: var(--fx-blue); }
.sm-list a:hover::after { border-color: var(--fx-light-blue); transform: rotate(45deg) translate(2px, -2px); }
