:root {
  color-scheme: dark light;
  --ink: #071426;
  --ink-2: #0b1f38;
  --ink-3: #102b49;
  --paper: #f8fbff;
  --paper-2: #eef6fb;
  --text: #10243b;
  --muted: #617289;
  --muted-dark: #a9bfd5;
  --cyan: #42e8e0;
  --teal: #18bcb5;
  --blue: #2388ff;
  --violet: #8f74ff;
  --amber: #ffc963;
  --coral: #ff7f78;
  --line: rgba(16, 52, 83, .13);
  --line-dark: rgba(182, 224, 255, .16);
  --shadow: 0 22px 70px rgba(17, 54, 91, .12);
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; 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: 1rem; top: -5rem; padding: .75rem 1rem; background: var(--paper); color: var(--ink); border-radius: .7rem; box-shadow: var(--shadow); }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: .8rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 2rem), 1220px);
  min-height: 4.4rem;
  padding: .7rem .8rem .7rem 1rem;
  border: 1px solid rgba(203, 232, 255, .16);
  border-radius: 1.25rem;
  background: rgba(7, 20, 38, .78);
  box-shadow: 0 16px 50px rgba(0,0,0,.24);
  backdrop-filter: blur(20px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 850; letter-spacing: -.035em; font-size: 1.13rem; }
.brand > span:last-child > span { color: var(--cyan); }
.brand-mark { width: 2.45rem; height: 2.45rem; border-radius: .82rem; display: grid; place-items: center; background: linear-gradient(135deg,var(--cyan),var(--blue)); color: var(--ink); box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 8px 24px rgba(35,136,255,.25); }
.nav { display: flex; align-items: center; gap: .2rem; }
.nav a { min-height: 2.75rem; padding: .55rem .82rem; border-radius: .75rem; display: inline-flex; align-items: center; color: #c8d9e9; font-size: .9rem; font-weight: 700; transition: .25s ease; }
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav .nav-cta { margin-left: .35rem; color: var(--ink); background: var(--cyan); padding-inline: 1rem; }
.nav .nav-cta:hover { color: var(--ink); background: #79fff7; transform: translateY(-1px); }

main > section { position: relative; isolation: isolate; }
.section-dark { color: #f4fbff; background: var(--ink); }
.section-light { background: var(--paper); }
.section-soft { background: var(--paper-2); }
.section-deep { color: #f2f9ff; background: #0a1b32; }
.section-cta { color: var(--ink); background: linear-gradient(135deg,#76f3e8 0%,#a9f8ef 45%,#b9d8ff 100%); }
.hero { min-height: 780px; padding: 8.4rem 0 8.5rem; overflow: hidden; background-image: radial-gradient(circle at 78% 24%,rgba(39,138,255,.22),transparent 30%), radial-gradient(circle at 34% 8%,rgba(76,232,224,.12),transparent 27%), linear-gradient(150deg,#071426 0%,#0a203a 55%,#06111f 100%); }
.hero::before { content:""; position:absolute; inset:0; z-index:-2; opacity:.14; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom,#000,transparent 80%); }
.ambient { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .7; z-index: -1; animation: drift 8s ease-in-out infinite alternate; }
.ambient-one { width: 440px; height: 440px; right: -150px; top: 18%; background: radial-gradient(circle,rgba(67,232,224,.18),transparent 67%); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 3rem; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow,.kicker { display: inline-flex; align-items: center; gap: .55rem; color: #0c7775; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow { color: var(--cyan); padding: .45rem .72rem; border: 1px solid rgba(66,232,224,.22); border-radius: 999px; background: rgba(66,232,224,.08); }
.pulse { width: .45rem; height: .45rem; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(66,232,224,.6); animation: pulse 2s infinite; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { line-height: 1.08; text-wrap: balance; }
h1 { max-width: 790px; margin: 1.3rem 0 1.35rem; font-size: clamp(3rem,6.2vw,5.85rem); letter-spacing: -.065em; font-weight: 900; }
h1 em { color: var(--cyan); font-style: normal; position: relative; }
h1 em::after { content:""; position:absolute; left:0; right:0; bottom:.05em; height:.1em; border-radius:999px; background: linear-gradient(90deg,var(--cyan),var(--blue)); transform: rotate(-1deg); opacity:.55; }
.hero-lead { max-width: 670px; color: #bfd1e2; font-size: clamp(1.05rem,1.5vw,1.22rem); }
.hero-search { max-width: 720px; margin-top: 2rem; padding: .4rem; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 1rem; background: rgba(255,255,255,.09); box-shadow: 0 18px 45px rgba(0,0,0,.24); backdrop-filter: blur(12px); }
.hero-search svg,.input-shell svg { width: 1.35rem; height: 1.35rem; margin-left: .75rem; fill: none; stroke: currentColor; stroke-width: 1.8; color: #7f9bb4; }
.hero-search input { min-width: 0; height: 3.25rem; border: 0; outline: 0; padding: 0 .85rem; color: #fff; background: transparent; font-size: .96rem; }
.hero-search input::placeholder { color: #90a7bc; }
.hero-search button,.primary-button { min-height: 3.3rem; padding: .7rem 1.15rem; border: 0; border-radius: .75rem; color: var(--ink); background: var(--cyan); font-weight: 850; cursor: pointer; transition: transform .22s ease,box-shadow .22s ease,background .22s ease; }
.hero-search button:hover,.primary-button:hover { transform: translateY(-2px); background: #85fff8; box-shadow: 0 10px 28px rgba(66,232,224,.28); }
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; margin-top: 1.25rem; color: #8fa9c0; font-size: .8rem; }
.trust-row span { display:flex; align-items:center; gap:.3rem; }
.trust-row span + span::before { content:""; width:.2rem; height:.2rem; margin-right:.5rem; border-radius:50%; background:var(--cyan); }
.trust-row strong { color:#fff; }

.mascot-stage { position: relative; min-height: 480px; display: grid; place-items: center; }
.mascot-stage::before { content:""; position:absolute; width:78%; aspect-ratio:1; border-radius:50%; background: radial-gradient(circle,rgba(73,231,224,.2),rgba(41,138,255,.1) 45%,transparent 68%); filter: blur(3px); }
.mascot-stage img { position: relative; z-index: 2; width: min(100%,620px); height: min(600px,55vw); object-fit: contain; object-position: center; filter: drop-shadow(0 28px 30px rgba(0,0,0,.24)); animation: float 5.5s ease-in-out infinite; }
.hero-mascot { min-height: 550px; }
.hero-mascot img { height: min(650px,58vw); }
.orbit { position:absolute; border:1px solid rgba(118,226,255,.18); border-radius:50%; animation: spin 18s linear infinite; }
.orbit::before { content:""; position:absolute; width:.58rem; height:.58rem; border-radius:50%; background:var(--cyan); box-shadow:0 0 20px var(--cyan); top:9%; left:18%; }
.orbit-a { width:88%; aspect-ratio:1; transform:rotate(18deg); }
.orbit-b { width:67%; aspect-ratio:1; animation-direction:reverse; animation-duration:12s; }
.float-card { position:absolute; z-index:3; display:grid; grid-template-columns:auto 1fr; column-gap:.6rem; padding:.75rem .9rem; border:1px solid rgba(255,255,255,.17); border-radius:1rem; background:rgba(10,31,56,.78); box-shadow:0 18px 40px rgba(0,0,0,.24); backdrop-filter:blur(14px); color:#eaf8ff; }
.float-card b { font-size:.82rem; line-height:1.2; }
.float-card small { grid-column:2; color:#93aac0; font-size:.68rem; }
.float-card-a { left:-2%; top:22%; animation:bob 4.5s ease-in-out infinite; }
.float-card-b { right:-1%; bottom:21%; animation:bob 4.5s .8s ease-in-out infinite; }
.status-icon,.source-icon { grid-row:1/3; width:2rem; height:2rem; border-radius:.68rem; display:grid; place-items:center; color:var(--ink); background:var(--cyan); font-weight:900; }
.source-icon { background:#bcaeff; }

.wave-divider { position:absolute; z-index:4; left:0; right:0; bottom:-1px; height:86px; pointer-events:none; }
.wave-divider svg { width:100%; height:100%; }
.wave-light path,.wave-white path { fill:var(--paper); }
.wave-navy path { fill:var(--ink); }
.wave-soft path { fill:var(--paper-2); }
.wave-deep path { fill:#0a1b32; }
.wave-cta path { fill:#79f0e7; }
.wave-footer path { fill:#06111f; }

.directory-section { padding: 6rem 0 8rem; }
.section-heading { max-width:800px; margin-bottom:2rem; }
.section-heading.with-mascot { max-width:none; display:grid; grid-template-columns:1fr 280px; align-items:end; gap:2rem; }
.section-mascot { width:280px; height:280px; object-fit:contain; filter:drop-shadow(0 22px 26px rgba(16,62,89,.16)); animation:float 5s ease-in-out infinite; }
.kicker { margin-bottom:.9rem; }
.kicker-dark { color:var(--cyan); }
h2 { margin-bottom:1rem; font-size:clamp(2.15rem,4.6vw,4.2rem); letter-spacing:-.055em; font-weight:900; }
.section-heading p,.section-lead { color:var(--muted); font-size:1.06rem; max-width:760px; }
.section-dark .section-lead,.section-deep .section-lead { color:var(--muted-dark); }

.search-panel { position:sticky; z-index:20; top:6.1rem; display:grid; grid-template-columns:minmax(0,1.55fr) minmax(210px,.65fr) auto; align-items:end; gap:.8rem; padding:1rem; border:1px solid rgba(25,86,122,.13); border-radius:1.25rem; background:rgba(248,251,255,.88); box-shadow:0 18px 50px rgba(25,72,108,.13); backdrop-filter:blur(17px); }
.field label { display:block; margin:0 0 .4rem .15rem; color:#546a7f; font-size:.75rem; font-weight:850; text-transform:uppercase; letter-spacing:.075em; }
.input-shell { min-height:3.25rem; display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; border:1px solid #ccdae5; border-radius:.82rem; background:#fff; transition:border-color .2s,box-shadow .2s; }
.input-shell:focus-within { border-color:var(--blue); box-shadow:0 0 0 4px rgba(35,136,255,.12); }
.input-shell input { min-width:0; height:3.1rem; padding:0 .75rem; border:0; outline:0; color:var(--text); background:transparent; }
.input-shell kbd { margin-right:.65rem; padding:.12rem .42rem; border:1px solid #d4dfe8; border-bottom-width:2px; border-radius:.35rem; color:#738395; background:#f7fafc; font-size:.72rem; }
select { width:100%; min-height:3.25rem; padding:.65rem 2.4rem .65rem .85rem; border:1px solid #ccdae5; border-radius:.82rem; color:var(--text); background:#fff; cursor:pointer; }
.reset-button,.empty-state button { min-height:3.25rem; padding:.65rem 1rem; border:1px solid #ccdbe5; border-radius:.82rem; color:#264058; background:#fff; font-weight:800; cursor:pointer; transition:.2s ease; }
.reset-button:hover,.empty-state button:hover { border-color:var(--blue); color:var(--blue); }
.directory-meta { min-height:3.4rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; color:#5f7186; font-size:.8rem; }
.directory-meta p { margin:0; }
.legend-dot { display:inline-block; width:.48rem; height:.48rem; margin:0 .24rem 0 .75rem; border-radius:50%; }
.legend-dot:first-child { margin-left:0; }
.legend-dot.institution { background:var(--teal); }.legend-dot.owner { background:var(--violet); }.legend-dot.cross { background:var(--blue); }
.card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.site-card { position:relative; min-height:430px; padding:1.15rem; border:1px solid var(--line); border-radius:var(--radius-lg); background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(242,248,252,.96)); box-shadow:0 8px 26px rgba(25,61,91,.06); display:flex; flex-direction:column; cursor:pointer; overflow:hidden; transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.site-card::before { content:""; position:absolute; width:150px; height:150px; top:-85px; right:-70px; border-radius:50%; background:var(--card-color,rgba(35,136,255,.1)); filter:blur(2px); transition:transform .3s ease; }
.site-card:hover { transform:translateY(-5px); border-color:rgba(35,136,255,.32); box-shadow:0 20px 48px rgba(25,61,91,.13); }
.site-card:hover::before { transform:scale(1.3); }
.card-top { display:flex; align-items:flex-start; justify-content:space-between; gap:.75rem; }
.site-avatar { flex:0 0 auto; width:3rem; height:3rem; border-radius:.9rem; display:grid; place-items:center; color:white; background:linear-gradient(135deg,var(--avatar-a,#147fbc),var(--avatar-b,#625ddd)); box-shadow:0 10px 24px rgba(31,100,145,.2); font-size:.86rem; font-weight:900; letter-spacing:-.04em; }
.status-badge { max-width:180px; padding:.35rem .55rem; border:1px solid currentColor; border-radius:999px; font-size:.63rem; font-weight:900; letter-spacing:.045em; text-transform:uppercase; line-height:1.25; text-align:center; }
.status-badge.institution { color:#0d817b; background:#ebfffc; }.status-badge.owner { color:#6751c6; background:#f1efff; }.status-badge.cross { color:#1d68bd; background:#eef6ff; }
.site-card h3 { margin:1rem 0 .42rem; font-size:1.25rem; letter-spacing:-.025em; }
.domain { display:inline-flex; align-items:center; gap:.4rem; margin:0 0 .85rem; color:#0b7773; font-weight:850; word-break:break-all; }
.domain::before { content:""; width:.48rem; height:.48rem; border-radius:50%; background:var(--teal); box-shadow:0 0 0 4px rgba(24,188,181,.12); }
.manager { color:#607389; font-size:.83rem; line-height:1.45; }
.manager span { display:block; margin-bottom:.12rem; color:#8897a6; font-size:.67rem; text-transform:uppercase; letter-spacing:.07em; font-weight:800; }
.card-function { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; margin:.1rem 0 .8rem; overflow:hidden; color:#526b80; font-size:.78rem; line-height:1.5; }
.card-bottom-meta { margin-top:auto; display:grid; gap:.45rem; }
.card-bottom-meta time { color:#74879a; font-size:.68rem; font-weight:750; }
.category-tag { align-self:flex-start; width:max-content; max-width:100%; padding:.28rem .58rem; border-radius:.55rem; color:#31536f; background:#e9f1f7; font-size:.68rem; font-weight:800; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.card-actions { display:grid; grid-template-columns:1fr; gap:.55rem; margin-top:.85rem; }
.card-actions button,.card-actions a { min-height:2.75rem; padding:.6rem .72rem; border-radius:.72rem; display:flex; justify-content:center; align-items:center; font-size:.78rem; font-weight:850; transition:.2s ease; }
.card-actions button { border:1px solid #cad9e4; color:#294962; background:#fff; cursor:pointer; }
.card-actions a { border:1px solid var(--ink); color:#fff; background:var(--ink); }
.card-actions button:hover { border-color:var(--blue); color:var(--blue); }.card-actions a:hover { background:var(--ink-3); transform:translateY(-1px); }
.empty-state { margin-top:1rem; padding:4rem 1.5rem; border:1px dashed #b9cad8; border-radius:var(--radius-xl); text-align:center; background:#fff; }
.empty-state > span { display:block; color:#83a1ba; font-size:3.2rem; line-height:1; }
.empty-state h3 { margin:.8rem 0 .45rem; font-size:1.4rem; }
.empty-state p { color:var(--muted); }

.verification,.evidence,.disclaimer { padding:8rem 0 9rem; }
.faq { padding:7rem 0 9rem; }
.anti-phishing { padding:8rem 0 9rem; }
.split-layout { display:grid; grid-template-columns:.86fr 1.14fr; align-items:center; gap:clamp(2rem,6vw,6rem); }
.split-layout.reverse { grid-template-columns:1.18fr .82fr; }
.split-layout.reverse > :first-child { order:1; }.split-layout.reverse > :last-child { order:2; }
.steps { list-style:none; padding:0; margin:2rem 0 0; display:grid; gap:.75rem; }
.steps li { display:grid; grid-template-columns:auto 1fr; gap:1rem; padding:1rem; border:1px solid var(--line-dark); border-radius:1rem; background:rgba(255,255,255,.045); transition:transform .22s ease,background .22s ease; }
.steps li:hover { transform:translateX(5px); background:rgba(255,255,255,.075); }
.steps li > span { width:2.5rem; height:2.5rem; border-radius:.75rem; display:grid; place-items:center; color:var(--ink); background:var(--cyan); font-size:.75rem; font-weight:950; }
.steps b { font-size:1rem; }.steps p { margin:.2rem 0 0; color:#a7bdd1; font-size:.85rem; }
.content-card { padding:clamp(1.4rem,4vw,3rem); border:1px solid rgba(25,73,105,.12); border-radius:var(--radius-xl); background:rgba(255,255,255,.78); box-shadow:var(--shadow); }
.safety-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:.8rem; margin-top:2rem; }
.safety-grid article { padding:1.05rem; border:1px solid #d5e2eb; border-radius:1rem; background:#fff; }
.safety-grid article > span { width:2rem; height:2rem; border-radius:.65rem; display:grid; place-items:center; color:#075b5a; background:#ddfbf8; font-weight:900; }
.safety-grid h3 { margin:.85rem 0 .42rem; font-size:1rem; }.safety-grid p { margin:0; color:var(--muted); font-size:.82rem; }
.status-list { display:grid; gap:.8rem; margin-top:1.6rem; }
.status-card { display:grid; grid-template-columns:auto 1fr; gap:1rem; padding:1.1rem; border:1px solid var(--line); border-radius:1.05rem; background:#fff; box-shadow:0 8px 24px rgba(25,61,91,.05); }
.status-symbol { width:2.7rem; height:2.7rem; border-radius:.8rem; display:grid; place-items:center; color:#fff; font-weight:950; }
.status-card.institution .status-symbol { background:var(--teal); }.status-card.owner .status-symbol { background:var(--violet); }.status-card.cross .status-symbol { background:var(--blue); }
.status-card h3 { margin:0 0 .32rem; font-size:1rem; }.status-card p { margin:0; color:var(--muted); font-size:.84rem; }
.fine-note { margin:1.2rem 0 0; padding-left:1rem; border-left:3px solid var(--amber); color:#64798c; font-size:.84rem; }
.disclaimer-copy { display:grid; gap:.65rem; margin:1.5rem 0; }
.disclaimer-copy p { margin:0; padding:1rem; border:1px solid var(--line-dark); border-radius:1rem; color:#adc1d4; background:rgba(255,255,255,.04); }
.disclaimer-copy strong { color:#fff; }
.text-link { display:inline-flex; align-items:center; gap:.5rem; min-height:2.75rem; color:var(--cyan); font-weight:850; }
.text-link span { transition:transform .2s ease; }.text-link:hover span { transform:translateX(4px); }
.closing { padding:7rem 0 8rem; overflow:hidden; }
.closing::before { content:""; position:absolute; z-index:-1; inset:0; opacity:.3; background-image:radial-gradient(circle at 12% 35%,#fff 0 2px,transparent 3px),radial-gradient(circle at 85% 25%,#fff 0 2px,transparent 3px); background-size:80px 80px,120px 120px; }
.closing-grid { display:grid; grid-template-columns:.75fr 1.25fr; align-items:center; gap:3rem; }
.closing .mascot-stage { min-height:380px; }.closing .mascot-stage img { height:min(470px,50vw); }
.closing h2 { max-width:750px; }.closing p { max-width:680px; color:#31576d; font-size:1.08rem; }
.primary-button { display:inline-flex; align-items:center; gap:.6rem; margin-top:.7rem; color:#fff; background:var(--ink); }
.primary-button:hover { color:#fff; background:#11375a; box-shadow:0 12px 30px rgba(7,20,38,.2); }

.site-footer { padding:5rem 0 1.2rem; color:#afc1d3; background:#06111f; }
.footer-grid { display:grid; grid-template-columns:1.7fr repeat(4,minmax(0,1fr)); gap:2.2rem; }
.footer-about p { margin:.6rem 0 0; font-size:.86rem; line-height:1.7; }
.footer-note { color:#8ea3b8; font-size:.8rem; line-height:1.7; }
.footer-tags { color:#afc1d3; font-size:.82rem; line-height:1.8; }
.footer-brand { color:#fff; margin-bottom:1rem; }
.footer-about { max-width:460px; }
.footer-grid h2 { margin-bottom:1rem; color:#fff; font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; }
.footer-grid a:not(.brand) { display:block; width:max-content; min-height:2rem; color:#afc1d3; font-size:.87rem; }
.footer-grid a:hover { color:var(--cyan); }
.footer-grid p { margin:.25rem 0; font-size:.83rem; }
.footer-bottom { margin-top:3.5rem; padding-top:1.1rem; border-top:1px solid rgba(255,255,255,.1); display:flex; flex-wrap:wrap; justify-content:space-between; gap:.6rem 1.5rem; font-size:.72rem; line-height:1.6; }
.footer-bottom p { flex:1 1 15rem; }
.footer-bottom p { margin:0; }

.detail-dialog { width:min(calc(100% - 2rem),760px); max-height:min(90vh,820px); padding:0; border:1px solid rgba(110,176,214,.25); border-radius:1.5rem; color:var(--text); background:#fafdff; box-shadow:0 35px 100px rgba(0,0,0,.38); overflow:auto; }
.detail-dialog::backdrop { background:rgba(3,11,22,.76); backdrop-filter:blur(7px); }
.dialog-close { position:sticky; z-index:3; float:right; top:1rem; right:1rem; width:2.8rem; height:2.8rem; margin:1rem; border:1px solid #d4e0e9; border-radius:.8rem; color:#38546d; background:rgba(255,255,255,.92); font-size:1.5rem; cursor:pointer; }
.dialog-inner { padding:2rem; }
.dialog-head { display:grid; grid-template-columns:auto 1fr; gap:1rem; align-items:center; padding-right:3.6rem; }
.dialog-head h2 { margin:0 0 .3rem; font-size:clamp(1.55rem,4vw,2.4rem); }
.dialog-domain { display:inline-block; color:#0a7772; font-weight:900; word-break:break-all; }
.dialog-status { margin:1.2rem 0; }
.detail-list { margin:0; display:grid; grid-template-columns:1fr 1fr; gap:.75rem; }
.detail-list > div { padding:.9rem; border:1px solid #dce7ee; border-radius:.9rem; background:#fff; }
.detail-list > .wide { grid-column:1/-1; }
.detail-list dt { margin-bottom:.25rem; color:#6d7e8f; font-size:.68rem; font-weight:850; text-transform:uppercase; letter-spacing:.07em; }
.detail-list dd { margin:0; font-size:.9rem; }
.source-links { display:flex; flex-wrap:wrap; gap:.55rem; margin-top:1.2rem; }
.source-links a,.dialog-visit { min-height:2.8rem; padding:.62rem .85rem; border-radius:.72rem; display:inline-flex; align-items:center; gap:.35rem; font-size:.8rem; font-weight:850; }
.source-links a { border:1px solid #cbdbe6; color:#24506d; background:#fff; }
.dialog-visit { margin-top:1rem; color:#fff; background:var(--ink); }
.dialog-note { margin:1.15rem 0 0; padding:.9rem; border-left:3px solid var(--amber); color:#5d6f81; background:#fff9e9; font-size:.8rem; }
body.dialog-open { overflow:hidden; }

.reveal { opacity:1; transform:none; }
.js .reveal { opacity:0; transform:translateY(22px); transition:opacity .72s ease,transform .72s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity:1; transform:none; }
/* Direktori versi teks: selalu ada di DOM untuk crawler & pengguna tanpa JavaScript,
   disembunyikan saat JavaScript aktif karena digantikan grid interaktif. */
.static-directory { margin-top:1rem; padding:1.5rem; border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; }
.js .static-directory { display:none; }
html:not(.js) .search-panel, html:not(.js) .directory-meta, html:not(.js) #empty-state { display:none; }
.static-intro { margin:0 0 1.5rem; padding-bottom:1.25rem; border-bottom:1px solid var(--line); color:var(--muted); }
.static-entry { padding:1.1rem 0; border-bottom:1px solid var(--line); }
.static-entry:last-child { border-bottom:0; padding-bottom:0; }
.static-entry h3 { margin:0 0 .5rem; font-size:1.05rem; letter-spacing:-.02em; }
.static-domain { color:#0c7775; font-weight:700; }
.static-entry p { margin:.25rem 0; color:#546b80; font-size:.9rem; }
.static-entry strong { color:var(--text); }
.static-entry a { color:#1268a8; text-decoration:underline; text-underline-offset:2px; }

/* Blok jawaban ringkas (AEO): paragraf mandiri yang mudah dikutip mesin jawab. */
.answer-block { margin-bottom:1.5rem; padding:1.4rem 1.6rem; border:1px solid var(--line); border-left:4px solid var(--teal); border-radius:var(--radius-md); background:#fff; }
.answer-block h3 { margin:0 0 .6rem; font-size:1.08rem; letter-spacing:-.02em; }
.answer-block p { margin:0; color:#4d6377; max-width:78ch; }

/* FAQ */
.faq-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.faq-item { padding:1.4rem 1.5rem; border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow); }
.faq-item h3 { margin:0 0 .6rem; font-size:1.02rem; letter-spacing:-.02em; }
.faq-item p { margin:0; color:#546b80; font-size:.93rem; }
.faq-item strong { color:var(--text); }
/* Pemberitahuan independensi - tampil tepat di atas hero dan di setiap halaman. */
.site-notice { display:flex; align-items:flex-start; gap:.7rem; max-width:56rem; margin:0 0 1.9rem; padding:.85rem 1.1rem; border:1px solid rgba(255,201,99,.4); border-left:4px solid var(--amber); border-radius:.9rem; background:rgba(255,201,99,.1); color:#ffe4ad; font-size:.88rem; line-height:1.6; }
.site-notice-mark { flex:0 0 auto; width:1.4rem; height:1.4rem; margin-top:.1rem; border-radius:50%; display:grid; place-items:center; color:#3b2a06; background:var(--amber); font-weight:900; font-size:.8rem; }
.page-main .site-notice { color:#7a5a12; background:#fff8e8; border-color:rgba(190,140,30,.32); }

/* Halaman statis (tentang, kebijakan, kontak, disclaimer) */
.page-hero { padding:9.6rem 0 3.5rem; background-image:linear-gradient(150deg,#071426 0%,#0a203a 60%,#06111f 100%); color:#fff; }
.page-hero .site-notice { margin-top:1.6rem; margin-bottom:0; }
.page-hero h1 { margin:1rem 0 1rem; font-size:clamp(2.3rem,5vw,3.9rem); }
.page-hero p { max-width:70ch; margin:0; color:#bfd1e2; font-size:1.05rem; }
.page-breadcrumb { display:flex; flex-wrap:wrap; gap:.4rem; margin:0 0 .3rem; padding:0; list-style:none; color:#8fa9c0; font-size:.8rem; }
.page-breadcrumb a { color:var(--cyan); }
.page-breadcrumb li + li::before { content:"/"; margin-right:.4rem; color:#4f6a83; }

.page-main { padding:3.5rem 0 6rem; background:var(--paper); }
.page-body { max-width:78ch; }
.page-body h2 { margin:2.6rem 0 .9rem; font-size:clamp(1.5rem,2.6vw,2rem); letter-spacing:-.03em; }
.page-body h2:first-child { margin-top:0; }
.page-body h3 { margin:1.8rem 0 .5rem; font-size:1.08rem; }
.page-body p, .page-body li { color:#41586d; font-size:.98rem; line-height:1.75; }
.page-body ul, .page-body ol { padding-left:1.3rem; }
.page-body li { margin:.35rem 0; }
.page-body a { color:#1268a8; text-decoration:underline; text-underline-offset:2px; }
.page-body strong { color:var(--text); }
.page-card { margin:1.5rem 0; padding:1.4rem 1.6rem; border:1px solid var(--line); border-left:4px solid var(--teal); border-radius:var(--radius-md); background:#fff; }
.page-card :last-child { margin-bottom:0; }
.page-updated { margin-top:3rem; padding-top:1.2rem; border-top:1px solid var(--line); color:var(--muted); font-size:.85rem; }
.page-table { width:100%; margin:1.2rem 0; border-collapse:collapse; font-size:.9rem; }
.page-table th, .page-table td { padding:.7rem .8rem; border:1px solid var(--line); text-align:left; vertical-align:top; color:#41586d; }
.page-table th { background:#eef4f9; color:var(--text); font-weight:800; }
.page-table-wrap { overflow-x:auto; }

@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }
@keyframes bob { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes drift { to{transform:translate(-45px,25px) scale(1.08)} }
@keyframes pulse { 70%{box-shadow:0 0 0 8px rgba(66,232,224,0)}100%{box-shadow:0 0 0 0 rgba(66,232,224,0)} }

@media (max-width: 980px) {
  .hero { min-height:auto; padding-top:7.4rem; }
  .hero-grid,.split-layout,.split-layout.reverse,.closing-grid { grid-template-columns:1fr; }
  .hero-copy { order:1; }.hero-mascot { order:2; min-height:430px; }
  .hero-mascot img { height:500px; }
  .split-layout .mascot-stage { min-height:390px; order:2; }.split-layout > :not(.mascot-stage) { order:1; }
  .split-layout.reverse > :first-child { order:1; }.split-layout.reverse > :last-child { order:2; }
  .card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .faq-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:2rem; }
  .footer-about { grid-column:1 / -1; max-width:none; }
  .search-panel { grid-template-columns:1fr 1fr; }
  .reset-button { grid-column:1/-1; }
  .closing .mascot-stage { order:2; }
}

@media (max-width: 720px) {
  .container { width:min(calc(100% - 1.25rem),var(--container)); }
  .site-header { top:.45rem; width:calc(100% - .9rem); min-height:4rem; padding:.55rem .65rem; }
  .brand { font-size:1rem; }.brand-mark { width:2.25rem; height:2.25rem; }
  .nav a { display:none; }.nav .nav-cta { display:inline-flex; margin:0; min-height:2.6rem; padding:.5rem .75rem; font-size:.76rem; }
  .hero { padding:8.2rem 0 7rem; }
  h1 { font-size:clamp(2.7rem,13vw,4rem); }
  h2 { font-size:clamp(2rem,10vw,3rem); }
  .hero-search { grid-template-columns:auto minmax(0,1fr); }
  .hero-search button { grid-column:1/-1; width:100%; }
  .trust-row { gap:.35rem .65rem; }.trust-row span + span::before { display:none; }
  .hero-mascot { min-height:400px; }.hero-mascot img { height:430px; }
  .float-card-a { left:1%; }.float-card-b { right:1%; }
  .float-card { padding:.55rem .65rem; }.float-card small { display:none; }
  .section-heading.with-mascot { grid-template-columns:1fr; }.section-mascot { width:210px; height:210px; margin:-1rem auto 0; }
  .search-panel { position:relative; top:auto; grid-template-columns:1fr; padding:.75rem; }
  .reset-button { grid-column:auto; }
  .directory-meta { align-items:flex-start; flex-direction:column; padding:.8rem .15rem; }
  .card-grid { grid-template-columns:1fr; }
  .site-card { min-height:420px; }
  .verification,.anti-phishing,.evidence,.disclaimer,.faq { padding:6rem 0 7rem; }
  .mascot-stage,.split-layout .mascot-stage { min-height:340px; }.mascot-stage img { height:380px; width:100%; }
  .safety-grid { grid-template-columns:1fr; }
  .content-card { padding:1rem; }
  .closing { padding:5.5rem 0 7rem; }.closing .mascot-stage img { height:370px; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }.footer-bottom { flex-direction:column; }
  .faq-list { grid-template-columns:1fr; }
  .page-hero { padding-top:8.4rem; }
  .site-notice { font-size:.83rem; }
  .static-directory { padding:1.1rem; }.answer-block { padding:1.1rem 1.2rem; }
  .dialog-inner { padding:1.25rem; }.detail-list { grid-template-columns:1fr; }.detail-list > .wide { grid-column:auto; }
  .dialog-head { grid-template-columns:1fr; }.dialog-head .site-avatar { width:3.5rem; height:3.5rem; }

}

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

@media print {
  .site-header,.hero-search,.wave-divider,.mascot-stage,.search-panel,.card-actions,.closing { display:none !important; }
  .hero,.verification,.disclaimer { color:#111; background:#fff; }
  .hero { min-height:auto; padding:2rem 0; }
  .card-grid { grid-template-columns:repeat(2,1fr); }.site-card { break-inside:avoid; }
}
