@charset "UTF-8";

:root {
  --ink: #102f4a;
  --ink-soft: #31536b;
  --muted: #6a8498;
  --line: rgba(31, 83, 112, .14);
  --line-strong: rgba(31, 83, 112, .25);
  --blue: #1677bd;
  --blue-dark: #07528e;
  --cyan: #2dc1d0;
  --green: #72bd57;
  --coral: #f08b70;
  --gold: #eabf58;
  --purple: #9e86d5;
  --glass: rgba(255, 255, 255, .72);
  --glass-strong: rgba(255, 255, 255, .9);
  --shadow: 0 22px 55px rgba(4, 31, 53, .17), 0 3px 10px rgba(4, 31, 53, .08);
  --shadow-soft: 0 12px 28px rgba(7, 45, 71, .11), 0 2px 5px rgba(7, 45, 71, .06);
  --radius: 16px;
  --taskbar-height: 64px;
  --body-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --heading-font: "Segoe UI Semibold", "Segoe UI", Tahoma, sans-serif;
  color-scheme: light;
}

[data-theme="dark"] {
  --ink: #e5f3fb;
  --ink-soft: #c5dbe8;
  --muted: #9bb7c8;
  --line: rgba(200, 232, 244, .17);
  --line-strong: rgba(200, 232, 244, .3);
  --glass: rgba(12, 42, 61, .72);
  --glass-strong: rgba(17, 52, 72, .92);
  --shadow: 0 22px 55px rgba(0, 8, 18, .35), 0 3px 10px rgba(0, 8, 18, .2);
  --shadow-soft: 0 12px 28px rgba(0, 8, 18, .24), 0 2px 5px rgba(0, 8, 18, .16);
  color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #071c31;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(45, 193, 208, .28); }

.desktop {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
.wallpaper {
  position: fixed;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 14% 12%, rgba(67, 202, 210, .2), transparent 32%),
    radial-gradient(ellipse at 88% 18%, rgba(80, 127, 225, .24), transparent 34%),
    linear-gradient(135deg, #081b35 0%, #0a2e50 47%, #0b5772 100%);
}
.wallpaper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .27;
  background-image:
    linear-gradient(110deg, transparent 0 39%, rgba(128, 226, 231, .11) 39.1% 39.4%, transparent 39.5% 100%),
    linear-gradient(65deg, transparent 0 54%, rgba(181, 238, 239, .1) 54.1% 54.3%, transparent 54.4% 100%),
    radial-gradient(circle at 62% 72%, rgba(93, 216, 216, .13), transparent 20%);
  transform: scale(1.2) rotate(-4deg);
}
.wallpaper::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 55%;
  left: -9%;
  bottom: -18%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(9, 55, 81, .12), rgba(1, 15, 30, .42));
  filter: blur(2px);
}
.wallpaper-orb { position: absolute; display: block; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 32vw; height: 32vw; right: -11vw; top: 12vh; background: radial-gradient(circle at 30% 30%, rgba(111, 233, 226, .26), rgba(54, 151, 199, .1) 42%, transparent 70%); }
.orb-two { width: 44vw; height: 44vw; left: 24vw; bottom: -28vw; background: radial-gradient(circle at 50% 30%, rgba(80, 145, 241, .18), transparent 66%); }
.wallpaper-grid {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 77%);
}

.workspace {
  position: relative;
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  padding: 24px 0 104px;
}
.topbar {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 54px;
  margin-bottom: 23px;
  color: #e8f8fd;
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 190px; }
.brand-mark { position: relative; display: grid; grid-template-columns: repeat(2, 11px); grid-template-rows: repeat(2, 11px); gap: 3px; width: 25px; height: 25px; transform: rotate(45deg); }
.brand-mark span { display: block; border-radius: 3px; background: linear-gradient(135deg, #b4f2ed, #49c6d5); box-shadow: inset 0 1px 2px rgba(255,255,255,.6); }
.brand-mark span:nth-child(2) { background: linear-gradient(135deg, #8dd6ff, #478fe4); }
.brand-mark span:nth-child(3) { background: linear-gradient(135deg, #5fd5ba, #48a9a9); }
.brand-mark span:nth-child(4) { background: linear-gradient(135deg, #c1f0a1, #69b865); }
.brand-mark.small { width: 19px; height: 19px; grid-template-columns: repeat(2, 8px); grid-template-rows: repeat(2, 8px); gap: 2px; }
.brand-copy { display: flex; align-items: baseline; gap: 6px; font-size: 20px; letter-spacing: -.5px; }
.brand-copy strong { font-weight: 700; }
.brand-copy em { font-style: normal; font-weight: 300; opacity: .72; }
.topbar-status { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.status-pill, .privacy-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(235,250,255,.77); background: rgba(255,255,255,.07); font-size: 11px; letter-spacing: .1px; }
.privacy-pill { color: #b9e6d2; }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #83d76c; box-shadow: 0 0 0 3px rgba(131,215,108,.12), 0 0 10px rgba(131,215,108,.7); }
.topbar-actions { display: flex; gap: 7px; }
.icon-button, .view-toggle {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9px;
  color: #e7faff;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px rgba(255,255,255,.12);
  transition: background .18s, transform .18s;
}
.icon-button:hover, .view-toggle:hover { background: rgba(255,255,255,.17); transform: translateY(-1px); }
.icon-button svg, .view-toggle svg { width: 16px; height: 16px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 35px;
  min-height: 395px;
  padding: 55px 64px 54px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 25px;
  color: #effcff;
  background:
    radial-gradient(circle at 78% 24%, rgba(68,208,207,.23), transparent 28%),
    radial-gradient(circle at 20% 0%, rgba(77,162,229,.2), transparent 35%),
    linear-gradient(125deg, rgba(18,91,141,.96), rgba(16,63,110,.94) 53%, rgba(9,80,102,.92));
  box-shadow: 0 27px 75px rgba(0, 18, 38, .25), inset 0 1px 0 rgba(255,255,255,.26);
}
.hero::before {
  content: "";
  position: absolute;
  width: 730px;
  height: 360px;
  right: -190px;
  top: -170px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.025), 0 0 0 58px rgba(255,255,255,.018), 0 0 0 90px rgba(255,255,255,.012);
  transform: rotate(-18deg);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.13), transparent 26% 65%, rgba(255,255,255,.04));
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: #b7e9ec; font-size: 11px; font-weight: 600; letter-spacing: 1.7px; text-transform: uppercase; }
.eyebrow-spark { display: inline-grid; place-items: center; width: 23px; height: 23px; border: 1px solid rgba(194,247,245,.35); border-radius: 8px; color: #d3fffb; background: rgba(152,237,237,.1); }
.eyebrow-spark svg { width: 13px; height: 13px; }
.hero h1 { max-width: 620px; margin: 0; font-family: var(--heading-font); font-size: clamp(38px, 4.2vw, 62px); font-weight: 300; line-height: 1.04; letter-spacing: -2.3px; }
.hero h1 span { color: #9ce8e4; font-weight: 600; }
.hero-copy > p { max-width: 520px; margin: 21px 0 27px; color: rgba(231,251,255,.74); font-size: 15px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 40px; padding: 0 17px; border: 1px solid transparent; border-radius: 9px; color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: .1px; transition: transform .18s, box-shadow .18s, background .18s, border-color .18s; }
.button svg { width: 15px; height: 15px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #07385a; border-color: rgba(255,255,255,.6); background: linear-gradient(180deg, #efffff, #a9e4ea); box-shadow: 0 7px 17px rgba(3, 31, 57, .2), inset 0 1px 0 #fff; }
.button-primary:hover { box-shadow: 0 10px 23px rgba(3,31,57,.28), inset 0 1px 0 #fff; }
.button-glass { color: #effeff; border-color: rgba(203,249,251,.25); background: rgba(255,255,255,.1); box-shadow: inset 0 1px rgba(255,255,255,.12); }
.button-glass:hover { background: rgba(255,255,255,.17); }
.button-secondary { color: var(--blue-dark); border-color: var(--line-strong); background: rgba(255,255,255,.74); box-shadow: var(--shadow-soft); }
.button-secondary:hover { background: #fff; }
.button-quiet { min-height: 34px; padding: 0 12px; color: var(--blue-dark); border-color: var(--line); background: rgba(255,255,255,.5); }
.button-danger { color: #a13d4d; border-color: rgba(191,82,101,.25); background: rgba(255,239,241,.72); }
.button[disabled] { cursor: not-allowed; opacity: .5; transform: none; }
.hero-proof { display: flex; align-items: center; gap: 11px; margin-top: 31px; }
.proof-avatars { display: flex; padding-left: 7px; }
.proof-avatars span { display: grid; place-items: center; width: 25px; height: 25px; margin-left: -7px; border: 2px solid #1a6a9a; border-radius: 50%; color: #125a83; background: #c8f0dc; font-size: 11px; font-weight: 700; }
.proof-avatars span:nth-child(2) { color: #845325; background: #ffe2a1; }
.proof-avatars span:nth-child(3) { color: #3f6c54; background: #c5e8b2; }
.proof-avatars span:nth-child(4) { color: #fff; background: #ec9b87; }
.hero-proof strong, .hero-proof small { display: block; }
.hero-proof strong { color: #e6fbff; font-size: 11px; font-weight: 600; }
.hero-proof small { margin-top: 3px; color: rgba(211,243,247,.56); font-size: 10px; }
.hero-visual { min-height: 285px; }
.visual-glow { position: absolute; width: 280px; height: 280px; right: 52px; top: 8px; border-radius: 50%; background: radial-gradient(circle, rgba(109,234,225,.22), transparent 68%); filter: blur(2px); }
.floating-window { position: absolute; border: 1px solid rgba(255,255,255,.3); border-radius: 13px; background: linear-gradient(145deg, rgba(246,255,255,.88), rgba(180,227,232,.68)); box-shadow: 12px 18px 30px rgba(2,31,49,.22), inset 0 1px rgba(255,255,255,.75); color: #174763; backdrop-filter: blur(11px); }
.float-back { width: 220px; right: 0; top: 25px; padding: 12px; transform: rotate(4deg); opacity: .78; }
.float-main { width: 300px; left: 19px; top: 60px; padding: 13px; transform: rotate(-4deg); z-index: 2; }
.float-bottom { left: 66px; bottom: 3px; display: flex; align-items: center; gap: 9px; width: 226px; padding: 10px 13px; transform: rotate(3deg); z-index: 3; }
.float-title { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; font-size: 10px; font-weight: 700; color: #1b4f6a; }
.float-dot { width: 7px; height: 7px; border-radius: 50%; background: #e79b69; box-shadow: 9px 0 #d7c163, 18px 0 #79bf7a; margin-right: 18px; }
.blue-dot { background: #6bbad1; }
.float-close { margin-left: auto; color: #7998a8; font-size: 16px; font-weight: 400; }
.float-row { display: flex; align-items: center; gap: 7px; margin: 7px 0; padding: 7px; border: 1px solid rgba(43,112,137,.1); border-radius: 7px; background: rgba(255,255,255,.28); font-size: 9px; }
.float-row b { margin-left: auto; color: #69a7b3; font-size: 12px; }
.float-mini { display: inline-grid; place-items: center; flex: 0 0 auto; width: 23px; height: 23px; border-radius: 7px; }
.float-mini svg { width: 13px; height: 13px; }
.float-mini.coral { color: #ba5e4c; background: #ffd5c9; }
.float-mini.blue { color: #3079a5; background: #cae9fa; }
.float-mini.green { color: #3b875c; background: #cdeecf; }
.drop-preview { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 130px; border: 1px dashed rgba(40,126,155,.42); border-radius: 9px; color: #428296; background: rgba(255,255,255,.3); }
.drop-preview svg { width: 24px; height: 24px; margin-bottom: 7px; }
.drop-preview b { font-size: 11px; }
.drop-preview small { margin-top: 4px; color: #7b9ba6; font-size: 8px; }
.float-progress { height: 5px; margin-top: 13px; overflow: hidden; border-radius: 99px; background: rgba(44,121,151,.14); }
.float-progress span { display: block; width: 71%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #52c3bd, #77c7a0); }
.float-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; color: #648b97; font-size: 8px; }
.float-footer span { display: inline-flex; align-items: center; gap: 4px; }
.float-footer i { width: 5px; height: 5px; border-radius: 50%; background: #71bd65; }
.float-footer strong { color: #4a9e81; font-size: 12px; }
.float-bottom b, .float-bottom small { display: block; }
.float-bottom b { font-size: 9px; }
.float-bottom small { margin-top: 3px; color: #70939d; font-size: 8px; }

.search-panel { position: relative; z-index: 5; margin: 25px 0 33px; }
.search-box { position: relative; display: flex; align-items: center; max-width: 735px; min-height: 57px; padding: 0 14px 0 18px; border: 1px solid rgba(255,255,255,.34); border-radius: 14px; background: rgba(242,253,255,.9); box-shadow: 0 15px 35px rgba(1,26,46,.17), inset 0 1px rgba(255,255,255,.9); }
.search-icon { display: grid; place-items: center; width: 23px; margin-right: 11px; color: #49839a; }
.search-icon svg { width: 20px; height: 20px; }
.search-box input { min-width: 0; flex: 1; height: 54px; border: 0; outline: 0; color: #173d55; background: transparent; font-size: 13px; }
.search-box input::placeholder { color: #7892a1; }
.search-box kbd { padding: 4px 7px; border: 1px solid rgba(43,100,124,.18); border-bottom-width: 2px; border-radius: 5px; color: #76909d; background: rgba(255,255,255,.62); font-family: var(--body-font); font-size: 10px; }
.search-clear { display: none; width: 25px; height: 25px; margin-left: 7px; border: 0; border-radius: 50%; color: #608496; background: rgba(70,128,151,.1); font-size: 17px; line-height: 1; }
.search-box.has-value .search-clear { display: block; }
.search-box:focus-within { border-color: rgba(82,195,201,.7); box-shadow: 0 15px 35px rgba(1,26,46,.17), 0 0 0 3px rgba(73,201,203,.14); }
.search-suggestions { position: absolute; top: 65px; left: 0; width: min(100%, 530px); padding: 8px; border: 1px solid var(--line); border-radius: 13px; background: rgba(250,254,255,.96); box-shadow: var(--shadow); }
.suggestion { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 10px; border: 0; border-radius: 8px; color: var(--ink); background: transparent; text-align: left; }
.suggestion:hover { background: rgba(44,161,184,.1); }
.suggestion-icon, .tool-card-icon { display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 11px; }
.suggestion-icon { width: 30px; height: 30px; }
.suggestion strong { display: block; font-size: 12px; }
.suggestion small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }
.quick-links { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 12px; padding-left: 4px; color: rgba(223,248,253,.66); font-size: 10px; }
.quick-links button { padding: 4px 8px; border: 0; border-radius: 5px; color: rgba(229,251,255,.78); background: rgba(255,255,255,.08); font-size: 10px; }
.quick-links button:hover { color: #fff; background: rgba(255,255,255,.15); }

.content-layout { display: grid; grid-template-columns: 215px minmax(0, 1fr); gap: 37px; align-items: start; }
.sidebar { position: sticky; top: 20px; padding: 14px 0 0; }
.sidebar-label, .start-section-title { padding: 0 13px 9px; color: rgba(215,245,251,.54); font-size: 10px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }
.category-nav { display: grid; gap: 3px; }
.category-button, .favorites-link { display: flex; align-items: center; gap: 10px; width: 100%; min-height: 39px; padding: 0 12px; border: 1px solid transparent; border-radius: 9px; color: rgba(227,249,255,.71); background: transparent; text-align: left; font-size: 12px; transition: background .18s, color .18s, border-color .18s; }
.category-button:hover, .favorites-link:hover { color: #f2ffff; background: rgba(255,255,255,.09); }
.category-button.active { color: #eaffff; border-color: rgba(166,239,235,.18); background: linear-gradient(90deg, rgba(128,223,215,.2), rgba(82,172,207,.1)); box-shadow: inset 3px 0 #76d5ce, inset 0 1px rgba(255,255,255,.08); }
.nav-icon { display: grid; place-items: center; width: 21px; color: #90cfdb; }
.nav-icon svg { width: 16px; height: 16px; }
.category-button.active .nav-icon { color: #b5f4e9; }
.tool-count, .favorite-count { min-width: 19px; margin-left: auto; padding: 3px 5px; border-radius: 5px; color: rgba(217,245,250,.6); background: rgba(255,255,255,.08); font-size: 9px; font-weight: 500; text-align: center; }
.category-button.active .tool-count { color: #d8fff4; background: rgba(125,223,207,.19); }
.sidebar-divider { height: 1px; margin: 18px 11px 11px; background: rgba(194,238,243,.11); }
.sidebar-card { margin: 26px 3px 0; padding: 16px 14px 14px; border: 1px solid rgba(156,233,231,.15); border-radius: 13px; background: linear-gradient(145deg, rgba(104,210,205,.13), rgba(44,103,158,.14)); box-shadow: inset 0 1px rgba(255,255,255,.08); }
.mini-orb { display: grid; place-items: center; width: 27px; height: 27px; margin-bottom: 12px; border-radius: 8px; color: #b1f0dc; background: rgba(119,220,189,.16); }
.mini-orb svg { width: 15px; height: 15px; }
.sidebar-card strong { display: block; color: #e1fbff; font-size: 11px; }
.sidebar-card p { margin: 7px 0 13px; color: rgba(216,246,250,.58); font-size: 10px; line-height: 1.6; }
.sidebar-card button { padding: 0; border: 0; color: #a7e8df; background: transparent; font-size: 10px; }
.sidebar-card button span { margin-left: 4px; font-size: 13px; }

.tools-area { min-width: 0; }
.section-block { margin-bottom: 44px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.section-kicker { display: block; margin-bottom: 5px; color: rgba(210,248,250,.59); font-size: 10px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; }
.section-heading h2 { margin: 0; color: #effcff; font-family: var(--heading-font); font-size: 24px; font-weight: 400; letter-spacing: -.6px; }
.text-button { display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; border: 0; color: #a9e9e8; background: transparent; font-size: 11px; }
.text-button:hover { color: #eaffff; }
.text-button svg { width: 14px; height: 14px; transition: transform .18s; }
.text-button:hover svg { transform: translateX(3px); }
.featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.featured-grid .tool-card { min-height: 162px; }
.tool-card { position: relative; display: flex; flex-direction: column; min-width: 0; min-height: 187px; padding: 17px 16px 14px; overflow: hidden; border: 1px solid rgba(178,231,238,.2); border-radius: 14px; color: var(--ink); background: linear-gradient(145deg, rgba(242,253,255,.9), rgba(208,239,241,.78)); box-shadow: var(--shadow-soft), inset 0 1px rgba(255,255,255,.8); transition: transform .2s, box-shadow .2s, border-color .2s; }
.tool-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent); }
.tool-card:hover { transform: translateY(-5px); border-color: rgba(137,226,218,.58); box-shadow: 0 17px 35px rgba(7,45,71,.16), 0 2px 5px rgba(7,45,71,.07), inset 0 1px rgba(255,255,255,.85); }
.tool-card:focus-visible, .desktop-shortcut:focus-visible, .category-button:focus-visible, .button:focus-visible { outline: 3px solid rgba(80,202,203,.4); outline-offset: 2px; }
.tool-card-icon { width: 39px; height: 39px; margin-bottom: 12px; color: #166b91; background: linear-gradient(145deg, #d3f5f0, #a6d6ef); box-shadow: inset 0 1px rgba(255,255,255,.75), 0 4px 9px rgba(32,100,122,.11); }
.tool-card-icon svg { width: 20px; height: 20px; }
.tool-card-icon.coral { color: #ae5d4c; background: linear-gradient(145deg, #ffe2d7, #ffbca6); }
.tool-card-icon.gold { color: #8c6727; background: linear-gradient(145deg, #fff0bd, #f5ce6c); }
.tool-card-icon.blue { color: #2c6eaa; background: linear-gradient(145deg, #d4edff, #9fc8f1); }
.tool-card-icon.purple { color: #7050a5; background: linear-gradient(145deg, #ebddff, #c7b4ed); }
.tool-card-icon.teal { color: #267e83; background: linear-gradient(145deg, #cef4ec, #94dcd2); }
.tool-card-icon.green { color: #4a8b50; background: linear-gradient(145deg, #e0f5cb, #aad993); }
.tool-card h3 { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: -.1px; }
.tool-card p { display: -webkit-box; margin: 6px 0 13px; overflow: hidden; color: var(--muted); font-size: 10.5px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.tool-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; color: var(--muted); font-size: 9px; }
.tool-card-footer .card-action { color: var(--blue); font-size: 10px; font-weight: 600; }
.card-category { display: inline-flex; align-items: center; gap: 4px; }
.card-category svg { width: 11px; height: 11px; }
.favorite-button { position: absolute; top: 13px; right: 13px; display: grid; place-items: center; width: 26px; height: 26px; padding: 0; border: 0; border-radius: 7px; color: #6d8c9a; background: rgba(255,255,255,.3); }
.favorite-button:hover { color: #b3882a; background: rgba(255,248,214,.75); }
.favorite-button.active { color: #bc8b22; background: #fff3c6; }
.favorite-button svg { width: 14px; height: 14px; }
.favorite-button.active svg { fill: currentColor; }
.badge-popular { position: absolute; top: 15px; right: 47px; padding: 3px 6px; border-radius: 4px; color: #397e82; background: #d1f1e8; font-size: 8px; font-weight: 700; letter-spacing: .2px; }
.view-controls { display: flex; align-items: center; gap: 7px; color: rgba(213,246,249,.5); font-size: 10px; }
.view-toggle { width: 28px; height: 28px; color: rgba(220,247,251,.56); border-color: rgba(183,232,238,.12); background: rgba(255,255,255,.05); }
.view-toggle.active { color: #c4f5ee; border-color: rgba(143,232,222,.25); background: rgba(117,216,208,.15); }
.view-toggle svg { width: 14px; height: 14px; }
.tools-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.tools-grid.list-view { grid-template-columns: 1fr; }
.tools-grid.list-view .tool-card { min-height: 0; display: grid; grid-template-columns: 40px 1fr auto; grid-template-rows: auto auto; column-gap: 12px; align-items: center; padding: 12px 15px; }
.tools-grid.list-view .tool-card-icon { grid-row: 1 / span 2; margin: 0; }
.tools-grid.list-view .tool-card p { grid-column: 2; margin: 3px 0 0; -webkit-line-clamp: 1; }
.tools-grid.list-view .tool-card-footer { grid-column: 3; grid-row: 1 / span 2; }
.tools-grid.list-view .favorite-button { position: static; grid-column: 3; grid-row: 1; align-self: start; margin-left: auto; }
.tools-grid.list-view .badge-popular { display: none; }
.empty-state { padding: 52px 20px; border: 1px dashed rgba(194,235,238,.2); border-radius: 14px; color: rgba(222,248,250,.7); text-align: center; }
.empty-state > span { display: grid; place-items: center; width: 43px; height: 43px; margin: 0 auto 12px; border-radius: 12px; color: #a3e6e1; background: rgba(116,215,210,.14); }
.empty-state > span svg { width: 20px; height: 20px; }
.empty-state h3 { margin: 0 0 5px; color: #eaffff; font-size: 16px; }
.empty-state p { margin: 0 0 16px; color: rgba(215,243,248,.6); font-size: 11px; }
.empty-state .button { color: #174963; }
.privacy-banner { position: relative; display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 20px; margin: 61px 0 0; padding: 26px 27px; overflow: hidden; border: 1px solid rgba(147,227,225,.19); border-radius: 17px; background: linear-gradient(115deg, rgba(61,157,163,.22), rgba(45,101,161,.19)); }
.privacy-banner::after { content: ""; position: absolute; width: 260px; height: 260px; right: 12%; top: -190px; border: 1px solid rgba(182,242,239,.12); border-radius: 50%; box-shadow: 0 0 0 23px rgba(182,242,239,.03), 0 0 0 48px rgba(182,242,239,.02); }
.privacy-banner > * { position: relative; z-index: 1; }
.privacy-illustration { position: relative; display: grid; place-items: center; width: 77px; height: 77px; border: 1px solid rgba(184,246,237,.25); border-radius: 21px; color: #c0f5e7; background: radial-gradient(circle at 32% 24%, rgba(255,255,255,.22), rgba(112,214,201,.12)); box-shadow: inset 0 1px rgba(255,255,255,.19), 0 9px 20px rgba(2,36,58,.16); }
.privacy-illustration svg { width: 28px; height: 28px; }
.privacy-illustration i, .privacy-illustration b { position: absolute; display: block; border: 1px solid rgba(177,242,234,.3); border-radius: 50%; }
.privacy-illustration i { width: 95px; height: 39px; transform: rotate(35deg); }
.privacy-illustration b { width: 105px; height: 48px; transform: rotate(-25deg); }
.privacy-banner h2 { margin: 0; color: #efffff; font-family: var(--heading-font); font-size: 21px; font-weight: 400; }
.privacy-banner h2 em { color: #a9ede2; font-style: normal; font-weight: 600; }
.privacy-banner p { max-width: 560px; margin: 7px 0 0; color: rgba(222,249,249,.65); font-size: 11px; line-height: 1.65; }
.privacy-banner .button { white-space: nowrap; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding: 18px 2px 0; border-top: 1px solid rgba(191,233,237,.1); color: rgba(211,241,246,.51); font-size: 10px; }
.footer-brand, .footer-links { display: flex; align-items: center; gap: 9px; }
.footer-brand strong { color: rgba(231,252,255,.8); font-size: 11px; }
.footer-brand small { color: rgba(211,241,246,.46); }
.footer-links { gap: 15px; }
.footer-links button, .footer-links a { padding: 0; border: 0; color: rgba(211,241,246,.57); background: transparent; font-size: 10px; }
.footer-links button:hover, .footer-links a:hover { color: #c5f7ef; }

.desktop-shortcuts { position: fixed; z-index: 2; top: 116px; left: 20px; display: grid; gap: 18px; }
.desktop-shortcut { display: flex; align-items: center; flex-direction: column; gap: 6px; width: 76px; padding: 5px 3px; border: 1px solid transparent; border-radius: 8px; color: rgba(241,253,255,.82); background: transparent; font-size: 10px; line-height: 1.25; text-align: center; text-shadow: 0 1px 3px rgba(0,0,0,.55); }
.desktop-shortcut:hover { border-color: rgba(181,238,237,.25); background: rgba(116,211,214,.13); }
.shortcut-icon { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.38); border-radius: 10px; box-shadow: inset 0 1px rgba(255,255,255,.35), 0 5px 10px rgba(0,0,0,.18); }
.shortcut-icon svg { width: 21px; height: 21px; }
.shortcut-coral { color: #a45549; background: linear-gradient(145deg, #ffd8cb, #f3987b); }
.shortcut-gold { color: #876121; background: linear-gradient(145deg, #fff0b4, #e8b950); }
.shortcut-blue { color: #2c6797; background: linear-gradient(145deg, #d5eeff, #8abee9); }

/* Taskbar and Start menu */
.taskbar { position: fixed; z-index: 1000; right: 0; bottom: 0; left: 0; display: flex; align-items: center; height: var(--taskbar-height); padding: 0 10px 0 12px; border-top: 1px solid rgba(197,237,244,.27); color: #effcff; background: rgba(8,36,61,.83); box-shadow: 0 -5px 25px rgba(0,13,28,.2), inset 0 1px rgba(255,255,255,.1); backdrop-filter: blur(20px) saturate(1.2); }
.start-orb { position: relative; display: grid; place-items: center; width: 43px; height: 43px; margin-right: 10px; border: 1px solid rgba(174,247,241,.4); border-radius: 50%; background: radial-gradient(circle at 36% 25%, #d7fff2 0 4%, #73d7c4 10%, #2e9eac 47%, #12627f 72%, #073d63 100%); box-shadow: inset 0 2px 4px rgba(255,255,255,.5), inset 0 -4px 7px rgba(0,38,61,.45), 0 3px 8px rgba(0,0,0,.35); }
.start-orb::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, rgba(255,255,255,.56), transparent 48%); filter: blur(2px); }
.start-orb:hover { filter: brightness(1.15); }
.taskbar-search { display: flex; align-items: center; gap: 8px; width: 165px; height: 36px; padding: 0 12px; border: 1px solid rgba(198,239,242,.18); border-radius: 8px; color: rgba(231,250,252,.66); background: rgba(219,247,250,.08); font-size: 11px; }
.taskbar-search:hover { background: rgba(219,247,250,.15); }
.taskbar-search svg { width: 15px; height: 15px; }
.taskbar-divider { width: 1px; height: 29px; margin: 0 11px; background: rgba(202,239,243,.16); }
.taskbar-pins { display: flex; align-items: center; gap: 5px; }
.taskbar-pins button { display: grid; place-items: center; width: 42px; height: 39px; padding: 0; border: 1px solid transparent; border-radius: 8px; color: rgba(237,253,255,.82); background: transparent; }
.taskbar-pins button:hover { border-color: rgba(189,239,237,.2); background: rgba(206,244,244,.13); }
.taskbar-pins svg { width: 19px; height: 19px; }
.taskbar-spacer { flex: 1; }
.system-tray { display: flex; align-items: center; gap: 10px; min-width: 112px; padding: 0 13px; color: rgba(230,250,252,.75); font-size: 10px; }
.system-tray svg { width: 14px; height: 14px; }
.system-tray time { margin-left: 3px; color: #eefcfd; font-size: 11px; white-space: nowrap; }
.show-desktop { width: 7px; height: 45px; margin-left: 4px; padding: 0; border: 0; border-left: 1px solid rgba(199,237,242,.18); background: rgba(231,250,252,.1); }
.start-menu { position: fixed; z-index: 999; left: 12px; bottom: calc(var(--taskbar-height) + 9px); width: 326px; padding: 16px 14px 12px; border: 1px solid rgba(190,238,240,.28); border-radius: 14px 14px 7px 7px; color: var(--ink); background: rgba(235,250,252,.94); box-shadow: 0 18px 42px rgba(0,20,38,.32), inset 0 1px #fff; opacity: 0; pointer-events: none; transform: translateY(13px) scale(.98); transform-origin: bottom left; transition: opacity .18s, transform .18s; backdrop-filter: blur(20px); }
.start-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.start-user { display: flex; align-items: center; gap: 9px; padding: 0 4px 13px; }
.user-orb { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; color: #075c78; background: linear-gradient(145deg,#d9fff5,#88d7db); font-size: 12px; font-weight: 700; box-shadow: 0 3px 8px rgba(27,102,118,.17); }
.start-user strong, .start-user small { display: block; }
.start-user strong { font-size: 12px; }
.start-user small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.start-search { display: flex; align-items: center; gap: 8px; height: 34px; padding: 0 9px; border: 1px solid rgba(53,117,137,.17); border-radius: 7px; background: rgba(255,255,255,.57); }
.start-search svg { width: 14px; height: 14px; color: #6495a3; }
.start-search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 10px; }
.start-section-title { padding: 16px 6px 6px; color: #7893a1; font-size: 9px; }
.start-menu > button:not(.start-footer button) { display: flex; align-items: center; gap: 9px; width: 100%; min-height: 36px; padding: 0 7px; border: 0; border-radius: 7px; color: var(--ink); background: transparent; text-align: left; font-size: 11px; }
.start-menu > button:not(.start-footer button):hover { background: rgba(93,180,191,.12); }
.start-item-icon { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 7px; }
.start-item-icon svg { width: 14px; height: 14px; }
.start-item-icon.coral { color: #aa5b4c; background: #ffd9ce; }
.start-item-icon.blue { color: #316f9f; background: #d0eaff; }
.start-item-icon.gold { color: #86621f; background: #fff0bb; }
.start-item-icon.teal { color: #2d7c7e; background: #d0f1e9; }
.start-item-icon.purple { color: #7353a5; background: #e8ddff; }
.start-menu > button b { margin-left: auto; color: #8ca3ae; font-size: 10px; font-weight: 400; }
.start-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; padding: 11px 5px 0; border-top: 1px solid rgba(52,108,128,.12); color: #7c98a3; font-size: 9px; }
.start-footer span { display: inline-flex; align-items: center; gap: 6px; }
.start-footer button { padding: 0; border: 0; color: #4b8191; background: transparent; font-size: 9px; }

/* Tool windows */
.window-layer { position: fixed; z-index: 800; inset: var(--taskbar-height) 0 var(--taskbar-height); pointer-events: none; }
.tool-window { position: absolute; top: 17px; left: 50%; display: flex; flex-direction: column; width: min(900px, calc(100vw - 30px)); height: min(720px, calc(100vh - var(--taskbar-height) * 2 - 30px)); min-height: 420px; overflow: hidden; border: 1px solid rgba(192,235,241,.48); border-radius: 15px; color: var(--ink); background: var(--glass-strong); box-shadow: 0 27px 75px rgba(0,18,38,.4), 0 0 0 1px rgba(7,48,72,.15), inset 0 1px rgba(255,255,255,.88); pointer-events: auto; transform: translateX(-50%); animation: window-in .22s ease-out; backdrop-filter: blur(18px) saturate(1.12); }
.tool-window.maximized { top: 0; left: 0; width: 100%; height: 100%; max-height: none; border-radius: 0; transform: none; }
.tool-window.closing { animation: window-out .18s ease-in forwards; }
@keyframes window-in { from { opacity: 0; transform: translateX(-50%) translateY(12px) scale(.98); } to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); } }
@keyframes window-out { to { opacity: 0; transform: translateX(-50%) translateY(15px) scale(.98); } }
.window-titlebar { display: flex; align-items: center; gap: 10px; flex: 0 0 43px; padding: 0 9px 0 13px; color: #effcff; background: linear-gradient(180deg, rgba(15,106,156,.96), rgba(10,66,113,.97)); box-shadow: inset 0 1px rgba(255,255,255,.2), 0 1px rgba(5,39,65,.2); }
.window-title-icon { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 7px; color: #d2f7f0; background: rgba(139,228,216,.18); }
.window-title-icon svg { width: 15px; height: 15px; }
.window-titlebar strong { font-size: 12px; font-weight: 600; }
.window-titlebar small { margin-left: 2px; color: rgba(224,249,251,.58); font-size: 10px; }
.window-controls { display: flex; gap: 6px; margin-left: auto; }
.window-control { display: grid; place-items: center; width: 27px; height: 25px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; color: rgba(239,253,255,.87); background: rgba(255,255,255,.08); font-size: 14px; line-height: 1; }
.window-control:hover { background: rgba(255,255,255,.2); }
.window-control.close:hover { border-color: rgba(255,193,190,.4); color: #fff; background: #c7515a; }
.window-control svg { width: 13px; height: 13px; }
.tool-pane { flex: 1; overflow: auto; padding: 27px 31px 34px; scrollbar-color: rgba(60,132,153,.35) transparent; scrollbar-width: thin; }
.tool-pane::-webkit-scrollbar { width: 8px; }
.tool-pane::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 99px; background: rgba(60,132,153,.32); background-clip: padding-box; }
.tool-intro { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.tool-intro .tool-card-icon { width: 48px; height: 48px; margin: 0; }
.tool-intro .tool-card-icon svg { width: 24px; height: 24px; }
.tool-intro h2 { margin: 0; font-family: var(--heading-font); font-size: 24px; font-weight: 600; letter-spacing: -.6px; }
.tool-intro p { max-width: 590px; margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.tool-intro .intro-badge { margin-left: auto; align-self: flex-start; padding: 6px 9px; border: 1px solid rgba(72,169,135,.2); border-radius: 999px; color: #4d9272; background: rgba(215,247,224,.52); font-size: 9px; white-space: nowrap; }
.tool-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr); gap: 22px; }
.tool-section { min-width: 0; }
.tool-card-panel { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.44); box-shadow: inset 0 1px rgba(255,255,255,.7); }
.tool-card-panel + .tool-card-panel { margin-top: 13px; }
.tool-card-panel h3 { margin: 0 0 14px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.form-grid.one { grid-template-columns: 1fr; }
.form-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { min-width: 0; }
.field label { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; color: var(--ink-soft); font-size: 10px; font-weight: 600; }
.field label small { color: var(--muted); font-weight: 400; }
.input, .select, .textarea { width: 100%; border: 1px solid rgba(48,104,126,.22); border-radius: 7px; outline: 0; color: var(--ink); background: rgba(255,255,255,.73); box-shadow: inset 0 1px 2px rgba(20,67,88,.04); transition: border-color .18s, box-shadow .18s, background .18s; }
.input, .select { height: 37px; padding: 0 10px; font-size: 11px; }
.select { padding-right: 26px; }
.textarea { min-height: 130px; padding: 11px; resize: vertical; font-family: "Cascadia Mono", Consolas, monospace; font-size: 11px; line-height: 1.6; }
.textarea.large { min-height: 220px; }
.textarea.short { min-height: 95px; }
.input:focus, .select:focus, .textarea:focus { border-color: rgba(37,151,174,.68); background: #fff; box-shadow: 0 0 0 3px rgba(50,171,185,.13); }
.input[type="range"] { height: 22px; padding: 0; border: 0; background: transparent; box-shadow: none; accent-color: #4eafab; }
.range-row { display: flex; align-items: center; gap: 10px; }
.range-row output { min-width: 38px; padding: 4px 6px; border: 1px solid var(--line); border-radius: 5px; color: var(--blue-dark); background: rgba(255,255,255,.6); font-size: 10px; text-align: center; }
.range-row .range-value { margin-left: auto; color: var(--blue); font-size: 11px; font-weight: 700; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.form-actions .button { flex: 0 0 auto; }
.checkbox-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 12px; color: var(--ink-soft); font-size: 10px; }
.checkbox-row label { display: inline-flex; align-items: center; gap: 6px; }
.checkbox-row input { width: 14px; height: 14px; margin: 0; accent-color: #3b9f9e; }
.drop-zone { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 220px; padding: 26px; border: 1px dashed rgba(38,131,157,.45); border-radius: 12px; color: #4a8194; background: linear-gradient(145deg, rgba(232,252,250,.66), rgba(218,239,250,.52)); text-align: center; transition: border-color .2s, background .2s, transform .2s; }
.drop-zone:hover, .drop-zone.dragging { border-color: #37a9b4; background: linear-gradient(145deg, rgba(224,253,245,.9), rgba(215,239,251,.76)); transform: translateY(-1px); }
.drop-zone-icon { display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 11px; border: 1px solid rgba(55,140,156,.16); border-radius: 14px; color: #298a98; background: rgba(255,255,255,.58); box-shadow: 0 6px 14px rgba(37,106,127,.08); }
.drop-zone-icon svg { width: 24px; height: 24px; }
.drop-zone strong { color: var(--ink-soft); font-size: 12px; }
.drop-zone p { margin: 5px 0 13px; color: var(--muted); font-size: 10px; }
.drop-zone .button { min-height: 34px; }
.drop-zone small { margin-top: 13px; color: #7c9aa3; font-size: 9px; }
.image-preview { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 13px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.6); }
.image-preview-box { display: grid; place-items: center; min-height: 128px; overflow: hidden; border-radius: 8px; background: linear-gradient(135deg,#e7f3f4,#d5e4f3); }
.image-preview-box img { display: block; max-width: 100%; max-height: 165px; object-fit: contain; }
.image-meta { min-width: 102px; }
.image-meta strong { display: block; overflow: hidden; color: var(--ink-soft); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.image-meta small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; }
.image-meta .mini-stat { margin-top: 12px; color: #4b9b86; font-size: 10px; font-weight: 600; }
.result-box { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 11px; border: 1px solid rgba(79,169,142,.2); border-radius: 10px; background: rgba(226,249,235,.48); }
.result-box .image-preview-box { min-height: 112px; background: #eef7f2; }
.result-box .image-preview-box img { max-height: 145px; }
.result-label { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 6px; color: #498a75; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; }
.result-label svg { width: 12px; height: 12px; }
.result-box .button { min-height: 34px; }
.info-list { display: grid; gap: 0; margin: 0; }
.info-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 10px; }
.info-row:last-child { border-bottom: 0; }
.info-row dt { color: var(--muted); }
.info-row dd { max-width: 65%; margin: 0; overflow: hidden; color: var(--ink); font-weight: 600; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.stat-box { padding: 13px 10px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.5); }
.stat-box strong { display: block; color: var(--blue-dark); font-size: 20px; font-weight: 600; letter-spacing: -.7px; }
.stat-box small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; }
.word-output { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.word-output .stat-box strong { font-size: 18px; }
.tool-note { display: flex; align-items: flex-start; gap: 8px; margin-top: 15px; padding: 10px 11px; border-radius: 8px; color: var(--muted); background: rgba(128,187,204,.1); font-size: 9px; line-height: 1.5; }
.tool-note svg { flex: 0 0 auto; width: 14px; height: 14px; color: #4b9d9c; }
.case-buttons { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.case-buttons button { padding: 6px 9px; border: 1px solid var(--line); border-radius: 6px; color: var(--blue-dark); background: rgba(255,255,255,.54); font-size: 9px; }
.case-buttons button:hover { border-color: rgba(42,147,155,.45); background: #e5f8f4; }
.password-display { display: flex; align-items: center; gap: 8px; min-height: 64px; padding: 10px 13px; border: 1px solid rgba(46,147,147,.26); border-radius: 10px; color: #155b76; background: linear-gradient(145deg, rgba(225,251,243,.78), rgba(219,239,253,.7)); font-family: "Cascadia Mono", Consolas, monospace; font-size: 18px; letter-spacing: 1px; overflow-wrap: anywhere; }
.password-display button { flex: 0 0 auto; }
.password-display svg { width: 17px; height: 17px; }
.strength { margin-top: 12px; }
.strength-track { height: 7px; overflow: hidden; border-radius: 99px; background: rgba(65,117,132,.15); }
.strength-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: #c45f61; transition: width .2s, background .2s; }
.strength-label { display: flex; justify-content: space-between; margin-top: 6px; color: var(--muted); font-size: 9px; }
.strength-label b { color: #bf6765; }
.color-layout { display: grid; grid-template-columns: 105px 1fr; gap: 13px; align-items: stretch; }
.color-well { display: flex; align-items: end; justify-content: center; padding-bottom: 11px; border: 1px solid var(--line); border-radius: 10px; background: #f0f7f7; }
.color-well input[type="color"] { width: 55px; height: 55px; padding: 0; border: 0; border-radius: 10px; background: transparent; cursor: pointer; }
.color-values { display: grid; gap: 8px; }
.color-value { display: flex; align-items: center; gap: 8px; }
.color-value label { width: 34px; color: var(--muted); font-size: 9px; font-weight: 700; }
.color-value .input { height: 31px; font-family: "Cascadia Mono", Consolas, monospace; font-size: 10px; }
.palette { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 12px; }
.palette button { height: 31px; border: 2px solid rgba(255,255,255,.72); border-radius: 6px; box-shadow: 0 0 0 1px var(--line); }
.palette button:hover { transform: scale(1.05); }
.contrast-box { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 15px; padding: 12px; border: 1px solid var(--line); border-radius: 9px; }
.contrast-box strong { font-size: 18px; }
.contrast-box span { color: var(--muted); font-size: 9px; }
.unit-display { display: grid; grid-template-columns: 1fr 34px 1fr; align-items: end; gap: 10px; margin-bottom: 14px; }
.swap-button { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 3px; border: 1px solid var(--line); border-radius: 7px; color: var(--blue); background: rgba(255,255,255,.5); }
.swap-button:hover { background: #e3f7f3; }
.swap-button svg { width: 15px; height: 15px; }
.big-output { min-height: 44px; padding: 12px; border: 1px solid rgba(52,151,158,.24); border-radius: 8px; color: var(--blue-dark); background: rgba(225,249,243,.58); font-size: 16px; font-weight: 600; word-break: break-word; }
.unit-table { display: grid; gap: 5px; margin-top: 13px; }
.unit-line { display: flex; justify-content: space-between; padding: 8px 10px; border-radius: 6px; color: var(--ink-soft); background: rgba(128,188,204,.08); font-size: 10px; }
.unit-line b { color: var(--blue); }
.lorem-preview { min-height: 150px; padding: 13px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink-soft); background: rgba(255,255,255,.52); font-family: Georgia, serif; font-size: 12px; line-height: 1.7; }
.uuid-list { display: grid; gap: 6px; max-height: 250px; margin-top: 12px; overflow: auto; }
.uuid-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink-soft); background: rgba(255,255,255,.53); font-family: "Cascadia Mono", Consolas, monospace; font-size: 10px; }
.uuid-item button { flex: 0 0 auto; }
.hash-output { min-height: 75px; padding: 12px; overflow-wrap: anywhere; border: 1px solid var(--line); border-radius: 8px; color: #236b83; background: rgba(227,246,249,.57); font-family: "Cascadia Mono", Consolas, monospace; font-size: 10px; line-height: 1.6; }
.hash-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; }
.hash-row span { color: var(--muted); font-size: 9px; }
.hash-row code { color: var(--ink-soft); font-family: "Cascadia Mono", Consolas, monospace; font-size: 9px; }
.file-list { display: grid; gap: 6px; max-height: 220px; margin-top: 12px; overflow: auto; }
.file-row { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255,255,255,.48); }
.file-row svg { flex: 0 0 auto; width: 16px; height: 16px; color: #4a9b9a; }
.file-row strong { display: block; min-width: 0; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.file-row small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }

/* Dialogs and notifications */
.toast-region { position: fixed; z-index: 1400; right: 21px; bottom: calc(var(--taskbar-height) + 16px); display: grid; gap: 8px; width: min(330px, calc(100vw - 32px)); pointer-events: none; }
.toast { display: flex; align-items: center; gap: 9px; padding: 12px 13px; border: 1px solid rgba(165,231,220,.35); border-radius: 10px; color: #efffff; background: linear-gradient(135deg, rgba(14,79,99,.96), rgba(17,58,94,.96)); box-shadow: 0 13px 30px rgba(0,20,35,.28), inset 0 1px rgba(255,255,255,.14); font-size: 11px; animation: toast-in .25s ease-out; pointer-events: auto; }
.toast svg { flex: 0 0 auto; width: 16px; height: 16px; color: #9df1d6; }
.toast.out { animation: toast-out .2s ease-in forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateY(8px) scale(.97); } }
.info-dialog { width: min(500px, calc(100vw - 30px)); padding: 0; border: 1px solid rgba(182,230,237,.5); border-radius: 13px; color: var(--ink); background: var(--glass-strong); box-shadow: 0 25px 70px rgba(0,18,38,.42), inset 0 1px #fff; }
.info-dialog::backdrop { background: rgba(0, 17, 33, .56); backdrop-filter: blur(3px); }
.dialog-titlebar { display: flex; align-items: center; gap: 9px; min-height: 43px; padding: 0 11px 0 14px; color: #effcff; background: linear-gradient(180deg, #126d9f, #0a4c7d); }
.dialog-titlebar > span { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 6px; color: #c8f6ec; background: rgba(147,231,218,.17); }
.dialog-titlebar > span svg { width: 14px; height: 14px; }
.dialog-titlebar strong { font-size: 12px; }
.dialog-titlebar button { width: 26px; height: 24px; margin-left: auto; border: 1px solid rgba(255,255,255,.18); border-radius: 5px; color: #fff; background: rgba(255,255,255,.08); font-size: 17px; line-height: 1; }
.dialog-body { padding: 22px 24px 8px; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.dialog-body p { margin: 0 0 12px; }
.dialog-body ul { margin: 8px 0 12px; padding-left: 19px; }
.dialog-body li { margin: 7px 0; }
.dialog-actions { display: flex; justify-content: flex-end; padding: 12px 20px 18px; }
.noscript-note { position: fixed; z-index: 2000; right: 15px; bottom: 15px; left: 15px; padding: 13px; border-radius: 8px; color: #fff; background: #aa4d55; text-align: center; font-size: 12px; }

@media (min-width: 1121px) and (max-width: 1500px) {
  .desktop-shortcuts { display: none; }
}
@media (max-width: 1120px) {
  .workspace { width: min(100% - 38px, 960px); }
  .desktop-shortcuts { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) 390px; padding: 45px 42px; }
  .tools-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .workspace { width: min(100% - 26px, 680px); padding-top: 17px; }
  .topbar-status { display: none; }
  .topbar { margin-bottom: 17px; }
  .hero { display: block; min-height: 0; padding: 36px 30px 31px; }
  .hero h1 { font-size: clamp(37px, 8vw, 53px); }
  .hero-copy > p { max-width: 580px; }
  .hero-visual { display: none; }
  .content-layout { display: block; }
  .sidebar { position: static; margin-bottom: 31px; padding: 0; }
  .sidebar-label, .sidebar-divider, .sidebar-card { display: none; }
  .category-nav { display: flex; gap: 6px; overflow-x: auto; padding: 3px 2px 8px; scrollbar-width: none; }
  .category-nav::-webkit-scrollbar { display: none; }
  .category-button, .favorites-link { width: auto; min-height: 34px; flex: 0 0 auto; padding: 0 10px; border-color: rgba(192,235,238,.12); background: rgba(255,255,255,.06); }
  .category-button.active { box-shadow: inset 0 -2px #76d5ce, inset 0 1px rgba(255,255,255,.08); }
  .category-button .tool-count { display: none; }
  .privacy-banner { grid-template-columns: 68px 1fr; }
  .privacy-banner .button { grid-column: 1 / -1; justify-self: start; }
  .privacy-illustration { width: 62px; height: 62px; border-radius: 17px; }
  .privacy-illustration svg { width: 23px; height: 23px; }
  .privacy-illustration i { width: 75px; }
  .privacy-illustration b { width: 84px; }
}
@media (max-width: 620px) {
  .workspace { width: calc(100% - 20px); }
  .brand { min-width: 0; }
  .brand-copy { font-size: 18px; }
  .topbar-actions .icon-button:first-child { display: none; }
  .hero { padding: 30px 22px 25px; border-radius: 18px; }
  .hero h1 { font-size: 37px; letter-spacing: -1.4px; }
  .hero-copy > p { font-size: 13px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .search-panel { margin: 16px 0 28px; }
  .search-box { min-height: 51px; padding-left: 13px; }
  .search-box input { height: 49px; font-size: 12px; }
  .search-box kbd { display: none; }
  .quick-links span { width: 100%; }
  .section-heading { align-items: flex-start; }
  .section-heading h2 { font-size: 21px; }
  .text-button { font-size: 10px; }
  .featured-grid, .tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .featured-grid .tool-card { min-height: 157px; }
  .tools-grid .tool-card { min-height: 170px; padding: 13px 12px 12px; }
  .tool-card-icon { width: 34px; height: 34px; margin-bottom: 10px; }
  .tool-card-icon svg { width: 18px; height: 18px; }
  .tool-card h3 { font-size: 11.5px; }
  .tool-card p { font-size: 9.5px; }
  .badge-popular { display: none; }
  .view-controls > span { display: none; }
  .privacy-banner { display: block; margin-top: 40px; padding: 21px; }
  .privacy-illustration { margin-bottom: 17px; }
  .privacy-banner h2 { font-size: 19px; }
  .privacy-banner .button { margin-top: 15px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 12px; margin-top: 34px; }
  .footer-links { flex-wrap: wrap; gap: 11px; }
  .taskbar { padding-left: 8px; }
  .taskbar-search { width: 38px; padding: 0; justify-content: center; }
  .taskbar-search span:last-child { display: none; }
  .taskbar-divider { margin: 0 7px; }
  .taskbar-pins button { width: 36px; }
  .taskbar-pins button:nth-child(n+3) { display: none; }
  .system-tray { min-width: 88px; gap: 6px; padding: 0 8px; }
  .system-tray svg:nth-child(2) { display: none; }
  .system-tray time { font-size: 10px; }
  .tool-window { top: 7px; width: calc(100vw - 14px); height: calc(100vh - var(--taskbar-height) * 2 - 12px); min-height: 0; border-radius: 12px; }
  .tool-pane { padding: 19px 15px 27px; }
  .tool-intro { align-items: flex-start; gap: 10px; margin-bottom: 18px; }
  .tool-intro .tool-card-icon { width: 40px; height: 40px; }
  .tool-intro .tool-card-icon svg { width: 20px; height: 20px; }
  .tool-intro h2 { font-size: 19px; }
  .tool-intro p { font-size: 10px; }
  .tool-intro .intro-badge { display: none; }
  .tool-layout { display: block; }
  .tool-layout > .tool-section + .tool-section { margin-top: 13px; }
  .tool-card-panel { padding: 13px; }
  .form-grid, .form-grid.three { grid-template-columns: 1fr; }
  .stat-grid, .word-output { grid-template-columns: repeat(2, 1fr); }
  .image-preview, .result-box { grid-template-columns: 1fr; }
  .image-meta { min-width: 0; }
  .result-box .button { width: 100%; }
  .unit-display { grid-template-columns: 1fr 30px 1fr; gap: 6px; }
  .color-layout { grid-template-columns: 77px 1fr; }
  .color-well input[type="color"] { width: 45px; height: 45px; }
  .start-menu { right: 10px; left: 10px; width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Standalone tool pages */
.standalone-desktop { min-height: 100vh; }
.standalone-workspace { position: relative; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 105px; }
.standalone-workspace .topbar { margin-bottom: 18px; }
.standalone-breadcrumb { display: flex; align-items: center; gap: 9px; margin: 7px 0 13px; color: rgba(215,245,251,.52); font-size: 11px; }
.standalone-breadcrumb a { color: #a9e9e8; text-decoration: none; }
.standalone-breadcrumb a:hover { color: #f0ffff; }
.standalone-breadcrumb strong { color: rgba(237,253,255,.83); font-weight: 500; }
.standalone-page-note { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 13px; }
.standalone-page-note .section-kicker { margin: 0; }
.standalone-private { display: inline-flex; align-items: center; gap: 6px; color: rgba(184,242,232,.75); font-size: 10px; }
.standalone-private svg { width: 13px; height: 13px; }
.standalone-tool-content { padding: 27px 31px 35px; border: 1px solid rgba(182,232,239,.28); border-radius: 18px; color: var(--ink); background: linear-gradient(145deg, rgba(244,254,255,.94), rgba(215,239,246,.88)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.84); }
.standalone-tool-content > .tool-intro { margin-bottom: 25px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.standalone-tool-content > .tool-intro h2 { font-size: 29px; }
.standalone-tool-content > .tool-intro p { max-width: 720px; font-size: 12px; }
.standalone-tool-content > .tool-intro .intro-badge { flex: 0 0 auto; max-width: 132px; white-space: normal; text-align: center; line-height: 1.35; }
.standalone-tool-content .tool-card-panel { background: rgba(255,255,255,.48); }
.related-tools-section { margin-top: 44px; }
.related-tools-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.related-tools-grid .tool-card { min-height: 164px; }
.standalone-footer { margin-top: 46px; }
@media (max-width: 820px) {
  .standalone-workspace { width: min(100% - 26px, 680px); padding-top: 17px; }
  .standalone-page-note { align-items: flex-start; flex-direction: column; gap: 7px; }
  .standalone-tool-content { padding: 20px 16px 25px; border-radius: 14px; }
  .standalone-tool-content > .tool-intro h2 { font-size: 23px; }
  .related-tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .standalone-workspace { width: calc(100% - 20px); }
  .related-tools-grid { grid-template-columns: 1fr; }
  .standalone-tool-content { padding: 17px 12px 22px; }
  .standalone-tool-content > .tool-intro { gap: 10px; }
  .standalone-tool-content > .tool-intro h2 { font-size: 20px; }
  .standalone-tool-content > .tool-intro p { font-size: 10px; }
  .standalone-tool-content > .tool-intro .intro-badge { display: none; }
}

/* Luna desktop skin: a stronger Windows 7 / XP Aero treatment */
:root {
  --body-font: Tahoma, Verdana, sans-serif;
  --heading-font: "Trebuchet MS", Tahoma, sans-serif;
  --taskbar-height: 58px;
}
body { background: #0b4b78; }
.wallpaper {
  background:
    radial-gradient(ellipse at 16% 12%, rgba(177,239,255,.28), transparent 30%),
    radial-gradient(ellipse at 86% 13%, rgba(129,206,255,.2), transparent 34%),
    linear-gradient(180deg, #0a3e75 0%, #1379ad 45%, #5ca650 100%);
}
.wallpaper::before {
  opacity: .2;
  background-image:
    linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.16) 38.1% 38.35%, transparent 38.45% 100%),
    linear-gradient(65deg, transparent 0 57%, rgba(255,255,255,.1) 57.1% 57.3%, transparent 57.4% 100%);
  transform: none;
}
.wallpaper::after {
  width: 145%;
  height: 43%;
  left: -22%;
  bottom: -12%;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(158,218,91,.86) 0 34%, rgba(86,160,62,.72) 57%, rgba(43,112,61,.35) 75%, transparent 77%);
  filter: blur(1px);
}
.wallpaper-grid { opacity: .035; background-size: 42px 42px; }
.workspace { padding-top: 18px; }
.topbar {
  min-height: 58px;
  margin-bottom: 20px;
  padding: 7px 11px 7px 13px;
  border: 1px solid rgba(171,226,255,.46);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(211,247,255,.22), rgba(17,83,143,.34) 45%, rgba(5,48,99,.5));
  box-shadow: inset 0 1px rgba(255,255,255,.5), inset 0 -1px rgba(0,39,80,.35), 0 7px 18px rgba(0,25,52,.2);
  backdrop-filter: blur(12px) saturate(1.25);
}
.brand { min-width: 190px; }
.brand-copy { font-family: var(--heading-font); font-size: 19px; text-shadow: 0 1px 2px rgba(0,25,50,.45); }
.brand-mark { filter: drop-shadow(0 1px 1px rgba(0,26,48,.35)); }
.status-pill, .privacy-pill { border-radius: 5px; border-color: rgba(188,231,255,.25); background: linear-gradient(180deg, rgba(218,248,255,.18), rgba(6,55,102,.2)); box-shadow: inset 0 1px rgba(255,255,255,.16); }
.icon-button, .view-toggle { border-radius: 6px; border-color: rgba(177,225,249,.36); background: linear-gradient(180deg, rgba(214,247,255,.23), rgba(16,83,132,.38)); box-shadow: inset 0 1px rgba(255,255,255,.25), 0 2px 3px rgba(0,26,52,.18); }
.icon-button:hover, .view-toggle:hover { background: linear-gradient(180deg, rgba(235,253,255,.36), rgba(37,113,161,.48)); }
.hero {
  border-radius: 16px;
  border-color: rgba(201,241,255,.62);
  background:
    radial-gradient(circle at 77% 20%, rgba(130,239,217,.22), transparent 30%),
    radial-gradient(circle at 16% 0%, rgba(117,190,247,.28), transparent 39%),
    linear-gradient(125deg, #0b4e88 0%, #0c73a5 52%, #3e8756 100%);
  box-shadow: 0 22px 55px rgba(0,24,43,.3), 0 0 0 1px rgba(3,49,91,.65), inset 0 2px 1px rgba(255,255,255,.58), inset 0 -12px 25px rgba(0,44,48,.2);
}
.hero::after { background: linear-gradient(180deg, rgba(255,255,255,.22), transparent 19%, transparent 78%, rgba(0,38,55,.16)); }
.hero h1 { font-family: var(--heading-font); font-weight: 700; letter-spacing: -1.8px; text-shadow: 0 2px 2px rgba(0,31,58,.28); }
.hero h1 span { color: #b2f4e2; text-shadow: 0 1px 2px rgba(0,46,55,.3); }
.hero-copy > p { font-size: 13px; text-shadow: 0 1px 1px rgba(0,30,55,.2); }
.button { min-height: 34px; border-radius: 5px; font-size: 11px; box-shadow: inset 0 1px rgba(255,255,255,.62), 0 2px 3px rgba(0,24,45,.2); }
.button:hover { transform: translateY(-1px); }
.button-primary { color: #0b3657; border-color: #6a9fbe; background: linear-gradient(180deg, #f5ffff 0%, #c9e7f4 48%, #91bfdc 100%); }
.button-glass { border-color: rgba(202,243,255,.55); background: linear-gradient(180deg, rgba(235,253,255,.25), rgba(38,119,159,.38)); }
.button-secondary { border-radius: 5px; border-color: #7ba4bb; background: linear-gradient(180deg, #f8fdff, #d7eaf2); }
.button-quiet { border-radius: 4px; border-color: #9bbac8; background: linear-gradient(180deg, #f4fbfd, #dcecf1); }
.floating-window { border-radius: 7px; border: 1px solid #5b91ad; background: linear-gradient(145deg, #f6fcff, #d4eaf2); box-shadow: 7px 10px 18px rgba(0,27,47,.28), inset 0 1px #fff, inset 0 -1px rgba(80,133,155,.22); }
.float-title { padding-bottom: 6px; border-bottom: 1px solid rgba(70,130,155,.22); color: #245776; }
.float-main { padding: 10px; }
.drop-preview { border-radius: 4px; border-color: #79a9bc; background: linear-gradient(#f9feff,#e5f2f6); }
.float-row { border-radius: 4px; border-color: #aac6d3; background: rgba(255,255,255,.42); }
.float-progress { border-radius: 2px; background: #d6e3e7; box-shadow: inset 0 1px 2px rgba(39,84,102,.2); }
.float-progress span { border-radius: 2px; background: linear-gradient(90deg,#3fae9e,#75bf58); }
.search-box { border-radius: 7px; border: 2px solid #719bb1; background: linear-gradient(#f8feff,#e5f1f5); box-shadow: inset 1px 1px 2px rgba(37,77,96,.18), 0 3px 7px rgba(0,26,46,.22); }
.search-box:focus-within { border-color: #267fb4; box-shadow: inset 1px 1px 2px rgba(37,77,96,.2), 0 0 0 2px rgba(106,203,228,.45), 0 3px 7px rgba(0,26,46,.22); }
.search-box input { font-family: Tahoma, Verdana, sans-serif; font-size: 12px; }
.quick-links button { border: 1px solid rgba(199,236,247,.2); border-radius: 3px; background: linear-gradient(180deg, rgba(211,246,255,.18), rgba(24,87,133,.28)); }
.sidebar-label, .start-section-title { font-family: Tahoma, Verdana, sans-serif; }
.category-button, .favorites-link { border-radius: 4px; font-size: 11px; }
.category-button:hover, .favorites-link:hover { background: linear-gradient(180deg, rgba(192,241,251,.14), rgba(22,85,130,.22)); }
.category-button.active { border-color: rgba(184,237,255,.38); background: linear-gradient(180deg, #2b8bc7, #0d5795); box-shadow: inset 0 1px rgba(255,255,255,.4), inset 2px 0 #9be7d3, 0 2px 4px rgba(0,25,48,.22); }
.tool-count, .favorite-count { border-radius: 3px; background: rgba(0,47,91,.3); }
.section-heading h2 { font-family: var(--heading-font); text-shadow: 0 1px 2px rgba(0,26,48,.32); }
.tool-card { border-radius: 7px; border-color: #86adc3; background: linear-gradient(145deg, #f9feff 0%, #e2f0f5 100%); box-shadow: inset 0 1px #fff, 0 2px 4px rgba(0,32,52,.18); }
.tool-card:hover { transform: translateY(-2px); border-color: #4d9dc4; box-shadow: inset 0 1px #fff, 0 5px 10px rgba(0,38,65,.25); }
.tool-card-icon { border: 1px solid rgba(88,139,161,.38); border-radius: 6px; box-shadow: inset 0 1px rgba(255,255,255,.9), 0 2px 3px rgba(0,47,73,.18); }
.tool-card h3 { font-family: var(--heading-font); font-size: 13px; }
.favorite-button { border-radius: 4px; border: 1px solid rgba(93,139,158,.24); background: rgba(255,255,255,.55); }
.badge-popular { border: 1px solid rgba(89,163,146,.25); border-radius: 3px; background: #c5ebd9; }
.view-toggle { border-radius: 4px; }
.view-toggle.active { background: linear-gradient(180deg,#328fc2,#0c5796); }
.privacy-banner { border-radius: 9px; border-color: rgba(187,233,244,.28); background: linear-gradient(115deg, rgba(31,112,144,.56), rgba(25,74,132,.62)); box-shadow: inset 0 1px rgba(255,255,255,.17), 0 3px 8px rgba(0,24,44,.2); }
.privacy-illustration { border-radius: 8px; border-color: rgba(194,242,246,.35); }
.desktop-shortcut { border-radius: 4px; font-family: Tahoma, Verdana, sans-serif; text-shadow: 0 1px 2px #123; }
.desktop-shortcut:hover { border-color: rgba(211,244,255,.5); background: linear-gradient(180deg, rgba(214,246,255,.22), rgba(22,91,132,.3)); }
.shortcut-icon { border-radius: 6px; border-color: rgba(224,249,255,.8); box-shadow: inset 0 1px rgba(255,255,255,.7), 0 2px 4px rgba(0,20,35,.35); }

/* Luna taskbar and Start menu */
.taskbar { height: var(--taskbar-height); padding: 0 7px 0 8px; border-top: 1px solid #9ddcff; background: linear-gradient(180deg, #4aa9df 0%, #1e75bb 9%, #165da7 47%, #0b3c7c 100%); box-shadow: inset 0 1px rgba(255,255,255,.55), inset 0 -2px 5px rgba(0,24,60,.35), 0 -5px 18px rgba(0,18,36,.28); backdrop-filter: none; }
.start-orb { width: 43px; height: 43px; margin-right: 8px; border: 1px solid #b9edff; background: radial-gradient(circle at 35% 22%, #edfff2 0 4%, #91df83 11%, #36a6b3 43%, #14618d 70%, #063b6a 100%); box-shadow: inset 0 2px 4px rgba(255,255,255,.75), inset 0 -5px 7px rgba(0,39,67,.55), 0 2px 5px rgba(0,0,0,.42); }
.start-orb::after { content: ""; position: absolute; width: 17px; height: 17px; border: 1px solid rgba(255,255,255,.65); border-radius: 2px; background: conic-gradient(#ef6b5d 0 25%, #66bdf0 0 50%, #75c56d 0 75%, #f3d45a 0); box-shadow: 0 1px 2px rgba(0,30,52,.45); transform: rotate(45deg); }
.start-orb:hover { filter: brightness(1.12); }
.taskbar-search { width: 164px; height: 32px; border: 1px solid #a5d9f1; border-radius: 4px; background: linear-gradient(#e9f9ff,#a6d5ec); box-shadow: inset 0 1px #fff, 0 1px 2px rgba(0,28,54,.28); color: #235477; }
.taskbar-search:hover { background: linear-gradient(#f5fdff,#b9e0f1); }
.taskbar-divider { background: rgba(205,241,255,.4); box-shadow: 1px 0 rgba(0,42,84,.45); }
.taskbar-pins button { border-radius: 4px; border-color: transparent; }
.taskbar-pins button:hover { border-color: rgba(208,243,255,.4); background: linear-gradient(180deg, rgba(213,247,255,.24), rgba(21,92,141,.36)); }
.system-tray { min-width: 125px; padding: 0 10px; border-left: 1px solid rgba(200,240,255,.27); box-shadow: inset 1px 0 rgba(0,42,84,.35); }
.system-tray time { font-family: Tahoma, Verdana, sans-serif; }
.start-menu { border: 2px solid #1e6099; border-radius: 9px 9px 0 0; background: #e8f4fa; box-shadow: 0 12px 30px rgba(0,20,37,.45), inset 0 1px #fff; }
.start-user { margin: -16px -14px 12px; padding: 12px 14px; color: #efffff; background: linear-gradient(180deg,#2d8ac6,#0c4b8c); box-shadow: inset 0 1px rgba(255,255,255,.35); }
.user-orb { border-radius: 4px; color: #155078; background: linear-gradient(145deg,#f2ffff,#9bd6d7); }
.start-section-title { color: #50778b; }
.start-menu > button:not(.start-footer button) { border-radius: 3px; }
.start-menu > button:not(.start-footer button):hover { background: linear-gradient(180deg,#d2eef8,#b7ddea); }
.start-item-icon { border: 1px solid rgba(87,137,159,.25); border-radius: 4px; }
.start-footer { background: rgba(203,231,241,.55); }

/* Standalone pages look like real Aero application windows */
.standalone-app-window { overflow: hidden; border: 2px solid #1b5e9a; border-radius: 10px 10px 3px 3px; background: #dcebf2; box-shadow: 0 0 0 1px #0a3e78, 0 13px 28px rgba(0,26,45,.3), inset 0 1px #fff; }
.standalone-app-titlebar { display: flex; align-items: center; gap: 8px; min-height: 35px; padding: 0 7px 0 10px; color: #f3fbff; background: linear-gradient(180deg,#62b9e9 0%,#2c89c5 10%,#1768aa 48%,#0a4b8c 100%); box-shadow: inset 0 1px rgba(255,255,255,.55), inset 0 -1px rgba(0,25,57,.42); text-shadow: 0 1px 2px rgba(0,30,55,.45); }
.standalone-app-title-icon { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.45); border-radius: 4px; color: #e2fff2; background: rgba(117,218,194,.22); }
.standalone-app-title-icon svg { width: 14px; height: 14px; }
.standalone-app-titlebar strong { font-family: var(--heading-font); font-size: 12px; }
.standalone-app-subtitle { color: rgba(231,250,255,.68); font-size: 10px; }
.standalone-window-buttons { display: flex; gap: 4px; margin-left: auto; }
.standalone-window-buttons span, .standalone-window-buttons a { display: grid; place-items: center; width: 25px; height: 23px; border: 1px solid rgba(255,255,255,.35); border-radius: 3px; color: #efffff; background: linear-gradient(180deg,rgba(221,248,255,.28),rgba(31,101,157,.38)); font-size: 14px; line-height: 1; text-decoration: none; }
.standalone-window-buttons a:hover { background: #c6535a; }
.standalone-tool-content { border: 0; border-radius: 0; background: linear-gradient(145deg,#f4fbfe,#d9eaf1); box-shadow: none; }
.standalone-statusbar { display: flex; align-items: center; gap: 0; min-height: 25px; padding: 0 7px; border-top: 1px solid #8eb2c5; color: #4e7180; background: linear-gradient(#eaf5f9,#c5dde7); font-size: 9px; box-shadow: inset 0 1px #fff; }
.standalone-statusbar span { padding: 3px 10px; border-right: 1px solid #adc6d0; }
.standalone-statusbar span:first-child { color: #387d68; }
.standalone-statusbar i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: #64b568; box-shadow: 0 0 4px rgba(79,174,86,.6); }
.standalone-statusbar span:last-child { margin-left: auto; border-right: 0; }
.related-tools-grid .tool-card { min-height: 156px; }
.related-tools-grid .tool-card h3 { font-family: var(--heading-font); }

@media (min-width: 1261px) {
  body:not([data-tool-page]) .workspace { width: min(1180px, calc(100% - 190px)); margin-left: 155px; margin-right: 25px; }
  .desktop-shortcuts { display: grid; }
}
@media (max-width: 620px) {
  .topbar { margin-left: 0; margin-right: 0; }
  .topbar-actions .icon-button:first-child { display: none; }
  .taskbar { padding-left: 6px; }
  .standalone-app-titlebar { min-height: 32px; }
  .standalone-app-subtitle { display: none; }
  .standalone-window-buttons span, .standalone-window-buttons a { width: 23px; height: 21px; }
  .standalone-statusbar { font-size: 8px; }
  .standalone-statusbar span { padding: 3px 6px; }
  .standalone-statusbar span:nth-child(2) { display: none; }
}

/* Full desktop shell: Explorer, menus, toolbars and desktop folders */
.os-workspace { width: min(1240px, calc(100% - 190px)); margin: 24px 25px 100px 155px; padding: 0; }
.os-window { overflow: hidden; border: 2px solid #164f88; border-radius: 10px 10px 3px 3px; color: #183d57; background: #dcebf2; box-shadow: 0 0 0 1px #0b3a6c, 0 17px 38px rgba(0,22,41,.34), inset 0 1px #fff; }
.os-window-titlebar { display: flex; align-items: center; gap: 8px; min-height: 37px; padding: 0 7px 0 10px; color: #f5fcff; background: linear-gradient(180deg,#6dc0eb 0%,#3290ca 10%,#1a6cad 48%,#084887 100%); box-shadow: inset 0 1px rgba(255,255,255,.65), inset 0 -1px rgba(0,27,60,.45); text-shadow: 0 1px 2px rgba(0,30,55,.5); }
.os-window-icon { display: grid; grid-template-columns: repeat(2, 9px); grid-template-rows: repeat(2, 9px); gap: 2px; width: 21px; height: 21px; padding: 2px; border: 1px solid rgba(255,255,255,.6); border-radius: 3px; background: rgba(211,250,255,.18); transform: rotate(45deg); }
.os-window-icon span { border-radius: 1px; background: #b7f3e8; box-shadow: inset 0 1px rgba(255,255,255,.65); }
.os-window-icon span:nth-child(2) { background: #8cd7ff; }
.os-window-icon span:nth-child(3) { background: #83d18e; }
.os-window-icon span:nth-child(4) { background: #f2d370; }
.os-window-titlebar strong { font-family: var(--heading-font); font-size: 12px; }
.os-window-caption { color: rgba(234,251,255,.68); font-size: 10px; }
.os-window-controls { display: flex; gap: 4px; margin-left: auto; }
.os-window-controls span { display: grid; place-items: center; width: 27px; height: 24px; border: 1px solid rgba(255,255,255,.38); border-radius: 3px; color: #f5ffff; background: linear-gradient(180deg,rgba(225,249,255,.3),rgba(31,100,155,.4)); font-size: 15px; line-height: 1; }
.os-window-controls span:last-child { background: linear-gradient(180deg,#e78b84,#b8474d); }
.os-menubar { display: flex; align-items: center; gap: 2px; min-height: 29px; padding: 0 9px; border-bottom: 1px solid #a7c1cc; color: #254b62; background: linear-gradient(#f7fcfe,#dcebf0); font-size: 10px; }
.os-menubar button { padding: 4px 8px; border: 0; border-radius: 2px; color: #31566b; background: transparent; font-size: 10px; }
.os-menubar button:hover { color: #0a4772; background: #c9e4f0; }
.os-toolbar { display: flex; align-items: center; gap: 5px; min-height: 43px; padding: 5px 8px; border-bottom: 1px solid #a1bdca; background: linear-gradient(#eff8fb,#d5e6ec); }
.toolbar-button { display: grid; place-items: center; width: 31px; height: 29px; padding: 0; border: 1px solid transparent; border-radius: 4px; color: #2d7192; background: transparent; }
.toolbar-button:hover { border-color: #82b1c5; background: linear-gradient(#f8feff,#c4e1ed); }
.toolbar-button svg { width: 16px; height: 16px; }
.toolbar-button:nth-child(2) svg { transform: rotate(180deg); }
.toolbar-button:nth-child(3) svg { transform: rotate(-90deg); }
.toolbar-separator { width: 1px; height: 25px; margin: 0 4px; background: #a5bfca; box-shadow: 1px 0 #f8feff; }
.address-bar { display: flex; align-items: center; gap: 6px; min-width: 190px; height: 29px; padding: 0 8px; border: 1px solid #8baebe; border-radius: 3px; color: #42687b; background: linear-gradient(#faffff,#e4f0f4); box-shadow: inset 1px 1px 2px rgba(48,86,102,.13); font-size: 10px; }
.address-bar strong { color: #1d526e; font-weight: 600; }
.address-bar b { color: #7292a0; font-size: 15px; line-height: 1; }
.address-icon { display: grid; place-items: center; color: #3885a1; }
.address-icon svg { width: 14px; height: 14px; }
.toolbar-search { position: relative; display: flex; align-items: center; gap: 6px; min-width: 170px; height: 29px; margin-left: auto; padding: 0 7px; border: 1px solid #8baebe; border-radius: 3px; color: #4c7d91; background: linear-gradient(#faffff,#e4f0f4); box-shadow: inset 1px 1px 2px rgba(48,86,102,.13); }
.toolbar-search svg { width: 14px; height: 14px; flex: 0 0 auto; }
.toolbar-search input { min-width: 0; flex: 1; height: 27px; border: 0; outline: 0; color: #204a62; background: transparent; font-size: 10px; }
.toolbar-search kbd { padding: 2px 4px; border: 1px solid #b1c7d0; border-bottom-width: 2px; border-radius: 2px; color: #7893a0; background: #f5fbfd; font-size: 8px; }
.toolbar-view-button { margin-left: 2px; }
.explorer-layout { display: grid; grid-template-columns: 205px minmax(0, 1fr); min-height: 590px; background: #f5fafc; }
.explorer-sidebar { padding: 12px 8px 15px; border-right: 1px solid #b1c8d2; color: #315a70; background: linear-gradient(90deg,#e6f1f5,#d7e8ee); }
.explorer-group-title { margin: 4px 8px 6px; color: #628394; font-size: 9px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }
.explorer-group-title:not(:first-child) { margin-top: 18px; }
.explorer-sidebar .category-button, .explorer-sidebar .favorites-link { min-height: 31px; margin: 1px 0; padding-left: 8px; color: #315c72; font-size: 10px; }
.explorer-sidebar .category-button:hover, .explorer-sidebar .favorites-link:hover { color: #0b4b76; background: linear-gradient(#effaff,#c8e4ef); }
.explorer-sidebar .category-button.active { color: #fff; border-color: #2778ae; background: linear-gradient(#4aa6d5,#1465a3); box-shadow: inset 0 1px rgba(255,255,255,.45), inset 2px 0 #a1e2d0; }
.explorer-sidebar .nav-icon { color: #4b8ca3; }
.explorer-sidebar .category-button.active .nav-icon { color: #d7fff3; }
.explorer-sidebar .tool-count, .explorer-sidebar .favorite-count { color: #52788a; background: rgba(71,126,150,.12); }
.explorer-sidebar .category-button.active .tool-count { color: #efffff; background: rgba(0,45,90,.3); }
.explorer-sidebar-card { margin: 24px 4px 0; padding: 11px 9px; border: 1px solid #a7c7d3; border-radius: 5px; background: linear-gradient(#f3fbfc,#d7ebf0); box-shadow: inset 0 1px #fff; }
.explorer-sidebar-card > span { display: grid; place-items: center; width: 24px; height: 24px; margin-bottom: 7px; border: 1px solid #a1c9c0; border-radius: 4px; color: #438b78; background: #d9f1df; }
.explorer-sidebar-card > span svg { width: 14px; height: 14px; }
.explorer-sidebar-card strong { display: block; color: #28566d; font-size: 10px; }
.explorer-sidebar-card p { margin: 5px 0 8px; color: #6c8792; font-size: 9px; line-height: 1.45; }
.explorer-sidebar-card button { padding: 0; border: 0; color: #2776a3; background: transparent; font-size: 9px; }
.explorer-sidebar-card button b { margin-left: 3px; font-size: 12px; }
.explorer-main { min-width: 0; padding: 20px 22px 25px; background: linear-gradient(145deg,#fbfdfe,#e8f1f4); }
.explorer-welcome { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 100px; margin-bottom: 23px; padding: 17px 19px; border: 1px solid #a6c6d2; border-radius: 6px; background: linear-gradient(110deg,#e9f8fb,#d4edf0 58%,#c8e3ce); box-shadow: inset 0 1px #fff, 0 2px 4px rgba(0,47,70,.1); }
.explorer-kicker { color: #41839a; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.explorer-welcome h1 { margin: 5px 0 5px; color: #1c4a64; font-family: var(--heading-font); font-size: 22px; font-weight: 600; letter-spacing: -.6px; }
.explorer-welcome p { max-width: 560px; margin: 0; color: #5a7885; font-size: 10px; line-height: 1.5; }
.welcome-badge { display: grid; place-items: center; flex: 0 0 72px; width: 72px; height: 72px; border: 1px solid #77aebe; border-radius: 50%; color: #286c80; background: radial-gradient(circle at 35% 25%,#f7ffff,#bfe3e8 62%,#8bc5d4); box-shadow: inset 0 2px 4px rgba(255,255,255,.85), 0 3px 6px rgba(0,54,79,.16); }
.welcome-badge svg { width: 16px; height: 16px; }
.welcome-badge b { margin-top: 2px; font-family: var(--heading-font); font-size: 19px; line-height: 1; }
.welcome-badge small { margin-top: 3px; color: #5a8390; font-size: 8px; }
.explorer-main .section-block { margin-bottom: 27px; }
.explorer-main .section-heading { margin-bottom: 10px; }
.explorer-main .section-kicker { margin-bottom: 3px; color: #6b8d9b; font-size: 9px; }
.explorer-main .section-heading h2 { color: #1e4d66; font-family: var(--heading-font); font-size: 19px; font-weight: 600; text-shadow: none; }
.explorer-main .text-button { color: #277ca6; }
.explorer-main .text-button:hover { color: #0c527c; }
.explorer-main .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.explorer-main .featured-grid .tool-card { min-height: 143px; }
.explorer-main .tools-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.explorer-main .tools-grid .tool-card { min-height: 160px; }
.explorer-main .tool-card { border-radius: 5px; border-color: #9abccb; background: linear-gradient(145deg,#fff,#e2eef2); }
.explorer-main .tool-card h3 { color: #204d66; }
.explorer-main .tool-card p { color: #6a8490; }
.explorer-main .tool-card-icon { border-radius: 5px; }
.explorer-main .view-controls { color: #7b95a0; }
.explorer-main .view-toggle { color: #4f829a; border-color: #a4bfca; background: linear-gradient(#f8fdff,#d8e8ed); }
.explorer-main .view-toggle.active { color: #fff; border-color: #377fa8; background: linear-gradient(#4da3cc,#17679e); }
.explorer-main .empty-state { color: #5d7d8b; border-color: #9bbdca; background: rgba(255,255,255,.35); }
.explorer-main .empty-state h3 { color: #28566d; }
.explorer-main .empty-state p { color: #78929c; }
.explorer-privacy-note { display: flex; align-items: center; gap: 10px; margin-top: 4px; padding: 11px 12px; border: 1px solid #9ec7c2; border-radius: 5px; color: #3c6870; background: linear-gradient(#e7f8ee,#d1ebdc); box-shadow: inset 0 1px #fff; }
.explorer-privacy-note > span { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid #8fbaa7; border-radius: 4px; color: #438d70; background: #c7e9d1; }
.explorer-privacy-note > span svg { width: 14px; height: 14px; }
.explorer-privacy-note strong { display: block; font-size: 10px; }
.explorer-privacy-note p { margin: 3px 0 0; color: #6b8b8c; font-size: 9px; }
.explorer-privacy-note button { display: inline-flex; align-items: center; gap: 4px; margin-left: auto; padding: 5px 7px; border: 1px solid #8bb6a3; border-radius: 3px; color: #377a68; background: linear-gradient(#f6fff8,#d6efdd); font-size: 9px; white-space: nowrap; }
.explorer-privacy-note button svg { width: 12px; height: 12px; }
.os-statusbar { display: flex; align-items: center; gap: 0; min-height: 25px; padding: 0 7px; border-top: 1px solid #8eafbd; color: #557482; background: linear-gradient(#eff8fa,#cfe1e8); font-size: 9px; box-shadow: inset 0 1px #fff; }
.os-statusbar span { display: inline-flex; align-items: center; gap: 5px; min-height: 17px; padding: 2px 10px; border-right: 1px solid #b1c8d1; }
.os-statusbar span:first-child { color: #3b806b; }
.os-statusbar span:nth-last-child(2) { margin-left: auto; border-right: 0; }
.os-statusbar span:last-child { border-right: 0; }
.os-statusbar .status-dot { width: 6px; height: 6px; box-shadow: 0 0 4px rgba(80,173,91,.55); }
.quick-launch { display: flex; align-items: center; gap: 3px; }
.quick-launch button { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid transparent; border-radius: 3px; color: #e5f8ff; background: transparent; }
.quick-launch button:hover { border-color: #b6e6f4; background: rgba(217,247,255,.18); }
.quick-launch svg { width: 16px; height: 16px; }
.shortcut-teal { color: #277b7e; background: linear-gradient(145deg,#d5f5ed,#89d4c8); }
.shortcut-purple { color: #6e51a1; background: linear-gradient(145deg,#eee3ff,#c6b4eb); }
.shortcut-green { color: #43834d; background: linear-gradient(145deg,#e4f5ce,#acd995); }
.shortcut-silver { color: #4a6a7a; background: linear-gradient(145deg,#f4fbfd,#c5d8df); }
.shortcut-pink { color: #9b5575; background: linear-gradient(145deg,#ffe4ef,#e8b6c8); }
.os-shortcut-icon { image-rendering: auto; }

@media (min-width: 1261px) {
  .os-workspace { width: min(1240px, calc(100% - 190px)); margin-left: 155px; margin-right: 25px; }
  .desktop-shortcuts { display: grid; }
}
@media (max-width: 1260px) {
  .os-workspace { width: min(100% - 34px, 980px); margin: 20px auto 100px; }
  .desktop-shortcuts { display: none; }
}
@media (max-width: 820px) {
  .os-workspace { width: calc(100% - 20px); margin-top: 12px; }
  .explorer-layout { display: block; min-height: 0; }
  .explorer-sidebar { display: flex; gap: 5px; overflow-x: auto; padding: 8px; border-right: 0; border-bottom: 1px solid #b1c8d2; }
  .explorer-group-title, .explorer-sidebar-card { display: none; }
  .explorer-sidebar .category-button, .explorer-sidebar .favorites-link { width: auto; min-width: max-content; margin: 0; }
  .explorer-main { padding: 16px 13px 20px; }
  .os-toolbar { flex-wrap: wrap; }
  .address-bar { flex: 1; min-width: 150px; }
  .toolbar-search { min-width: 155px; margin-left: 0; }
  .os-menubar { overflow-x: auto; }
}
@media (max-width: 620px) {
  .os-window { border-radius: 7px 7px 2px 2px; }
  .os-window-titlebar { min-height: 33px; }
  .os-window-caption { display: none; }
  .os-window-controls span { width: 24px; height: 22px; }
  .os-toolbar { gap: 3px; padding: 4px; }
  .toolbar-button { width: 27px; height: 27px; }
  .toolbar-separator { margin: 0 2px; }
  .address-bar { order: 5; width: 100%; min-width: 0; flex: 1 0 100%; }
  .toolbar-search { order: 6; width: 100%; min-width: 0; flex: 1 0 100%; }
  .explorer-main { padding: 12px 8px 16px; }
  .explorer-welcome { min-height: 0; padding: 13px; }
  .explorer-welcome h1 { font-size: 17px; }
  .explorer-welcome p { font-size: 9px; }
  .welcome-badge { flex-basis: 57px; width: 57px; height: 57px; }
  .welcome-badge b { font-size: 15px; }
  .explorer-main .featured-grid, .explorer-main .tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .explorer-main .featured-grid .tool-card, .explorer-main .tools-grid .tool-card { min-height: 144px; }
  .explorer-main .tool-card { padding: 12px 10px 10px; }
  .explorer-main .tool-card h3 { font-size: 11px; }
  .explorer-main .tool-card p { font-size: 9px; }
  .explorer-privacy-note { align-items: flex-start; flex-wrap: wrap; }
  .explorer-privacy-note button { margin-left: 36px; }
  .os-statusbar span { padding: 2px 6px; }
  .os-statusbar span:nth-last-child(2) { display: none; }
}

