:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #f0f4fa;
  --ink: #142039;
  --ink-2: #33415f;
  --muted: #66738d;
  --line: #dfe6f0;
  --line-strong: #cbd6e5;
  --primary: #2f6df6;
  --primary-dark: #174fcf;
  --primary-soft: #e8efff;
  --accent: #12a594;
  --accent-soft: #dcf8f2;
  --danger: #d83a4f;
  --warning: #d88318;
  --success: #14815d;
  --navy: #0a1020;
  --navy-2: #101a31;
  --shadow: 0 18px 60px rgba(25, 47, 83, .11);
  --shadow-sm: 0 8px 28px rgba(25, 47, 83, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --workspace-container: 1420px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
.preview-banner { position: sticky; z-index: 100; top: 0; display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 40px; padding: 8px 20px; color: #332600; background: #ffe69a; font-size: 12px; }
.preview-banner strong { font-weight: 800; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
::selection { background: #c7d8ff; color: #08152e; }
:focus-visible { outline: 3px solid rgba(47, 109, 246, .4); outline-offset: 3px; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; left: 20px; top: -80px; padding: 10px 16px; color: white; background: var(--primary); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; height: 72px; background: rgba(247, 249, 252, .88); border-bottom: 1px solid rgba(203, 214, 229, .72); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { position: relative; width: 28px; height: 28px; display: inline-grid; place-items: center; transform: rotate(45deg); border-radius: 8px; background: linear-gradient(135deg, var(--primary), #43a3ff); box-shadow: 0 6px 16px rgba(47, 109, 246, .28); }
.brand-mark i { position: absolute; display: block; width: 10px; height: 2px; border-radius: 2px; background: white; transform: rotate(-45deg); }
.brand-mark i:first-child { transform: rotate(-45deg) translateY(-5px); opacity: .72; }
.brand-mark i:last-child { transform: rotate(-45deg) translateY(5px); opacity: .72; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.desktop-nav a { padding: 8px 13px; border-radius: 9px; color: var(--ink-2); font-size: 14px; font-weight: 650; transition: .2s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--primary-dark); background: var(--primary-soft); }
.header-actions { display: flex; align-items: center; gap: 7px; padding-left: 15px; border-left: 1px solid var(--line); }
.language-link, .search-link { height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--ink-2); transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease; }
.language-link { gap: 7px; padding: 0 11px; border: 1px solid var(--line); background: rgba(255, 255, 255, .58); font-size: 12px; font-weight: 750; }
.language-link svg { color: var(--muted); }
.language-link:hover { color: var(--primary-dark); border-color: #b7c6df; background: var(--surface); }
.search-link { width: 38px; flex: 0 0 38px; color: var(--muted); }
.search-link:hover { color: var(--primary-dark); background: var(--primary-soft); transform: translateY(-1px); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { width: 40px; height: 40px; display: grid; align-content: center; gap: 5px; padding: 10px; list-style: none; cursor: pointer; border: 1px solid var(--line); border-radius: 10px; background: white; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { height: 2px; border-radius: 4px; background: var(--ink); }
.mobile-menu nav { position: absolute; top: 50px; right: 0; width: 220px; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); }
.mobile-menu nav a { display: block; padding: 10px 12px; border-radius: 8px; font-weight: 650; }
.mobile-menu nav a:hover { background: var(--surface-2); }

.breadcrumbs { padding-top: 20px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.breadcrumbs li { display: flex; gap: 8px; }
.breadcrumbs a:hover { color: var(--primary); }

.simple-hero { position: relative; overflow: hidden; padding: 108px 0 100px; text-align: center; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 50% 5%, rgba(47, 109, 246, .13), transparent 34%), var(--bg); }
.simple-hero::before { content: ""; position: absolute; inset: 0; opacity: .3; pointer-events: none; background-image: linear-gradient(rgba(84, 112, 153, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(84, 112, 153, .07) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.simple-hero-inner { position: relative; z-index: 1; }
.simple-hero .eyebrow { justify-content: center; }
.simple-hero h1 { margin: 19px 0 20px; font-size: clamp(47px, 6vw, 72px); line-height: 1.06; letter-spacing: -.055em; }
.simple-hero h1 em { color: var(--primary); font-style: normal; }
.simple-hero > .container > p { max-width: 780px; margin: 0 auto 30px; color: var(--ink-2); font-size: 18px; }
.simple-hero .tool-finder { margin-inline: auto; text-align: left; }
.simple-hero .trust-row { justify-content: center; }

.hero { position: relative; overflow: hidden; min-height: 650px; display: grid; align-items: center; background: linear-gradient(180deg, #f7f9fc 0%, #f3f7fc 100%); border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .36; background-image: linear-gradient(rgba(84, 112, 153, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(84, 112, 153, .08) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(to right, black, transparent 74%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 500px; height: 500px; right: 1%; top: 2%; background: radial-gradient(circle, rgba(60, 126, 255, .19), transparent 68%); }
.hero-glow-two { width: 360px; height: 360px; left: -12%; bottom: -30%; background: radial-gradient(circle, rgba(28, 200, 177, .13), transparent 68%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.07fr .93fr; align-items: center; gap: 72px; padding-block: 88px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--primary-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 20px; height: 2px; border-radius: 2px; background: var(--primary); }
.hero h1, .page-hero h1, .tool-page-head h1, .article-header h1 { margin: 18px 0 20px; font-size: clamp(45px, 5vw, 70px); line-height: 1.04; letter-spacing: -.055em; }
.hero h1 em, .page-hero h1 em { color: var(--primary); font-style: normal; }
.hero-copy > p { max-width: 650px; margin: 0 0 28px; color: var(--ink-2); font-size: 18px; line-height: 1.72; }
.tool-finder { max-width: 640px; display: flex; align-items: center; gap: 10px; padding: 7px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(255, 255, 255, .92); box-shadow: 0 12px 38px rgba(36, 68, 112, .12); }
.tool-finder > span { margin-left: 8px; color: var(--muted); font-size: 22px; }
.tool-finder input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 10px 4px; background: transparent; color: var(--ink); }
.tool-finder button { padding: 10px 16px; border: 0; border-radius: 9px; color: white; background: var(--primary); font-weight: 750; cursor: pointer; }
.tool-finder button:hover { background: var(--primary-dark); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; color: var(--muted); font-size: 12px; font-weight: 650; }
.trust-row b { margin-right: 5px; color: var(--accent); }

.hero-console { position: relative; border: 1px solid rgba(134, 160, 200, .35); border-radius: 20px; overflow: hidden; color: #dbe6f9; background: var(--navy); box-shadow: 0 35px 80px rgba(9, 22, 49, .25); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.hero-console::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 76% 9%, rgba(54, 118, 255, .2), transparent 35%); }
.console-top { position: relative; z-index: 2; height: 50px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; border-bottom: 1px solid rgba(255, 255, 255, .08); color: #8393b1; font: 11px var(--mono); }
.console-dots { display: flex; gap: 6px; }
.console-dots i { width: 8px; height: 8px; border-radius: 50%; background: #465570; }
.console-dots i:nth-child(2) { opacity: .65; }.console-dots i:nth-child(3) { opacity: .4; }
.console-live { justify-self: end; padding: 3px 7px; border: 1px solid rgba(39, 213, 165, .22); border-radius: 5px; color: #67e0bb; background: rgba(39, 213, 165, .08); }
.console-body { position: relative; z-index: 2; padding: 25px 18px 20px; }
.code-line { display: grid; grid-template-columns: 36px 1fr; min-height: 34px; align-items: center; border-radius: 6px; font: 13px var(--mono); }
.code-line > span { color: #4d5d78; text-align: right; padding-right: 14px; user-select: none; }
.code-line code { color: #b8c9e6; }
.code-line:nth-child(odd) code { color: #83b7ff; }
.code-line.active { background: rgba(47, 109, 246, .12); }
.code-line.active code { color: #e1ecff; }
.console-result { display: flex; align-items: center; gap: 11px; margin-top: 20px; padding: 13px; border: 1px solid rgba(35, 199, 151, .18); border-radius: 10px; background: rgba(20, 129, 93, .1); }
.console-result .result-icon { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: #071a13; background: #5ee0b6; font-weight: 900; }
.console-result div { flex: 1; display: flex; flex-direction: column; }
.console-result b { color: #aef1d8; font-size: 12px; }
.console-result small { color: #6f8d84; font: 11px var(--mono); }
.console-result > span:last-child { color: #5c796f; font: 10px var(--mono); }

.section { padding-block: 94px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading h2, .trust-panel h2, .cloud-grid h2 { margin: 8px 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); }
.text-link { color: var(--primary-dark); font-size: 14px; font-weight: 750; }
.text-link span { display: inline-block; transition: transform .2s; }.text-link:hover span { transform: translateX(4px); }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tool-card { position: relative; min-height: 250px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 3px 15px rgba(28, 50, 82, .025); transition: transform .22s ease, border-color .22s, box-shadow .22s; }
.tool-card::after { content: ""; position: absolute; right: -50px; bottom: -75px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(47, 109, 246, .09), transparent 65%); transition: transform .3s; }
.tool-card:hover { transform: translateY(-4px); border-color: #aebfe0; box-shadow: var(--shadow-sm); }
.tool-card:hover::after { transform: scale(1.4); }
.tool-icon { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid #cbd8ef; border-radius: 11px; color: var(--primary-dark); background: var(--primary-soft); font: 750 16px var(--mono); }
.card-arrow { position: absolute; top: 24px; right: 24px; color: #93a0b5; font-size: 18px; transition: .2s; }.tool-card:hover .card-arrow { color: var(--primary); transform: translate(2px, -2px); }
.tool-category { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.tool-card h3 { margin: 0 0 9px; font-size: 19px; letter-spacing: -.025em; }
.tool-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.62; }
.local-label, .server-label { display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 6px; color: var(--success); background: #e5f7f0; font: 700 10px var(--mono); text-transform: uppercase; letter-spacing: .04em; }
.server-label { color: #6846a5; background: #f0eaff; }

.category-section { padding-top: 30px; background: var(--surface); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.category-grid a { display: flex; flex-direction: column; gap: 5px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg); transition: .2s; }
.category-grid a:hover { transform: translateY(-3px); border-color: #aebfe0; box-shadow: var(--shadow-sm); }
.category-grid a > span { color: var(--primary-dark); font: 800 18px var(--mono); }
.category-grid strong { font-size: 14px; }.category-grid small { color: var(--muted); font-size: 11px; }
.simple-privacy { padding: 45px 0; color: #dbe5f5; background: var(--navy); }
.simple-privacy-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.simple-privacy-inner > div { display: flex; align-items: center; gap: 18px; }
.simple-privacy .aside-icon { flex: 0 0 auto; color: #65d8c0; background: rgba(101, 216, 192, .1); }
.simple-privacy h2 { margin: 0 0 4px; color: white; font-size: 20px; }.simple-privacy p { max-width: 760px; margin: 0; color: #91a4c4; font-size: 13px; }
.simple-privacy .button-secondary { flex: 0 0 auto; border-color: rgba(255,255,255,.2); color: white; background: rgba(255,255,255,.06); }
.page-ad { padding: 28px 0; border-top: 1px solid var(--line); background: var(--surface); }
.page-ad .container { min-height: 92px; display: grid; align-content: center; }
.page-ad .container > span { margin-bottom: 7px; color: var(--muted); font: 700 9px var(--mono); text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.page-ad .adsbygoogle { width: 100%; min-height: 70px; }

.trust-section { color: #dbe5f5; background: var(--navy); }
.trust-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.trust-panel .kicker, .cloud-section .kicker { color: #65d8c0; }
.trust-panel h2 { color: white; }
.trust-panel p { margin: 18px 0 28px; color: #9dafcb; }
.trust-details { display: grid; gap: 1px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; background: rgba(255, 255, 255, .08); }
.trust-details > div { display: grid; grid-template-columns: 45px 1fr; column-gap: 16px; padding: 22px; background: var(--navy-2); }
.trust-details > div > span { grid-row: span 2; color: #506482; font: 11px var(--mono); }
.trust-details h3 { margin: 0; color: #edf4ff; font-size: 15px; }
.trust-details p { margin: 4px 0 0; color: #899bb7; font-size: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 9px 16px; border: 1px solid transparent; border-radius: 9px; font-size: 13px; font-weight: 760; cursor: pointer; transition: .18s ease; }
.button-primary { color: white; background: var(--primary); box-shadow: 0 7px 20px rgba(47, 109, 246, .18); }
.button-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.button-secondary { border-color: var(--line-strong); color: var(--ink-2); background: var(--surface); }
.button-secondary:hover { border-color: #9db0d1; color: var(--primary-dark); }
.trust-section .button-secondary { border-color: rgba(255, 255, 255, .18); color: #dce7f8; background: rgba(255, 255, 255, .06); }
.button-light { color: var(--primary-dark); background: white; }

.cloud-section { background: #eef3fa; }
.cloud-grid { display: grid; grid-template-columns: 1fr .86fr; gap: 84px; align-items: center; }
.cloud-grid > div:first-child > p { max-width: 600px; color: var(--muted); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.diagnostic-card { padding: 24px; border: 1px solid #cedaeb; border-radius: 18px; background: white; box-shadow: var(--shadow); }
.diagnostic-head { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 12px; }
.diagnostic-head > div { display: flex; align-items: center; gap: 8px; }.diagnostic-head small { color: var(--muted); }
.status-dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.diagnostic-score { display: flex; align-items: center; gap: 10px; padding: 22px 0; }
.diagnostic-score strong { color: var(--primary-dark); font-size: 50px; line-height: 1; letter-spacing: -.06em; }.diagnostic-score span { color: var(--muted); font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.finding { display: flex; align-items: center; gap: 12px; margin-top: 8px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; }
.finding > span { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; font-size: 11px; font-weight: 900; }
.finding.success > span { color: var(--success); background: #e4f6ef; }.finding.warning > span { color: var(--warning); background: #fff1dd; }
.finding div { display: flex; flex-direction: column; }.finding b { font-size: 12px; }.finding small { color: var(--muted); font-size: 10px; }

.learning-section { background: white; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.article-card { min-height: 230px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: #fbfcfe; transition: .2s; }
.article-card:hover { border-color: #a7b9d8; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.article-card > span { color: var(--primary-dark); font: 800 10px var(--mono); text-transform: uppercase; }.article-card h3 { margin: 13px 0 8px; font: 650 15px/1.35 var(--mono); }.article-card p { margin: 0; color: var(--muted); font-size: 12px; }.article-card small { margin-top: auto; padding-top: 18px; color: #91a0b7; font-size: 10px; }
.closing-cta { padding: 100px 0; text-align: center; color: white; background: radial-gradient(circle at 50% 0, #1d438a, transparent 44%), var(--navy); }
.closing-cta .eyebrow { color: #8cb7ff; }.closing-cta .eyebrow span { background: #69d7c0; }.closing-cta h2 { margin: 18px 0; font-size: clamp(38px, 5vw, 58px); line-height: 1.08; letter-spacing: -.05em; }.closing-cta p { margin: 0 0 27px; color: #91a4c4; }

.page-hero { padding: 80px 0 74px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 75% 18%, rgba(47, 109, 246, .12), transparent 30%), linear-gradient(180deg, #f8faff, #f2f6fb); }
.page-hero h1 { max-width: 850px; margin-bottom: 18px; font-size: clamp(42px, 5.5vw, 64px); }
.page-hero p { max-width: 720px; margin: 0; color: var(--ink-2); font-size: 17px; }
.directory-search { max-width: 650px; margin-top: 28px; }
.directory-search > label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
.directory-search > div { display: flex; align-items: center; gap: 8px; padding: 6px; border: 1px solid var(--line-strong); border-radius: 13px; background: white; box-shadow: var(--shadow-sm); }
.directory-search span { margin-left: 8px; color: var(--muted); }.directory-search input { min-width: 0; flex: 1; padding: 9px 3px; border: 0; outline: 0; }.directory-search button { padding: 9px 16px; border: 0; border-radius: 8px; color: white; background: var(--primary); font-weight: 750; cursor: pointer; }
.directory-meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 25px; }.directory-meta h2 { margin: 0; font-size: 24px; letter-spacing: -.03em; }.directory-meta span { color: var(--muted); font-size: 12px; }
.directory-grid .tool-card { min-height: 270px; }
.empty-state { padding: 60px; text-align: center; border: 1px dashed var(--line-strong); border-radius: 18px; background: white; }.empty-state h2 { margin: 0 0 8px; }.empty-state p { margin: 0 0 20px; color: var(--muted); }

.tool-page-head { padding: 50px 0 30px; }
.tool-title-row { display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.tool-page-head h1 { margin: 10px 0 9px; font-size: clamp(36px, 5vw, 54px); }.tool-page-head p { max-width: 770px; margin: 0; color: var(--ink-2); font-size: 16px; }
.privacy-badge, .server-badge { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid #b7e5d8; border-radius: 9px; color: var(--success); background: #edf9f5; font: 750 11px var(--mono); }.privacy-badge b { font-size: 8px; }.server-badge { border-color: #d3c8f1; color: #6846a5; background: #f5f1ff; }
.tool-workspace-section { padding: 10px 0 70px; }
.tool-workspace-section > .container { width: min(var(--workspace-container), calc(100% - 48px)); }
.tool-workspace { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 17px; background: white; box-shadow: var(--shadow); }
.certificate-form { display: grid; grid-template-columns: 1.4fr 1.4fr .7fr .7fr auto; gap: 14px; align-items: end; padding: 22px; border-bottom: 1px solid var(--line); }
.certificate-form label { display: grid; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
.certificate-form input, .certificate-form select { min-height: 44px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 9px; color: var(--ink); background: var(--surface); }
.certificate-status { align-self: center; min-width: 92px; color: var(--muted); font-size: 12px; font-weight: 700; }.certificate-status.success { color: #15805e; }.certificate-status.error { color: #b53a4a; }
.certificate-warning { margin: 18px 22px 0; padding: 13px 15px; border: 1px solid #f2d89b; border-radius: 10px; color: #755319; background: #fffaf0; font-size: 12px; line-height: 1.6; }
.certificate-output-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 22px; }
.certificate-output-grid section { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }.certificate-output-grid section.certificate-full { grid-column: 1 / -1; }
.certificate-output-grid section > div { display: flex; justify-content: space-between; align-items: center; padding: 11px 13px; border-bottom: 1px solid var(--line); font-size: 12px; }.certificate-output-grid button, .certificate-parser-head button { margin-left: 6px; border: 0; color: var(--primary); background: transparent; cursor: pointer; font-weight: 700; }
.certificate-output-grid textarea { width: 100%; min-height: 235px; padding: 14px; border: 0; resize: vertical; color: #d5e4ff; background: #08101f; font: 12px/1.65 var(--mono); }
.certificate-parser { margin: 0 22px 22px; padding-top: 24px; border-top: 1px solid var(--line); }.certificate-parser-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 14px; }.certificate-parser-head h2 { margin: 5px 0 0; font-size: 22px; }.certificate-parser .editor-grid { min-height: 320px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }.certificate-parser textarea, .certificate-parser pre { min-height: 320px; width: 100%; margin: 0; padding: 16px; border: 0; resize: vertical; white-space: pre-wrap; color: var(--ink); background: var(--surface); font: 12px/1.65 var(--mono); }.certificate-parser pre { color: #d5e4ff; background: #08101f; }
@media (max-width: 1000px) { .certificate-form { grid-template-columns: 1fr 1fr; }.certificate-output-grid { grid-template-columns: 1fr; }.certificate-output-grid section.certificate-full { grid-column: auto; } }
@media (max-width: 640px) { .certificate-form { grid-template-columns: 1fr; }.certificate-output-grid { padding: 14px; }.certificate-parser { margin: 0 14px 14px; }.certificate-parser .editor-grid { grid-template-columns: 1fr; } }
.workspace-toolbar { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 16px; border-bottom: 1px solid var(--line); background: #f8fafe; }
.workspace-toolbar > div:first-child { display: grid; grid-template-columns: 15px auto; align-items: center; column-gap: 8px; }.workspace-toolbar .status-dot { grid-row: span 2; }.workspace-toolbar b { font-size: 12px; }.workspace-toolbar small { color: var(--muted); font-size: 10px; }
.toolbar-actions { display: flex; gap: 6px; }.toolbar-actions button, .subtle-button { padding: 6px 9px; border: 0; border-radius: 7px; color: var(--muted); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }.toolbar-actions button:hover, .subtle-button:hover { color: var(--primary-dark); background: var(--primary-soft); }
.editor-grid { display: grid; grid-template-columns: 1fr 1fr; }
.editor-panel { min-width: 0; background: white; }.editor-panel + .editor-panel { border-left: 1px solid var(--line); }
.editor-label { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 0 14px; border-bottom: 1px solid var(--line); color: var(--muted); background: #fbfcfe; font-size: 10px; }
.editor-label label { color: var(--ink-2); font-weight: 750; }
.editor-label .ready { color: var(--muted); }.editor-label .success { color: var(--success); }.editor-label .error { color: var(--danger); }.editor-label .working { color: var(--primary); }
.editor-panel textarea { width: 100%; min-height: clamp(420px, 46vh, 560px); display: block; padding: 20px; resize: vertical; border: 0; outline: 0; color: #1c2a43; background: white; font: 14px/1.7 var(--mono); tab-size: 2; }
.editor-panel pre { min-height: clamp(420px, 46vh, 560px); max-height: 760px; margin: 0; padding: 20px; overflow: auto; white-space: pre-wrap; overflow-wrap: anywhere; color: #bcd0ed; background: var(--navy); font: 14px/1.7 var(--mono); }
.editor-actions { min-height: 55px; display: flex; align-items: center; gap: 7px; padding: 8px 12px; border-top: 1px solid var(--line); background: #fbfcfe; }
.workspace-note { display: flex; align-items: center; gap: 8px; margin: 0; padding: 11px 16px; border-top: 1px solid var(--line); color: var(--muted); background: #f8fafc; font-size: 11px; }.workspace-note span { color: var(--accent); }
.file-drop { margin: 15px; border: 1px dashed #aebed8; border-radius: 12px; background: #f7faff; text-align: center; }.file-drop label { display: flex; flex-direction: column; padding: 22px; cursor: pointer; }.file-drop strong { font-size: 13px; }.file-drop span { color: var(--muted); font-size: 11px; }.file-drop input { width: 1px; height: 1px; opacity: 0; }
.option-row { display: flex; align-items: center; gap: 10px; padding: 12px 15px; border-bottom: 1px solid var(--line); background: #fbfcfe; font-size: 12px; }.option-row select { padding: 6px 26px 6px 9px; border: 1px solid var(--line); border-radius: 7px; background: white; }.file-button { margin-left: auto; padding: 6px 10px; border: 1px solid var(--line); border-radius: 7px; cursor: pointer; background: white; }
.tool-preview { padding: 16px; border-top: 1px solid var(--line); text-align: center; }.tool-preview img { max-height: 260px; border-radius: 8px; }

.tool-content { background: white; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 74px; }
.content-layout article { max-width: 760px; }.content-layout h2, .article-body h2, .static-layout h2 { margin: 45px 0 13px; font-size: 25px; line-height: 1.25; letter-spacing: -.035em; }.content-layout h2:first-of-type { margin-top: 9px; }.content-layout p, .article-body p, .static-layout p { color: var(--ink-2); }.content-layout .lead, .article-intro { color: var(--ink-2); font-size: 17px; line-height: 1.8; }
.check-list { margin: 15px 0; padding: 0; list-style: none; }.check-list li { position: relative; margin: 10px 0; padding-left: 27px; color: var(--ink-2); }.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: var(--success); background: #e6f7f1; font-size: 10px; font-weight: 900; }
.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { position: relative; padding: 17px 34px 17px 0; list-style: none; cursor: pointer; font-weight: 700; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { content: "+"; position: absolute; right: 7px; color: var(--primary); font-size: 20px; }.faq-list details[open] summary::after { content: "−"; }.faq-list p { margin: -4px 0 18px; }
.content-aside, .article-aside { display: flex; flex-direction: column; gap: 14px; }
.aside-card { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #f9fbfd; }.aside-card h3 { margin: 10px 0 7px; font-size: 15px; }.aside-card p { margin: 0 0 13px; color: var(--muted); font-size: 12px; }.aside-card > a { color: var(--primary-dark); font-size: 12px; font-weight: 750; }.aside-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: var(--primary-dark); background: var(--primary-soft); font-weight: 900; }.aside-card dl { margin: 5px 0 0; }.aside-card dl div { display: flex; justify-content: space-between; gap: 15px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 11px; }.aside-card dl div:last-child { border: 0; }.aside-card dt { color: var(--muted); }.aside-card dd { margin: 0; font-weight: 700; }.accent-card { border-color: #bbcaf0; background: linear-gradient(145deg, #f7f9ff, #edf2ff); }
.related-section { border-top: 1px solid var(--line); background: #f5f8fc; }.compact-grid { grid-template-columns: repeat(3, 1fr); }.compact-grid .tool-card { min-height: 185px; }

.professional-workspace { color: var(--ink); }
.helm-layout { display: grid; grid-template-columns: 1.15fr .85fr; }.helm-inputs { display: grid; grid-template-columns: .78fr 1.22fr; min-width: 0; }.helm-inputs .editor-panel:first-child { border-right: 1px solid var(--line); }.helm-inputs .editor-panel + .editor-panel { border-left: 0; }.helm-inputs textarea, .helm-output pre { min-height: clamp(520px, 56vh, 680px); }.helm-output { border-left: 1px solid var(--line); }
.workspace-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 13px; border-top: 1px solid var(--line); background: #f8fafe; }.workspace-footer > div { display: flex; gap: 7px; }.workspace-footer p { margin: 0; color: var(--muted); font-size: 10px; }.workspace-footer p span { margin-right: 5px; color: var(--accent); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; }.diff-grid .editor-panel:first-child { border-right: 1px solid var(--line); }.diff-grid textarea { min-height: 430px; }.diff-output { min-height: 320px; max-height: 680px; margin: 0; padding: 20px; overflow: auto; color: #bfd0eb; background: var(--navy); font: 13px/1.7 var(--mono); }.diff-add { color: #80e7bd; }.diff-remove { color: #ff9aaa; }
.finding-list { min-height: clamp(420px, 46vh, 560px); max-height: 760px; padding: 16px; overflow: auto; background: #f9fbfd; }.finding-list .finding { background: white; }.finding-list .finding.error { border-color: #f0c3ca; }.finding-list .finding.error > span { color: var(--danger); background: #ffecef; }.finding-list .finding.warning { border-color: #ecd6b5; }.empty-output { padding: 70px 20px; color: var(--muted); text-align: center; font-size: 12px; }

.article-list { border-top: 1px solid var(--line); }.article-list > a { display: grid; grid-template-columns: 90px minmax(0, 1fr) 120px 24px; gap: 20px; align-items: center; padding: 22px 8px; border-bottom: 1px solid var(--line); transition: .18s; }.article-list > a:hover { padding-inline: 14px; background: white; }.article-tech { color: var(--primary-dark); font: 800 10px var(--mono); text-transform: uppercase; }.article-list h3 { margin: 0 0 5px; font: 650 14px/1.4 var(--mono); }.article-list p { margin: 0; color: var(--muted); font-size: 12px; }.article-date { color: #8997ad; font-size: 10px; }.article-arrow { color: var(--primary); font-size: 18px; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.guide-card { min-height: 280px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 17px; background: white; transition: .2s; }.guide-card:hover { transform: translateY(-3px); border-color: #a7b9d8; box-shadow: var(--shadow-sm); }.guide-card > span { color: var(--primary-dark); font: 700 10px var(--mono); text-transform: uppercase; }.guide-card h2 { margin: 25px 0 12px; font-size: 24px; line-height: 1.2; letter-spacing: -.035em; }.guide-card p { margin: 0; color: var(--muted); }.guide-card strong { margin-top: auto; padding-top: 20px; color: var(--primary-dark); font-size: 12px; }

.article-header { padding: 70px 0 62px; text-align: center; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 50% 0, rgba(47, 109, 246, .12), transparent 42%), #f4f7fc; }.article-header h1 { font-size: clamp(38px, 5vw, 57px); }.article-header p { margin: 0 auto; max-width: 720px; color: var(--ink-2); font-size: 17px; }.article-meta { display: flex; justify-content: center; gap: 10px; }.article-meta span { padding: 5px 8px; border-radius: 6px; color: var(--primary-dark); background: var(--primary-soft); font: 750 10px var(--mono); text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 280px; justify-content: center; gap: 70px; padding-block: 70px 100px; }.article-body { min-width: 0; }.article-body h2 { scroll-margin-top: 100px; }.article-body pre { margin: 18px 0 30px; padding: 20px; overflow: auto; border: 1px solid #1f2c45; border-radius: 12px; color: #d2e0f5; background: var(--navy); font: 13px/1.68 var(--mono); }.article-body a { color: var(--primary-dark); text-decoration: underline; text-underline-offset: 3px; }.answer-box { margin-bottom: 40px; padding: 22px; border: 1px solid #bac9e7; border-radius: 14px; background: linear-gradient(145deg, #f7f9ff, #edf3ff); }.answer-box > span { color: var(--primary-dark); font: 800 10px var(--mono); text-transform: uppercase; }.answer-box p { margin: 10px 0 0; color: var(--ink); font-size: 17px; line-height: 1.75; }.answer-box ul { margin-bottom: 0; padding-left: 20px; color: var(--ink-2); }.article-aside { position: sticky; top: 100px; align-self: start; }
.guide-step { display: grid; grid-template-columns: 48px 1fr; gap: 20px; margin: 45px 0; }.step-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #bfd0ef; border-radius: 50%; color: var(--primary-dark); background: var(--primary-soft); font: 750 11px var(--mono); }.guide-step h2 { margin-top: 4px; }.aside-tool-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line); color: var(--ink-2) !important; }

.static-hero { text-align: center; }.static-hero .eyebrow { justify-content: center; }.static-hero p { margin-inline: auto; }.static-layout { display: grid; grid-template-columns: minmax(0, 720px) 280px; justify-content: center; gap: 70px; }.static-layout article > section:first-child h2 { margin-top: 0; }
.not-found { min-height: 700px; padding: 100px 0; text-align: center; }.not-found > .container > span { color: var(--primary); font: 800 13px var(--mono); letter-spacing: .2em; }.not-found h1 { margin: 15px 0 10px; font-size: clamp(40px, 6vw, 64px); letter-spacing: -.055em; }.not-found p { margin: 0 0 28px; color: var(--muted); }.not-found > .container > div { display: flex; justify-content: center; gap: 10px; }.not-found .tool-grid { margin-top: 70px; text-align: left; }

.site-footer { padding: 70px 0 25px; color: #aab8cf; background: #080d19; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 50px; padding-bottom: 50px; }.site-footer .brand { color: white; }.footer-brand p { max-width: 320px; margin: 18px 0; color: #71829e; font-size: 13px; }.privacy-chip { display: inline-flex; align-items: center; gap: 7px; padding: 5px 8px; border: 1px solid #1e3a3a; border-radius: 6px; color: #61cbb5; font: 700 10px var(--mono); }.privacy-chip span { font-size: 7px; }
.footer-grid h2 { margin: 5px 0 15px; color: #e5edf9; font-size: 12px; }.footer-grid > div:not(.footer-brand) a { display: block; margin: 8px 0; color: #71829e; font-size: 12px; }.footer-grid a:hover { color: white !important; }.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid #192235; color: #53627a; font-size: 10px; }

@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; --bg: #0b1020; --surface: #111a2c; --surface-2: #172238; --ink: #e9f0fb; --ink-2: #bac7db; --muted: #8695ad; --line: #25324a; --line-strong: #34435e; --primary: #6f9cff; --primary-dark: #9ebaff; --primary-soft: #1a2d59; --accent-soft: #123d38; --shadow: 0 18px 60px rgba(0, 0, 0, .24); --shadow-sm: 0 8px 28px rgba(0, 0, 0, .18); }
  ::selection { background: #31579d; color: white; }
  .site-header { background: rgba(11, 16, 32, .88); }.language-link, .mobile-menu summary, .mobile-menu nav, .tool-finder, .directory-search > div, .tool-card, .article-card, .diagnostic-card, .guide-card, .tool-workspace, .editor-panel, .editor-panel textarea, .aside-card { background-color: var(--surface); }.hero, .page-hero { background: radial-gradient(circle at 74% 20%, rgba(73, 119, 222, .16), transparent 30%), var(--bg); }.simple-hero { background: radial-gradient(circle at 50% 5%, rgba(73, 119, 222, .18), transparent 34%), var(--bg); }.hero::before { opacity: .2; }.section-tools, .learning-section, .tool-content, .category-section { background: var(--bg); }.category-grid a { background: var(--surface); }.cloud-section, .related-section { background: #0e1628; }.local-label { color: #77ddbd; background: #143a32; }.server-label { color: #c2a9ff; background: #2a2144; }.privacy-badge { border-color: #27594d; background: #12362f; }.server-badge { border-color: #4b3f72; background: #292142; }.editor-label, .editor-actions, .workspace-toolbar, .workspace-footer, .workspace-note, .option-row { background: #0f1829; }.editor-panel textarea { color: #d9e6f8; }.finding-list, .empty-state { background: var(--surface); }.finding-list .finding { background: #131d30; }.trust-section { background: #060b16; }.static-hero, .article-header { background: radial-gradient(circle at 50% 0, rgba(73, 119, 222, .16), transparent 42%), var(--bg); }.answer-box, .accent-card { background: linear-gradient(145deg, #14203a, #111a2c); }.option-row select, .file-button { background: var(--surface); }.check-list li::before { background: #163e34; }.diagnostic-card .finding { background: var(--surface-2); }
}

@media (max-width: 1000px) {
  .desktop-nav { display: none; }.mobile-menu { display: block; }.search-link { margin-right: 1px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }.hero-copy { text-align: center; }.hero-copy .eyebrow, .tool-finder { margin-inline: auto; }.hero-copy > p { margin-inline: auto; }.trust-row { justify-content: center; }.hero-console { max-width: 650px; width: 100%; margin-inline: auto; transform: none; }
  .tool-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }.trust-layout, .cloud-grid { grid-template-columns: 1fr; gap: 50px; }.cloud-grid > div:first-child { text-align: center; }.cloud-grid > div:first-child > p { margin-inline: auto; }.cloud-grid .hero-buttons { justify-content: center; }
  .content-layout, .article-layout, .static-layout { grid-template-columns: minmax(0, 1fr); gap: 45px; }.content-layout article { max-width: none; }.content-aside, .article-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .helm-layout { grid-template-columns: 1fr; }.helm-output { border-top: 1px solid var(--line); border-left: 0; }.helm-output pre { min-height: 320px; }
  .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); gap: 25px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }.simple-privacy-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .container, .narrow, .tool-workspace-section > .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: 64px; }.brand { font-size: 17px; }.brand-mark { width: 25px; height: 25px; }
  .hero { min-height: auto; }.hero-grid { padding-block: 65px; gap: 38px; }.hero h1, .simple-hero h1, .page-hero h1, .article-header h1 { font-size: 40px; }.simple-hero { padding: 70px 0 65px; }.simple-hero > .container > p, .hero-copy > p { font-size: 16px; }.tool-finder button { padding-inline: 12px; }.trust-row { gap: 10px; }
  .console-top { grid-template-columns: 1fr auto; }.console-top > span:nth-child(2) { display: none; }
  .section { padding-block: 65px; }.section-heading { align-items: start; flex-direction: column; margin-bottom: 28px; }.section-heading h2, .trust-panel h2, .cloud-grid h2 { font-size: 34px; }
  .tool-grid, .article-grid, .guide-grid, .compact-grid { grid-template-columns: 1fr; }.tool-card { min-height: 220px; }.featured-grid .tool-card:nth-child(n+5) { display: none; }
  .trust-layout { gap: 38px; }.trust-details > div { grid-template-columns: 38px 1fr; }.diagnostic-card { padding: 17px; }
  .page-hero { padding: 58px 0; }.page-hero p { font-size: 15px; }.directory-search > div { align-items: stretch; }.directory-search button { padding-inline: 11px; }
  .tool-title-row { align-items: start; flex-direction: column; gap: 18px; }.tool-page-head h1 { font-size: 38px; }.editor-grid, .diff-grid, .helm-inputs { grid-template-columns: 1fr; }.editor-panel + .editor-panel, .helm-inputs .editor-panel:first-child { border-left: 0; border-right: 0; border-top: 1px solid var(--line); }.editor-panel textarea, .editor-panel pre, .helm-inputs textarea, .helm-output pre, .finding-list { min-height: 330px; }.workspace-toolbar { align-items: start; }.workspace-toolbar small { display: none; }.workspace-footer { align-items: start; flex-direction: column; }.workspace-footer > div { flex-wrap: wrap; }
  .content-layout, .article-layout { gap: 35px; }.content-aside, .article-aside { grid-template-columns: 1fr; }.article-layout { padding-block: 45px 70px; }.article-header { padding: 55px 0; }.article-list > a { grid-template-columns: 70px 1fr 20px; gap: 12px; }.article-date { display: none; }.article-list p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }.guide-step { grid-template-columns: 36px 1fr; gap: 12px; }.step-number { width: 34px; height: 34px; }
  .closing-cta { padding: 75px 0; }.closing-cta h2 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { align-items: start; flex-direction: column; gap: 8px; }
  .not-found > .container > div { flex-wrap: wrap; }
  .category-grid { grid-template-columns: 1fr 1fr; }.simple-privacy-inner > div { align-items: flex-start; }.header-actions { gap: 4px; padding-left: 8px; }.language-link { width: 38px; padding: 0; }.language-link span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
