:root {
    color-scheme: dark;
    --bg: #080a10;
    --bg-raised: #0d1018;
    --surface: #111521;
    --surface-2: #161b28;
    --line: rgba(255, 255, 255, 0.09);
    --line-bright: rgba(255, 255, 255, 0.16);
    --text: #f5f7fb;
    --muted: #9299aa;
    --muted-light: #bdc3cf;
    --purple: #8f63ff;
    --purple-light: #bda6ff;
    --purple-deep: #6240d9;
    --green: #50dda1;
    --red: #ff7087;
    --amber: #ffbf69;
    --blue: #6bb5ff;
    --radius: 22px;
    --shadow: 0 32px 100px rgba(0, 0, 0, 0.46);
    --font-display: 'Segoe UI Variable Display', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Segoe UI Variable Text', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { max-width: 100%; margin: 0; overflow-x: hidden; min-width: 320px; background: var(--bg); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
code { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(5vw, 28px); background: rgba(8, 10, 16, 0.78); border-bottom: 1px solid var(--line); backdrop-filter: blur(22px); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.03em; }
.brand-mark { position: relative; display: grid; place-items: center; width: 33px; height: 33px; color: white; background: linear-gradient(145deg, #a985ff, #6845dc); border: 1px solid rgba(255,255,255,.24); border-radius: 10px 10px 13px 13px; box-shadow: 0 8px 28px rgba(123, 77, 238, .4); font-size: 15px; }
.site-nav { display: flex; align-items: center; gap: 31px; color: var(--muted-light); font-size: 14px; font-weight: 500; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: white; }
.site-nav .nav-cta { padding: 10px 16px; color: white; background: rgba(143, 99, 255, .14); border: 1px solid rgba(143, 99, 255, .35); border-radius: 10px; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--surface); border-radius: 11px; }
.nav-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: white; }

.hero { position: relative; min-height: 810px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(470px, .9fr); align-items: center; gap: 7vw; padding: 145px max(6vw, 34px) 90px; overflow: hidden; background-image: radial-gradient(circle at 50% 46%, rgba(143, 99, 255, .07), transparent 30%), linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: auto, 44px 44px, 44px 44px; }
.hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 14%); }
.hero-copy, .vault-visual { position: relative; z-index: 2; }
.hero-copy { max-width: 700px; }
.eyebrow { margin: 0 0 18px; color: var(--purple-light); font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 9px; background: var(--green); border-radius: 50%; box-shadow: 0 0 15px var(--green); }
.hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(58px, 6.4vw, 100px); line-height: .98; letter-spacing: -.065em; }
.hero h1 span { color: transparent; background: linear-gradient(100deg, #fff 8%, #a98bff 55%, #7354d8); background-clip: text; -webkit-background-clip: text; }
.hero-lede { max-width: 610px; margin: 28px 0 32px; color: var(--muted-light); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 12px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; cursor: pointer; color: white; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .6; transform: none; }
.button-primary { background: linear-gradient(135deg, #9b72ff, #7347e8); box-shadow: 0 12px 34px rgba(119, 70, 232, .32); }
.button-primary:hover { background: linear-gradient(135deg, #aa87ff, #8056ed); }
.button-ghost { background: rgba(255,255,255,.025); border-color: var(--line-bright); }
.button-secondary { background: rgba(143, 99, 255, .12); border-color: rgba(143, 99, 255, .3); }
.button-light { color: #17131d; background: white; }
.button-full { width: 100%; }
.button-small { min-height: 40px; padding: 0 14px; font-size: 13px; }
.trust-row { display: flex; gap: 28px; margin-top: 40px; color: #7f8798; font-size: 12px; }
.trust-row span { padding-left: 16px; border-left: 1px solid var(--line-bright); }
.trust-row b { display: block; color: #d8dce5; font-family: var(--font-display); font-size: 17px; }

.vault-visual { min-height: 570px; display: grid; place-items: center; perspective: 1200px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-one { width: 450px; height: 450px; right: 7%; top: 24%; background: rgba(112, 73, 222, .12); }
.hero-glow-two { width: 220px; height: 220px; right: 30%; top: 35%; background: rgba(183, 135, 255, .1); }
.vault-orbit { position: absolute; width: 470px; height: 470px; border: 1px solid rgba(150, 111, 255, .13); border-radius: 50%; transform: rotateX(69deg) rotateZ(18deg); }
.orbit-two { width: 590px; height: 590px; border-color: rgba(255,255,255,.04); transform: rotateY(55deg) rotateZ(-17deg); }
.app-window { position: relative; z-index: 2; width: min(620px, 44vw); min-width: 470px; overflow: hidden; background: #0d1018; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; box-shadow: -32px 45px 90px rgba(0,0,0,.55), 0 0 80px rgba(109,71,208,.15); transform: rotateY(-8deg) rotateX(3deg); }
.app-titlebar { height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; border-bottom: 1px solid var(--line); color: #8e95a7; font-size: 11px; }
.mini-brand { color: #dcdfea; font-weight: 700; }.mini-brand i { display: inline-grid; width: 21px; height: 21px; margin-right: 7px; place-items: center; background: var(--purple-deep); border-radius: 6px; font-style: normal; font-size: 9px; }
.window-dots { word-spacing: 12px; }
.app-layout { min-height: 365px; display: grid; grid-template-columns: 102px 1fr; }
.app-sidebar { padding: 24px 18px; border-right: 1px solid var(--line); }
.app-avatar { display: grid; width: 38px; height: 38px; margin-bottom: 37px; place-items: center; background: #241c3c; border: 1px solid #513b86; border-radius: 10px; color: var(--purple-light); font-size: 11px; font-weight: 700; }
.sidebar-line { width: 55px; height: 6px; margin: 20px 0; background: #252a37; border-radius: 5px; }.sidebar-line.active { background: #8058ec; box-shadow: 0 0 12px rgba(128,88,236,.45); }.sidebar-line.short { width: 38px; }
.app-content { padding: 31px; }.app-kicker { color: #7e8698; font-size: 8px; letter-spacing: .17em; }.health-score { margin: 7px 0 12px; }.health-score span { font-family: var(--font-display); font-size: 37px; font-weight: 800; }.health-score small { color: #727a8d; }.health-bar { height: 4px; margin-bottom: 28px; background: #242936; border-radius: 5px; }.health-bar i { display: block; width: 94%; height: 100%; background: linear-gradient(90deg, var(--purple), var(--green)); border-radius: 5px; }
.credential-row { display: grid; grid-template-columns: 33px 1fr auto; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }.credential-icon { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 8px; background: #222630; font-size: 10px; font-weight: 800; }.credential-icon.purple { background: #342754; color: #bfa7ff; }.credential-icon.blue { background: #1d334d; color: #8bc5ff; }.credential-row b { display: block; font-size: 11px; }.credential-row small { display: block; margin-top: 3px; color: #747d91; font-size: 8px; }.credential-row em { color: #697185; font-style: normal; font-size: 9px; letter-spacing: 1px; }
.security-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 11px 14px; background: rgba(15,18,28,.9); border: 1px solid var(--line-bright); border-radius: 10px; box-shadow: 0 15px 35px rgba(0,0,0,.35); color: #dce0e8; font-size: 11px; backdrop-filter: blur(15px); }.security-chip span { color: var(--green); }.chip-top { top: 13%; right: 0; }.chip-bottom { left: 1%; bottom: 15%; }

.section { padding: 110px max(7vw, 32px); }.section-heading { max-width: 690px; margin-bottom: 55px; }.section-heading h2, .download-copy h2 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(38px, 4vw, 61px); line-height: 1.05; letter-spacing: -.05em; }.section-heading > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.7; }
.security-section { background: #0b0d14; border-block: 1px solid var(--line); }.security-flow { display: grid; grid-template-columns: 1fr 90px 1fr 90px 1fr; align-items: center; }.security-flow article { min-height: 275px; padding: 30px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); border: 1px solid var(--line); border-radius: var(--radius); }.flow-number { float: right; color: #404657; font-family: var(--font-display); font-weight: 800; }.flow-icon { display: grid; width: 48px; height: 48px; margin-bottom: 42px; place-items: center; background: rgba(143,99,255,.12); border: 1px solid rgba(143,99,255,.28); border-radius: 13px; color: var(--purple-light); font-size: 22px; }.security-flow h3 { margin: 0 0 11px; font-family: var(--font-display); font-size: 18px; }.security-flow p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }.flow-line { height: 1px; background: linear-gradient(90deg, rgba(143,99,255,.15), rgba(143,99,255,.65), rgba(143,99,255,.15)); }
.feature-section { background: radial-gradient(circle at 80% 20%, rgba(117,74,224,.07), transparent 25%); }.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.feature-card { min-height: 260px; padding: 29px; background: linear-gradient(150deg, rgba(255,255,255,.04), rgba(255,255,255,.014)); border: 1px solid var(--line); border-radius: 18px; transition: transform .25s ease, border-color .25s ease; }.feature-card:hover { transform: translateY(-4px); border-color: rgba(143,99,255,.28); }.feature-large { grid-row: span 2; min-height: 536px; }.feature-wide { grid-column: span 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; background: linear-gradient(125deg, rgba(143,99,255,.14), rgba(255,255,255,.018)); }.feature-glyph { display: grid; width: 45px; height: 45px; margin-bottom: 53px; place-items: center; background: #171b28; border: 1px solid var(--line-bright); border-radius: 12px; color: var(--purple-light); font-size: 19px; }.feature-card h3 { margin: 0 0 11px; font-family: var(--font-display); font-size: 19px; }.feature-card p { max-width: 360px; margin: 0; color: var(--muted); line-height: 1.65; }.feature-card > a { color: var(--purple-light); white-space: nowrap; font-weight: 700; }.generator-demo { margin-top: 85px; padding: 18px; background: #0b0e15; border: 1px solid var(--line); border-radius: 13px; }.generator-demo span { color: #e1d9ff; font-family: ui-monospace, monospace; font-size: 14px; }.generator-demo button { float: right; padding: 3px 8px; color: var(--muted-light); background: #1b202d; border: 0; border-radius: 5px; font-size: 9px; }.generator-demo i { display: block; height: 3px; margin-top: 16px; background: linear-gradient(90deg, var(--green) 82%, #262c38 82%); border-radius: 3px; }
.download-section { position: relative; min-height: 510px; display: flex; align-items: center; margin: 0 max(3vw, 18px) 45px; overflow: hidden; background: linear-gradient(115deg, #7550e6, #5232b3); border: 1px solid rgba(255,255,255,.18); border-radius: 28px; }.download-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 45px 45px; mask-image: linear-gradient(90deg, transparent, black); }.download-copy { position: relative; z-index: 2; max-width: 660px; }.download-copy .eyebrow { color: #ded2ff; }.download-copy p:not(.eyebrow) { max-width: 540px; margin-bottom: 28px; color: #d6ccef; line-height: 1.7; }.release-note { display: block; margin-top: 12px; color: #d5caef; }.download-mark { position: absolute; right: 10%; width: 230px; height: 260px; display: grid; place-items: center; }.download-mark span { position: relative; z-index: 2; display: grid; width: 125px; height: 142px; place-items: center; background: linear-gradient(150deg, rgba(255,255,255,.25), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.33); border-radius: 38px 38px 53px 53px; box-shadow: 0 35px 70px rgba(34,17,79,.4); font-family: var(--font-display); font-size: 50px; font-weight: 800; }.download-mark i { position: absolute; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }.download-mark i:nth-child(3) { width: 240px; height: 240px; }.download-mark i:nth-child(4) { width: 310px; height: 310px; }
.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 35px max(6vw, 30px) 45px; color: var(--muted); }.site-footer p { grid-column: 1; margin: 0; font-size: 13px; }.site-footer nav { grid-column: 2; grid-row: 1 / span 2; display: flex; gap: 24px; font-size: 13px; }.site-footer a:hover { color: white; }.site-footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid var(--line); font-size: 11px; }

.js-ready .reveal { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }

.auth-body { min-height: 100vh; background: radial-gradient(circle at 50% 20%, rgba(121,77,229,.14), transparent 30%), var(--bg); }.auth-shell { width: min(460px, calc(100% - 32px)); margin: 0 auto; padding: 55px 0; }.setup-shell { width: min(620px, calc(100% - 32px)); }.brand-center { display: flex; width: fit-content; margin: 0 auto 28px; }.auth-card { padding: 34px; background: rgba(17,21,33,.88); border: 1px solid var(--line-bright); border-radius: 22px; box-shadow: var(--shadow); backdrop-filter: blur(20px); }.auth-card h1 { margin: 0 0 11px; font-family: var(--font-display); font-size: 34px; letter-spacing: -.045em; }.auth-card > p:not(.eyebrow):not(.auth-switch) { margin: 0 0 24px; color: var(--muted); line-height: 1.6; }.stack-form { display: grid; gap: 17px; }.stack-form label { display: grid; gap: 8px; color: #d9dce5; font-size: 13px; font-weight: 600; }.stack-form label small { color: var(--muted); font-size: 11px; font-weight: 400; }.stack-form input, .stack-form select, .stack-form textarea, .search-field { width: 100%; color: white; background: #0b0e16; border: 1px solid var(--line-bright); border-radius: 10px; outline: none; transition: border-color .2s, box-shadow .2s; }.stack-form input, .stack-form select { height: 46px; padding: 0 13px; }.stack-form textarea { resize: vertical; padding: 13px; }.stack-form input:focus, .stack-form select:focus, .stack-form textarea:focus, .search-field:focus-within { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(143,99,255,.12); }.form-grid { display: grid; grid-template-columns: 1fr 120px; gap: 12px; }.notice { margin: 0 0 20px; padding: 12px 14px; border: 1px solid; border-radius: 10px; font-size: 13px; line-height: 1.5; }.notice-error { color: #ffb0bd; background: rgba(255,112,135,.08); border-color: rgba(255,112,135,.25); }.notice-success { color: #a6f2cf; background: rgba(80,221,161,.08); border-color: rgba(80,221,161,.25); }.notice-warning { color: #ffd49a; background: rgba(255,191,105,.08); border-color: rgba(255,191,105,.25); }.notice a { text-decoration: underline; }.auth-switch { margin: 24px 0 0; color: var(--muted); text-align: center; font-size: 13px; }.auth-switch a { color: var(--purple-light); font-weight: 700; }.privacy-caption { color: #757d8f; font-size: 11px; line-height: 1.6; text-align: center; }

.portal-body { min-height: 100vh; background: #090b12; }.portal-header { height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(4vw, 22px); border-bottom: 1px solid var(--line); background: rgba(9,11,18,.92); }.portal-user { display: flex; align-items: center; gap: 18px; }.portal-user > span { display: grid; text-align: right; }.portal-user b { font-size: 13px; }.portal-user small { color: var(--muted); font-size: 11px; }.portal-user > a { padding: 9px 12px; border: 1px solid var(--line-bright); border-radius: 9px; color: var(--muted-light); font-size: 12px; }.portal-main { max-width: 1480px; margin: auto; padding: 52px max(4vw, 22px) 80px; }.portal-notice { max-width: 560px; }.portal-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 39px; }.portal-intro h1 { margin: 0 0 10px; font-family: var(--font-display); font-size: clamp(33px, 4vw, 53px); letter-spacing: -.055em; }.portal-intro > div > p:last-child { margin: 0; color: var(--muted); }.sync-badge { display: flex; align-items: center; gap: 11px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }.sync-badge .status-dot { flex: 0 0 auto; margin: 0; }.sync-badge div { display: grid; gap: 3px; }.sync-badge b { font-size: 12px; }.sync-badge small { color: var(--muted); font-size: 10px; }.portal-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 20px; align-items: start; }.vault-panel, .side-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; }.vault-panel { min-height: 610px; overflow: hidden; }.panel-heading { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 27px; border-bottom: 1px solid var(--line); }.panel-heading .eyebrow, .side-panel .eyebrow, .panel-mini-heading .eyebrow { margin-bottom: 7px; }.panel-heading h2 { margin: 0; font-family: var(--font-display); font-size: 21px; }.version-pill { padding: 7px 10px; color: var(--purple-light); background: rgba(143,99,255,.1); border: 1px solid rgba(143,99,255,.23); border-radius: 20px; font-size: 10px; }.empty-panel { min-height: 400px; display: grid; place-content: center; justify-items: center; padding: 30px; text-align: center; }.empty-panel > span { display: grid; width: 64px; height: 64px; margin-bottom: 20px; place-items: center; background: rgba(143,99,255,.08); border: 1px solid rgba(143,99,255,.22); border-radius: 20px; color: var(--purple-light); font-size: 26px; }.empty-panel h3 { margin: 0 0 8px; font-family: var(--font-display); }.empty-panel p { max-width: 390px; margin: 0; color: var(--muted); line-height: 1.6; }.empty-panel.compact { min-height: 160px; color: var(--muted); }.unlock-view { min-height: 510px; display: grid; place-content: center; justify-items: center; padding: 45px 25px; text-align: center; }.lock-visual { position: relative; width: 100px; height: 112px; display: grid; margin-bottom: 26px; place-items: center; background: linear-gradient(145deg, #8c62f5, #5533ba); border: 1px solid rgba(255,255,255,.23); border-radius: 28px 28px 38px 38px; box-shadow: 0 25px 60px rgba(87,49,186,.32); font-family: var(--font-display); font-size: 35px; font-weight: 800; }.lock-visual i { position: absolute; width: 130px; height: 130px; border: 1px solid rgba(143,99,255,.15); border-radius: 50%; }.unlock-view h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 25px; }.unlock-view > div:nth-child(2) p { max-width: 510px; margin: 0 auto; color: var(--muted); line-height: 1.6; }.unlock-form { width: min(500px, 100%); margin-top: 29px; text-align: left; }.unlock-form > label { display: block; margin-bottom: 8px; color: var(--muted-light); font-size: 12px; }.input-action { display: grid; grid-template-columns: 1fr auto; overflow: hidden; border: 1px solid var(--line-bright); border-radius: 11px; }.input-action:focus-within { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(143,99,255,.12); }.input-action input { min-width: 0; height: 50px; padding: 0 14px; color: white; background: #0b0e16; border: 0; outline: 0; }.input-action button { padding: 0 22px; color: white; background: var(--purple-deep); border: 0; cursor: pointer; font-weight: 700; }.form-error { min-height: 18px; margin: 8px 0 0; color: #ff95a6; font-size: 12px; text-align: center; }.vault-view { padding-bottom: 8px; }.vault-toolbar { display: flex; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); }.search-field { flex: 1; display: flex; align-items: center; padding: 0 13px; }.search-field span { color: var(--muted); }.search-field input { flex: 1; height: 39px; color: white; background: transparent; border: 0; outline: 0; padding: 0 10px; }.vault-summary { padding: 13px 23px 4px; color: var(--muted); font-size: 11px; }.credential-list { max-height: 620px; overflow: auto; padding: 8px 13px 13px; }.web-credential { display: grid; grid-template-columns: 42px minmax(130px, 1fr) minmax(90px, .55fr) auto; align-items: center; gap: 14px; padding: 14px 10px; border-bottom: 1px solid var(--line); }.web-credential:last-child { border-bottom: 0; }.web-credential-icon { display: grid; width: 39px; height: 39px; place-items: center; background: linear-gradient(145deg, #292e3d, #191d29); border: 1px solid var(--line-bright); border-radius: 11px; color: var(--purple-light); font-weight: 800; }.web-credential-identity { min-width: 0; display: grid; gap: 4px; }.web-credential-identity a, .web-credential-identity b { overflow: hidden; color: #e8eaf0; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }.web-credential-identity a:hover { color: var(--purple-light); }.web-credential-identity small { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }.credential-metadata { display: flex; flex-wrap: wrap; gap: 5px; }.credential-metadata span { max-width: 110px; overflow: hidden; padding: 5px 7px; color: #9da5b7; background: #191d28; border-radius: 5px; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }.web-password { display: flex; align-items: center; gap: 6px; }.web-password code { width: 115px; overflow: hidden; color: #b5bbca; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }.icon-button { padding: 6px 8px; color: var(--muted-light); background: transparent; border: 1px solid var(--line); border-radius: 7px; cursor: pointer; font-size: 9px; }.icon-button:hover { color: white; border-color: var(--line-bright); }.portal-sidebar { display: grid; gap: 16px; }.side-panel { padding: 22px; }.side-panel h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 19px; }.side-panel > p:not(.eyebrow):not(.muted) { color: var(--muted); font-size: 13px; line-height: 1.6; }.side-panel dl { margin: 0 0 17px; }.side-panel dl div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; }.side-panel dt { color: var(--muted); }.side-panel dd { margin: 0; text-align: right; }.text-button { padding: 0; color: var(--purple-light); background: 0; border: 0; cursor: pointer; font-size: 12px; font-weight: 700; }.panel-mini-heading { display: flex; align-items: center; justify-content: space-between; }.panel-mini-heading span { color: var(--muted); font-size: 11px; }.ticket-row { display: grid; grid-template-columns: 8px 1fr; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid var(--line); }.ticket-row b { display: block; max-width: 255px; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }.ticket-row small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; }.severity-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }.severity-low { background: var(--muted); }.severity-high { background: var(--amber); }.severity-critical { background: var(--red); box-shadow: 0 0 8px var(--red); }.muted { color: var(--muted); font-size: 12px; }
.modal { width: min(520px, calc(100% - 28px)); padding: 0; color: var(--text); background: transparent; border: 0; }.modal::backdrop { background: rgba(3,4,8,.8); backdrop-filter: blur(5px); }.modal-card { padding: 28px; background: var(--surface); border: 1px solid var(--line-bright); border-radius: 18px; box-shadow: var(--shadow); }.modal-heading { display: flex; align-items: flex-start; justify-content: space-between; }.modal-heading h2 { margin: 0 0 15px; font-family: var(--font-display); }.modal-close { width: 35px; height: 35px; color: var(--muted-light); background: #191d28; border: 1px solid var(--line); border-radius: 9px; cursor: pointer; font-size: 20px; }.modal-card hr { width: 100%; margin: 2px 0; border: 0; border-top: 1px solid var(--line); }

.legal-body { background: radial-gradient(circle at 20% 0%, rgba(143,99,255,.08), transparent 28%), var(--bg); }.simple-header { height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(6vw, 24px); border-bottom: 1px solid var(--line); }.simple-header > a:last-child { color: var(--purple-light); font-size: 13px; }.legal-page { max-width: 760px; margin: 0 auto; padding: 90px 25px 120px; }.legal-page h1 { margin: 0; font-family: var(--font-display); font-size: clamp(40px, 6vw, 65px); letter-spacing: -.06em; }.legal-updated { margin: 12px 0 55px; color: var(--muted); font-size: 12px; }.legal-page h2 { margin: 37px 0 9px; font-family: var(--font-display); font-size: 20px; }.legal-page p:not(.eyebrow) { color: #aab0bd; line-height: 1.8; }.legal-page a { color: var(--purple-light); text-decoration: underline; }

.admin-body { min-height: 100vh; background: #090b12; }
.admin-nav { position: fixed; inset: 0 auto 0 0; z-index: 20; width: 244px; display: flex; flex-direction: column; padding: 25px 17px; background: #0d1018; border-right: 1px solid var(--line); }
.admin-nav .brand { padding: 0 8px; }.admin-nav .brand small { display: block; margin-top: 1px; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.admin-nav nav { display: grid; gap: 6px; margin-top: 48px; }.admin-nav nav a { padding: 12px 13px; color: var(--muted); border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 600; }.admin-nav nav a:hover { color: white; background: rgba(255,255,255,.025); }.admin-nav nav a.active { color: white; background: rgba(143,99,255,.11); border-color: rgba(143,99,255,.2); }.admin-account { display: grid; gap: 4px; margin-top: auto; padding: 16px 12px 2px; border-top: 1px solid var(--line); }.admin-account span { overflow: hidden; font-size: 11px; text-overflow: ellipsis; }.admin-account small { color: var(--muted); font-size: 9px; }.admin-account a { margin-top: 8px; color: var(--purple-light); font-size: 11px; }
.admin-main { min-height: 100vh; margin-left: 244px; padding: 45px clamp(25px, 4vw, 62px) 80px; }.admin-page-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }.admin-page-heading h1 { margin: 0 0 7px; font-family: var(--font-display); font-size: clamp(34px, 4vw, 50px); letter-spacing: -.055em; }.admin-page-heading > div > p:last-child { margin: 0; color: var(--muted); }.admin-notice { max-width: 650px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 18px; }.stat-grid article { min-height: 148px; display: flex; flex-direction: column; padding: 22px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: 16px; }.stat-grid span { color: var(--muted-light); font-size: 12px; }.stat-grid b { margin: 13px 0 8px; font-family: var(--font-display); font-size: 35px; line-height: 1; }.stat-grid small { margin-top: auto; color: var(--muted); font-size: 10px; }.danger-number { color: var(--red); }
.admin-columns { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 18px; }.admin-panel { background: #11151f; border: 1px solid var(--line); border-radius: 16px; }.admin-panel-heading { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; border-bottom: 1px solid var(--line); }.admin-panel-heading h2, .report-actions h2, .release-form h2 { margin: 0 0 4px; font-family: var(--font-display); font-size: 17px; }.admin-panel-heading p { margin: 0; color: var(--muted); font-size: 10px; }.admin-panel-heading > a { color: var(--purple-light); font-size: 11px; font-weight: 700; }
.admin-table-wrap { overflow: auto; }.admin-table { width: 100%; border-collapse: collapse; white-space: nowrap; }.admin-table th { padding: 11px 15px; color: #777f91; background: #0d1119; border-bottom: 1px solid var(--line); text-align: left; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }.admin-table td { padding: 14px 15px; color: #abb1bf; border-bottom: 1px solid var(--line); font-size: 11px; }.admin-table tbody tr:last-child td { border-bottom: 0; }.admin-table tbody tr:hover td { background: rgba(255,255,255,.016); }.admin-table td a { color: #e3e6ed; }.admin-table td a:hover { color: var(--purple-light); }.admin-table td b { color: #eef0f5; }.table-empty { padding: 45px !important; color: var(--muted) !important; text-align: center; }.table-subtext { display: block; margin-top: 4px; color: var(--muted); }
.status-tag { display: inline-flex; padding: 5px 8px; color: #aeb5c3; background: #1a1f2a; border: 1px solid var(--line); border-radius: 20px; font-size: 9px; }.status-tag.severity-low { color: #a4aab8; }.status-tag.severity-normal { color: #9fcaff; background: rgba(78,151,235,.08); border-color: rgba(78,151,235,.2); }.status-tag.severity-high { color: #ffd39b; background: rgba(255,191,105,.08); border-color: rgba(255,191,105,.2); }.status-tag.severity-critical { color: #ff9faf; background: rgba(255,112,135,.08); border-color: rgba(255,112,135,.24); }
.recent-panel { padding-bottom: 8px; }.recent-user { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 13px 18px; border-bottom: 1px solid var(--line); }.recent-user:last-child { border-bottom: 0; }.recent-user > span { display: grid; width: 32px; height: 32px; place-items: center; background: rgba(143,99,255,.12); border-radius: 9px; color: var(--purple-light); font-size: 11px; font-weight: 800; }.recent-user div { min-width: 0; }.recent-user b, .recent-user small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.recent-user b { font-size: 11px; }.recent-user small { margin-top: 3px; color: var(--muted); font-size: 9px; }.recent-user em { color: var(--green); font-style: normal; font-size: 8px; }
.admin-filters { display: flex; align-items: flex-end; gap: 12px; margin: 0 0 18px; padding: 16px; background: #10141e; border: 1px solid var(--line); border-radius: 14px; }.admin-filters label { display: grid; gap: 7px; color: var(--muted); font-size: 10px; }.admin-filters input, .admin-filters select { width: min(300px, 55vw); height: 42px; padding: 0 12px; color: white; background: #090c13; border: 1px solid var(--line-bright); border-radius: 9px; outline: 0; }.admin-filters select { width: 150px; }.table-actions { display: flex; gap: 5px; }.table-actions button { padding: 5px 7px; color: #b8becc; background: #191e29; border: 1px solid var(--line); border-radius: 6px; cursor: pointer; font-size: 8px; }.table-actions button:hover { color: white; border-color: var(--line-bright); }
.report-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 18px; align-items: start; }.report-content { padding: 27px; }.report-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }.report-meta > span:not(.status-tag) { padding: 5px 8px; color: var(--muted); background: #191e28; border-radius: 20px; font-size: 9px; }.report-content h2 { margin: 27px 0 10px; color: #d9dce4; font-family: var(--font-display); font-size: 14px; }.report-text { color: #adb3c0; font-size: 13px; line-height: 1.75; }.report-logs { max-height: 480px; overflow: auto; margin: 0; padding: 17px; color: #afb6c8; background: #080b11; border: 1px solid var(--line); border-radius: 10px; font-family: ui-monospace, monospace; font-size: 10px; line-height: 1.65; white-space: pre-wrap; word-break: break-word; }.report-actions { padding: 23px; }.report-actions h2 { margin-bottom: 20px; }
.release-layout { display: grid; grid-template-columns: 320px minmax(0, 650px); gap: 18px; align-items: start; }.release-current, .release-form { padding: 25px; }.release-current > b { display: block; margin: 8px 0 30px; font-family: var(--font-display); font-size: 43px; letter-spacing: -.05em; }.release-current dl { margin: 0; }.release-current dl div { display: grid; gap: 6px; padding: 12px 0; border-top: 1px solid var(--line); }.release-current dt { color: var(--muted); font-size: 10px; }.release-current dd { margin: 0; overflow-wrap: anywhere; font-size: 12px; }.release-form h2 { margin-bottom: 22px; }.audit-details { display: block; max-width: 320px; overflow: hidden; text-overflow: ellipsis; }.admin-login-body::after { content: 'AUTHORIZED PERSONNEL ONLY'; position: fixed; right: 25px; bottom: 20px; color: #333846; font-size: 9px; letter-spacing: .16em; }

@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; text-align: center; }.hero-copy { margin: auto; }.hero-actions, .trust-row { justify-content: center; }.vault-visual { margin-top: -25px; }.app-window { width: min(680px, 88vw); }.security-flow { grid-template-columns: 1fr; gap: 15px; }.flow-line { display: none; }.security-flow article { min-height: auto; }.flow-icon { margin-bottom: 25px; }.feature-grid { grid-template-columns: repeat(2, 1fr); }.feature-large { grid-row: auto; min-height: 330px; }.generator-demo { margin-top: 40px; }.feature-wide { grid-column: span 2; }.portal-grid { grid-template-columns: 1fr; }.portal-sidebar { grid-template-columns: repeat(3, 1fr); }.download-mark { right: 3%; opacity: .65; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }.admin-columns { grid-template-columns: 1fr; }.recent-panel { display: none; }.report-layout { grid-template-columns: 1fr; }.release-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .site-header { height: 68px; }.nav-toggle { display: block; }.site-nav { position: absolute; top: 67px; left: 15px; right: 15px; display: none; align-items: stretch; padding: 17px; background: rgba(14,17,26,.98); border: 1px solid var(--line-bright); border-radius: 14px; box-shadow: var(--shadow); }.site-nav.is-open { display: grid; }.site-nav a { padding: 10px; }.hero { min-height: auto; grid-template-columns: minmax(0, 1fr); padding: 125px 20px 55px; }.hero h1 { font-size: clamp(47px, 15vw, 70px); }.hero-lede { font-size: 16px; }.hero-actions { display: grid; }.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }.trust-row span { padding: 0; border: 0; }.trust-row b { font-size: 15px; }.vault-visual { min-height: 390px; margin: 10px -70px 0; transform: scale(.75); }.app-window { min-width: 500px; }.chip-top { right: 9%; }.chip-bottom { left: 8%; }.section { padding: 75px 20px; }.section-heading { margin-bottom: 35px; }.feature-grid { grid-template-columns: 1fr; }.feature-wide { grid-column: auto; min-height: 290px; display: block; }.feature-wide > a { display: inline-block; margin-top: 26px; }.feature-card { min-height: 250px; }.feature-glyph { margin-bottom: 35px; }.download-section { min-height: 510px; margin: 0 10px 25px; padding: 55px 25px; }.download-mark { right: -70px; bottom: -70px; opacity: .3; }.site-footer { grid-template-columns: 1fr; }.site-footer nav { grid-column: 1; grid-row: auto; flex-wrap: wrap; }.portal-header { height: auto; min-height: 72px; }.portal-user > span { display: none; }.portal-main { padding-top: 35px; }.portal-intro { align-items: stretch; flex-direction: column; }.sync-badge { width: 100%; }.portal-sidebar { grid-template-columns: 1fr; }.vault-panel { min-height: 540px; }.panel-heading { padding: 20px; }.unlock-view { min-height: 450px; }.vault-toolbar { flex-direction: column; }.web-credential { grid-template-columns: 38px minmax(0, 1fr); gap: 10px; padding: 16px 8px; }.credential-metadata { grid-column: 2; }.web-password { grid-column: 1 / -1; justify-content: flex-end; padding-top: 5px; }.web-password code { margin-right: auto; }.form-grid { grid-template-columns: 1fr; }.auth-card { padding: 26px 22px; }.site-footer small { grid-column: 1; }
    .admin-nav { position: static; width: 100%; height: auto; padding: 15px 18px; border-right: 0; border-bottom: 1px solid var(--line); }.admin-nav .brand { padding: 0; }.admin-nav nav { display: flex; gap: 4px; margin-top: 15px; overflow-x: auto; }.admin-nav nav a { flex: 0 0 auto; padding: 9px 11px; font-size: 11px; }.admin-account { position: absolute; top: 17px; right: 18px; width: auto; padding: 0; border: 0; }.admin-account span, .admin-account small { display: none; }.admin-account a { margin: 0; }.admin-main { margin-left: 0; padding: 32px 17px 70px; }.admin-page-heading { align-items: stretch; flex-direction: column; }.admin-page-heading .button { align-self: flex-start; }.stat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }.stat-grid article { min-height: 130px; padding: 17px; }.stat-grid b { font-size: 29px; }.admin-filters { align-items: stretch; flex-direction: column; }.admin-filters input, .admin-filters select { width: 100%; }.release-current > b { font-size: 36px; }
    .hero-copy, .vault-visual { width: 100%; min-width: 0; }.hero h1 { font-size: clamp(42px, 12.5vw, 52px); overflow-wrap: break-word; }.hero-lede { width: 100%; }.trust-row { min-width: 0; }.trust-row span { min-width: 0; font-size: 9px; overflow-wrap: anywhere; }.vault-visual { margin-inline: 0; transform: scale(.68); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }.js-ready .reveal { opacity: 1; transform: none; transition: none; }.button, .feature-card { transition: none; }
}
