:root {
  --ucn-bg: #f6f9ff;
  --ucn-bg-soft: #eef6ff;
  --ucn-surface: #ffffff;
  --ucn-surface-2: rgba(255,255,255,.82);
  --ucn-text: #0f172a;
  --ucn-muted: #64748b;
  --ucn-border: #dbe7f5;
  --ucn-primary: #2563eb;
  --ucn-primary-dark: #1d4ed8;
  --ucn-secondary: #7c3aed;
  --ucn-accent: #06b6d4;
  --ucn-success: #10b981;
  --ucn-shadow: 0 22px 60px rgba(15,23,42,.10);
  --ucn-shadow-soft: 0 14px 40px rgba(15,23,42,.08);
  --ucn-radius: 24px;
  --ucn-radius-lg: 34px;
  --ucn-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ucn-text);
  background:
    radial-gradient(circle at 10% -10%, rgba(37,99,235,.16), transparent 32rem),
    radial-gradient(circle at 92% 2%, rgba(124,58,237,.14), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #fbfdff 52%, #f7f9ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ucn-primary); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(37,99,235,.18); }
.screen-reader-text, .skip-link {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.skip-link:focus {
  clip: auto !important; clip-path: none; display: block; height: auto; left: 16px; top: 16px; width: auto; z-index: 100000; padding: 10px 14px; background: #fff; border-radius: 12px; box-shadow: var(--ucn-shadow);
}
.ucn-container { width: min(100% - 32px, var(--ucn-container)); margin-inline: auto; }
.updated:not(.published) { display: none; }

/* Header */
.ucn-site-header { position: sticky; top: 0; z-index: 90; backdrop-filter: blur(18px); background: rgba(248,251,255,.82); border-bottom: 1px solid rgba(219,231,245,.72); }
.admin-bar .ucn-site-header { top: 32px; }
.ucn-top-strip { border-bottom: 1px solid rgba(219,231,245,.75); color: var(--ucn-muted); font-size: 13px; background: rgba(255,255,255,.55); }
.ucn-top-strip-inner { min-height: 38px; display: flex; align-items: center; gap: 14px; overflow: hidden; }
.ucn-date { white-space: nowrap; font-weight: 700; color: var(--ucn-text); }
.ucn-latest-label { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; color: #0f766e; background: rgba(20,184,166,.12); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 11px; }
.ucn-ticker-links { display: flex; gap: 20px; overflow: hidden; white-space: nowrap; }
.ucn-ticker-links a { color: var(--ucn-muted); }
.ucn-ticker-links a:hover { color: var(--ucn-primary); }
.ucn-navbar { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.ucn-brand-wrap { flex: 0 0 auto; }
.ucn-brand { display: inline-flex; align-items: center; gap: 12px; }
.ucn-brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; color: #fff; font-weight: 900; font-size: 22px; background: linear-gradient(135deg, var(--ucn-primary), var(--ucn-secondary)); box-shadow: 0 12px 26px rgba(37,99,235,.24); }
.ucn-brand-text { display: grid; line-height: 1.1; }
.ucn-brand-text strong { font-size: 20px; letter-spacing: -.03em; }
.ucn-brand-text em { font-style: normal; color: var(--ucn-muted); font-size: 12px; margin-top: 4px; }
.ucn-custom-logo img { max-height: 58px; width: auto; }
.ucn-primary-nav { margin-left: auto; }
.ucn-menu { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.ucn-menu a { display: inline-flex; align-items: center; min-height: 42px; padding: 8px 14px; border-radius: 999px; color: var(--ucn-muted); font-weight: 800; font-size: 14px; }
.ucn-menu .current-menu-item > a, .ucn-menu a:hover { color: var(--ucn-text); background: rgba(37,99,235,.08); }
.ucn-header-actions { display: flex; align-items: center; }
.ucn-small-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 8px 16px; border-radius: 999px; background: var(--ucn-text); color: #fff; font-weight: 900; font-size: 14px; box-shadow: 0 14px 26px rgba(15,23,42,.16); }
.ucn-small-cta:hover { color: #fff; transform: translateY(-1px); }
.ucn-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--ucn-border); background: #fff; border-radius: 14px; padding: 10px; }
.ucn-menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; background: var(--ucn-text); margin: 5px 0; border-radius: 999px; }

/* Buttons */
.ucn-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border-radius: 999px; font-weight: 900; line-height: 1; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.ucn-button:hover { transform: translateY(-2px); }
.ucn-button-primary { color: #fff; background: linear-gradient(135deg, var(--ucn-primary), var(--ucn-secondary)); box-shadow: 0 18px 34px rgba(37,99,235,.25); }
.ucn-button-primary:hover { color: #fff; box-shadow: 0 22px 42px rgba(37,99,235,.32); }
.ucn-button-ghost { background: rgba(255,255,255,.82); color: var(--ucn-text); border: 1px solid var(--ucn-border); }
.ucn-button-light { color: var(--ucn-primary-dark); background: #fff; box-shadow: 0 16px 32px rgba(15,23,42,.12); }
.ucn-text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--ucn-primary); font-weight: 900; }
.ucn-eyebrow { margin: 0 0 10px; display: inline-flex; align-items: center; gap: 7px; color: var(--ucn-primary); text-transform: uppercase; letter-spacing: .11em; font-size: 12px; font-weight: 950; }
.ucn-eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ucn-accent); box-shadow: 0 0 0 6px rgba(6,182,212,.12); }

/* Hero */
.ucn-hero-section { padding: 76px 0 42px; position: relative; overflow: hidden; }
.ucn-hero-section::before { content: ""; position: absolute; inset: 34px auto auto 4%; width: 180px; height: 180px; border-radius: 44px; background: rgba(37,99,235,.08); transform: rotate(16deg); z-index: -1; }
.ucn-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr); gap: 44px; align-items: center; }
.ucn-hero-copy h1 { margin: 0; font-size: clamp(40px, 6vw, 72px); line-height: .98; letter-spacing: -.065em; max-width: 850px; }
.ucn-hero-subtitle { margin: 22px 0 0; color: var(--ucn-muted); font-size: clamp(17px, 2vw, 20px); max-width: 720px; }
.ucn-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.ucn-hero-search, .ucn-archive-search, .ucn-search-form { display: flex; gap: 10px; align-items: center; padding: 9px; border: 1px solid var(--ucn-border); background: rgba(255,255,255,.86); border-radius: 999px; box-shadow: 0 16px 42px rgba(15,23,42,.08); }
.ucn-hero-search { margin-top: 24px; max-width: 650px; }
.ucn-hero-search input, .ucn-archive-search input, .ucn-search-form input { flex: 1; width: 100%; min-height: 42px; border: 0; background: transparent; outline: 0; padding: 0 12px; color: var(--ucn-text); }
.ucn-hero-search button, .ucn-archive-search button, .ucn-search-form button { min-height: 42px; padding: 8px 17px; border: 0; border-radius: 999px; background: var(--ucn-text); color: #fff; font-weight: 900; cursor: pointer; }
.ucn-trust-pills { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.ucn-trust-pills span { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid var(--ucn-border); color: var(--ucn-muted); font-weight: 800; font-size: 13px; }
.ucn-hero-panel { border-radius: var(--ucn-radius-lg); background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(240,247,255,.72)); border: 1px solid rgba(219,231,245,.88); box-shadow: var(--ucn-shadow); padding: 16px; position: relative; }
.ucn-hero-panel::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 86px; height: 86px; border-radius: 28px; background: linear-gradient(135deg, rgba(6,182,212,.16), rgba(124,58,237,.16)); z-index: -1; }
.ucn-featured-card { overflow: hidden; border-radius: 28px; background: #fff; }
.ucn-featured-image img, .ucn-featured-image .ucn-image-placeholder { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.ucn-featured-content { padding: 22px; }
.ucn-featured-label { display: inline-flex; margin-bottom: 10px; padding: 6px 10px; border-radius: 999px; background: rgba(37,99,235,.10); color: var(--ucn-primary-dark); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .06em; }
.ucn-featured-content h2 { margin: 10px 0 8px; font-size: clamp(22px, 3vw, 30px); line-height: 1.08; letter-spacing: -.04em; }
.ucn-featured-content p { color: var(--ucn-muted); margin: 0 0 14px; }
.ucn-image-placeholder { display: grid; place-items: center; min-height: 220px; color: #fff; background: linear-gradient(135deg, var(--ucn-primary), var(--ucn-secondary)); }
.ucn-image-placeholder span { font-weight: 950; letter-spacing: -.02em; }

/* Sections */
.ucn-section, .ucn-category-section, .ucn-faq-section { padding: 54px 0; }
.ucn-home-widget-area { margin-top: 24px; }
.ucn-home-widget, .ucn-before-footer-widget { border-radius: var(--ucn-radius); background: #fff; border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow-soft); padding: 24px; }
.ucn-section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 24px; }
.ucn-section-head h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.04; letter-spacing: -.055em; }
.ucn-section-head p:not(.ucn-eyebrow) { margin: 10px 0 0; color: var(--ucn-muted); max-width: 720px; }
.ucn-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.ucn-card-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ucn-card-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ucn-post-card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--ucn-radius); background: rgba(255,255,255,.92); border: 1px solid rgba(219,231,245,.9); box-shadow: var(--ucn-shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.ucn-post-card:hover { transform: translateY(-4px); box-shadow: var(--ucn-shadow); }
.ucn-post-thumb { display: block; overflow: hidden; background: var(--ucn-bg-soft); }
.ucn-post-thumb img, .ucn-post-thumb .ucn-image-placeholder { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .3s ease; }
.ucn-post-card:hover .ucn-post-thumb img { transform: scale(1.035); }
.ucn-post-card-body { padding: 20px; display: flex; flex: 1; flex-direction: column; }
.ucn-card-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.ucn-pill { display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 999px; color: #1d4ed8; background: rgba(37,99,235,.09); font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.ucn-post-card h3 { margin: 0; font-size: 21px; line-height: 1.16; letter-spacing: -.035em; }
.ucn-post-card p { color: var(--ucn-muted); margin: 12px 0 18px; }
.ucn-card-meta { margin-top: auto; display: flex; gap: 8px; color: var(--ucn-muted); font-size: 13px; font-weight: 750; }

/* Category and toolkit cards */
.ucn-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ucn-category-card { padding: 22px; border-radius: var(--ucn-radius); background: rgba(255,255,255,.84); border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow-soft); display: grid; gap: 10px; min-height: 190px; }
.ucn-category-card:hover { transform: translateY(-3px); box-shadow: var(--ucn-shadow); color: var(--ucn-text); }
.ucn-category-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; background: rgba(37,99,235,.09); font-size: 22px; }
.ucn-category-card strong { font-size: 19px; letter-spacing: -.03em; }
.ucn-category-card span:last-child { color: var(--ucn-muted); font-size: 14px; }
.ucn-toolkit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.ucn-toolkit-card { padding: 24px; border-radius: var(--ucn-radius); background: #fff; border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow-soft); }
.ucn-toolkit-card span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.12)); color: var(--ucn-primary-dark); font-weight: 950; }
.ucn-toolkit-card h3 { margin: 18px 0 8px; font-size: 20px; letter-spacing: -.035em; }
.ucn-toolkit-card p { margin: 0; color: var(--ucn-muted); }

/* CTA / install / FAQ */
.ucn-career-cta { margin-block: 40px; padding: 34px; border-radius: var(--ucn-radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #fff; background: linear-gradient(135deg, #1e40af, #6d28d9 58%, #0891b2); box-shadow: var(--ucn-shadow); }
.ucn-career-cta .ucn-eyebrow { color: #dff7ff; }
.ucn-career-cta .ucn-eyebrow::before { background: #fff; box-shadow: 0 0 0 6px rgba(255,255,255,.16); }
.ucn-career-cta h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.04; letter-spacing: -.055em; max-width: 760px; }
.ucn-career-cta p:not(.ucn-eyebrow) { margin: 12px 0 0; color: rgba(255,255,255,.82); max-width: 720px; }
.ucn-install-card { margin-block: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px; border-radius: var(--ucn-radius); background: rgba(255,255,255,.9); border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow-soft); }
.ucn-install-card h2 { margin: 0; font-size: 26px; letter-spacing: -.04em; }
.ucn-install-card p:not(.ucn-eyebrow) { color: var(--ucn-muted); margin: 8px 0 0; }
.ucn-faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.ucn-faq-item { border-radius: 18px; background: #fff; border: 1px solid var(--ucn-border); box-shadow: 0 10px 26px rgba(15,23,42,.06); overflow: hidden; }
.ucn-faq-question { width: 100%; min-height: 64px; padding: 18px 20px; border: 0; background: transparent; color: var(--ucn-text); text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-weight: 950; }
.ucn-faq-question strong { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(37,99,235,.1); color: var(--ucn-primary); }
.ucn-faq-question[aria-expanded="true"] strong { transform: rotate(45deg); }
.ucn-faq-answer { padding: 0 20px 18px; color: var(--ucn-muted); }
.ucn-faq-answer p { margin: 0; }

/* Archives */
.ucn-archive-hero, .ucn-page-header, .ucn-single-header { padding: 64px 0 36px; background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0)); }
.ucn-archive-hero h1, .ucn-page-header h1, .ucn-single-header h1 { margin: 0; font-size: clamp(38px, 6vw, 64px); line-height: 1; letter-spacing: -.06em; max-width: 920px; }
.ucn-archive-hero p, .archive-description { color: var(--ucn-muted); max-width: 760px; }
.ucn-archive-search { max-width: 680px; margin-top: 20px; }
.ucn-content-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; padding: 36px 0 70px; align-items: start; }
.ucn-sidebar { display: grid; gap: 18px; }
.ucn-widget { padding: 22px; border-radius: var(--ucn-radius); background: rgba(255,255,255,.9); border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow-soft); }
.ucn-widget .widget-title, .ucn-widget h2 { margin-top: 0; font-size: 18px; letter-spacing: -.03em; }
.ucn-widget ul { margin: 0; padding-left: 18px; }
.ucn-widget li { margin: 8px 0; color: var(--ucn-muted); }
.pagination, .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.page-numbers { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; padding: 0 12px; border-radius: 999px; background: #fff; border: 1px solid var(--ucn-border); font-weight: 850; }
.page-numbers.current, .page-numbers:hover { color: #fff; background: var(--ucn-primary); border-color: var(--ucn-primary); }

/* Single / page content */
.ucn-single-header-inner { max-width: var(--ucn-container); text-align: left; }
.ucn-single-header h1 { text-align: left; }
.ucn-single-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; color: var(--ucn-muted); font-weight: 750; }
.ucn-single-meta a { color: var(--ucn-text); font-weight: 900; }
.ucn-single-excerpt { margin-top: 18px; color: var(--ucn-muted); font-size: 20px; }
.ucn-single-featured { margin-bottom: 34px; }
.ucn-single-featured img { width: 100%; max-height: 600px; object-fit: cover; border-radius: var(--ucn-radius-lg); box-shadow: var(--ucn-shadow); }
.ucn-single-layout { display: grid; grid-template-columns: minmax(0, 790px) 310px; gap: 44px; align-items: start; padding-bottom: 74px; }
.ucn-single-content-wrap, .ucn-page-content { border-radius: var(--ucn-radius-lg); background: rgba(255,255,255,.92); border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow-soft); padding: clamp(24px, 4vw, 48px); }
.ucn-page-content { max-width: 900px; margin-bottom: 70px; }
.ucn-entry-content { font-size: 18px; }
.ucn-entry-content h2 { margin: 42px 0 14px; font-size: clamp(28px, 4vw, 40px); line-height: 1.08; letter-spacing: -.05em; }
.ucn-entry-content h3 { margin: 32px 0 12px; font-size: 26px; line-height: 1.15; letter-spacing: -.04em; }
.ucn-entry-content p, .ucn-entry-content li { color: #334155; }
.ucn-entry-content a { color: var(--ucn-primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.ucn-entry-content blockquote { margin: 28px 0; padding: 22px; border-left: 4px solid var(--ucn-primary); border-radius: 16px; background: rgba(37,99,235,.06); color: var(--ucn-text); }
.ucn-entry-content table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 16px; display: block; overflow-x: auto; }
.ucn-entry-content th, .ucn-entry-content td { padding: 12px 14px; border: 1px solid var(--ucn-border); }
.ucn-entry-content th { background: #eff6ff; text-align: left; }
.ucn-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--ucn-muted); }
.ucn-tags a { padding: 6px 10px; border-radius: 999px; background: rgba(37,99,235,.08); color: var(--ucn-primary-dark); font-weight: 850; }
.ucn-author-box { display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: center; margin-top: 34px; padding: 24px; border-radius: var(--ucn-radius); background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(124,58,237,.08)); border: 1px solid var(--ucn-border); }
.ucn-author-avatar img { border-radius: 22px; }
.ucn-author-box h2 { margin: 0; font-size: 24px; }
.ucn-author-box p:last-child { margin-bottom: 0; color: var(--ucn-muted); }
.ucn-related-posts { margin-top: 44px; }

.ucn-home-pagination { margin-top: 30px; }
.ucn-related-title-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.ucn-related-title-card { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px; border-radius: 18px; background: #fff; border: 1px solid var(--ucn-border); box-shadow: 0 10px 26px rgba(15,23,42,.06); color: var(--ucn-text); font-weight: 900; line-height: 1.25; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ucn-related-title-card:hover { transform: translateY(-2px); box-shadow: var(--ucn-shadow-soft); border-color: rgba(37,99,235,.32); color: var(--ucn-primary-dark); }
.ucn-related-media-card { min-height: 94px; }
.ucn-related-thumb { flex: 0 0 92px; width: 92px; height: 66px; display: block; overflow: hidden; border-radius: 14px; background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.12)); }
.ucn-related-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ucn-related-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--ucn-primary-dark); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.ucn-related-copy { display: grid; gap: 5px; min-width: 0; flex: 1 1 auto; }
.ucn-related-copy strong { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 15px; }
.ucn-related-copy small { color: var(--ucn-muted); font-weight: 800; font-size: 12px; }
.ucn-related-title-card em { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 999px; background: rgba(37,99,235,.09); color: var(--ucn-primary); font-style: normal; font-weight: 950; }
.ucn-single-aside { display: grid; gap: 18px; }
.ucn-sticky-box { position: sticky; top: 130px; padding: 22px; border-radius: var(--ucn-radius); background: #fff; border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow-soft); }
.ucn-sticky-box h2 { margin-top: 0; font-size: 20px; letter-spacing: -.03em; }
.ucn-sticky-box p { color: var(--ucn-muted); }
.comments-area { margin-top: 40px; }
.comment-list { padding-left: 20px; }
.comment-respond textarea, .comment-respond input:not([type="submit"]) { width: 100%; border: 1px solid var(--ucn-border); border-radius: 14px; padding: 12px; background: #fff; }
.comment-respond .submit { border: 0; border-radius: 999px; padding: 12px 18px; color: #fff; background: var(--ucn-primary); font-weight: 900; cursor: pointer; }

/* Footer */
.ucn-before-footer { margin-bottom: 28px; }
.ucn-site-footer { margin-top: 40px; padding: 54px 0 24px; background: #0f172a; color: #e2e8f0; }
.ucn-footer-main { display: grid; grid-template-columns: minmax(260px, .9fr) 1.6fr; gap: 44px; }
.ucn-footer-brand p { color: #94a3b8; max-width: 420px; }
.ucn-footer-widgets { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.ucn-footer-col h3, .ucn-footer-widget .widget-title { margin: 0 0 14px; color: #fff; font-size: 16px; }
.ucn-footer-col ul, .ucn-footer-widget ul, .ucn-footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ucn-footer-col a, .ucn-footer-widget a { color: #cbd5e1; }
.ucn-footer-col a:hover, .ucn-footer-widget a:hover { color: #fff; }
.ucn-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #94a3b8; font-size: 14px; }
.ucn-footer-bottom p { margin: 0; }
.ucn-back-top { color: #cbd5e1; font-weight: 850; }

/* Error and empty states */
.ucn-empty-state, .ucn-error-card { padding: 36px; border-radius: var(--ucn-radius-lg); background: #fff; border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow-soft); }
.ucn-error-card { margin-block: 70px; max-width: 780px; text-align: center; }
.ucn-error-card .ucn-search-form { margin: 20px auto; max-width: 620px; }

/* Responsive */
@media (max-width: 1024px) {
  .ucn-hero-grid { grid-template-columns: 1fr; }
  .ucn-card-grid, .ucn-card-grid-three, .ucn-category-grid, .ucn-toolkit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ucn-content-sidebar, .ucn-single-layout { grid-template-columns: 1fr; }
  .ucn-single-aside { order: 2; }
  .ucn-sticky-box { position: static; }
  .ucn-footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .admin-bar .ucn-site-header { top: 46px; }
  .ucn-navbar { min-height: 70px; justify-content: space-between; }
  .ucn-menu-toggle { display: inline-block; }
  .ucn-primary-nav { position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); padding: 14px; border-radius: 22px; background: #fff; border: 1px solid var(--ucn-border); box-shadow: var(--ucn-shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .2s ease; }
  .ucn-primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .ucn-menu { display: grid; align-items: stretch; }
  .ucn-menu a { width: 100%; justify-content: space-between; }
  .ucn-header-actions { display: none; }
  .ucn-top-strip-inner { align-items: flex-start; flex-direction: column; padding-block: 8px; gap: 8px; }
  .ucn-ticker-links { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .ucn-section-head { align-items: start; flex-direction: column; }
  .ucn-career-cta, .ucn-install-card { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .ucn-container { width: min(100% - 24px, var(--ucn-container)); }
  .ucn-hero-section { padding-top: 44px; }
  .ucn-hero-copy h1, .ucn-archive-hero h1, .ucn-page-header h1, .ucn-single-header h1 { letter-spacing: -.052em; }
  .ucn-hero-search, .ucn-archive-search, .ucn-search-form { border-radius: 20px; flex-direction: column; align-items: stretch; }
  .ucn-hero-search button, .ucn-archive-search button, .ucn-search-form button { width: 100%; }
  .ucn-card-grid, .ucn-card-grid-two, .ucn-card-grid-three, .ucn-category-grid, .ucn-toolkit-grid { grid-template-columns: 1fr; }
  .ucn-related-title-grid { grid-template-columns: 1fr; }
  .ucn-related-thumb { flex-basis: 82px; width: 82px; height: 60px; }
  .ucn-hero-actions { flex-direction: column; }
  .ucn-button { width: 100%; }
  .ucn-featured-content, .ucn-post-card-body, .ucn-toolkit-card, .ucn-category-card { padding: 18px; }
  .ucn-single-content-wrap, .ucn-page-content { padding: 22px; border-radius: 24px; }
  .ucn-author-box { grid-template-columns: 1fr; text-align: left; }
  .ucn-footer-widgets { grid-template-columns: 1fr; }
  .ucn-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* AdSense readiness and trust sections */
.ucn-trust-strip-section {
  margin-top: -18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}
.ucn-trust-strip-card {
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--ucn-border);
  box-shadow: var(--ucn-shadow-soft);
  display: grid;
  align-content: center;
  gap: 6px;
}
.ucn-trust-strip-card span {
  color: var(--ucn-primary-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ucn-trust-strip-card strong {
  color: var(--ucn-text);
  font-size: 16px;
  line-height: 1.25;
}
.ucn-start-section { padding-top: 22px; }
.ucn-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ucn-start-card {
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-radius: var(--ucn-radius);
  background: #fff;
  border: 1px solid var(--ucn-border);
  box-shadow: var(--ucn-shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ucn-start-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ucn-shadow);
  border-color: rgba(37,99,235,.28);
  color: var(--ucn-text);
}
.ucn-start-card span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ucn-primary-dark);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.12));
  font-weight: 950;
}
.ucn-start-card strong {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.ucn-start-card em {
  color: var(--ucn-muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}
.ucn-editorial-note {
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.08));
  border: 1px solid var(--ucn-border);
  color: #334155;
  font-size: 15px;
}
.ucn-editorial-note strong { color: var(--ucn-text); }
.archive-description {
  max-width: 780px;
  margin-top: 16px;
  color: var(--ucn-muted);
  font-size: 18px;
}
.ucn-contact-form {
  margin: 28px 0;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  border-radius: var(--ucn-radius);
  background: rgba(248,251,255,.86);
  border: 1px solid var(--ucn-border);
  box-shadow: var(--ucn-shadow-soft);
}
.ucn-form-row { display: grid; gap: 8px; margin: 0; }
.ucn-form-row label { font-weight: 900; color: var(--ucn-text); }
.ucn-contact-form input,
.ucn-contact-form textarea {
  width: 100%;
  border: 1px solid var(--ucn-border);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ucn-text);
}
.ucn-contact-form input:focus,
.ucn-contact-form textarea:focus {
  outline: 3px solid rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.45);
}
.ucn-hidden-field { display: none !important; }
.ucn-form-alert {
  padding: 13px 15px;
  border-radius: 16px;
  font-weight: 800;
}
.ucn-form-success { background: rgba(16,185,129,.12); color: #047857; }
.ucn-form-error { background: rgba(239,68,68,.12); color: #b91c1c; }

@media (max-width: 1024px) {
  .ucn-trust-strip-section, .ucn-start-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .ucn-trust-strip-section, .ucn-start-grid { grid-template-columns: 1fr; }
  .ucn-trust-strip-section { margin-top: 18px; }
}
