@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
}

[v-cloak] { display: none !important; }

:root {
  --ink: #172033;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #f7f7f4;
  --white: #ffffff;
  --blue: #155eef;
  --blue-dark: #0b4bc7;
  --blue-soft: #e9f0ff;
  --coral: #ef6a54;
  --violet: #7a5af8;
  --green: #0e9384;
  --amber: #f6b51e;
  --color-dark: var(--ink);
  --glass-bg: rgba(255, 255, 255, .92);
  --glass-border: rgba(23, 32, 51, .09);
  --shadow-glass: 0 18px 45px rgba(23, 32, 51, .08);
  --text-caption: 12px;
  --text-small: 14px;
  --text-body: 16px;
  --text-lead: 18px;
  --line-body: 1.6;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(23, 32, 51, .1) .6px, transparent .6px);
  background-size: 22px 22px;
  opacity: .2;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
::selection { color: var(--ink); background: #ffd874; }
:focus-visible { outline: 3px solid rgba(21, 94, 239, .35); outline-offset: 3px; }
.font-display { font-family: 'Manrope', 'DM Sans', sans-serif !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 100;
  padding: 11px 16px; border-radius: 10px; color: white; background: var(--ink);
  font-size: 14px; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 16px; }
.noscript-page { width: min(100% - 32px, 720px); margin: 64px auto; padding: 32px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 16px; }
.noscript-page img { width: 140px; height: auto; }
.noscript-title { margin: 24px 0 10px; color: var(--ink) !important; font: 750 32px/1.2 'Manrope', sans-serif; }
.noscript-page p { color: var(--muted); line-height: 1.65; }
.noscript-page a { color: var(--blue); font-weight: 700; }
.noscript-tool-list { columns: 3 180px; padding-left: 20px; }
.noscript-tool-list li { margin-bottom: 8px; break-inside: avoid; }

/* Shared product shell */
.blur-blob { display: none; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 247, 244, .92);
  border-bottom: 1px solid rgba(23, 32, 51, .08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  width: min(100% - 40px, 1340px); min-height: 80px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px;
}
.brand-link { display: inline-flex; align-items: center; }
.brand-logo { width: 146px; height: auto; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  position: relative; color: #4b5565; font-size: 15px; font-weight: 650;
  text-decoration: none; transition: color .2s;
}
.primary-nav a::after {
  content: ''; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px;
  border-radius: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-search { position: relative; width: 220px; }
.header-search > svg {
  position: absolute; left: 12px; top: 50%; width: 17px; height: 17px;
  fill: none; stroke: #70798b; stroke-width: 2; transform: translateY(-50%); pointer-events: none;
}
.header-search input {
  width: 100%; height: 44px; padding: 0 38px 0 38px;
  color: var(--ink); background: white; border: 1px solid #d9dde5; border-radius: 11px;
  outline: none; font-size: 14px; font-weight: 500; transition: border .2s, box-shadow .2s;
}
.header-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,94,239,.1); }
.header-search kbd {
  position: absolute; top: 50%; right: 10px; padding: 1px 6px; transform: translateY(-50%);
  color: #8891a2; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 5px;
  font: 650 12px/18px 'DM Sans', sans-serif;
}
.search-popover, .hero-search-results {
  position: absolute; top: calc(100% + 10px); right: 0; left: 0; z-index: 60;
  max-height: 350px; padding: 8px; overflow-y: auto;
  background: white; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 20px 50px rgba(23,32,51,.16);
}
.search-popover > p { margin: 5px 10px 8px; color: #758095; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.search-popover a { display: flex; flex-direction: column; gap: 3px; min-height: 52px; padding: 9px 10px; justify-content: center; text-decoration: none; border-radius: 8px; }
.search-popover a:hover { background: #f4f6f9; }
.search-popover span { color: var(--ink); font-size: 14px; font-weight: 700; }
.search-popover small { overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 18px;
  color: white; background: var(--ink); border-radius: 11px;
  font-size: 14px; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s;
}
.header-cta:hover { background: var(--blue); transform: translateY(-1px); }
.mobile-category-nav { display: none; }

main#main-content { width: min(100% - 40px, 1340px); max-width: none; padding-right: 0; padding-left: 0; }
main#main-content:focus { outline: none; }
.page-slot { padding-top: 0; }
.tool-breadcrumbs { padding: 3px 0 26px; display: flex; align-items: center; gap: 9px; color: #707b90; font-size: 13px; font-weight: 650; }
.tool-breadcrumbs a { color: #657083; text-decoration: none; }
.tool-breadcrumbs a:hover { color: var(--blue); }
.tool-breadcrumbs span:last-child { max-width: 48ch; overflow: hidden; color: var(--ink); text-overflow: ellipsis; white-space: nowrap; }
.tool-page, .tool-hero, .tool-hero > *, .tool-hero .grid, .tool-hero .flex { min-width: 0; }
.tool-hero > * { max-width: 100%; }
.tool-hero input, .tool-hero textarea, .tool-hero select, .tool-hero pre { max-width: 100%; min-width: 0; }

/* Homepage */
.home-page { padding: 0 0 12px; }
.hero-shell {
  position: relative; min-height: 650px; margin: 0 calc(50% - 50vw); padding: 92px max(20px, calc((100vw - 1340px) / 2));
  display: grid; grid-template-columns: minmax(0, .91fr) minmax(490px, 1.09fr); align-items: center; gap: 72px;
  overflow: hidden; background: #f7f7f4;
}
.hero-shell::before {
  content: ''; position: absolute; width: 580px; height: 580px; top: -225px; left: -205px;
  border: 1px solid rgba(21,94,239,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(21,94,239,.025), 0 0 0 160px rgba(21,94,239,.02);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 3; min-width: 0; max-width: 640px; }
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 9px; color: var(--blue);
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow span { width: 20px; height: 2px; background: var(--blue); }
.hero-copy h1 {
  max-width: 620px; margin: 22px 0 22px; color: #141c2c;
  font: 800 clamp(43px, 4.35vw, 68px)/1.04 'Manrope', sans-serif; letter-spacing: -.05em;
}
.hero-copy > p { max-width: 600px; margin: 0; color: #5d6678; font-size: 17px; line-height: 1.72; }
.hero-search { position: relative; max-width: 590px; margin-top: 34px; }
.hero-search > svg {
  position: absolute; z-index: 2; top: 50%; left: 20px; width: 21px; height: 21px;
  fill: none; stroke: #657083; stroke-width: 2; transform: translateY(-50%); pointer-events: none;
}
.hero-search > input {
  width: 100%; height: 64px; padding: 0 160px 0 54px;
  color: var(--ink); background: white; border: 1px solid #d9dde5; border-radius: 14px;
  box-shadow: 0 10px 30px rgba(23,32,51,.07); outline: none; font-size: 15px; font-weight: 600;
  transition: border .2s, box-shadow .2s;
}
.hero-search > input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,94,239,.1), 0 14px 34px rgba(23,32,51,.1); }
.hero-search__hint { position: absolute; right: 18px; top: 50%; color: #7f899b; font-size: 12px; transform: translateY(-50%); pointer-events: none; }
.hero-search-results { top: calc(100% + 8px); padding: 7px; }
.hero-search-results a { display: grid; grid-template-columns: 1fr auto; gap: 2px 14px; padding: 10px 12px; border-radius: 9px; text-decoration: none; }
.hero-search-results a:hover { background: #f5f7fb; }
.hero-search-results span { font-size: 14px; font-weight: 700; }
.hero-search-results small { max-width: 430px; overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.hero-search-results strong { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--blue); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 20px; }
.button {
  display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 48px; padding: 0 20px;
  border-radius: 11px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s;
}
.button--primary { color: white; background: var(--blue); box-shadow: 0 8px 18px rgba(21,94,239,.2); }
.button--primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.text-link { color: #3f4858; font-size: 14px; font-weight: 700; text-underline-offset: 5px; }
.text-link:hover { color: var(--blue); }
.trust-list { display: flex; gap: 22px; margin: 28px 0 0; padding: 23px 0 0; border-top: 1px solid #e0e2e6; list-style: none; }
.trust-list li { display: flex; align-items: center; gap: 6px; color: #5b6679; font-size: 13px; font-weight: 600; }
.trust-list svg { width: 15px; height: 15px; fill: none; stroke: var(--green); stroke-width: 2.5; }

.hero-visual { position: relative; min-width: 0; min-height: 505px; display: flex; align-items: center; justify-content: center; }
.hero-visual::before {
  content: ''; position: absolute; width: 450px; height: 450px; border-radius: 50%;
  background: #e7edff; box-shadow: inset 0 0 0 70px rgba(255,255,255,.3);
}
.visual-orbit { position: absolute; border: 1px solid rgba(21,94,239,.13); border-radius: 50%; }
.visual-orbit--one { width: 530px; height: 530px; }
.visual-orbit--two { width: 620px; height: 620px; border-style: dashed; opacity: .65; }
.tool-window {
  position: relative; z-index: 2; width: min(100%, 515px); overflow: hidden;
  background: white; border: 1px solid rgba(23,32,51,.1); border-radius: 18px;
  box-shadow: 0 35px 70px rgba(32,56,110,.18); transform: rotate(1.1deg);
}
.tool-window__top { height: 49px; padding: 0 15px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; color: #778093; background: #fafbfc; border-bottom: 1px solid #e7e9ee; font-size: 10px; font-weight: 600; }
.window-mark { display: flex; gap: 5px; }
.window-mark i { width: 7px; height: 7px; background: #d7dbe2; border-radius: 50%; }
.secure-pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; color: #08776b; background: #e8f8f5; border-radius: 20px; font-size: 9px; font-weight: 800; }
.secure-pill i { width: 5px; height: 5px; background: #0e9384; border-radius: 50%; }
.tool-window__body { padding: 22px; }
.drop-preview { display: grid; grid-template-columns: 66px 1fr auto; align-items: center; gap: 14px; padding: 13px; background: #f7f8fa; border: 1px dashed #cdd3dc; border-radius: 12px; }
.preview-art { position: relative; width: 66px; height: 53px; overflow: hidden; background: #c9daf9; border-radius: 8px; }
.preview-art span:nth-child(1) { position: absolute; right: -4px; bottom: -22px; width: 62px; height: 62px; background: #2468d8; border-radius: 50%; }
.preview-art span:nth-child(2) { position: absolute; left: -7px; bottom: -28px; width: 70px; height: 70px; background: #6b8ed1; border-radius: 50%; }
.preview-art span:nth-child(3) { position: absolute; top: 8px; right: 10px; width: 9px; height: 9px; background: #fff4ba; border-radius: 50%; }
.drop-preview strong, .drop-preview small { display: block; }
.drop-preview strong { margin-bottom: 5px; font-size: 11px; }
.drop-preview small { color: #7d8697; font-size: 9px; }
.drop-preview button { color: #929aaa; background: none; border: 0; font-size: 19px; cursor: pointer; }
.quality-row { margin: 23px 1px 10px; display: flex; justify-content: space-between; color: #657083; font-size: 10px; font-weight: 700; }
.quality-row strong { color: var(--ink); }
.quality-slider { height: 5px; background: #e2e5ea; border-radius: 10px; }
.quality-slider span { display: block; position: relative; width: 82%; height: 100%; background: var(--blue); border-radius: inherit; }
.quality-slider span::after { content: ''; position: absolute; right: -7px; top: -5px; width: 15px; height: 15px; background: white; border: 3px solid var(--blue); border-radius: 50%; box-shadow: 0 2px 7px rgba(23,32,51,.2); }
.result-row { margin: 25px 0 18px; padding: 13px 15px; display: grid; grid-template-columns: 1fr auto 1fr auto; align-items: center; gap: 12px; background: #f8fafc; border-radius: 10px; }
.result-row div:not(.saved-badge) { display: flex; flex-direction: column; gap: 2px; }
.result-row small { color: #8a93a3; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.result-row strong { font-size: 11px; }
.result-row > span { color: #9aa2b1; }
.saved-badge { padding: 5px 8px; color: #08776b; background: #e7f7f3; border-radius: 6px; font-size: 8px; font-weight: 800; }
.mock-button { width: 100%; height: 44px; display: flex; justify-content: center; align-items: center; gap: 10px; color: white; background: var(--blue); border: 0; border-radius: 9px; font-size: 11px; font-weight: 800; }
.floating-card { position: absolute; z-index: 4; padding: 12px 15px; display: flex; align-items: center; gap: 10px; background: white; border: 1px solid rgba(23,32,51,.08); border-radius: 12px; box-shadow: 0 16px 35px rgba(23,32,51,.13); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { margin-bottom: 2px; font-size: 10px; }
.floating-card small { color: #7d8697; font-size: 8px; }
.floating-card--shield { left: 0; bottom: 68px; }
.floating-card--shield svg { width: 26px; height: 26px; padding: 5px; color: var(--green); background: #e7f7f3; border-radius: 7px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.floating-card--speed { top: 55px; right: -8px; }
.floating-card--speed > span { width: 27px; height: 27px; display: grid; place-items: center; background: #fff4d8; border-radius: 7px; font-size: 13px; }

.popular-section, .category-section { padding: 96px 0 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-heading h2 { margin: 8px 0 0; font: 800 clamp(28px, 3vw, 40px)/1.15 'Manrope', sans-serif; letter-spacing: -.035em; }
.section-heading > a { color: var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }
.section-heading > a span { margin-left: 8px; color: var(--blue); }
.section-heading > a:hover { color: var(--blue); }
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; text-align: right; }
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.popular-card { position: relative; min-height: 196px; padding: 22px; display: flex; flex-direction: column; color: var(--ink); background: white; border: 1px solid #e4e6eb; border-radius: 15px; text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.popular-card::before { content: ''; position: absolute; top: 0; right: 22px; left: 22px; height: 3px; background: var(--card-accent); border-radius: 0 0 3px 3px; opacity: 0; transition: opacity .2s; }
.popular-card:hover { border-color: rgba(21,94,239,.35); box-shadow: 0 16px 35px rgba(23,32,51,.08); transform: translateY(-4px); }
.popular-card:hover::before { opacity: 1; }
.popular-card--blue { --card-accent: var(--blue); --card-soft: var(--blue-soft); }
.popular-card--coral { --card-accent: var(--coral); --card-soft: #fff0ed; }
.popular-card--violet { --card-accent: var(--violet); --card-soft: #f0edff; }
.popular-card--green { --card-accent: var(--green); --card-soft: #e8f7f4; }
.popular-card__icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--card-accent); background: var(--card-soft); border-radius: 11px; }
.popular-card__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.popular-card__copy { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.popular-card__copy strong { font: 750 15px 'Manrope', sans-serif; }
.popular-card__copy small { max-width: 195px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.popular-card__arrow { position: absolute; top: 22px; right: 22px; color: #9aa2b1; transition: color .2s, transform .2s; }
.popular-card:hover .popular-card__arrow { color: var(--card-accent); transform: translate(2px, -2px); }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #e1e4e9; border-radius: 16px; overflow: hidden; }
.category-card { position: relative; min-height: 435px; padding: 27px; background: white; border-right: 1px solid #e7e9ed; }
.category-card:nth-child(3n) { border-right: 0; }
.category-card:nth-child(-n+3) { border-bottom: 1px solid #e7e9ed; }
.category-number { position: absolute; top: 29px; right: 27px; color: #a5acb8; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.category-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; }
.category-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.category-icon--blue { color: var(--blue); background: var(--blue-soft); }
.category-icon--coral { color: var(--coral); background: #fff0ed; }
.category-icon--violet { color: var(--violet); background: #f0edff; }
.category-icon--green { color: var(--green); background: #e8f7f4; }
.category-card h3 { margin: 23px 0 10px; font: 750 17px 'Manrope', sans-serif; }
.category-card > p { min-height: 61px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.category-card ul { margin: 24px 0; padding: 18px 0; border-top: 1px solid #eceef1; border-bottom: 1px solid #eceef1; list-style: none; }
.category-card li + li { margin-top: 13px; }
.category-card li a { display: flex; justify-content: space-between; color: #4f596a; font-size: 11px; font-weight: 650; text-decoration: none; }
.category-card li a span { color: #a1a8b5; }
.category-card li a:hover { color: var(--blue); }
.category-card button { padding: 0; color: var(--ink); background: none; border: 0; border-bottom: 1px solid #9da4b0; cursor: pointer; font-size: 11px; font-weight: 750; line-height: 1.8; }
.category-card button:hover { color: var(--blue); border-color: var(--blue); }

.demo-section { margin: 96px 0 0; padding: 64px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 72px; color: white; background: #141d30; border-radius: 20px; overflow: hidden; position: relative; }
.demo-section::after { content: ''; position: absolute; width: 420px; height: 420px; right: -200px; top: -190px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.demo-copy, .demo-widget { position: relative; z-index: 2; }
.section-kicker--light { color: #83a8ff; }
.demo-copy h2 { max-width: 430px; margin: 12px 0 18px; font: 800 clamp(31px, 3vw, 45px)/1.1 'Manrope', sans-serif; letter-spacing: -.04em; }
.demo-copy > p { margin: 0; color: #aab3c2; font-size: 14px; line-height: 1.7; }
.demo-proof { margin-top: 32px; padding-top: 25px; display: flex; align-items: center; gap: 13px; border-top: 1px solid rgba(255,255,255,.1); }
.demo-proof > span { width: 39px; height: 39px; display: grid; place-items: center; color: #63d9c9; background: rgba(14,147,132,.14); border-radius: 10px; }
.demo-proof svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.demo-proof strong, .demo-proof small { display: block; }
.demo-proof strong { margin-bottom: 3px; font-size: 11px; }
.demo-proof small { color: #8f99aa; font-size: 9px; }
.demo-widget { padding: 22px; color: var(--ink); background: white; border-radius: 15px; box-shadow: 0 24px 50px rgba(0,0,0,.16); }
.demo-widget__head { margin-bottom: 13px; display: flex; justify-content: space-between; align-items: center; }
.demo-widget__head strong { font: 750 13px 'Manrope', sans-serif; }
.demo-widget__head button { color: #8a93a3; background: none; border: 0; cursor: pointer; font-size: 10px; font-weight: 700; }
.demo-widget textarea { width: 100%; padding: 14px; resize: vertical; color: var(--ink); background: #f8f9fb; border: 1px solid #e1e4e9; border-radius: 10px; outline: none; font-size: 12px; line-height: 1.6; }
.demo-widget textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,94,239,.1); }
.demo-stats { margin-top: 11px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #e6e8ec; border-radius: 9px; overflow: hidden; }
.demo-stats span { padding: 11px; display: flex; flex-direction: column; gap: 3px; text-align: center; border-right: 1px solid #e6e8ec; }
.demo-stats span:last-child { border-right: 0; }
.demo-stats strong { font: 750 15px 'Manrope', sans-serif; }
.demo-stats small { color: #8a93a3; font-size: 8px; text-transform: uppercase; letter-spacing: .05em; }
.demo-widget > a { margin-top: 15px; display: flex; justify-content: space-between; color: var(--blue); font-size: 10px; font-weight: 750; text-decoration: none; }

.privacy-strip { margin: 32px 0 0; padding: 40px 45px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; background: #edf2ff; border: 1px solid #dce6ff; border-radius: 16px; }
.privacy-mark { width: 58px; height: 58px; display: grid; place-items: center; color: var(--blue); background: white; border-radius: 15px; box-shadow: 0 8px 20px rgba(21,94,239,.08); }
.privacy-mark svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.privacy-strip h2 { margin: 7px 0 5px; font: 750 22px 'Manrope', sans-serif; letter-spacing: -.025em; }
.privacy-strip p { max-width: 720px; margin: 0; color: #63708a; font-size: 11px; line-height: 1.55; }
.privacy-strip > a { padding: 12px 16px; color: var(--ink); background: white; border: 1px solid #d7e1f9; border-radius: 9px; font-size: 10px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.privacy-strip > a span { margin-left: 7px; color: var(--blue); }
.privacy-strip > a:hover { border-color: var(--blue); }

/* Tool directory */
.directory-page { padding: 74px 0 10px; }
.directory-hero { padding-bottom: 54px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; border-bottom: 1px solid #dcdee3; }
.directory-hero h1 { margin: 13px 0 17px; font: 800 clamp(40px, 4.8vw, 66px)/1.04 'Manrope', sans-serif; letter-spacing: -.05em; }
.directory-hero h1 span { display: block; }
.directory-hero p { max-width: 590px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.directory-count { flex: 0 0 auto; padding: 22px 25px; display: flex; align-items: center; gap: 13px; background: #edf2ff; border: 1px solid #dbe5ff; border-radius: 14px; }
.directory-count strong { color: var(--blue); font: 800 32px/1 'Manrope', sans-serif; }
.directory-count span { color: #58657f; font-size: 12px; font-weight: 750; line-height: 1.4; text-transform: uppercase; letter-spacing: .06em; }
.directory-controls { padding: 35px 0 25px; }
.directory-search { position: relative; }
.directory-search > svg { position: absolute; top: 50%; left: 19px; width: 20px; height: 20px; fill: none; stroke: #6d7687; stroke-width: 2; transform: translateY(-50%); }
.directory-search input { width: 100%; height: 60px; padding: 0 55px; color: var(--ink); background: white; border: 1px solid #d9dde4; border-radius: 13px; box-shadow: 0 7px 20px rgba(23,32,51,.045); outline: none; font-size: 16px; font-weight: 600; }
.directory-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,94,239,.1); }
.directory-search > button { position: absolute; top: 50%; right: 17px; width: 28px; height: 28px; padding: 0; color: #7c8595; background: #f0f2f5; border: 0; border-radius: 50%; transform: translateY(-50%); cursor: pointer; font-size: 18px; }
.directory-filter-row { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.directory-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.directory-tabs button { min-height: 42px; padding: 9px 16px; color: #505b6e; background: transparent; border: 1px solid #d4d9e1; border-radius: 22px; cursor: pointer; font-size: 13px; font-weight: 700; transition: all .2s; }
.directory-tabs button:hover { color: var(--ink); background: white; }
.directory-tabs button.is-active { color: white; background: var(--ink); border-color: var(--ink); }
.directory-sort { display: flex; align-items: center; gap: 9px; color: #667187; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.directory-sort select { min-height: 42px; padding: 8px 32px 8px 12px; color: var(--ink); background: white; border: 1px solid #d4d9e1; border-radius: 9px; outline: none; font-size: 13px; font-weight: 700; text-transform: none; letter-spacing: 0; }
.directory-results-heading { margin: 8px 0 18px; display: flex; justify-content: space-between; color: #687388; font-size: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: .07em; }
.directory-results-heading p { margin: 0; }
.directory-results-heading strong { color: var(--ink); }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.directory-card { --tool-accent: var(--blue); --tool-soft: var(--blue-soft); min-height: 158px; padding: 22px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto; gap: 15px 17px; color: var(--ink); background: white; border: 1px solid #dde1e7; border-radius: 15px; text-decoration: none; transition: transform .2s, border-color .2s, box-shadow .2s; }
.directory-card--images { --tool-accent: var(--blue); --tool-soft: var(--blue-soft); }
.directory-card--pdf { --tool-accent: var(--coral); --tool-soft: #fff0ed; }
.directory-card--text { --tool-accent: var(--green); --tool-soft: #e8f7f4; }
.directory-card--developer { --tool-accent: var(--violet); --tool-soft: #f0edff; }
.directory-card--seo { --tool-accent: #b7791f; --tool-soft: #fff6dd; }
.directory-card--business { --tool-accent: #c05621; --tool-soft: #fff2e8; }
.directory-card:hover { border-color: rgba(21,94,239,.3); box-shadow: 0 12px 27px rgba(23,32,51,.075); transform: translateY(-3px); }
.directory-card__icon { grid-row: 1; width: 48px; height: 48px; display: grid; place-items: center; color: var(--tool-accent); background: var(--tool-soft); border-radius: 12px; }
.directory-card__icon svg { width: 28px; height: 25px; overflow: visible; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.65; }
.tool-icon__label { fill: currentColor; stroke: none; font: 800 7px/1 'Manrope', sans-serif; letter-spacing: -.02em; }
.tool-icon__label--right { font-size: 6px; }
.tool-icon__signature { opacity: .7; stroke-width: 1.35; }
.tool-icon__gradient { fill: color-mix(in srgb, currentColor 15%, transparent); }
.tool-icon__muted { opacity: .45; }
.directory-card__body { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.directory-card__body strong { overflow: hidden; font: 750 15px/1.35 'Manrope', sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.directory-card__body small { display: -webkit-box; overflow: hidden; color: #5f6a7d; font-size: 13px; line-height: 1.5; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; }
.directory-card__body mark { padding: 0 1px; color: inherit; background: #ffdf83; }
.directory-card__meta { grid-column: 1 / -1; padding-top: 11px; display: flex; justify-content: space-between; border-top: 1px solid #eceef1; }
.directory-card__meta i { color: var(--tool-accent); font-size: 12px; font-style: normal; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.directory-card__meta b { color: #8993a4; font-size: 15px; transition: color .2s, transform .2s; }
.directory-card:hover .directory-card__meta b { color: var(--tool-accent); transform: translate(2px, -2px); }
.directory-empty { max-width: 520px; margin: 50px auto; padding: 55px 25px; text-align: center; background: white; border: 1px dashed #cfd4dc; border-radius: 15px; }
.directory-empty > span { width: 48px; height: 48px; margin: 0 auto 14px; display: grid; place-items: center; color: #7d8696; background: #f1f3f6; border-radius: 50%; }
.directory-empty svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; }
.directory-empty h2 { margin: 0 0 6px; font: 750 18px 'Manrope', sans-serif; }
.directory-empty p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.directory-empty button { min-height: 44px; padding: 10px 17px; color: white; background: var(--blue); border: 0; border-radius: 9px; cursor: pointer; font-size: 14px; font-weight: 750; }
.directory-privacy { margin-top: 36px; padding: 24px 27px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; background: #edf2ff; border: 1px solid #dce5fb; border-radius: 13px; }
.directory-privacy > svg { width: 28px; height: 28px; color: var(--blue); fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.directory-privacy strong, .directory-privacy span { display: block; }
.directory-privacy strong { margin-bottom: 4px; font-size: 14px; }
.directory-privacy span { color: #596780; font-size: 13px; line-height: 1.5; }
.directory-privacy a { color: var(--blue); font-size: 13px; font-weight: 750; text-decoration: none; white-space: nowrap; }

.related-tool-icon { width: 26px; height: 23px; overflow: visible; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.65; }
.related-tool-icon--images { color: var(--blue); }
.related-tool-icon--pdf { color: var(--coral); }
.related-tool-icon--text { color: var(--green); }
.related-tool-icon--developer { color: var(--violet); }
.related-tool-icon--seo { color: #b7791f; }
.related-tool-icon--business { color: #c05621; }

/* Existing tools and supporting pages */
.glass-card { background: rgba(255,255,255,.96); border: 1px solid var(--glass-border); box-shadow: var(--shadow-glass); -webkit-backdrop-filter: none; backdrop-filter: none; }
.bg-brand-gradient { background: var(--blue) !important; }
.hover\:bg-brand-gradient-hover:hover { background: var(--blue-dark) !important; }
.text-\[\#8F00FF\], .text-\[\#FF007F\] { color: var(--blue) !important; }
.border-purple-500, .border-purple-600 { border-color: var(--blue) !important; }
.bg-purple-500 { background-color: var(--blue) !important; }
.range-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; background: #dfe3e9; border-radius: 999px; outline: none; }
.range-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; margin-top: -6px; background: white; border: 3px solid var(--blue); border-radius: 50%; box-shadow: 0 3px 8px rgba(23,32,51,.15); cursor: pointer; }
.range-slider::-webkit-slider-runnable-track { width: 100%; height: 6px; border-radius: 999px; cursor: pointer; }
input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
input[type="color"]::-webkit-color-swatch { border: 0; border-radius: 4px; }

/* Readability floor for utility workspaces and generated previews. */
#main-content [class~="text-[8px]"],
#main-content [class~="text-[9px]"],
#main-content [class~="text-[10px]"],
#main-content [class~="text-[10.5px]"],
#main-content [class~="text-[11px]"] { font-size: 12px !important; line-height: 1.45; }
#main-content .text-xs { font-size: 13px !important; line-height: 1.5; }
.tool-page input:not([type="range"]):not([type="color"]),
.tool-page textarea,
.tool-page select,
.tool-page button { font-size: max(13px, 1em); }

/* Homepage secondary copy remains compact without falling below 12px. */
.tool-window__top, .secure-pill, .drop-preview small, .quality-row,
.result-row small, .saved-badge, .floating-card small, .category-number,
.demo-proof small, .demo-widget__head button, .demo-stats small,
.demo-widget > a { font-size: 12px; }
.drop-preview strong, .result-row strong, .mock-button, .floating-card strong,
.popular-card__copy small, .category-card li a, .category-card button,
.demo-proof strong { font-size: 13px; }
.category-card > p, .privacy-strip p { font-size: 14px; }
.privacy-strip > a { min-height: 44px; display: inline-flex; align-items: center; font-size: 13px; }

/* Footer */
.site-footer { position: relative; margin-top: 96px; overflow: hidden; color: white; background: #111a2c; }
.site-footer::before { content: ''; position: absolute; width: 520px; height: 520px; top: -330px; right: -170px; border: 1px solid rgba(117,157,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(117,157,255,.025), 0 0 0 160px rgba(117,157,255,.018); pointer-events: none; }
.footer-inner { position: relative; z-index: 1; width: min(100% - 40px, 1340px); margin: 0 auto; }
.footer-cta { padding: 60px 0; display: flex; justify-content: space-between; align-items: center; gap: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #9ab7ff; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-eyebrow i { width: 19px; height: 2px; background: #82a8ff; }
.footer-cta h2 { margin: 13px 0 10px; font: 750 clamp(30px, 3vw, 42px)/1.16 'Manrope', sans-serif; letter-spacing: -.04em; }
.footer-cta p { margin: 0; color: #b0b9c9; font-size: 15px; line-height: 1.55; }
.footer-cta__button { flex: 0 0 auto; min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; color: white; background: var(--blue); border-radius: 11px; box-shadow: 0 10px 24px rgba(21,94,239,.22); font-size: 14px; font-weight: 750; text-decoration: none; transition: background .2s, transform .2s; }
.footer-cta__button:hover { color: white; background: #2c6df2; transform: translateY(-2px); }
.footer-cta__button span { font-size: 16px; }
.footer-main { padding: 64px 0 60px; display: grid; grid-template-columns: minmax(285px, .85fr) minmax(0, 1.4fr); gap: 88px; }
.footer-brand { max-width: 370px; }
.footer-logo { width: max-content; padding: 9px 13px; display: flex; align-items: center; background: white; border-radius: 10px; }
.footer-logo img { width: 146px; height: auto; object-fit: contain; }
.footer-brand > p { margin: 22px 0 26px; color: #aeb7c6; font-size: 15px; line-height: 1.65; }
.footer-local-badge { width: max-content; max-width: 100%; padding: 13px 15px; display: flex; align-items: center; gap: 12px; background: rgba(45,201,180,.08); border: 1px solid rgba(93,222,204,.16); border-radius: 11px; }
.footer-local-badge svg { width: 26px; height: 26px; color: #6ce0d0; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.footer-local-badge strong, .footer-local-badge small { display: block; }
.footer-local-badge strong { margin-bottom: 3px; color: #e2eeed; font-size: 13px; }
.footer-local-badge small { color: #9ab0b0; font-size: 12px; line-height: 1.4; }
.footer-support { margin-top: 16px; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-support button { min-height: 44px; padding: 0 16px; display: inline-flex; align-items: center; gap: 8px; color: #e3eaff; background: rgba(130,168,255,.09); border: 1px solid rgba(130,168,255,.27); border-radius: 10px; cursor: pointer; font-size: 13px; font-weight: 750; transition: color .2s, background .2s, border-color .2s; }
.footer-support button:hover { color: white; background: rgba(130,168,255,.15); border-color: rgba(130,168,255,.38); }
.footer-support button span { color: #ff87aa; font-size: 15px; line-height: 1; }
.footer-support small { color: #929db0; font-size: 12px; line-height: 1.5; }
.footer-nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 50px; }
.footer-group { min-width: 0; }
.footer-group summary { color: #f4f6fa; font: 750 14px/1.4 'Manrope', sans-serif; list-style: none; cursor: default; }
.footer-group summary::-webkit-details-marker { display: none; }
.footer-group summary > span { display: none; }
.footer-links { margin-top: 22px; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-links a { color: #a8b1c1; font-size: 14px; font-weight: 550; line-height: 1.45; text-decoration: none; transition: color .2s, transform .2s; }
.footer-links a:hover { color: white; transform: translateX(2px); }
.footer-links .footer-link--accent { margin-top: 3px; color: #82a8ff; font-weight: 700; }
.footer-links .footer-link--accent:hover { color: #b5caff; }
.footer-bottom { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #939eb0; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; line-height: 1.5; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; align-items: center; gap: 20px; }
.footer-bottom a { color: #a6afbe; text-decoration: none; }
.footer-bottom a:hover { color: white; }
.footer-status { display: inline-flex; align-items: center; gap: 7px; color: #8f9aad; }
.footer-status i { width: 6px; height: 6px; background: #45c7a7; border-radius: 50%; box-shadow: 0 0 0 3px rgba(69,199,167,.1); }

@media (min-width: 821px) {
  .footer-group > .footer-links { display: flex !important; }
}

.toast-container { position: fixed; right: 20px; bottom: 20px; z-index: 100; }
.toast { padding: 12px 16px; color: white; background: var(--ink); border-radius: 10px; box-shadow: 0 10px 30px rgba(23,32,51,.2); font-size: 12px; font-weight: 700; }

::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: #f1f2f4; }
::-webkit-scrollbar-thumb { background: #bcc3ce; border: 2px solid #f1f2f4; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #929baa; }

@media (max-width: 1120px) {
  .site-header__inner { gap: 22px; }
  .primary-nav { gap: 18px; }
  .primary-nav a:nth-last-child(-n+2) { display: none; }
  .hero-shell { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: 34px; }
  .floating-card--shield { left: -8px; }
  .popular-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { border-right: 1px solid #e7e9ed; }
  .category-card:nth-child(2n) { border-right: 0; }
  .category-card:nth-child(-n+4) { border-bottom: 1px solid #e7e9ed; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-header__inner { width: min(100% - 28px, 1340px); min-height: 72px; display: flex; justify-content: center; }
  .brand-logo { width: 136px; }
  .primary-nav, .header-actions { display: none; }
  .mobile-category-nav { width: 100%; padding: 0 14px 10px; display: flex; gap: 7px; overflow-x: auto; -ms-overflow-style: none; }
  .mobile-category-nav::-webkit-scrollbar { display: none; }
  @supports (scrollbar-width: none) {
    .mobile-category-nav { scrollbar-width: none; }
  }
  .mobile-category-nav a { flex: 0 0 auto; min-height: 40px; padding: 9px 14px; display: inline-flex; align-items: center; color: #505b6e; background: white; border: 1px solid #dce1e8; border-radius: 22px; font-size: 13px; font-weight: 700; text-decoration: none; }
  main#main-content { width: min(100% - 28px, 1340px); }
  .hero-shell { width: 100vw; max-width: 100vw; min-height: 0; margin-inline: calc(50% - 50vw); padding: 66px 14px 72px; grid-template-columns: minmax(0, 1fr); gap: 58px; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero-copy h1 { max-width: 100%; }
  .eyebrow { justify-content: center; }
  .hero-copy h1 { max-width: 700px; }
  .hero-copy > p { margin-inline: auto; }
  .hero-search { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { width: min(100%, 620px); margin: 0 auto; }
  .tool-window { width: min(88%, 510px); }
  .floating-card--shield { left: 0; }
  .floating-card--speed { right: 0; }
  .section-heading { align-items: flex-start; }
  .category-grid { display: grid; }
  .demo-section { padding: 45px; grid-template-columns: 1fr; gap: 38px; }
  .privacy-strip { grid-template-columns: auto 1fr; }
  .privacy-strip > a { grid-column: 2; justify-self: start; }
  .directory-page { padding-top: 54px; }
  .directory-hero { align-items: flex-start; }
  .directory-privacy { grid-template-columns: auto 1fr; }
  .directory-privacy > a { grid-column: 2; }
  .footer-cta { align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { max-width: 440px; }
  .footer-nav { gap: 24px; }
}

@media (max-width: 560px) {
  .hero-shell { padding-top: 53px; gap: 44px; }
  .hero-copy h1 { margin-top: 18px; font-size: 42px; line-height: 1.07; }
  .hero-copy > p { font-size: 15px; line-height: 1.65; }
  .hero-search > input { height: 58px; padding-right: 18px; }
  .hero-search__hint { display: none; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .button { width: 100%; }
  .trust-list { gap: 10px; flex-wrap: wrap; }
  .trust-list li { padding: 6px 9px; background: white; border-radius: 20px; }
  .hero-visual { min-height: 380px; }
  .hero-visual::before { width: 320px; height: 320px; }
  .visual-orbit--one { width: 370px; height: 370px; }
  .visual-orbit--two { display: none; }
  .tool-window { width: 98%; }
  .tool-window__body { padding: 16px; }
  .floating-card--shield { bottom: -8px; }
  .floating-card--speed { top: -14px; }
  .result-row { grid-template-columns: 1fr auto 1fr; }
  .saved-badge { display: none; }
  .popular-section, .category-section { padding-top: 74px; }
  .section-heading { display: block; }
  .section-heading > a { display: inline-block; margin-top: 16px; }
  .section-heading > p { margin-top: 13px; text-align: left; }
  .popular-grid, .category-grid { grid-template-columns: 1fr; }
  .popular-card { min-height: 168px; }
  .category-card { min-height: 0; border-right: 0; border-bottom: 1px solid #e7e9ed; }
  .category-card:nth-child(3) { border-bottom: 1px solid #e7e9ed; }
  .category-card:last-child { border-bottom: 0; }
  .category-card > p { min-height: 0; }
  .demo-section { margin-inline: -5px; padding: 34px 20px; }
  .demo-stats { grid-template-columns: repeat(2, 1fr); }
  .demo-stats span:nth-child(2) { border-right: 0; }
  .demo-stats span:nth-child(-n+2) { border-bottom: 1px solid #e6e8ec; }
  .privacy-strip { padding: 28px 22px; grid-template-columns: 1fr; }
  .privacy-strip > a { grid-column: 1; }
  .directory-hero { display: block; }
  .directory-hero h1 { width: 100%; max-width: calc(100vw - 28px); font-size: 32px; line-height: 1.1; overflow-wrap: anywhere; white-space: normal; }
  .directory-count { width: max-content; margin-top: 25px; }
  .directory-filter-row { align-items: flex-start; flex-direction: column; }
  .directory-tabs { flex-wrap: nowrap; width: calc(100vw - 28px); padding-bottom: 5px; overflow-x: auto; }
  .directory-tabs button { flex: 0 0 auto; }
  .directory-grid { grid-template-columns: 1fr; }
  .tool-page { width: 100%; overflow: clip; }
  .tool-breadcrumbs { padding-bottom: 18px; overflow: hidden; }
  .tool-hero { grid-template-columns: minmax(0, 1fr) !important; gap: 28px !important; margin-bottom: 48px !important; }
  .tool-intro { padding-top: 16px !important; }
  .tool-intro h1 { max-width: 100%; font-size: 34px !important; line-height: 1.08 !important; overflow-wrap: anywhere; }
  .tool-intro > p { font-size: 15px !important; line-height: 1.6; }
  .tool-benefits { gap: 12px 16px !important; }
  .tool-benefits > div { font-size: 13px !important; line-height: 1.45; }
  .tool-hero .glass-card { width: 100%; max-width: 100%; padding: 20px !important; border-radius: 20px !important; overflow: hidden; }
  .tool-hero textarea { width: 100% !important; }
  .directory-results-heading > span { display: none; }
  .directory-privacy { grid-template-columns: 1fr; }
  .directory-privacy > a { grid-column: 1; }
  .site-footer { margin-top: 72px; }
  .footer-inner { width: min(100% - 28px, 1340px); }
  .footer-cta { padding: 42px 0; align-items: stretch; flex-direction: column; gap: 24px; }
  .footer-cta__button { width: 100%; }
  .footer-main { padding: 46px 0 40px; }
  .footer-nav { display: block; border-top: 1px solid rgba(255,255,255,.1); }
  .footer-group { border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-group summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
  .footer-group summary > span { display: block; color: #7f8a9d; font-size: 18px; font-weight: 400; transition: transform .2s; }
  .footer-group[open] summary > span { transform: rotate(45deg); }
  .footer-links { margin: -2px 0 20px; display: flex; gap: 12px; }
  .footer-links a { min-height: 38px; padding: 8px 0; display: inline-flex; align-items: center; }
  .footer-bottom { padding: 24px 0; align-items: flex-start; flex-direction: column; }
  .footer-bottom > div { width: 100%; justify-content: space-between; gap: 14px; }
}

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

@media print {
  @page { margin: 14mm; }
  body * { visibility: hidden !important; }
  #invoiceSheet, #invoiceSheet * { visibility: visible !important; }
  #invoiceSheet {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100% !important;
    max-width: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}
