:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-soft: #eef2f3;
  --text: #0c1420;
  --muted: #68737d;
  --line: #dfe5e8;
  --dark: #0b1220;
  --dark-2: #111d2c;
  --dark-line: rgba(255,255,255,.14);
  --cyan: #81e5f4;
  --cyan-strong: #18bdd0;
  --amber: #ffc86a;
  --shadow: 0 18px 50px rgba(12,20,32,.10);
  --radius: 8px;
  --nav-h: 72px;
  --max: 1180px;
  --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
[data-theme="dark"] {
  --bg: #0b1220;
  --surface: #111d2c;
  --surface-soft: #152437;
  --text: #eef7fa;
  --muted: #a7b6c0;
  --line: rgba(255,255,255,.13);
  --shadow: 0 18px 50px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--text); background: var(--bg); font-family: var(--font); line-height: 1.7; }
body, button, input { font-family: var(--font); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--cyan-strong); }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; height: var(--nav-h); color: #f5fbfc; background: rgba(11,18,32,.94); border-bottom: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(16px); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff !important; font-size: 18px; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.brand::before { content: ""; width: 32px; height: 32px; flex: 0 0 32px; background: url("../img/logo.svg") center/contain no-repeat; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a, .icon-btn { padding: 8px 12px; color: rgba(245,251,252,.78); border: 0; border-radius: 999px; background: transparent; font-size: 14px; cursor: pointer; }
.nav-links a:hover, .nav-links .icon-btn:hover { color: #fff; background: rgba(255,255,255,.10); }
.nav-links .nav-social { margin-left: 10px; color: var(--dark); background: var(--cyan); font-weight: 700; }
.nav-links .nav-social:hover { color: var(--dark); background: #b5f3f8; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; padding: 0; font-size: 19px; }
.menu-toggle { display: none; }
.hero-home { position: relative; overflow: hidden; color: #f5fbfc; background: #0b1220 url("../img/site-background.jpg") center top/cover no-repeat; }
.hero-home::before { content: ""; position: absolute; inset: 0; background: rgba(5,11,20,.74); }
.hero-shell { position: relative; z-index: 1; min-height: 690px; display: grid; grid-template-columns: minmax(0, .92fr) minmax(390px, .8fr); align-items: center; gap: 70px; padding-top: 74px; padding-bottom: 92px; }
.hero-copy { max-width: 590px; }
.eyebrow { margin: 0 0 20px; color: var(--cyan); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-dark { color: var(--cyan-strong); }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 5px rgba(255,200,106,.13); vertical-align: 1px; }
.hero-copy h1 { max-width: 600px; margin: 0; font-size: clamp(50px, 7vw, 86px); line-height: 1.05; letter-spacing: -.06em; font-weight: 700; }
.hero-copy h1 em, .contact-shell h2 em, .type-heading .accent { color: var(--cyan); font-style: normal; }
.type-heading { max-width: 100%; overflow: visible; }
.type-heading .type-line { display: block; max-width: 100%; overflow-wrap: anywhere; }
.type-heading .muted { color: var(--muted); }
.type-heading .type-char { display: inline-block; opacity: 0; transform: translateY(.22em); filter: blur(5px); }
.type-heading.is-typing .type-char { animation: type-char-in .48s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--char-index) * .045s); }
.type-heading.is-typing .type-line:last-child::after { content: ""; display: inline-block; width: .07em; height: .82em; margin-left: .12em; background: var(--cyan); vertical-align: -.06em; animation: type-caret 1s steps(1, end) infinite; animation-delay: calc(var(--type-total) * .045s); }
.type-heading.is-static .type-char { opacity: 1; transform: none; filter: none; }
@keyframes type-char-in { from { opacity: 0; transform: translateY(.22em); filter: blur(5px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes type-caret { 0%, 48% { opacity: 1; } 49%, 100% { opacity: 0; } }
.hero-lead { max-width: 530px; margin: 30px 0 0; color: rgba(245,251,252,.74); font-size: 17px; line-height: 1.9; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 46px; padding: 11px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { color: inherit; transform: translateY(-2px); }
.btn-light { color: var(--dark) !important; background: var(--cyan); }
.btn-light:hover { background: #b5f3f8; }
.btn-outline { color: #f5fbfc !important; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.btn-outline:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.10); }
.btn-primary { color: var(--dark) !important; background: var(--cyan); }
.btn-primary:hover { background: #b5f3f8; }
.btn-ghost { color: #f5fbfc !important; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 74px; color: rgba(245,251,252,.55); font-size: 12px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); }
.hero-stage { min-width: 0; transform: translateY(8px); }
.stage-window { padding: 18px; border: 1px solid rgba(255,255,255,.20); border-radius: 10px; background: rgba(9,18,31,.78); box-shadow: 0 24px 80px rgba(0,0,0,.28); backdrop-filter: blur(8px); }
.window-bar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; color: rgba(245,251,252,.48); border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--mono); font-size: 10px; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { display: block; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.30); }
.window-dots i:first-child { background: var(--amber); }.window-dots i:nth-child(2) { background: var(--cyan); }
.window-mark { color: var(--cyan); font-weight: 700; }
.stage-heading { display: grid; gap: 6px; padding: 32px 10px 24px; }
.stage-kicker { color: var(--amber); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; }
.stage-heading strong { font-size: 28px; letter-spacing: -.03em; }
.stage-heading span:last-child { color: rgba(245,251,252,.52); font-size: 12px; }
.stage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.stage-item { position: relative; min-height: 130px; padding: 16px; border: 1px solid rgba(255,255,255,.10); border-radius: 7px; background: rgba(255,255,255,.055); }
.stage-item-main { border-color: rgba(129,229,244,.45); background: rgba(24,189,208,.11); }
.stage-item-wide { grid-column: 1 / -1; min-height: 76px; display: flex; align-items: center; gap: 12px; }
.stage-item strong, .stage-item small { display: block; }.stage-item strong { margin-top: 12px; font-size: 14px; }.stage-item small { margin-top: 4px; color: rgba(245,251,252,.48); font-size: 11px; }
.stage-item-wide strong { margin-top: 0; }.stage-arrow { position: absolute; right: 14px; bottom: 12px; color: var(--cyan); font-size: 18px; }.stage-live { margin-left: auto; color: var(--cyan); font-family: var(--mono); font-size: 9px; letter-spacing: .10em; }
.tool-glyph, .tool-symbol { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 9px; font-size: 15px; }.glyph-play, .symbol-play { color: var(--cyan); }.glyph-copy, .symbol-copy { color: #c8a9ff; }.glyph-ai, .symbol-ai { color: var(--amber); }
.stage-footer { display: flex; justify-content: space-between; padding: 18px 8px 2px; color: rgba(245,251,252,.40); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }.stage-footer span:last-child { color: var(--cyan); }
.stage-caption { display: flex; justify-content: space-between; margin-top: 14px; padding: 0 4px; color: rgba(245,251,252,.46); font-size: 11px; }.stage-caption span:first-child { color: var(--cyan); font-family: var(--mono); }
.scroll-cue { position: absolute; z-index: 1; bottom: 27px; left: 50%; display: inline-flex; align-items: center; gap: 10px; transform: translateX(-50%); color: rgba(245,251,252,.55); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }.scroll-cue span { color: var(--cyan); font-size: 17px; }
.section { padding: 124px 0; }.tools-section, .journal-section, .about-section { background: var(--bg); }.section-heading { margin-bottom: 52px; }.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; }.split-heading > * { min-width: 0; }.section-heading h2, .about-copy h2 { margin: 0; font-size: clamp(36px, 5vw, 62px); line-height: 1.08; letter-spacing: -.055em; }.section-heading h2 span, .about-copy h2 span { color: var(--muted); }.section-intro { max-width: 390px; margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.9; }.view-all { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 7px; border-bottom: 1px solid var(--text); font-size: 13px; font-weight: 700; }.view-all span, .text-link span { color: var(--cyan-strong); }
.tool-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }.tool-card { min-width: 0; min-height: 390px; padding: 27px 26px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }.tool-card:hover { transform: translateY(-5px); border-color: rgba(24,189,208,.50); box-shadow: var(--shadow); }.tool-card-featured { color: #effbfc; border-color: var(--dark-2); background: var(--dark); }.tool-card-top { display: flex; justify-content: space-between; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }.tool-card-featured .tool-card-top { color: rgba(239,251,252,.55); }.tool-symbol { width: 54px; height: 54px; margin: 57px 0 24px; font-size: 22px; border-radius: 15px; }.tool-card h3 { max-width: 100%; margin: 0; font-size: 25px; letter-spacing: -.04em; overflow-wrap: anywhere; }.tool-card p { min-height: 78px; max-width: 100%; margin: 14px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.85; overflow-wrap: anywhere; }.tool-card-featured p { color: rgba(239,251,252,.62); }.text-link { display: inline-flex; align-items: center; gap: 10px; max-width: 100%; font-size: 13px; font-weight: 700; overflow-wrap: anywhere; }.text-link:hover { color: var(--cyan-strong); }.tool-note { display: flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--muted); font-size: 12px; }.tool-note a { margin-left: auto; color: var(--text); font-weight: 700; }.note-line { width: 34px; height: 1px; background: var(--cyan-strong); }
.journal-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }.journal-card { display: block; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .2s ease, box-shadow .2s ease; }.journal-card:hover { color: var(--text); transform: translateY(-5px); box-shadow: var(--shadow); }.journal-cover { height: 210px; min-height: 0; overflow: hidden; background-position: left center; background-size: cover; }.journal-card-featured .journal-cover { height: 280px; }.journal-body { min-height: 184px; min-width: 0; padding: 22px; }.journal-meta { color: var(--cyan-strong); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; }.journal-body h3 { max-width: 100%; margin: 13px 0 22px; font-size: 21px; line-height: 1.35; letter-spacing: -.03em; overflow-wrap: anywhere; }.journal-card:not(.journal-card-featured) .journal-body h3 { font-size: 18px; }
.about-grid { display: grid; grid-template-columns: minmax(240px, .5fr) minmax(0, 1.2fr); align-items: center; gap: clamp(54px, 9vw, 132px); }.about-portrait { position: relative; width: min(100%, 300px); max-width: 300px; justify-self: center; }.about-portrait::after { content: ""; position: absolute; right: -14px; bottom: -14px; width: 68%; height: 68%; border-right: 1px solid var(--cyan-strong); border-bottom: 1px solid var(--cyan-strong); pointer-events: none; }.about-portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.84); }.portrait-mark { position: absolute; left: 18px; bottom: 15px; color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }.about-copy { min-width: 0; }.about-copy h2 { max-width: 650px; font-size: clamp(36px, 5vw, 62px); }.about-copy > p:not(.eyebrow) { max-width: 580px; margin: 25px 0 0; color: var(--muted); font-size: 15px; line-height: 1.9; overflow-wrap: anywhere; }.about-links { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px; }
.contact-section { color: #effbfc; background: var(--dark); }.contact-shell { display: flex; align-items: end; justify-content: space-between; gap: 50px; }.contact-shell h2 { margin: 0; font-size: clamp(38px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -.06em; }.contact-actions { margin-top: 0; }.footer { padding: 52px 0 22px; color: rgba(245,251,252,.70); background: var(--dark-2); }.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 32px; padding-bottom: 46px; }.footer .brand { margin-bottom: 12px; }.footer-brand p { margin: 0; color: rgba(245,251,252,.46); font-size: 12px; }.footer h4 { margin: 0 0 13px; color: rgba(245,251,252,.46); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.footer-grid > div:not(.footer-brand) a { display: block; margin: 7px 0; font-size: 13px; }.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 20px; color: rgba(245,251,252,.38); border-top: 1px solid var(--dark-line); font-family: var(--mono); font-size: 10px; }
#progress { position: fixed; z-index: 80; top: 0; left: 0; width: 0; height: 3px; background: var(--cyan); }.search-modal { position: fixed; z-index: 100; inset: 0; display: none; padding: 9vh 20px 20px; background: rgba(5,11,20,.72); backdrop-filter: blur(8px); }.search-modal.open { display: block; }.search-panel { width: min(680px, 100%); margin: 0 auto; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; color: var(--text); background: var(--surface); box-shadow: var(--shadow); }.search-panel header { display: flex; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line); }.search-panel input { flex: 1; min-width: 0; border: 0; outline: 0; color: inherit; background: transparent; font-size: 16px; }.search-panel .icon-btn { color: var(--text); }.results { max-height: 55vh; overflow: auto; padding: 7px; }.search-item { display: block; padding: 13px 14px; border-radius: 6px; }.search-item:hover { color: inherit; background: var(--surface-soft); }.search-item strong { display: block; }.search-item span { color: var(--muted); font-size: 12px; }.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 20; display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--text); background: var(--surface); box-shadow: var(--shadow); cursor: pointer; }.back-top.show { display: inline-flex; }

/* Shared article and archive surfaces keep the inner pages compatible with the new brand system. */
.hero { position: relative; min-height: 340px; display: grid; place-items: center; padding: 80px 20px; color: #f5fbfc; text-align: center; background: var(--dark) url("../img/site-background.jpg") center/cover no-repeat; }.hero::before { content: ""; position: absolute; inset: 0; background: rgba(5,11,20,.72); }.hero > div { position: relative; z-index: 1; }.hero h1 { margin: 0 0 12px; font-size: clamp(38px, 6vw, 64px); letter-spacing: -.05em; }.hero .subtitle { margin: 0; color: rgba(245,251,252,.68); }.layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 22px; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 56px 0 100px; }.layout.single { grid-template-columns: minmax(0, 820px); justify-content: center; }.posts { display: grid; gap: 16px; }.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 8px 28px rgba(12,20,32,.05); }.post-card { display: grid; grid-template-columns: 220px minmax(0,1fr); overflow: hidden; }.post-card .cover { min-height: 180px; background-position: center; background-size: cover; }.post-card .body { padding: 22px; }.post-card h2 { margin: 0 0 8px; font-size: 21px; line-height: 1.35; }.post-card h2 a { color: inherit; }.meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 9px; color: var(--muted); font-size: 12px; }.excerpt { margin: 0; color: var(--muted); font-size: 13px; }.chip { display: inline-flex; padding: 2px 8px; border-radius: 999px; color: var(--cyan-strong); background: rgba(24,189,208,.10); font-size: 11px; }.sidebar { display: grid; align-content: start; gap: 16px; }.sidebar .card { padding: 18px; }.profile { text-align: center; }.profile img { width: 88px; height: 88px; margin: 0 auto 10px; border-radius: 50%; object-fit: cover; }.profile .name { font-weight: 700; }.profile .bio { margin: 4px 0 12px; color: var(--muted); font-size: 12px; }.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-bottom: 14px; }.stats div { padding: 7px 2px; background: var(--surface-soft); }.stats strong, .stats span { display: block; }.stats span { color: var(--muted); font-size: 10px; }.list-links { display: grid; gap: 8px; }.list-links a { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; }.sidebar h3 { margin: 0 0 12px; font-size: 14px; }.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }.article-wrap { overflow: hidden; }.article-cover { height: 290px; background-position: center; background-size: cover; }.article { padding: 34px 40px 52px; }.article h1 { margin: 0 0 10px; font-size: clamp(30px, 5vw, 48px); line-height: 1.12; letter-spacing: -.05em; }.article-content { font-size: 16px; }.article-content h2 { margin: 38px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-size: 25px; }.article-content h3 { margin: 28px 0 8px; font-size: 19px; }.article-content blockquote { margin: 20px 0; padding: 12px 18px; border-left: 3px solid var(--cyan-strong); color: var(--muted); background: var(--surface-soft); }.article-content pre { overflow: auto; padding: 16px; color: #e5edf1; background: #0b1220; }.article-content table { width: 100%; border-collapse: collapse; }.article-content th, .article-content td { padding: 9px; border: 1px solid var(--line); text-align: left; }.page-card { padding: 34px 40px 52px; }.page-card h1 { margin-top: 0; }

@media (max-width: 980px) { .hero-shell { grid-template-columns: 1fr; gap: 46px; padding-top: 76px; }.hero-copy { max-width: 700px; }.hero-stage { width: min(620px, 100%); }.tool-grid, .journal-grid { grid-template-columns: 1fr 1fr; }.tool-card-featured, .journal-card-featured { grid-column: 1 / -1; }.about-grid { gap: 58px; }.contact-shell { display: block; }.contact-actions { margin-top: 30px; }.layout { grid-template-columns: 1fr; }.sidebar { grid-template-columns: repeat(2,1fr); }.profile { grid-row: span 2; } }
@media (max-width: 720px) { :root { --nav-h: 62px; }.container, .layout { width: min(100% - 32px, var(--max)); }.site-header { height: var(--nav-h); }.brand { font-size: 16px; }.brand::before { width: 28px; height: 28px; flex-basis: 28px; }.menu-toggle { display: inline-flex; }.nav-links { position: absolute; top: var(--nav-h); right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: #111d2c; box-shadow: var(--shadow); }.nav-links.open { display: flex; }.nav-links a, .nav-links .icon-btn { width: 100%; text-align: left; }.nav-links .icon-btn { justify-content: flex-start; padding-left: 12px; }.nav-links .nav-social { margin: 6px 0 0; text-align: center; }.hero-shell { min-height: 680px; padding-top: 62px; padding-bottom: 82px; }.hero-copy h1 { font-size: clamp(45px, 14vw, 68px); }.hero-lead { font-size: 15px; }.hero-proof { margin-top: 48px; gap: 12px 18px; }.stage-window { padding: 13px; }.stage-heading { padding: 24px 6px 18px; }.stage-heading strong { font-size: 23px; }.stage-item { min-height: 116px; padding: 12px; }.stage-item strong { font-size: 12px; }.stage-item small { font-size: 10px; }.section { padding: 84px 0; }.split-heading { display: block; }.section-intro { margin-top: 24px; }.view-all { margin-top: 25px; }.tool-grid, .journal-grid, .sidebar, .footer-grid { grid-template-columns: 1fr; }.tool-card, .tool-card-featured, .journal-card, .journal-card-featured { grid-column: auto; }.tool-card { min-height: 0; }.tool-symbol { margin-top: 34px; }.tool-card p { min-height: auto; }.tool-note { align-items: flex-start; flex-wrap: wrap; }.tool-note a { width: 100%; margin-left: 46px; }.journal-cover, .journal-card-featured .journal-cover { min-height: 200px; }.about-grid { grid-template-columns: 1fr; }.about-portrait { width: min(100%, 260px); }.about-copy h2, .section-heading h2 { font-size: clamp(37px, 12vw, 54px); }.contact-shell h2 { font-size: clamp(38px, 12vw, 58px); }.footer-bottom { display: grid; }.post-card { grid-template-columns: 1fr; }.post-card .cover { min-height: 190px; }.article, .page-card { padding: 25px 20px 38px; }.article-cover { height: 220px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }.type-heading .type-char { opacity: 1 !important; transform: none !important; filter: none !important; } }
