:root {
  color-scheme: light;
  --ink: #1d1c1a;
  --muted: #6f6b64;
  --paper: #f4f1ea;
  --card: #fffefa;
  --line: #ded9cf;
  --coral: #ff6b4a;
  --coral-dark: #e95132;
  --green: #227759;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 7%, rgba(255, 202, 166, .35), transparent 25rem),
    radial-gradient(circle at 10% 45%, rgba(203, 224, 208, .22), transparent 24rem),
    var(--paper);
  min-width: 320px;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(1180px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  column-gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(108, 102, 91, .2);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 19px; letter-spacing: -.02em; width: max-content; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px 11px 11px 4px; background: var(--ink); color: #fff; font-size: 15px; transform: rotate(-2deg); }
.main-nav { display: flex; align-items: center; gap: 27px; height: 100%; }
.main-nav > a, .nav-dropdown { height: 100%; position: relative; }
.main-nav > a { display: grid; place-items: center; color: #858078; text-decoration: none; font-size: 14px; font-weight: 650; }
.main-nav > a:hover, .main-nav > a.active, .nav-dropdown:hover .nav-dropdown-trigger, .nav-dropdown:focus-within .nav-dropdown-trigger, .nav-dropdown.active .nav-dropdown-trigger { color: var(--ink); }
.main-nav > a.active::after, .nav-dropdown.active::after { content: ""; position: absolute; left: 50%; bottom: -1px; width: 28px; height: 2px; background: var(--coral); transform: translateX(-50%); }
.nav-dropdown { display: flex; align-items: center; }
.nav-dropdown-trigger { height: 100%; display: inline-flex; align-items: center; gap: 6px; border: 0; padding: 0; color: #858078; background: transparent; font-size: 14px; font-weight: 650; cursor: pointer; }
.nav-dropdown-trigger:focus-visible { outline: 2px solid rgba(74, 126, 103, .55); outline-offset: -9px; border-radius: 12px; }
.nav-dropdown-trigger span { color: #aaa49b; font-size: 12px; transition: transform .18s; }
.nav-dropdown:hover .nav-dropdown-trigger span, .nav-dropdown:focus-within .nav-dropdown-trigger span { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; left: 50%; top: calc(100% - 1px); width: 570px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; padding: 9px; border: 1px solid rgba(103, 95, 84, .19); border-radius: 15px; background: rgba(255, 254, 250, .97); box-shadow: 0 20px 50px rgba(48, 42, 34, .15); opacity: 0; pointer-events: none; transform: translate(-50%, -7px); transition: opacity .16s, transform .16s; backdrop-filter: blur(16px); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown-menu > a { min-height: 62px; display: grid; grid-template-columns: 35px 1fr; align-items: center; gap: 11px; padding: 8px 10px; border-radius: 10px; color: #45413b; text-decoration: none; }
.nav-dropdown-menu > a:hover, .nav-dropdown-menu > a.active { background: #f1eee8; }
.nav-dropdown-menu > a > b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #4a665a; background: #dcebe3; font: 750 11px Georgia, serif; }
.nav-dropdown-menu > a:nth-child(2) > b { color: #7c5d36; background: #f0dfc4; }
.nav-dropdown-menu > a:nth-child(3) > b { color: #385c80; background: #dce8f3; }
.nav-dropdown-menu > a:nth-child(4) > b { color: #8b4433; background: #f1d7ce; font-size: 8px; }
.nav-dropdown-menu > a:nth-child(5) > b { color: #376854; background: #d9e9e0; font-size: 8px; }
.nav-dropdown-menu > a:nth-child(6) > b { color: #365f77; background: #dbe9f0; font-size: 8px; }
.nav-dropdown-menu > a:nth-child(7) > b { color: #864c57; background: #f1dbe0; font-size: 11px; }
.nav-dropdown-menu > a > span { display: grid; gap: 3px; }
.nav-dropdown-menu strong { font-size: 12px; }
.nav-dropdown-menu small { color: #979087; font-size: 9px; font-weight: 500; }
.mobile-nav { display: none; justify-self: end; position: relative; }
.mobile-nav summary { list-style: none; display: inline-flex; align-items: center; gap: 7px; border: 1px solid #d8d2c8; border-radius: 9px; padding: 8px 10px; background: rgba(255,255,255,.52); font-size: 11px; font-weight: 800; cursor: pointer; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary span { color: var(--coral); font-size: 15px; line-height: 1; transition: transform .18s; }
.mobile-nav[open] summary span { transform: rotate(45deg); }
.mobile-nav-panel { position: absolute; right: 0; top: calc(100% + 10px); width: min(288px, calc(100vw - 32px)); display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 9px; border: 1px solid rgba(103, 95, 84, .2); border-radius: 15px; background: rgba(255, 254, 250, .98); box-shadow: 0 20px 50px rgba(48, 42, 34, .18); backdrop-filter: blur(16px); }
.mobile-nav-panel a { min-height: 42px; display: flex; align-items: center; padding: 0 11px; border-radius: 9px; color: #625d55; background: #f5f2ec; text-decoration: none; font-size: 11px; font-weight: 700; }
.mobile-nav-panel a:hover, .mobile-nav-panel a.active { color: #fff; background: #292725; }
.feedback-button { justify-self: end; background: transparent; border: 0; padding: 10px 0; font-size: 13px; font-weight: 700; cursor: pointer; }
.feedback-button span { color: var(--coral); margin-left: 4px; }
.language-switch {
  justify-self: end;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid #d8d2c8;
  border-radius: 999px;
  color: #6d675f;
  background: rgba(255, 255, 255, .48);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  transition: color .18s, border-color .18s, background .18s;
}
.language-switch:hover { color: var(--ink); border-color: #aaa399; background: rgba(255, 255, 255, .82); }
.related-tool-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; color: #4d7185; text-decoration: none; font-size: 10px; font-weight: 800; }
.related-tool-link:hover { color: var(--ink); }

.hero { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 82px 0 92px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid #d9d4ca; border-radius: 999px; background: rgba(255,255,255,.38); color: #777168; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #35a678; box-shadow: 0 0 0 4px rgba(53,166,120,.12); }
.hero h1 { margin: 27px 0 17px; font-size: clamp(47px, 7vw, 78px); line-height: 1.03; letter-spacing: -.065em; font-weight: 850; }
.hero h1 em { color: var(--coral); font-family: Georgia, "Songti SC", serif; font-weight: 500; }
.hero-copy { max-width: 600px; margin: 0 auto 36px; color: var(--muted); line-height: 1.75; font-size: 16px; }

.downloader-card { text-align: left; padding: 18px; border: 1px solid rgba(117, 108, 95, .2); border-radius: 26px; background: rgba(255, 254, 250, .88); box-shadow: 0 22px 60px rgba(58, 50, 39, .09), inset 0 1px #fff; backdrop-filter: blur(12px); }
.platform-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 2px 4px 16px; }
.platform { display: inline-flex; align-items: center; gap: 6px; height: 27px; padding: 0 9px; border-radius: 8px; background: #f3f0ea; color: #59554e; font-size: 11px; font-weight: 750; }
.platform i { display: grid; place-items: center; font-style: normal; font-size: 10px; width: 15px; height: 15px; border-radius: 5px; color: #fff; }
.platform small { color: #9b958d; font-size: 9px; font-weight: 700; }
.youtube i { background: #ff453a; }
.facebook i { background: #1877f2; font: 800 13px Georgia; }
.x i { background: #181817; font-size: 11px; }
.instagram i { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); font-size: 12px; }
.reddit i { background: #ff4500; font: 800 11px Arial; }
.twitch i { background: #9146ff; font-size: 11px; }
.vimeo { border: 1px dashed rgba(26, 183, 234, .4); }
.vimeo i { background: #1ab7ea; font: italic 800 12px Georgia; }
.privacy-note { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: #989289; font-size: 11px; }
.privacy-note i { width: 6px; height: 6px; border-radius: 50%; background: #67a78f; }
form > label { display: block; padding: 0 3px 8px; font-size: 12px; font-weight: 750; color: #48443e; }
.input-shell { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto auto; align-items: center; gap: 8px; padding: 7px 8px 7px 15px; border: 1.5px solid #d6d0c6; background: #fff; border-radius: 15px; transition: border-color .2s, box-shadow .2s; }
.input-shell:focus-within { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,74,.1); }
.input-shell.error { border-color: #d44132; box-shadow: 0 0 0 4px rgba(212,65,50,.08); }
.input-shell svg { width: 20px; fill: none; stroke: #9a958d; stroke-width: 1.8; stroke-linecap: round; }
.input-shell input { min-width: 0; border: 0; outline: 0; background: transparent; padding: 11px 4px; color: var(--ink); font-size: 14px; }
.input-shell input::placeholder { color: #aaa59c; }
.paste-button { border: 0; background: #f0ede7; padding: 10px 12px; border-radius: 9px; font-size: 12px; font-weight: 700; cursor: pointer; }
.paste-button:hover { background: #e7e3dc; }
.submit-button { height: 43px; display: inline-flex; align-items: center; gap: 14px; border: 0; border-radius: 10px; padding: 0 17px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 750; cursor: pointer; transition: transform .18s, background .18s; }
.submit-button:hover { transform: translateY(-1px); background: #35322e; }
.submit-button:disabled { cursor: wait; opacity: .6; transform: none; }
.submit-button b { font-size: 17px; font-weight: 400; color: #ffad95; }
.form-message { min-height: 18px; margin: 7px 4px -3px; color: #c33e30; font-size: 12px; }

.loading-panel { margin-top: 16px; padding: 22px; background: #f4f1eb; border-radius: 15px; display: flex; align-items: center; gap: 16px; }
.loading-panel[hidden], .result-panel[hidden] { display: none; }
.loading-panel strong { font-size: 14px; }
.loading-panel p { margin: 5px 0 0; color: #888278; font-size: 12px; }
.loading-orbit { position: relative; width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; }
.loading-orbit::before { content: ""; position: absolute; inset: 0; border: 2px solid #ded8ce; border-top-color: var(--coral); border-radius: 50%; animation: spin .8s linear infinite; }
.loading-orbit span { font-size: 9px; color: #777168; }
@keyframes spin { to { transform: rotate(360deg); } }

.result-panel { margin-top: 16px; border-top: 1px solid #e4dfd6; padding-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.video-summary { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 12px; border-radius: 14px; background: #f4f1eb; }
.thumbnail-wrap { width: 150px; aspect-ratio: 16/10; flex: 0 0 auto; position: relative; overflow: hidden; border-radius: 10px; background: #ded8cf; }
.thumbnail-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; }
.thumbnail-wrap span { position: absolute; right: 6px; bottom: 6px; padding: 3px 5px; border-radius: 5px; background: rgba(20,20,20,.78); color: #fff; font-size: 9px; }
.video-meta { min-width: 0; }
.result-platform { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.video-meta h2 { margin: 7px 0 6px; font-size: 15px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-meta p { margin: 0; color: #89837a; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.quality-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 11px; }
.quality-heading > div { display: grid; gap: 3px; }
.quality-heading span { font-size: 12px; font-weight: 800; }
.quality-heading small { color: #999289; font-size: 9px; }
.quality-heading button { border: 0; background: transparent; color: #777168; font-size: 10px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.quality-options { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 11px; }
.quality-option { border: 1px solid #dcd6cd; background: #fff; border-radius: 8px; padding: 7px 10px; color: #777168; font-size: 10px; font-weight: 750; cursor: pointer; }
.quality-option.active { border-color: var(--ink); color: #fff; background: var(--ink); }
.download-button { width: 100%; height: 40px; display: flex; justify-content: center; align-items: center; gap: 8px; border: 0; border-radius: 10px; background: var(--coral); color: #fff; text-decoration: none; font-size: 12px; font-weight: 800; box-shadow: 0 8px 18px rgba(255,107,74,.18); cursor: pointer; }
.download-button:hover:not(:disabled) { background: var(--coral-dark); }
.download-button:disabled { cursor: wait; opacity: .72; }
.download-button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.download-hint { margin: 7px 0 0; color: #9b958c; text-align: center; font-size: 9px; }
.download-progress { margin: 2px 0 10px; padding: 10px; border: 1px solid #e0dad1; border-radius: 10px; background: #f6f3ed; }
.download-progress[hidden] { display: none; }
.progress-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.progress-heading span { color: #4f4a43; font-size: 10px; font-weight: 800; }
.progress-heading strong { color: var(--coral-dark); font-size: 10px; }
.progress-track { height: 5px; overflow: hidden; border-radius: 99px; background: #dfdad2; }
.progress-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--coral), #ff9a75); transition: width .35s ease; }
.download-progress p { margin: 6px 0 0; color: #8c867d; font-size: 8px; }
.download-progress.ready { border-color: #cbded1; background: #f1f8f3; }
.download-progress.ready .progress-track i { background: #3c8a68; }
.download-progress.error { border-color: #e7c8c2; background: #fff5f2; }
.legal-note { margin: 14px 0 0; color: #979188; font-size: 11px; }

.tool-roadmap { padding: 90px max(24px, calc((100vw - 1180px) / 2)) 110px; background: #22211f; color: #f8f5ef; }
.section-heading { max-width: 560px; margin-bottom: 42px; }
.section-heading > span { color: #ff8065; font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.section-heading h2 { margin: 13px 0 10px; font-size: clamp(34px, 5vw, 54px); letter-spacing: -.055em; line-height: 1.06; }
.section-heading p { color: #9e9991; margin: 0; }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tool-item { min-height: 270px; position: relative; padding: 22px; border: 1px solid #45423e; border-radius: 18px; background: #2a2926; color: inherit; text-decoration: none; overflow: hidden; transition: transform .2s, border-color .2s; }
.tool-item:hover { transform: translateY(-4px); border-color: #605c56; }
.tool-number { position: absolute; right: 18px; top: 17px; color: #5f5b55; font: italic 14px Georgia; }
.tool-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 36px; color: #252321; font-size: 17px; font-weight: 800; transform: rotate(-2deg); }
.coral { background: #ff8065; }
.lavender { background: #b9b1db; font: 700 14px Georgia; }
.mint { background: #9ec8b0; }
.sky { background: #9bbbd0; font: 700 13px Georgia, serif; }
.amber { background: #e3b87b; }
.cobalt { background: #aac3dc; }
.pdfred { color: #fff; background: #cf644b; font-size: 10px; letter-spacing: -.02em; }
.adsgreen { color: #193f31; background: #91c3ad; font-size: 9px; letter-spacing: .02em; }
.ocrblue { color: #173b50; background: #9fc7da; font-size: 9px; letter-spacing: .02em; }
.stitchrose { color: #6d3441; background: #e4a9b5; font-size: 13px; }
.tool-item h3 { margin: 0 0 8px; font-size: 18px; }
.tool-item p { margin: 0; color: #99948c; font-size: 12px; line-height: 1.65; }
.ready-badge, .coming-badge { position: absolute; left: 22px; bottom: 19px; border-radius: 999px; padding: 5px 8px; font-size: 9px; font-weight: 800; }
.ready-badge { color: #75d0a8; background: rgba(76,177,131,.12); }
.coming-badge { color: #88837b; background: #33312e; }
.muted { opacity: .72; }
.idea-card { background: #f1ede4; color: #24221f; border-color: transparent; }
.idea-card .plus { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 38px; border: 1px dashed #aaa397; border-radius: 50%; font-size: 22px; color: var(--coral); }
.idea-card p { color: #777168; }
.idea-card button { position: absolute; left: 22px; bottom: 18px; border: 0; background: transparent; padding: 0; font-size: 11px; font-weight: 800; cursor: pointer; }
.idea-card button span { color: var(--coral); margin-left: 5px; }

.seo-copy {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto 96px;
  padding: 40px 44px;
  border: 1px solid rgba(117, 108, 95, .18);
  border-radius: 24px;
  background: rgba(255, 254, 250, .56);
}
.seo-copy > span { color: var(--coral-dark); font-size: 10px; font-weight: 850; letter-spacing: .14em; }
.seo-copy h2 { max-width: 720px; margin: 12px 0 17px; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; letter-spacing: -.045em; }
.seo-copy p { max-width: 780px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.seo-copy p + p { margin-top: 11px; }

.omnikit-ad {
  width: min(960px, calc(100% - 48px));
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  transition: max-height .25s ease, margin .25s ease, opacity .2s ease;
}
.omnikit-ad.is-filled { max-height: 420px; margin-top: 38px; margin-bottom: 48px; opacity: 1; }
.omnikit-ad-label { display: block; margin-bottom: 7px; color: #aaa49b; font-size: 9px; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.omnikit-ad .adsbygoogle { width: 100%; min-width: 0; }
.hero + .omnikit-ad.is-filled { margin-top: 0; margin-bottom: 0; padding-top: 42px; padding-bottom: 42px; }

.omnikit-rail-ad { display: none; }

@media (min-width: 1500px) {
  .omnikit-rail-ad {
    position: absolute;
    top: 132px;
    z-index: 1;
    display: block;
    width: min(160px, calc((100vw - 1260px) / 2));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .omnikit-rail-ad.is-filled { max-height: 640px; opacity: 1; }
  .omnikit-rail-ad-left { left: max(16px, calc(50% - 774px)); }
  .omnikit-rail-ad-right { right: max(16px, calc(50% - 774px)); }
  .omnikit-rail-ad .adsbygoogle { width: 100%; min-width: 0; }
  .omnikit-rail-ad .omnikit-ad-label { margin-bottom: 6px; }
}

footer { min-height: 110px; padding: 0 max(24px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; background: #1b1a18; border-top: 1px solid #353330; color: #77736d; font-size: 11px; }
.footer-brand { color: #f6f1e9; }
.footer-brand .brand-mark { background: #f4f0e8; color: #22211f; }
footer p { margin: 0; }
footer > span { justify-self: end; }
footer > span a { color: inherit; text-underline-offset: 3px; }
footer > span a:hover { color: #d7d1c7; }

dialog { width: min(540px, calc(100% - 32px)); max-height: min(760px, calc(100vh - 32px)); overflow: auto; border: 1px solid #dbd5ca; border-radius: 22px; padding: 0; background: #fffefa; color: var(--ink); box-shadow: 0 24px 80px rgba(0,0,0,.2); }
dialog::backdrop { background: rgba(29,28,26,.52); backdrop-filter: blur(3px); }
dialog form { position: relative; padding: 34px; }
.dialog-close { position: absolute; right: 18px; top: 15px; border: 0; background: transparent; color: #888178; font-size: 24px; cursor: pointer; }
.dialog-kicker { color: var(--coral); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
dialog h2 { margin: 10px 0; font-size: 28px; letter-spacing: -.04em; }
dialog p { margin: 0 0 22px; color: #777168; font-size: 13px; line-height: 1.6; }
.dialog-label { display: flex; justify-content: space-between; margin: 15px 2px 7px; color: #45413b; font-size: 11px; font-weight: 800; }
.dialog-label span { color: #999289; font-weight: 600; }
dialog textarea, dialog select, dialog input[type="email"] { width: 100%; border: 1px solid #d8d2c8; border-radius: 11px; padding: 12px; outline: 0; background: #f8f5ef; color: var(--ink); font-size: 13px; }
dialog textarea { resize: vertical; min-height: 112px; }
dialog textarea:focus, dialog select:focus, dialog input[type="email"]:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255, 107, 74, .08); }
.dialog-meta { display: flex; justify-content: space-between; gap: 14px; margin: 6px 2px 0; color: #9a948a; font-size: 9px; line-height: 1.4; }
.dialog-meta output { white-space: nowrap; }
.dialog-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.dialog-submit { width: 100%; border: 0; border-radius: 10px; margin-top: 10px; padding: 12px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 750; cursor: pointer; }
.dialog-submit:hover:not(:disabled) { background: #37342f; }
.dialog-submit:disabled { opacity: .62; cursor: wait; }
dialog small { display: block; min-height: 16px; margin-top: 8px; color: var(--green); text-align: center; }
dialog small.error { color: #bd3d2f; }
dialog small.success { color: var(--green); }
.dialog-privacy { color: #918b82; font-size: 9px; line-height: 1.5; }
.dialog-privacy a { color: inherit; text-underline-offset: 2px; }

.consent-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 100; max-width: 820px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; border: 1px solid rgba(124, 115, 102, .3); border-radius: 17px; background: rgba(255, 254, 250, .97); box-shadow: 0 18px 60px rgba(25, 23, 20, .18); backdrop-filter: blur(16px); }
.consent-banner[hidden], .consent-settings[hidden] { display: none; }
.consent-banner strong { font-size: 13px; }
.consent-banner p { max-width: 560px; margin: 4px 0 3px; color: #746f67; font-size: 11px; line-height: 1.5; }
.consent-banner a { color: #6f6961; font-size: 10px; text-underline-offset: 2px; }
.consent-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.consent-actions button { min-width: 78px; border: 1px solid #d8d2c8; border-radius: 9px; padding: 10px 12px; background: #f4f1eb; font-size: 10px; font-weight: 800; cursor: pointer; }
.consent-actions .consent-accept { border-color: var(--ink); background: var(--ink); color: #fff; }
.consent-settings { position: fixed; right: 14px; bottom: 14px; z-index: 90; border: 1px solid rgba(124, 115, 102, .25); border-radius: 999px; padding: 8px 11px; background: rgba(255, 254, 250, .88); color: #706a62; box-shadow: 0 7px 22px rgba(25, 23, 20, .1); font-size: 9px; font-weight: 750; cursor: pointer; backdrop-filter: blur(10px); }

.policy-page { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 76px 0 110px; }
.policy-page h1 { margin: 18px 0 14px; font-size: clamp(42px, 7vw, 68px); letter-spacing: -.055em; }
.policy-page > p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.policy-section { margin-top: 30px; padding-top: 25px; border-top: 1px solid var(--line); }
.policy-section h2 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.025em; }
.policy-section p, .policy-section li { color: #6f6a62; font-size: 13px; line-height: 1.75; }
.policy-section ul { padding-left: 20px; }

@media (max-width: 1100px) {
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 16px; }
  .main-nav { display: none; }
  .feedback-button { display: none; }
  .mobile-nav { display: block; }
  .hero { padding-top: 64px; }
  .result-panel { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .site-header { width: calc(100% - 32px); height: 72px; grid-template-columns: 1fr auto; gap: 10px; }
  .feedback-button, .back-home { display: none; }
  .language-switch { min-height: 34px; padding: 0 10px; font-size: 10px; }
  .hero { width: calc(100% - 24px); padding: 50px 0 70px; }
  .hero h1 { margin-top: 22px; }
  .hero-copy { font-size: 14px; padding: 0 12px; }
  .downloader-card { padding: 12px; border-radius: 20px; }
  .platform-row { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .platform, .privacy-note { white-space: nowrap; }
  .privacy-note { display: none; }
  .input-shell { grid-template-columns: 22px minmax(0, 1fr) auto; }
  .paste-button { display: none; }
  .submit-button { padding: 0 13px; }
  .submit-button span { display: none; }
  .video-summary { align-items: flex-start; }
  .thumbnail-wrap { width: 118px; }
  .tool-roadmap { padding-top: 70px; padding-bottom: 80px; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-item { min-height: 230px; }
  .seo-copy { width: calc(100% - 24px); margin-bottom: 70px; padding: 30px 24px; border-radius: 20px; }
  .omnikit-ad { width: calc(100% - 24px); }
  .omnikit-ad.is-filled { margin-top: 28px; margin-bottom: 34px; }
  .hero + .omnikit-ad.is-filled { padding-top: 30px; padding-bottom: 30px; }
  footer { padding: 28px 24px; grid-template-columns: 1fr auto; gap: 20px; }
  footer p { display: none; }
  .consent-banner { left: 12px; right: 12px; bottom: 12px; display: grid; gap: 14px; padding: 16px; }
  .consent-actions { width: 100%; }
  .consent-actions button { flex: 1; }
}

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