/* ============================================================
   Sublime LMS — Resources pages
   Five DISTINCT layouts. No dashboards, floating cards,
   timelines, charts or node diagrams. Editorial / library /
   results / event / support-search directions.
   Uses colors_and_type tokens + site.css buttons only.
   ============================================================ */

.rs-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.rs-reveal.in { opacity: 1; transform: none; }
.rs-container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 28px; }
.rs-wide { max-width: 1320px; }

/* ============================================================
   BLOG — editorial magazine
   ============================================================ */
.blog-mast {
  border-bottom: 2px solid var(--color-graphite);
  padding: 40px 0 22px; margin-top: 12px;
}
.blog-mast-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.blog-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--color-violet-700); margin-bottom: 14px; }
.blog-mast h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(46px, 8vw, 96px); line-height: .92; letter-spacing: -0.04em;
  color: var(--color-graphite); margin: 0;
}
.blog-mast .sub { font-size: 15px; color: var(--fg-muted); max-width: 260px; line-height: 1.55; padding-bottom: 8px; }
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.blog-cat { font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border-strong); color: var(--fg-body); cursor: pointer; transition: all .2s ease; background: #fff; }
.blog-cat:hover { border-color: var(--color-graphite); }
.blog-cat.active { background: var(--color-graphite); color: #fff; border-color: var(--color-graphite); }

/* featured spread */
.blog-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  margin: 44px 0 64px; border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-md);
}
.blog-feature-img { position: relative; min-height: 380px; overflow: hidden; }
.blog-feature-img .ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 0% 0%, #2E1065 0%, #6D28D9 42%, #A78BFA 100%);
}
.blog-feature-img .grain { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px); background-size: 18px 18px; mix-blend-mode: overlay; }
.blog-feature-img .mark { position: absolute; left: 32px; bottom: 28px; right: 32px; color: #fff; }
.blog-feature-img .mark .q { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.25; letter-spacing: -0.02em; text-wrap: balance; }
.blog-feature-img .float-glyph { position: absolute; top: 30px; right: 30px; width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff; animation: rs-bob 5s ease-in-out infinite; }
.blog-feature-img .float-glyph i { width: 26px; height: 26px; }
@keyframes rs-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.blog-feature-body { padding: 38px 40px; display: flex; flex-direction: column; }
.blog-tag { align-self: flex-start; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-violet-700); background: var(--color-violet-50); padding: 5px 10px; border-radius: 999px; }
.blog-feature-body h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 38px); line-height: 1.08; letter-spacing: -0.025em; color: var(--fg); margin: 18px 0 14px; text-wrap: balance; }
.blog-feature-body p { font-size: 16px; line-height: 1.65; color: var(--fg-body); margin: 0 0 24px; }
.blog-byline { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.blog-byline .av { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.blog-byline b { display: block; font-size: 14px; font-weight: 650; color: var(--fg); }
.blog-byline span { font-size: 12px; color: var(--fg-muted); }

/* article grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px; padding-bottom: 24px; }
.blog-card { display: flex; flex-direction: column; cursor: pointer; }
.blog-card-img { height: 200px; border-radius: var(--radius-xl); overflow: hidden; position: relative; margin-bottom: 18px; }
.blog-card-img .num { position: absolute; right: 16px; bottom: 12px; font-family: var(--font-display); font-weight: 800; font-size: 40px; color: rgba(255,255,255,.85); letter-spacing: -0.03em; }
.blog-card-img :is(i,svg):not(.ph){ position:absolute; left:16px; top:16px; width:24px; height:24px; color: rgba(255,255,255,.9); }
.blog-card:hover .blog-card-img { box-shadow: var(--shadow-lg); }
.blog-card .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25; letter-spacing: -0.015em; color: var(--fg); margin: 0 0 8px; transition: color .2s; }
.blog-card:hover h3 { color: var(--color-violet-700); }
.blog-card p { font-size: 13.5px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* newsletter strip */
.blog-news { margin: 64px 0; background: var(--color-graphite); border-radius: var(--radius-2xl); padding: 48px 44px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.blog-news h3 { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.025em; color: #fff; margin: 0 0 6px; }
.blog-news p { color: rgba(255,255,255,.7); font-size: 15px; margin: 0; }
.blog-news form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 440px; }
.blog-news input { flex: 1; height: 50px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); padding: 0 16px; color: #fff; font-size: 14px; }
.blog-news input::placeholder { color: rgba(255,255,255,.5); }
.blog-news button { height: 50px; padding: 0 22px; border-radius: var(--radius-md); background: #fff; color: var(--color-graphite); font-weight: 700; font-size: 14px; border: none; cursor: pointer; white-space: nowrap; }

/* ============================================================
   GUIDES — library / bookshelf
   ============================================================ */
.guides-hero { padding: 64px 0 40px; text-align: center; }
.guides-hero .kick { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--color-teal-700); margin-bottom: 16px; }
.guides-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 68px); line-height: 1.02; letter-spacing: -0.03em; color: var(--fg); margin: 0 0 18px; text-wrap: balance; }
.guides-hero p { font-size: 18px; line-height: 1.6; color: var(--fg-body); max-width: 560px; margin: 0 auto; }

/* shelf of book spines */
.guides-shelf { position: relative; margin: 8px auto 0; max-width: 760px; height: 230px; display: flex; align-items: flex-end; justify-content: center; gap: 14px; padding-bottom: 0; }
.book {
  width: 86px; border-radius: 8px 8px 4px 4px; position: relative;
  box-shadow: 0 18px 36px -16px rgba(15,23,42,.4);
  transform-origin: bottom center; cursor: pointer; text-decoration: none;
  transition: transform .35s var(--ease-spring);
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
}
.book::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: rgba(0,0,0,.18); }
.book::after { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,.22), transparent 60%); }
.book .bt { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: -0.01em; padding: 16px 10px; text-align: center; line-height: 1.25; position: relative; z-index: 1; }
.book:hover { transform: translateY(-22px) rotate(-2deg); }
.book.b1 { height: 200px; background: linear-gradient(160deg,#6D28D9,#4C1D95); }
.book.b2 { height: 224px; background: linear-gradient(160deg,#0F766E,#134E4A); }
.book.b3 { height: 188px; background: linear-gradient(160deg,#1D4ED8,#1E3A8A); }
.book.b4 { height: 214px; background: linear-gradient(160deg,#047857,#064E3B); }
.book.b5 { height: 196px; background: linear-gradient(160deg,#B45309,#92400E); }
.book.b6 { height: 208px; background: linear-gradient(160deg,#8B5CF6,#6D28D9); }
.guides-shelf-plank { max-width: 760px; height: 14px; margin: 0 auto; border-radius: 4px; background: linear-gradient(180deg,#E7E5E4,#D6D3D1); box-shadow: 0 14px 30px -14px rgba(15,23,42,.3); }

/* guides grid (covers) */
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 64px 0; }
.guide-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); cursor: pointer; }
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.guide-cover { height: 168px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.guide-cover .gi { width: 44px; height: 44px; color: rgba(255,255,255,.95); position: relative; z-index: 1; }
.guide-cover .lines { position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 2px, transparent 2px 12px); }
.guide-card .gb { padding: 22px; }
.guide-card .lvl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-muted); }
.guide-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25; letter-spacing: -0.015em; color: var(--fg); margin: 8px 0 8px; }
.guide-card p { font-size: 13.5px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 16px; }
.guide-card .gmeta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--fg-muted); font-weight: 600; }
.guide-card .gmeta i { width: 14px; height: 14px; }

/* ============================================================
   CASE STUDIES — results stories
   ============================================================ */
.cs-hero { padding: 64px 0 24px; text-align: center; }
.cs-hero .kick { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--color-emerald-700); margin-bottom: 16px; }
.cs-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 72px); line-height: 1.0; letter-spacing: -0.03em; color: var(--fg); margin: 0 0 18px; text-wrap: balance; }
.cs-hero p { font-size: 18px; line-height: 1.6; color: var(--fg-body); max-width: 540px; margin: 0 auto; }

/* giant stat band */
.cs-bigstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 48px 0 8px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cs-bigstat { text-align: center; padding: 40px 20px; border-right: 1px solid var(--border); }
.cs-bigstat:last-child { border-right: none; }
.cs-bigstat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(54px, 7vw, 84px); line-height: 1; letter-spacing: -0.04em; background: linear-gradient(135deg,#047857,#10B981); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cs-bigstat span { display: block; font-size: 14px; color: var(--fg-muted); margin-top: 10px; }

/* logo wall */
.cs-logos { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; padding: 40px 0 8px; }
.cs-logos .lg { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--color-slate-400); letter-spacing: -0.01em; }

/* story cards — alternating */
.cs-story { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 32px 0; border: 1px solid var(--border); border-radius: var(--radius-3xl); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.cs-story.flip .cs-story-visual { order: 2; }
.cs-story-visual { position: relative; min-height: 340px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cs-story-visual .bgv { position: absolute; inset: 0; }
.cs-story-visual .big { position: relative; z-index: 1; text-align: center; color: #fff; }
.cs-story-visual .big b { font-family: var(--font-display); font-weight: 800; font-size: 72px; line-height: 1; letter-spacing: -0.04em; display: block; }
.cs-story-visual .big span { font-size: 14px; opacity: .85; letter-spacing: .04em; }
.cs-story-body { padding: 44px 46px; display: flex; flex-direction: column; }
.cs-story-body .who { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.cs-story-body .who .badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-emerald-700); background: var(--color-emerald-50); padding: 5px 10px; border-radius: 999px; }
.cs-story-body .quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.28; letter-spacing: -0.02em; color: var(--fg); margin: 0 0 22px; text-wrap: balance; }
.cs-story-body .res { display: flex; gap: 28px; margin: 0 0 24px; flex-wrap: wrap; }
.cs-story-body .res div b { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--color-emerald-700); letter-spacing: -0.02em; display: block; }
.cs-story-body .res div span { font-size: 12px; color: var(--fg-muted); }
.cs-story-body .person { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.cs-story-body .person .av { width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.cs-story-body .person b { display: block; font-size: 14px; font-weight: 650; color: var(--fg); }
.cs-story-body .person span { font-size: 12px; color: var(--fg-muted); }

/* ============================================================
   WEBINARS — event listing
   ============================================================ */
.web-hero { padding: 60px 0 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.web-hero .kick { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-violet-700); margin-bottom: 16px; }
.web-hero .kick .dot { width: 8px; height: 8px; border-radius: 999px; background: #EF4444; box-shadow: 0 0 0 4px rgba(239,68,68,.18); animation: rs-blink 1.6s ease-in-out infinite; }
@keyframes rs-blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.web-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.03em; color: var(--fg); margin: 0 0 18px; text-wrap: balance; }
.web-hero p { font-size: 18px; line-height: 1.6; color: var(--fg-body); margin: 0 0 26px; max-width: 460px; }

/* webinar animated broadcast orb hero */
.web-orb { position: relative; height: 360px; display: grid; place-items: center; }
.web-orb-core { position: relative; z-index: 3; width: 96px; height: 96px; border-radius: 999px; background: var(--gradient-ai-primary); display: grid; place-items: center; color: #fff; box-shadow: 0 20px 50px -14px rgba(109,40,217,.55), inset 0 0 0 1px rgba(255,255,255,.2); }
.web-orb-core i { width: 40px; height: 40px; }
.web-orb-ring { position: absolute; border-radius: 999px; border: 1.5px solid rgba(109,40,217,.32); animation: web-ring 3.4s ease-out infinite; }
.web-orb-ring.r1 { width: 150px; height: 150px; animation-delay: 0s; }
.web-orb-ring.r2 { width: 150px; height: 150px; animation-delay: 1.1s; }
.web-orb-ring.r3 { width: 150px; height: 150px; animation-delay: 2.2s; }
@keyframes web-ring { 0% { width:120px; height:120px; opacity:.7; } 100% { width:340px; height:340px; opacity:0; } }
.web-orb-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; background: #fff; border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-lg); font-family: var(--font-display); font-weight: 650; font-size: 12.5px; color: var(--fg); animation: web-bob 5.5s ease-in-out infinite; }
.web-orb-chip i { width: 14px; height: 14px; color: var(--color-violet-600); }
.web-orb-chip .lv { width: 8px; height: 8px; border-radius: 999px; background: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,.18); }
.web-orb-chip.c1 { top: 14%; left: 4%; animation-delay: 0s; }
.web-orb-chip.c2 { top: 42%; right: -2%; animation-delay: 1s; }
.web-orb-chip.c2 i { display: none; }
.web-orb-chip.c3 { bottom: 14%; left: 10%; animation-delay: 2s; }
.web-orb-chip.c3 i { color: var(--color-teal-600); }
@keyframes web-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width:980px){ .web-orb { height: 280px; margin-top: 12px; } }
@media (prefers-reduced-motion:reduce){ .web-orb-ring, .web-orb-chip { animation: none !important; } }

/* featured live ticket */
.web-ticket {
  position: relative; background: linear-gradient(150deg,#1F1B3A,#2E1065 70%);
  border-radius: var(--radius-2xl); padding: 30px; color: #fff; overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(46,16,101,.6);
}
.web-ticket::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 80% 10%, rgba(167,139,250,.4), transparent 60%); }
.web-ticket::after { content: ''; position: absolute; left: -14px; top: 50%; width: 28px; height: 28px; border-radius: 999px; background: var(--bg); transform: translateY(-50%); box-shadow: 244px 0 0 var(--bg); }
.web-ticket .tnote { position: relative; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #C4B5FD; }
.web-ticket .play { position: relative; width: 60px; height: 60px; border-radius: 999px; background: rgba(255,255,255,.14); backdrop-filter: blur(8px); display: grid; place-items: center; margin: 18px 0; }
.web-ticket .play i { width: 26px; height: 26px; color: #fff; margin-left: 3px; }
.web-ticket .play::after { content: ''; position: absolute; inset: 0; border-radius: 999px; border: 2px solid rgba(255,255,255,.4); animation: rs-ping 2.4s ease-out infinite; }
@keyframes rs-ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.web-ticket h3 { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 14px; }
.web-ticket .tmeta { position: relative; display: flex; gap: 18px; font-size: 13px; color: rgba(255,255,255,.78); margin-bottom: 20px; flex-wrap: wrap; }
.web-ticket .tmeta span { display: inline-flex; align-items: center; gap: 6px; }
.web-ticket .tmeta i { width: 14px; height: 14px; }
.web-ticket .treg { position: relative; display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 22px; border-radius: var(--radius-md); background: #fff; color: var(--color-violet-700); font-weight: 700; font-size: 14px; text-decoration: none; }

/* tabs + list */
.web-tabs { display: inline-flex; gap: 4px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 4px; margin: 16px 0 28px; }
.web-tab { padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--fg-body); background: transparent; border: none; cursor: pointer; transition: all .2s; }
.web-tab.active { background: var(--color-violet-600); color: #fff; box-shadow: var(--shadow-violet-soft); }
.web-list { display: flex; flex-direction: column; gap: 14px; }
.web-row { display: grid; grid-template-columns: 96px 1fr auto; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px 24px; transition: box-shadow .25s, transform .25s; }
.web-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.web-date { text-align: center; border-right: 1px solid var(--border-soft); padding-right: 16px; }
.web-date .mo { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-violet-700); }
.web-date .day { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--fg); line-height: 1; letter-spacing: -0.02em; }
.web-row .info h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; color: var(--fg); margin: 0 0 6px; }
.web-row .info .m { display: flex; gap: 16px; font-size: 13px; color: var(--fg-muted); flex-wrap: wrap; }
.web-row .info .m span { display: inline-flex; align-items: center; gap: 6px; }
.web-row .info .m i { width: 13px; height: 13px; }
.web-row .ondemand { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-teal-700); background: var(--color-teal-50); padding: 5px 10px; border-radius: 999px; }

/* ============================================================
   HELP CENTER — search-first support
   ============================================================ */
.help-hero { padding: 72px 0 44px; text-align: center; position: relative; overflow: hidden; }
.help-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 80% at 50% 0%, rgba(167,139,250,.16), transparent 70%); }
.help-hero .kick { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--color-violet-700); margin-bottom: 16px; }
.help-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5.6vw, 62px); line-height: 1.04; letter-spacing: -0.03em; color: var(--fg); margin: 0 0 26px; text-wrap: balance; }
.help-search { max-width: 620px; margin: 0 auto; position: relative; }
.help-search input { width: 100%; height: 64px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: #fff; padding: 0 24px 0 58px; font-size: 16px; color: var(--fg); box-shadow: var(--shadow-lg); transition: border-color .2s, box-shadow .2s; }
.help-search input:focus { outline: none; border-color: var(--color-violet-400); box-shadow: var(--shadow-lg), var(--focus-ring); }
.help-search > :is(i,svg) { position: absolute; left: 22px; top: 32px; transform: translateY(-50%); width: 22px; height: 22px; color: var(--color-violet-600); }
.help-search .hint { margin-top: 14px; font-size: 13px; color: var(--fg-muted); }
.help-search .hint a { color: var(--color-violet-700); text-decoration: none; margin: 0 6px; }

/* help category art banner */
.help-cat-art { height: 92px; border-radius: var(--radius-lg); overflow: hidden; position: relative; margin-bottom: 18px; }
.help-cat .ci { margin-top: 0; }

/* category tiles */
.help-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 56px 0; }
.help-cat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 28px; cursor: pointer; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s; }
.help-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-violet-200); }
.help-cat .ci { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.help-cat .ci i { width: 24px; height: 24px; }
.help-cat h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; color: var(--fg); margin: 0 0 8px; }
.help-cat p { font-size: 13.5px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 14px; }
.help-cat .links { display: flex; flex-direction: column; gap: 7px; }
.help-cat .links a { font-size: 13px; color: var(--fg-body); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.help-cat .links a:hover { color: var(--color-violet-700); }
.help-cat .links a i { width: 13px; height: 13px; color: var(--fg-faint); }

/* FAQ accordion */
.help-faq { max-width: 760px; margin: 0 auto; }
.help-faq h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.4vw,40px); letter-spacing: -0.025em; color: var(--fg); text-align: center; margin: 0 0 32px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-display); font-weight: 650; font-size: 17px; letter-spacing: -0.01em; color: var(--fg); }
.faq-q i { width: 20px; height: 20px; color: var(--color-violet-600); flex-shrink: 0; transition: transform .3s var(--ease-out); }
.faq-item.open .faq-q i { transform: none; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { font-size: 15px; line-height: 1.65; color: var(--fg-body); margin: 0; padding: 0 4px 24px; max-width: 640px; }

/* support CTA */
.help-support { margin: 64px 0; background: var(--gradient-dark-intel); border-radius: var(--radius-2xl); padding: 48px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.help-support::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(139,92,246,.34), transparent 70%); }
.help-support h3 { position: relative; font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.025em; margin: 0 0 8px; }
.help-support p { position: relative; color: rgba(255,255,255,.72); font-size: 15px; margin: 0 0 24px; }
.help-support .row { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   shared section title for resources
   ============================================================ */
.rs-sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.rs-sec-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3vw,36px); letter-spacing: -0.025em; color: var(--fg); margin: 0; }
.rs-sec-head a { font-size: 14px; font-weight: 600; color: var(--color-violet-700); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.rs-sec-head a i { width: 15px; height: 15px; }
.rs-section { padding: 24px 0; }
.rs-section.pad { padding: 56px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature-img { min-height: 240px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-story, .cs-story.flip { grid-template-columns: 1fr; }
  .cs-story.flip .cs-story-visual { order: 0; }
  .web-hero { grid-template-columns: 1fr; }
  .web-ticket::after { display: none; }
  .help-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .rs-container { padding: 0 20px; }
  .blog-mast h1 { font-size: clamp(40px, 13vw, 60px); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-news { padding: 32px 24px; }
  .guides-shelf { gap: 8px; height: 180px; }
  .book { width: 58px; }
  .book.b1{height:156px}.book.b2{height:172px}.book.b3{height:148px}.book.b4{height:166px}.book.b5{height:152px}.book.b6{height:160px}
  .book .bt { font-size: 10px; padding: 12px 6px; }
  .guides-grid { grid-template-columns: 1fr; }
  .cs-bigstats { grid-template-columns: 1fr; }
  .cs-bigstat { border-right: none; border-bottom: 1px solid var(--border); }
  .cs-bigstat:last-child { border-bottom: none; }
  .cs-story-body { padding: 30px 26px; }
  .cs-story-visual { min-height: 220px; }
  .cs-story-visual .big b { font-size: 52px; }
  .web-row { grid-template-columns: 1fr; gap: 14px; }
  .web-date { display: inline-flex; gap: 8px; border-right: none; padding-right: 0; align-items: baseline; }
  .help-cats { grid-template-columns: 1fr; }
  .help-search input { height: 56px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .blog-feature-img .float-glyph, .web-hero .kick .dot, .web-ticket .play::after { animation: none !important; }
}
