:root {
  --bg: #f8f9fc;
  --surface: #ffffff;
  --surface-2: #f2f3f8;
  --text: #18172a;
  --muted: #717087;
  --line: #e7e7ef;
  --primary: #6656e8;
  --primary-2: #5142d2;
  --primary-soft: #efedff;
  --green: #22aa78;
  --green-soft: #e7f8f1;
  --red: #e6536f;
  --red-soft: #fff0f3;
  --amber: #e8a224;
  --amber-soft: #fff7df;
  --cyan: #3ba7c9;
  --shadow-sm: 0 2px 8px rgba(26, 24, 53, .05);
  --shadow: 0 18px 50px rgba(34, 28, 87, .10);
  --radius: 16px;
  --sidebar: 260px;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #11111a;
  --surface: #1a1925;
  --surface-2: #222130;
  --text: #f4f3fb;
  --muted: #aaa8bb;
  --line: #302e40;
  --primary: #8879fa;
  --primary-2: #7566ed;
  --primary-soft: #282445;
  --green-soft: #17372e;
  --red-soft: #3d2028;
  --amber-soft: #3b321b;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .18);
  --shadow: 0 18px 50px rgba(0, 0, 0, .28);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Tahoma, "Segoe UI", Arial, sans-serif; font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; letter-spacing: -.4px; }
.brand-mark { display: inline-flex; width: 31px; height: 31px; color: var(--primary); }
.brand-name b { font-weight: 800; }.brand-name span { color: var(--primary); font-weight: 700; }
.btn { border: 0; border-radius: 10px; padding: 10px 17px; min-height: 43px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 8px 22px rgba(102, 86, 232, .24); }
.btn-primary:hover { box-shadow: 0 10px 28px rgba(102, 86, 232, .34); }
.btn-secondary, .btn-ghost { color: var(--text); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: #3f35a9; }
.btn-success { color: #fff; background: var(--green); }
.btn-danger { color: #fff; background: var(--red); }
.btn-lg { min-height: 51px; padding: 13px 23px; border-radius: 12px; }
.btn-sm { min-height: 36px; padding: 7px 13px; font-size: 13px; }
.btn-block { width: 100%; }
.icon-btn { width: 40px; height: 40px; padding: 0; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); display: inline-grid; place-items: center; }
.icon-btn.danger { color: var(--red); border: 0; background: transparent; }
.text-link { color: var(--muted); font-weight: 700; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: .2px; }
.eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px var(--primary-soft); }

/* Public pages */
.site-header { height: 76px; position: relative; z-index: 20; background: color-mix(in srgb, var(--bg) 84%, transparent); backdrop-filter: blur(16px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.desktop-nav { display: flex; gap: 34px; margin-right: 80px; }
.desktop-nav a { color: var(--muted); font-size: 14px; font-weight: 700; }
.desktop-nav a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle .moon { display: none; }[data-theme="dark"] .theme-toggle .moon { display: inline; }[data-theme="dark"] .theme-toggle .sun { display: none; }
.hero { min-height: 680px; padding: 78px 0 95px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, transparent, #000 20%, transparent 85%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(15px); pointer-events: none; }
.hero-glow-a { width: 480px; height: 480px; background: rgba(119, 97, 238, .13); left: -180px; top: -90px; }
.hero-glow-b { width: 390px; height: 390px; background: rgba(73, 205, 183, .11); right: 25%; bottom: -240px; }
.hero-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; direction: rtl; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 20px 0 20px; font-size: clamp(43px, 5vw, 67px); line-height: 1.13; letter-spacing: -2.6px; }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-copy > p { color: var(--muted); font-size: 18px; line-height: 1.9; max-width: 560px; margin: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 31px; }
.trust-row { display: flex; gap: 22px; margin-top: 27px; color: var(--muted); font-size: 12px; font-weight: 700; }
.trust-row b { color: var(--green); margin-left: 4px; }
.hero-product { position: relative; direction: ltr; transform: perspective(1300px) rotateY(3deg) rotateX(1deg); }
.browser-frame { border: 1px solid color-mix(in srgb, var(--line) 80%, transparent); padding: 9px; background: color-mix(in srgb, var(--surface) 83%, transparent); border-radius: 19px; box-shadow: 0 30px 80px rgba(45, 34, 105, .18); backdrop-filter: blur(14px); }
.browser-bar { height: 30px; display: flex; align-items: center; gap: 5px; padding: 0 7px; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #e96775; }.browser-bar i:nth-child(2){background:#efb849}.browser-bar i:nth-child(3){background:#45c58d}.browser-bar span { margin: auto; color: var(--muted); background: var(--surface-2); border-radius: 5px; font-size: 8px; padding: 3px 55px; }
.preview-shell { height: 363px; display: grid; grid-template-columns: 110px 1fr; overflow: hidden; border-radius: 11px; border: 1px solid var(--line); background: var(--bg); }
.preview-side { padding: 16px 10px; background: var(--surface); border-right: 1px solid var(--line); }
.preview-logo { font-size: 9px; font-weight: 800; padding: 0 5px 18px; }.preview-logo span { color: var(--primary); }
.preview-nav { color: var(--muted); font-size: 7px; padding: 7px; margin: 3px 0; border-radius: 5px; }.preview-nav i { font-style: normal; display: inline-block; width: 15px; }.preview-nav.active { background: var(--primary-soft); color: var(--primary); font-weight: 800; }
.preview-main { padding: 21px 20px; }
.preview-heading { display: flex; justify-content: space-between; align-items: center; }.preview-heading div { display: grid; }.preview-heading small { color: var(--muted); font-size: 7px; }.preview-heading strong { font-size: 14px; }.live-pill { color: var(--green); background: var(--green-soft); padding: 4px 8px; border-radius: 20px; font-size: 7px; font-weight: 800; }
.mini-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 15px 0; }.mini-cards > div { position: relative; display: grid; padding: 11px; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; }.mini-icon { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 6px; background: var(--primary-soft); color: var(--primary); font-size: 9px; }.mini-icon.red { color: var(--red); background: var(--red-soft); }.mini-icon.cyan { color: var(--cyan); background: #e9f8fc; }.mini-cards small { color: var(--muted); font-size: 6px; margin-top: 8px; }.mini-cards b { font-size: 12px; }.mini-cards em { position: absolute; right: 8px; bottom: 8px; font-style: normal; color: var(--green); font-size: 6px; }
.preview-chart { height: 178px; border: 1px solid var(--line); background: var(--surface); border-radius: 9px; padding: 12px; }.chart-title { display: flex; align-items: start; justify-content: space-between; }.chart-title > span:first-child { display: grid; }.chart-title b { font-size: 8px; }.chart-title small, .chart-key { color: var(--muted); font-size: 5px; }.chart-key i { display: inline-block; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; margin-left: 2px; }.chart-key i:nth-child(2) { background: var(--red); }.preview-chart svg { width: 100%; height: 125px; overflow: visible; }.grid-line { stroke: var(--line); stroke-width: .6; fill: none; }.area { fill: url(#area); }.line-main { stroke: var(--primary); stroke-width: 2; fill: none; }.line-block { stroke: var(--red); stroke-width: 1.5; stroke-dasharray: 4 3; fill: none; }
.float-card { position: absolute; display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 10px; padding: 10px 12px; }.float-card > span { width: 28px; height: 28px; border-radius: 7px; display: grid; place-items: center; }.float-card div { display: grid; }.float-card b { font-size: 8px; }.float-card small { color: var(--muted); font-size: 6px; }.float-card em { color: var(--muted); font-size: 6px; font-style: normal; }
.blocked-float { left: -36px; bottom: 43px; }.blocked-float > span { background: var(--red-soft); color: var(--red); }.speed-float { right: -22px; top: 70px; }.speed-float > span { background: var(--amber-soft); color: var(--amber); }
.logo-strip { border-block: 1px solid var(--line); background: var(--surface); padding: 24px 0; }.logo-strip .container { display: flex; align-items: center; justify-content: space-between; }.logo-strip span { color: var(--muted); font-size: 12px; }.logo-strip div div { display: flex; gap: 34px; color: #9b99aa; }.logo-strip b { font-size: 12px; letter-spacing: -.2px; }
.section { padding: 105px 0; }.section-heading { margin-bottom: 50px; }.section-heading.centered { text-align: center; }.section-heading h2 { font-size: clamp(31px,4vw,45px); line-height: 1.3; letter-spacing: -1.4px; margin: 13px 0 12px; }.section-heading p { color: var(--muted); max-width: 650px; margin: auto; font-size: 16px; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }.feature-card { min-height: 325px; position: relative; overflow: hidden; padding: 32px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }.feature-card h3 { margin: 17px 0 8px; font-size: 22px; }.feature-card > p { color: var(--muted); margin: 0; max-width: 470px; }.feature-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; background: var(--primary-soft); color: var(--primary); font-size: 18px; flex: 0 0 auto; }.feature-icon.mint { color: var(--green); background: var(--green-soft); }.feature-icon.amber { color: var(--amber); background: var(--amber-soft); }.feature-icon.violet { color: #aa8cff; background: rgba(255,255,255,.1); }.feature-icon.sky { color: var(--cyan); background: #e7f8fd; }.feature-icon.lavender { color: var(--primary); background: var(--primary-soft); }.feature-icon.rose { color: var(--red); background: var(--red-soft); }
.gradient-card { background: radial-gradient(circle at 15% 100%, rgba(111,85,235,.14), transparent 43%), var(--surface); }.block-demo { margin: 24px 0 -14px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); padding: 4px 16px; box-shadow: var(--shadow); }.block-demo > div { display: flex; align-items: center; gap: 10px; padding: 12px 0; }.block-demo > div + div { border-top: 1px solid var(--line); }.favicon { width: 28px; height: 28px; border-radius: 7px; background: #ffe9ed; color: #d44761; display: grid; place-items: center; font-weight: 800; }.favicon.blue { background: #e7f4ff; color: #3780c9; }.block-demo p { display: grid; margin: 0; flex: 1; }.block-demo b { font-size: 10px; }.block-demo small { font-size: 8px; color: var(--muted); }.block-demo strong { font-size: 8px; color: var(--red); background: var(--red-soft); padding: 4px 7px; border-radius: 10px; }.block-demo strong.allowed { color: var(--green); background: var(--green-soft); }
.shield-orbit { position: absolute; width: 160px; height: 160px; left: 20px; bottom: -32px; border-radius: 50%; border: 1px dashed color-mix(in srgb,var(--primary) 25%,var(--line)); display: grid; place-items: center; }.shield-orbit::before { content: ""; width: 105px; height: 105px; border: 1px solid var(--line); border-radius: 50%; }.shield-orbit span { position: absolute; width: 58px; height: 66px; display: grid; place-items: center; color: #fff; font-size: 24px; background: linear-gradient(160deg,var(--primary),var(--primary-2)); clip-path: polygon(50% 0,93% 15%,89% 70%,50% 100%,11% 70%,7% 15%); }.shield-orbit i { width: 12px; height: 12px; position: absolute; top: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }.shield-orbit i:last-child { top: auto; bottom: 29px; right: 0; background: var(--red); box-shadow: 0 0 0 5px var(--red-soft); }
.profiles-demo { position: absolute; inset-inline: 32px; bottom: 25px; display: grid; gap: 7px; }.profiles-demo span { padding: 9px 12px; background: var(--surface-2); border-radius: 8px; font-size: 10px; font-weight: 800; }.profiles-demo i { float: left; font-style: normal; color: var(--green); font-size: 8px; background: var(--green-soft); padding: 2px 7px; border-radius: 10px; }
.feature-wide { grid-column: 1 / -1; min-height: 300px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }.dark-card { color: #fff; background: radial-gradient(circle at 25% 100%, rgba(122,101,240,.36), transparent 40%), #1e1c32; border-color: #302c50; }.dark-card p { color: #b3afc9; }.privacy-ring { display: grid; place-items: center; }.privacy-ring::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid #4b456a; border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.018), 0 0 0 70px rgba(255,255,255,.012); }.privacy-ring span { position: relative; width: 130px; height: 130px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: linear-gradient(145deg,#7665ed,#5142c7); box-shadow: 0 20px 45px rgba(70,54,180,.4); }.privacy-ring b { font-size: 38px; line-height: 1; }.privacy-ring small { color: #d8d3ff; font-size: 11px; }
.how-section { background: var(--surface); }.steps { display: grid; grid-template-columns: 1fr 80px 1fr 80px 1fr; align-items: start; text-align: center; }.steps article { position: relative; padding: 0 20px; }.steps article > span { color: #d7d5e3; font-size: 11px; font-weight: 800; }.step-icon { width: 62px; height: 62px; margin: 12px auto 18px; border-radius: 17px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; font-size: 21px; box-shadow: 0 10px 25px rgba(102,86,232,.10); }.steps h3 { margin: 0 0 8px; font-size: 18px; }.steps p { color: var(--muted); margin: 0; font-size: 13px; }.step-line { margin-top: 53px; height: 1px; background: repeating-linear-gradient(90deg,var(--line) 0 6px,transparent 6px 12px); }
.setup-callout { max-width: 720px; margin: 55px auto 0; border: 1px solid var(--line); border-radius: 14px; background: var(--bg); padding: 15px 17px; display: flex; justify-content: space-between; align-items: center; }.setup-callout > div { display: flex; align-items: center; gap: 12px; }.setup-callout p { display: grid; margin: 0; }.setup-callout b { font-size: 12px; }.setup-callout small { font-family: monospace; color: var(--muted); direction: ltr; }.pulse-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px var(--green-soft); }
.privacy-section { color: #fff; background: #1d1b30; position: relative; overflow: hidden; }.privacy-section::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 75% 50%,rgba(110,89,234,.28),transparent 28%); }.privacy-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }.eyebrow.light { color: #a99dff; }.privacy-copy h2 { margin: 14px 0; font-size: 44px; letter-spacing: -1.5px; }.privacy-copy > p { color: #b7b3c9; font-size: 16px; }.privacy-copy ul { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 13px; }.privacy-copy li { color: #dedbea; }.privacy-copy li span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-left: 8px; color: #63ddb0; background: rgba(67,202,151,.13); border-radius: 50%; }.privacy-copy > a { color: #b8afff; font-weight: 800; }.privacy-visual { min-height: 350px; display: grid; place-items: center; }.lock-card { width: 210px; height: 210px; position: relative; display: grid; place-items: center; }.lock-top { position: absolute; top: 35px; width: 68px; height: 80px; border: 14px solid #9a8bfb; border-bottom: 0; border-radius: 40px 40px 0 0; }.lock-body { position: relative; z-index: 2; width: 112px; height: 92px; margin-top: 65px; display: grid; place-items: center; font-size: 20px; color: #c4bcff; border-radius: 22px; background: linear-gradient(145deg,#6958e4,#4939bb); box-shadow: 0 20px 50px rgba(74,51,187,.45); }.lock-card i { position: absolute; border: 1px solid rgba(163,150,242,.18); border-radius: 50%; }.ring-one { width: 260px; height: 260px; }.ring-two { width: 360px; height: 360px; }.lock-card em { position: absolute; bottom: -17px; font-size: 11px; color: #aaa4c4; font-style: normal; }
.cta-section { padding: 80px 0; }.cta-card { min-height: 230px; padding: 46px 55px; border-radius: 24px; color: #fff; display: flex; align-items: center; justify-content: space-between; background: radial-gradient(circle at 20% 130%,rgba(255,255,255,.19),transparent 33%), linear-gradient(135deg,#7867ef,#5544ce); box-shadow: 0 25px 55px rgba(86,68,200,.25); }.cta-card > div > span { color: #d8d2ff; font-size: 13px; font-weight: 700; }.cta-card h2 { margin: 8px 0 5px; font-size: 34px; }.cta-card p { margin: 0; color: #e5e1ff; }.site-footer { padding: 50px 0 24px; background: var(--surface); border-top: 1px solid var(--line); }.footer-grid { display: flex; justify-content: space-between; }.footer-grid p { color: var(--muted); font-size: 12px; }.footer-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-weight: 700; font-size: 12px; }.footer-bottom { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }.status-dot i { display: inline-block; width: 7px; height: 7px; background: var(--green); border-radius: 50%; margin-left: 5px; }

/* Auth, legal, errors */
.auth-page { min-height: 100vh; background: radial-gradient(circle at 50% 15%, rgba(111,91,238,.12),transparent 30%), var(--bg); }.auth-shell { width: min(440px, calc(100% - 34px)); margin: auto; min-height: 100vh; padding: 42px 0 28px; display: flex; flex-direction: column; align-items: center; }.auth-brand { margin-bottom: 28px; }.auth-card { width: 100%; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); }.auth-heading { text-align: center; }.auth-icon { width: 50px; height: 50px; margin: 0 auto 15px; display: grid; place-items: center; border-radius: 14px; color: var(--primary); background: var(--primary-soft); font-size: 21px; }.auth-heading h1 { margin: 0; font-size: 26px; }.auth-heading p { color: var(--muted); margin: 7px 0 24px; }.auth-form { display: grid; gap: 17px; }.auth-form label, .field-grid label, .ddns-form label, .danger-zone label { display: grid; gap: 7px; font-size: 12px; font-weight: 800; }.auth-form input, .field-grid input, .field-grid select, .ddns-form input, .danger-zone input, .rule-add input, .filter-bar input, .filter-bar select, .profile-dialog input { width: 100%; height: 45px; padding: 0 13px; border: 1px solid var(--line); border-radius: 9px; background: var(--bg); color: var(--text); outline: none; }.auth-form input:focus, .field-grid input:focus, .ddns-form input:focus, .rule-add input:focus, .filter-bar input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }.auth-form small { color: var(--muted); font-weight: 400; }.password-field { display: flex; position: relative; }.password-field button { position: absolute; left: 6px; top: 6px; width: 33px; height: 33px; border: 0; background: transparent; color: var(--muted); }.auth-switch { text-align: center; color: var(--muted); font-size: 12px; margin: 22px 0 0; }.auth-switch a, .auth-legal a { color: var(--primary); font-weight: 800; }.auth-legal { color: var(--muted); font-size: 10px; margin-top: 18px; }.alert { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border-radius: 10px; margin-bottom: 18px; font-size: 12px; font-weight: 700; }.alert > span { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; }.alert-error { color: #ae334b; background: var(--red-soft); border: 1px solid color-mix(in srgb,var(--red) 20%,transparent); }.alert-error > span { color: #fff; background: var(--red); }.alert-success { color: #167957; background: var(--green-soft); border: 1px solid color-mix(in srgb,var(--green) 20%,transparent); }.alert-success > span { color: #fff; background: var(--green); }.legal-shell { max-width: 780px; padding-block: 80px 100px; }.legal-shell h1 { font-size: 44px; margin: 12px 0; }.legal-shell .lead { font-size: 18px; color: var(--muted); }.legal-shell h2 { margin-top: 35px; font-size: 21px; }.legal-shell p { color: var(--muted); line-height: 2; }.error-shell { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; }.error-code { color: var(--primary); font-size: 90px; line-height: 1; font-weight: 900; opacity: .16; margin-top: 55px; }.error-shell h1 { margin: -14px 0 5px; }.error-shell p { color: var(--muted); margin: 0 0 25px; }

/* Application shell */
.app-page { background: var(--bg); overflow-x: hidden; }.app-shell { min-height: 100vh; }.app-sidebar { width: var(--sidebar); position: fixed; inset: 0 0 0 auto; z-index: 40; display: flex; flex-direction: column; background: var(--surface); border-left: 1px solid var(--line); }.sidebar-top { height: 73px; padding: 0 21px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }.app-brand { font-size: 18px; }.app-brand .brand-mark { width: 27px; height: 27px; }.sidebar-close { display: none; margin-right: auto; border: 0; background: transparent; color: var(--muted); font-size: 24px; }.profile-picker { position: relative; display: grid; margin: 17px 14px 8px; padding: 8px 11px; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; }.profile-picker > span { color: var(--muted); font-size: 9px; }.profile-picker select { border: 0; outline: 0; background: transparent; color: var(--text); padding: 1px 0; font-weight: 800; font-size: 12px; appearance: none; }.profile-status { position: absolute; left: 12px; bottom: 14px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }.profile-status.active { background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }.app-nav { flex: 1; overflow-y: auto; padding: 3px 10px 15px; }.app-nav p { margin: 16px 10px 5px; color: #aaa8b6; font-size: 9px; font-weight: 800; }.app-nav a { min-height: 38px; padding: 8px 11px; margin: 2px 0; border-radius: 8px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; font-weight: 700; }.app-nav a > span { width: 20px; text-align: center; font-size: 14px; }.app-nav a em { margin-right: auto; min-width: 19px; padding: 0 5px; text-align: center; border-radius: 8px; background: var(--surface-2); font-style: normal; font-size: 8px; }.app-nav a:hover { color: var(--text); background: var(--bg); }.app-nav a.active { color: var(--primary); background: var(--primary-soft); }.app-nav a.active > span { font-weight: 900; }.sidebar-footer { position: relative; padding: 11px; border-top: 1px solid var(--line); }.mini-user { width: 100%; border: 0; background: transparent; display: flex; align-items: center; gap: 9px; text-align: right; color: var(--text); }.mini-user > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); border-radius: 10px; font-weight: 800; }.mini-user p { flex: 1; display: grid; margin: 0; min-width: 0; }.mini-user b { font-size: 10px; }.mini-user small { overflow: hidden; text-overflow: ellipsis; color: var(--muted); font-size: 8px; direction: ltr; }.mini-user i { color: var(--muted); font-style: normal; }.user-menu { display: none; position: absolute; bottom: 67px; inset-inline: 12px; padding: 6px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); box-shadow: var(--shadow); }.user-menu.open { display: block; }.user-menu button { width: 100%; padding: 9px; display: flex; align-items: center; gap: 8px; border: 0; border-radius: 7px; background: transparent; color: var(--muted); font-size: 11px; text-align: right; }.user-menu button:hover { background: var(--bg); color: var(--text); }
.app-main { margin-right: var(--sidebar); min-height: 100vh; }.app-topbar { height: 73px; position: sticky; top: 0; z-index: 30; padding: 0 31px; display: flex; align-items: center; gap: 16px; background: color-mix(in srgb,var(--bg) 89%,transparent); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }.mobile-menu { display: none; border: 0; background: transparent; color: var(--text); font-size: 21px; }.app-title { display: grid; }.app-title small { color: var(--muted); font-size: 9px; }.app-title h1 { margin: 0; font-size: 17px; }.topbar-actions { margin-right: auto; display: flex; align-items: center; gap: 9px; }.protection-state { padding: 7px 11px; border-radius: 18px; color: var(--green); background: var(--green-soft); font-size: 10px; font-weight: 800; }.protection-state i { display: inline-block; width: 7px; height: 7px; margin-left: 5px; border-radius: 50%; background: var(--green); }.protection-state.paused { color: var(--red); background: var(--red-soft); }.protection-state.paused i { background: var(--red); }.app-content { max-width: 1320px; margin-inline: auto; padding: 31px; }.flash { position: relative; margin: 0 0 20px; }.flash button { margin-right: auto; border: 0; background: transparent; color: inherit; font-size: 18px; }
.welcome-row, .page-intro { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }.welcome-row h2, .page-intro h2 { margin: 0; font-size: 22px; }.welcome-row h2 span { font-size: 18px; }.welcome-row p, .page-intro p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 16px; }.stats-grid article { min-height: 115px; padding: 18px; display: flex; gap: 13px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow-sm); }.stat-icon { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); }.stat-icon.rose { color: var(--red); background: var(--red-soft); }.stat-icon.mint { color: var(--green); background: var(--green-soft); }.stat-icon.sky { color: var(--cyan); background: #e9f8fc; }.stats-grid article > div { display: grid; }.stats-grid small { color: var(--muted); font-size: 10px; }.stats-grid b { margin: 2px 0; font-size: 23px; line-height: 1.3; }.stats-grid em { color: var(--muted); font-size: 8px; font-style: normal; }.dashboard-grid { display: grid; grid-template-columns: 1.45fr .85fr; gap: 16px; }.panel-head { display: flex; align-items: center; justify-content: space-between; padding: 19px 20px; border-bottom: 1px solid var(--line); }.panel-head h3 { margin: 0; font-size: 14px; }.panel-head p { color: var(--muted); margin: 2px 0 0; font-size: 9px; }.panel-head a { color: var(--primary); font-size: 9px; font-weight: 800; }.activity-panel { min-height: 310px; }.bar-chart { height: 220px; padding: 28px 25px 17px; display: flex; align-items: stretch; justify-content: space-around; gap: 11px; border-radius: 0 0 14px 14px; background-image: repeating-linear-gradient(to bottom,transparent 0,transparent 48px,var(--line) 49px); }.bar-day { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; }.bar-stack { width: min(27px, 70%); flex: 1; position: relative; align-self: center; }.bar-stack i, .bar-stack b { position: absolute; left: 0; right: 0; bottom: 0; border-radius: 5px 5px 2px 2px; }.bar-stack i { background: color-mix(in srgb,var(--primary) 80%,#fff); min-height: 3px; }.bar-stack b { width: 38%; background: var(--red); min-height: 2px; z-index: 2; }.bar-day > span { color: var(--muted); font-size: 9px; }.empty-chart, .empty-state { min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.empty-chart > span, .empty-state > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; color: var(--primary); background: var(--primary-soft); font-size: 18px; }.empty-chart b, .empty-state h3 { margin: 10px 0 2px; font-size: 13px; }.empty-chart p, .empty-state p { color: var(--muted); margin: 0; font-size: 10px; }.empty-chart a { color: var(--primary); margin-top: 9px; font-size: 10px; font-weight: 800; }.top-domains ol { list-style: none; padding: 7px 20px 14px; margin: 0; }.top-domains li { display: flex; align-items: center; gap: 9px; padding: 9px 0; }.top-domains li > span { color: var(--muted); font-size: 9px; }.top-domains li p { width: 125px; display: grid; margin: 0; }.top-domains li b { overflow: hidden; text-overflow: ellipsis; font-size: 9px; }.top-domains li small { color: var(--muted); font-size: 7px; }.top-domains progress { flex: 1; height: 5px; border: 0; border-radius: 10px; overflow: hidden; accent-color: var(--red); }.empty-small { min-height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); text-align: center; }.empty-small > span { width: 35px; height: 35px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); }.empty-small p { font-size: 10px; }.protection-panel, .quick-panel { min-height: 240px; }.health-badge { color: var(--green); background: var(--green-soft); padding: 4px 8px; border-radius: 12px; font-size: 8px; font-weight: 800; }.health-badge i { display: inline-block; width: 6px; height: 6px; background: var(--green); border-radius: 50%; margin-left: 4px; }.check-list { padding: 7px 19px 13px; }.check-list > div { display: flex; align-items: center; gap: 10px; padding: 9px 0; }.check-list > div + div { border-top: 1px solid var(--line); }.check-list > div > span { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; }.check-ok { color: var(--green); background: var(--green-soft); }.check-warn { color: var(--amber); background: var(--amber-soft); }.check-list p { display: grid; flex: 1; margin: 0; }.check-list b { font-size: 10px; }.check-list small { color: var(--muted); font-size: 8px; }.check-list a { color: var(--primary); font-size: 8px; font-weight: 800; }.check-list code { direction: ltr; font-size: 8px; color: var(--muted); }.quick-panel { display: flex; flex-direction: column; justify-content: space-between; padding: 24px; background: radial-gradient(circle at 85% 0,rgba(113,94,237,.16),transparent 42%),var(--surface); }.quick-panel > div > span { width: 37px; height: 37px; border-radius: 10px; color: var(--amber); background: var(--amber-soft); display: grid; place-items: center; }.quick-panel h3 { margin: 14px 0 3px; }.quick-panel p { margin: 0; color: var(--muted); font-size: 10px; }.quick-panel form { display: flex; gap: 8px; }.quick-panel input { min-width: 0; flex: 1; height: 41px; border-radius: 8px; border: 1px solid var(--line); padding: 0 10px; background: var(--bg); color: var(--text); }

/* Settings and lists */
.settings-form { display: grid; gap: 16px; }.settings-card { overflow: hidden; }.settings-card-head { display: flex; gap: 13px; align-items: center; padding: 20px; border-bottom: 1px solid var(--line); }.settings-card-head h3 { margin: 0; font-size: 14px; }.settings-card-head p { margin: 2px 0 0; color: var(--muted); font-size: 9px; }.setting-row { min-height: 67px; margin: 0 20px; display: flex; align-items: center; gap: 20px; cursor: pointer; }.setting-row + .setting-row { border-top: 1px solid var(--line); }.setting-copy { display: grid; flex: 1; }.setting-copy b { font-size: 11px; }.setting-copy b em { color: var(--primary); background: var(--primary-soft); margin-right: 5px; padding: 2px 6px; border-radius: 7px; font-size: 7px; font-style: normal; }.setting-copy small { color: var(--muted); font-size: 9px; }.toggle { position: relative; width: 39px; height: 22px; flex: 0 0 auto; }.toggle input { position: absolute; opacity: 0; pointer-events: none; }.toggle i { position: absolute; inset: 0; border-radius: 20px; background: #cccad7; transition: .2s; }.toggle i::after { content: ""; position: absolute; width: 16px; height: 16px; top: 3px; right: 3px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: .2s; }.toggle input:checked + i { background: var(--primary); }.toggle input:checked + i::after { transform: translateX(-17px); }.toggle input:focus-visible + i { outline: 3px solid var(--primary-soft); }.form-save { position: sticky; bottom: 14px; z-index: 5; display: flex; justify-content: flex-start; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: color-mix(in srgb,var(--surface) 90%,transparent); backdrop-filter: blur(12px); box-shadow: var(--shadow); }.list-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; padding: 8px 20px 19px; }.list-option { min-height: 74px; display: flex; align-items: center; gap: 11px; padding: 10px 9px; border-bottom: 1px solid var(--line); cursor: pointer; }.list-option:nth-child(odd) { margin-left: 12px; }.list-option input { position: absolute; opacity: 0; }.list-check { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; color: transparent; font-size: 10px; }.list-option input:checked + .list-check { color: #fff; border-color: var(--primary); background: var(--primary); }.list-option p { display: grid; margin: 0; }.list-option b { font-size: 10px; }.list-option b em { color: var(--muted); background: var(--surface-2); padding: 2px 5px; border-radius: 5px; font-size: 7px; font-style: normal; }.list-option small { color: var(--muted); font-size: 8px; }.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 20px; }.category-option { cursor: pointer; }.category-option input { position: absolute; opacity: 0; }.category-option span { min-height: 88px; display: grid; place-content: center; gap: 4px; text-align: center; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); }.category-option b { font-size: 15px; color: var(--muted); }.category-option small { font-size: 8px; }.category-option input:checked + span { color: var(--primary); border-color: var(--primary); background: var(--primary-soft); box-shadow: inset 0 0 0 1px var(--primary); }.category-option input:checked + span b { color: var(--primary); }
.rules-panel { overflow: hidden; }.rule-add { padding: 20px; display: flex; align-items: end; gap: 12px; border-bottom: 1px solid var(--line); }.rule-add > div { flex: 1; }.rule-add label { display: block; font-size: 10px; font-weight: 800; margin-bottom: 6px; }.rule-add small { display: block; color: var(--muted); font-size: 8px; margin-top: 5px; }.rules-head { padding: 13px 20px; display: flex; justify-content: space-between; background: var(--bg); border-bottom: 1px solid var(--line); }.rules-head span, .rules-head p { margin: 0; color: var(--muted); font-size: 9px; }.rules-list { padding: 0 20px; }.rule-row { min-height: 66px; display: flex; align-items: center; gap: 11px; }.rule-row + .rule-row { border-top: 1px solid var(--line); }.rule-symbol { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px; }.rule-symbol.allow { color: var(--green); background: var(--green-soft); }.rule-symbol.deny { color: var(--red); background: var(--red-soft); }.rule-row p { display: grid; flex: 1; margin: 0; }.rule-row b { font-size: 10px; }.rule-row small { color: var(--muted); font-size: 8px; }
.log-panel { overflow: hidden; }.filter-bar { display: flex; gap: 9px; padding: 15px; border-bottom: 1px solid var(--line); }.filter-bar input { flex: 1; max-width: 380px; }.filter-bar select { width: 145px; }.table-wrap { overflow-x: auto; }.table-wrap table { width: 100%; border-collapse: collapse; white-space: nowrap; }.table-wrap th { padding: 11px 15px; color: var(--muted); background: var(--bg); font-size: 8px; text-align: right; }.table-wrap td { padding: 13px 15px; border-top: 1px solid var(--line); font-size: 9px; color: var(--muted); }.table-wrap td b { color: var(--text); }.table-wrap code { color: var(--primary); background: var(--primary-soft); padding: 2px 5px; border-radius: 5px; }.status-tag { display: inline-flex; padding: 3px 7px; border-radius: 9px; font-size: 8px; font-weight: 800; }.status-tag.allowed { color: var(--green); background: var(--green-soft); }.status-tag.blocked { color: var(--red); background: var(--red-soft); }.status-tag.error { color: var(--amber); background: var(--amber-soft); }

/* Setup */
.config-id-banner { display: flex; align-items: center; gap: 12px; padding: 15px 17px; margin-bottom: 15px; border: 1px solid color-mix(in srgb,var(--primary) 25%,var(--line)); border-radius: 13px; background: var(--primary-soft); }.config-id-banner > div { flex: 1; display: grid; }.config-id-banner small { color: var(--muted); font-size: 8px; }.config-id-banner code { color: var(--primary); font-size: 14px; font-weight: 800; direction: ltr; justify-self: start; }.setup-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }.setup-card { padding: 20px; }.setup-card.featured { border-color: color-mix(in srgb,var(--primary) 35%,var(--line)); box-shadow: 0 8px 25px rgba(102,86,232,.09); }.setup-card-head { display: flex; align-items: center; gap: 11px; }.setup-card-head > div { flex: 1; }.setup-card-head h3 { margin: 0; font-size: 14px; }.setup-card-head p { margin: 1px 0 0; color: var(--muted); font-size: 8px; }.setup-card-head > em { color: var(--green); background: var(--green-soft); padding: 3px 7px; border-radius: 8px; font-size: 7px; font-style: normal; font-weight: 800; }.setup-card-head > em.recommended { color: var(--primary); background: var(--primary-soft); }.setup-method { width: 35px; height: 35px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); border-radius: 10px; font-weight: 900; }.setup-method.violet { color: #fff; background: var(--primary); }.detected-ip { margin: 20px 0 12px; padding: 13px; display: flex; align-items: center; gap: 10px; background: var(--bg); border-radius: 9px; }.detected-ip small { color: var(--muted); font-size: 8px; }.detected-ip strong { flex: 1; font-family: monospace; font-size: 14px; }.hint { color: var(--muted); font-size: 9px; min-height: 44px; }.ddns-form { display: grid; gap: 14px; margin-top: 20px; }.ddns-form small { color: var(--muted); font-size: 8px; font-weight: 400; }.linked-networks, .noip-guide, .encrypted-setup { margin-top: 15px; }.link-list { padding: 0 20px; }.link-list > div { min-height: 67px; display: flex; align-items: center; gap: 11px; }.link-list > div + div { border-top: 1px solid var(--line); }.link-icon { width: 31px; height: 31px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); border-radius: 8px; }.link-list p { flex: 1; display: grid; margin: 0; }.link-list b { font-size: 10px; }.link-list small { color: var(--muted); font-size: 8px; }.noip-guide ol { list-style: none; margin: 0; padding: 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }.noip-guide li { display: flex; gap: 9px; }.noip-guide li > span { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); border-radius: 8px; font-size: 10px; font-weight: 900; }.noip-guide li p { display: grid; margin: 0; }.noip-guide li b { font-size: 10px; }.noip-guide li small { color: var(--muted); font-size: 8px; }.encrypted-setup { padding: 20px; display: grid; grid-template-columns: .8fr 1.2fr 1.2fr; gap: 15px; align-items: center; }.encrypted-setup > div:first-child { display: flex; align-items: center; gap: 10px; }.encrypted-setup p { display: grid; margin: 0; }.encrypted-setup p b { font-size: 11px; }.encrypted-setup p small { color: var(--muted); font-size: 8px; }.endpoint { min-width: 0; padding: 10px; display: grid; grid-template-columns: 1fr auto; background: var(--bg); border-radius: 8px; }.endpoint small { grid-column: 1/-1; color: var(--muted); font-size: 7px; }.endpoint code { overflow: hidden; text-overflow: ellipsis; font-size: 8px; white-space: nowrap; }.endpoint button { border: 0; background: transparent; color: var(--primary); font-size: 8px; font-weight: 800; }
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; padding: 20px; }.danger-zone { margin-top: 24px; border-color: color-mix(in srgb,var(--red) 32%,var(--line)); }.danger-zone form { padding: 20px; display: flex; align-items: end; gap: 12px; }.danger-zone form label { flex: 1; }.danger-zone .settings-card-head { border-color: color-mix(in srgb,var(--red) 20%,var(--line)); }.new-profile-fab { position: fixed; z-index: 45; left: 22px; bottom: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; color: #fff; background: var(--primary); box-shadow: 0 10px 26px rgba(102,86,232,.35); font-size: 22px; }.profile-dialog { width: min(400px,calc(100% - 30px)); padding: 26px; border: 1px solid var(--line); border-radius: 17px; color: var(--text); background: var(--surface); box-shadow: var(--shadow); }.profile-dialog::backdrop { background: rgba(18,16,34,.55); backdrop-filter: blur(3px); }.profile-dialog > form[method="dialog"] { position: absolute; left: 14px; top: 12px; }.profile-dialog > form[method="dialog"] button { border: 0; background: transparent; color: var(--muted); font-size: 20px; }.profile-dialog h2 { margin: 0; }.profile-dialog > p { color: var(--muted); font-size: 11px; }.profile-dialog > form:last-child { display: grid; gap: 15px; }.profile-dialog label { display: grid; gap: 6px; font-size: 10px; font-weight: 800; }.sidebar-backdrop { display: none; }

/* Height utilities for CSP-safe charts */
.h-0{height:0}.h-5{height:5%}.h-10{height:10%}.h-15{height:15%}.h-20{height:20%}.h-25{height:25%}.h-30{height:30%}.h-35{height:35%}.h-40{height:40%}.h-45{height:45%}.h-50{height:50%}.h-55{height:55%}.h-60{height:60%}.h-65{height:65%}.h-70{height:70%}.h-75{height:75%}.h-80{height:80%}.h-85{height:85%}.h-90{height:90%}.h-95{height:95%}.h-100{height:100%}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }.hero h1 { font-size: 48px; }.float-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }.category-grid { grid-template-columns: repeat(3,1fr); }.encrypted-setup { grid-template-columns: 1fr 1fr; }.encrypted-setup > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 850px) {
  .desktop-nav { display: none; }.hero { padding-top: 55px; }.hero-grid { grid-template-columns: 1fr; text-align: center; }.hero-copy > p { margin-inline: auto; }.hero-actions,.trust-row { justify-content: center; }.hero-product { width: min(620px,95%); margin: 10px auto 0; transform: none; }.logo-strip .container { flex-direction: column; gap: 16px; }.feature-grid { grid-template-columns: 1fr; }.feature-wide { grid-column: auto; }.steps { grid-template-columns: 1fr; gap: 35px; }.step-line { display: none; }.privacy-grid { grid-template-columns: 1fr; gap: 20px; }.privacy-copy { text-align: center; }.privacy-copy ul { display: inline-grid; text-align: right; }.privacy-visual { min-height: 290px; }.cta-card { text-align: center; flex-direction: column; gap: 27px; }
  .app-sidebar { transform: translateX(105%); transition: transform .25s ease; box-shadow: var(--shadow); }.sidebar-open .app-sidebar { transform: translateX(0); }.sidebar-open .sidebar-backdrop { display: block; position: fixed; inset: 0; z-index: 35; background: rgba(10,9,20,.48); }.sidebar-close { display: block; }.app-main { margin-right: 0; }.mobile-menu { display: block; }.app-topbar { padding: 0 18px; }.app-content { padding: 22px 18px; }.new-profile-fab { bottom: 17px; left: 17px; }.setup-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px,1160px); }.site-header { height: 67px; }.brand { font-size: 17px; }.brand-mark { width: 27px; height: 27px; }.login-link { display: none; }.hero { padding: 38px 0 66px; }.hero h1 { font-size: 39px; letter-spacing: -1.7px; }.hero-copy > p { font-size: 15px; }.hero-actions { flex-direction: column; }.trust-row { flex-wrap: wrap; gap: 7px 14px; }.hero-product { width: 118%; margin-right: -9%; }.preview-shell { height: 300px; grid-template-columns: 82px 1fr; }.preview-main { padding: 14px 11px; }.preview-chart { height: 135px; }.preview-chart svg { height: 90px; }.browser-bar span { padding-inline: 30px; }.logo-strip div div { flex-wrap: wrap; justify-content: center; gap: 14px 25px; }.section { padding: 75px 0; }.section-heading h2 { font-size: 31px; }.feature-card { padding: 24px; min-height: 315px; }.feature-wide { grid-template-columns: 1fr; min-height: 420px; }.privacy-ring { margin-top: 35px; }.setup-callout { align-items: stretch; flex-direction: column; gap: 13px; }.privacy-copy h2 { font-size: 34px; }.cta-card { padding: 38px 22px; }.cta-card h2 { font-size: 27px; }.footer-grid { flex-direction: column; gap: 20px; }.footer-bottom { flex-direction: column; gap: 8px; }
  .app-title small { display: none; }.protection-state { padding-inline: 8px; }.topbar-actions .icon-btn { display: none; }.app-content { padding-inline: 12px; }.welcome-row,.page-intro { align-items: flex-start; gap: 14px; }.welcome-row { flex-direction: column; }.stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }.stats-grid article { min-height: 105px; padding: 13px; gap: 8px; }.stats-grid b { font-size: 19px; }.stat-icon { width: 30px; height: 30px; }.dashboard-grid { grid-template-columns: 1fr; }.list-grid { grid-template-columns: 1fr; }.list-option:nth-child(odd) { margin-left: 0; }.category-grid { grid-template-columns: repeat(2,1fr); }.setting-row { margin-inline: 14px; }.setting-copy small { max-width: 235px; }.rule-add { align-items: stretch; flex-direction: column; }.filter-bar { display: grid; grid-template-columns: 1fr 110px; }.filter-bar input { max-width: none; }.filter-bar select { width: 100%; }.filter-bar .btn { grid-column: 1/-1; }.noip-guide ol { grid-template-columns: 1fr; }.encrypted-setup { grid-template-columns: 1fr; }.encrypted-setup > div:first-child { grid-column: auto; }.field-grid { grid-template-columns: 1fr; }.danger-zone form { align-items: stretch; flex-direction: column; }.link-list { padding-inline: 12px; }.link-list > div { flex-wrap: wrap; padding-block: 10px; }.link-list p { min-width: calc(100% - 45px); }.auth-card { padding: 24px 20px; }.legal-shell h1 { font-size: 34px; }
}
