:root {
  --ink: #e8e0d8;
  --paper: #0f0f13;
  --forge: #e8192c;
  --forge-hot: #ff2d44;
  --maroon: #7a0c1a;
  --card-bg: #1a1a24;
  --border: rgba(255, 255, 255, 0.07);
  --text-muted: rgba(232, 224, 216, 0.45);
  --text-mid: rgba(232, 224, 216, 0.65);
  --max: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 10%, rgba(232, 25, 44, 0.18), transparent 28%),
    radial-gradient(circle at 10% 85%, rgba(122, 12, 26, 0.18), transparent 30%),
    var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  color: var(--forge);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title {
  margin: 10px 0 0;
  color: #fff;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-copy { max-width: 700px; color: var(--text-mid); font-size: 1rem; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--forge);
  color: #fff;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.94);
  border-bottom: 1px solid rgba(232, 25, 44, 0.22);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.logo-badge {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--forge);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; }
.site-nav a[aria-current="page"] { color: #fff; }

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.nav-cta,
.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--forge), var(--forge-hot));
  color: #fff;
  box-shadow: 0 10px 28px rgba(232, 25, 44, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.logo:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.site-nav a:hover,
.footer-columns a:hover,
.breadcrumb a:hover,
.tool-card h3 a:hover {
  color: var(--forge-hot);
}

.nav-cta:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--forge-hot), var(--maroon));
  box-shadow: 0 14px 34px rgba(232, 25, 44, 0.36);
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: rgba(232, 25, 44, 0.12);
  border-color: rgba(232, 25, 44, 0.55);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 25, 44, 0.16);
  transform: translateY(-2px);
}

.hero { padding: 88px 0 64px; }

.hero-grid,
.tool-hero-grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.hero-grid,
.tool-hero-grid { grid-template-columns: 1.1fr 0.9fr; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.hero-copy p { max-width: 720px; color: var(--text-mid); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-stats,
.tool-copy { display: grid; gap: 18px; }

.hero-stats { grid-template-columns: repeat(2, 1fr); }

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-visual {
  position: relative;
  min-height: 380px;
  padding: 28px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(232, 25, 44, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(232, 25, 44, 0.04));
  pointer-events: none;
}

.hero-visual-head {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.hero-visual-head h3 {
  margin: 0;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
}

.hero-visual-head p {
  margin: 8px 0 0;
  max-width: 340px;
  color: var(--text-mid);
  font-size: 0.9rem;
}

.format-scene {
  position: relative;
  height: 260px;
}

.format-file {
  position: absolute;
  width: 118px;
  height: 142px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: floatFile 5.8s ease-in-out infinite;
}

.format-file::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: rgba(15, 15, 19, 0.75);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.format-file::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 18px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.format-file-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.format-file-lines {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 30px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.format-file-lines span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.format-file-lines span:nth-child(2) { width: 82%; }
.format-file-lines span:nth-child(3) { width: 66%; }

.format-file.preview .format-file-lines {
  display: none;
}

.format-file.preview .format-file-preview {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 28px;
  height: 62px;
  z-index: 1;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08)),
    linear-gradient(135deg, #76d7ff, #1aa7ec 50%, #59d36f 50%, #8edc55);
}

.format-file.preview .format-file-preview::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 18px;
  background: linear-gradient(180deg, #93d978, #5aaa44);
  clip-path: polygon(0 100%, 0 75%, 18% 46%, 34% 68%, 48% 30%, 64% 63%, 100% 100%);
}

.format-file.preview .format-file-preview::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffe07d;
}

.format-file.pdf {
  top: 4px;
  left: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(232,25,44,0.22));
}

.format-file.pdf .format-file-label {
  background: linear-gradient(135deg, #e8192c, #ff3d55);
}

.format-file.doc {
  top: 22px;
  right: 28px;
  width: 104px;
  height: 122px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(74,124,255,0.22));
  animation-delay: -1.2s;
}

.format-file.doc .format-file-label {
  background: linear-gradient(135deg, #3677f6, #68a6ff);
}

.format-file.jpg {
  top: 118px;
  left: 158px;
  width: 104px;
  height: 124px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(37,201,196,0.2));
  animation-delay: -2.2s;
}

.format-file.jpg .format-file-label {
  background: linear-gradient(135deg, #27c1d0, #4fd8c3);
}

.format-file.xls {
  bottom: 8px;
  left: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(54,191,92,0.24));
  animation-delay: -0.7s;
}

.format-file.xls .format-file-label {
  background: linear-gradient(135deg, #20b45b, #56d87b);
}

.format-file.ppt {
  bottom: -4px;
  right: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,140,35,0.24));
  animation-delay: -1.8s;
}

.format-file.ppt .format-file-label {
  background: linear-gradient(135deg, #f28a1e, #ff5d2f);
}

@keyframes floatFile {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.stat-card,
.card,
.faq-item,
.tool-card,
.tool-hero-meta,
.drop-panel,
.copy-block,
.tool-hero-copy {
  border: 1px solid var(--border);
  background: rgba(26, 26, 36, 0.92);
  border-radius: 18px;
}

.stat-card,
.card,
.tool-hero-meta,
.drop-panel,
.copy-block,
.tool-hero-copy,
.faq-item,
.tool-card { padding: 22px; }

.stat-card strong {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Clash Display", sans-serif;
}

.stat-card span {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section { padding: 36px 0 76px; }

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 25, 44, 0.26);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  background: rgba(30, 30, 42, 0.98);
}

.tool-card-disabled {
  background: rgba(22, 22, 30, 0.9);
  border-color: rgba(255, 255, 255, 0.06);
}

.tool-card-disabled:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.tool-card h3,
.card h3,
.faq-item h3,
.copy-block h2,
.tool-hero-meta h2 {
  margin: 0;
  color: #fff;
  font-family: "Syne", sans-serif;
}

.tool-card p,
.card p,
.faq-item p,
.copy-block p,
.copy-block li,
.tool-hero-copy p,
.tool-hero-meta p,
.drop-panel p { color: var(--text-mid); }

.tool-card-disabled p {
  color: rgba(232, 224, 216, 0.54);
}

.tool-badge-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 193, 7, 0.24);
  background: rgba(255, 193, 7, 0.1);
  color: #ffd978;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tool-card a[aria-disabled="true"] {
  color: rgba(255, 255, 255, 0.92);
}

.tool-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-visual {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2px;
}

.tool-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(232, 25, 44, 0.18));
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  overflow: hidden;
}

.tool-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: rgba(15, 15, 19, 0.78);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.tool-graphic {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(232,25,44,0.18));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tool-graphic-shell {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 96px;
  padding-left: 62px;
}

.tool-graphic-shell.mini {
  min-height: 56px;
  padding-left: 0;
  align-items: center;
  gap: 10px;
}

.tool-graphic::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: rgba(15, 15, 19, 0.74);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.tool-graphic.card {
  width: 78px;
  height: 96px;
}

.tool-graphic.mini {
  width: 46px;
  height: 56px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.tool-card:hover .tool-graphic,
.footer-tool-link:hover .tool-graphic {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.tool-source-badge {
  position: absolute;
  top: 10px;
  left: 0;
  min-width: 52px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-align: center;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.tool-graphic-shell.mini .tool-source-badge {
  position: static;
  min-width: 38px;
  padding: 6px 7px;
  border-radius: 12px;
  font-size: 0.58rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.tool-convert-arrow {
  position: absolute;
  top: 32px;
  left: 54px;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(232, 25, 44, 0.2), rgba(255, 255, 255, 0.12));
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.9rem;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(232, 25, 44, 0.12);
}

.tool-graphic-shell.mini .tool-convert-arrow {
  position: static;
  width: 22px;
  height: 22px;
  font-size: 0.76rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(232, 25, 44, 0.1);
}

.tool-card:hover .tool-convert-arrow,
.footer-tool-link:hover .tool-convert-arrow {
  color: #fff;
  border-color: rgba(232, 25, 44, 0.5);
  background: linear-gradient(135deg, rgba(232, 25, 44, 0.34), rgba(255, 255, 255, 0.16));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), 0 0 18px rgba(232, 25, 44, 0.18);
}

.tool-graphic-lines,
.tool-graphic-preview {
  position: absolute;
  z-index: 1;
}

.tool-graphic-lines {
  top: 14px;
  left: 12px;
  right: 12px;
  display: grid;
  gap: 6px;
}

.tool-graphic.mini .tool-graphic-lines {
  top: 10px;
  left: 8px;
  right: 8px;
  gap: 4px;
}

.tool-graphic-lines span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.tool-graphic.mini .tool-graphic-lines span {
  height: 3px;
}

.tool-graphic-lines span:nth-child(2) { width: 84%; }
.tool-graphic-lines span:nth-child(3) { width: 66%; }

.tool-graphic-preview {
  display: none;
  top: 12px;
  left: 10px;
  right: 10px;
  height: 30px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07)),
    linear-gradient(135deg, #76d7ff, #1aa7ec 50%, #59d36f 50%, #8edc55);
}

.tool-graphic-preview::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 10px;
  background: linear-gradient(180deg, #93d978, #5aaa44);
  clip-path: polygon(0 100%, 0 74%, 18% 48%, 34% 68%, 48% 32%, 66% 66%, 100% 100%);
}

.tool-graphic-preview::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffe07d;
}

.tool-graphic-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.tool-graphic.mini .tool-graphic-label {
  left: 6px;
  right: 6px;
  bottom: 6px;
  padding: 5px 6px;
  border-radius: 10px;
  font-size: 0.55rem;
}

.tool-graphic.jpg .tool-graphic-lines,
.tool-graphic.img .tool-graphic-lines {
  display: none;
}

.tool-graphic.jpg .tool-graphic-preview,
.tool-graphic.img .tool-graphic-preview {
  display: block;
}

.tool-graphic.pdf {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(232,25,44,0.22));
}

.tool-graphic.pdf .tool-graphic-label {
  background: linear-gradient(135deg, #e8192c, #ff3d55);
}

.tool-source-badge.pdf,
.tool-source-badge.zip {
  background: linear-gradient(135deg, rgba(122, 38, 56, 0.95), rgba(182, 74, 110, 0.95));
}

.tool-graphic.doc {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(74,124,255,0.22));
}

.tool-graphic.doc .tool-graphic-label {
  background: linear-gradient(135deg, #3677f6, #68a6ff);
}

.tool-source-badge.doc {
  background: linear-gradient(135deg, rgba(60, 113, 221, 0.95), rgba(105, 159, 255, 0.95));
}

.tool-graphic.jpg,
.tool-graphic.img {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(37,201,196,0.2));
}

.tool-graphic.jpg .tool-graphic-label,
.tool-graphic.img .tool-graphic-label {
  background: linear-gradient(135deg, #27c1d0, #4fd8c3);
}

.tool-source-badge.jpg,
.tool-source-badge.img {
  background: linear-gradient(135deg, rgba(34, 173, 180, 0.95), rgba(77, 216, 195, 0.95));
}

.tool-graphic.xls {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(54,191,92,0.24));
}

.tool-graphic.xls .tool-graphic-label {
  background: linear-gradient(135deg, #20b45b, #56d87b);
}

.tool-source-badge.xls {
  background: linear-gradient(135deg, rgba(41, 149, 78, 0.95), rgba(86, 216, 123, 0.95));
}

.tool-graphic.ppt {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,140,35,0.24));
}

.tool-graphic.ppt .tool-graphic-label {
  background: linear-gradient(135deg, #f28a1e, #ff5d2f);
}

.tool-source-badge.ppt {
  background: linear-gradient(135deg, rgba(222, 112, 24, 0.95), rgba(255, 93, 47, 0.95));
}

.tool-graphic.txt {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(176,176,196,0.18));
}

.tool-graphic.txt .tool-graphic-label {
  background: linear-gradient(135deg, #8b91a8, #c0c5d3);
}

.tool-source-badge.txt {
  background: linear-gradient(135deg, rgba(117, 123, 142, 0.95), rgba(192, 197, 211, 0.95));
}

.check-list,
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list { display: grid; gap: 10px; }

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--forge);
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.tool-hero { padding: 72px 0 36px; }
.format-pills,
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.format-pill,
.tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(232, 25, 44, 0.2);
  background: rgba(232, 25, 44, 0.08);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-row { display: grid; gap: 12px; margin-top: 18px; }

.field label {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.field input::file-selector-button {
  margin-right: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: var(--forge);
  color: #fff;
  font-weight: 700;
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.field-note { margin-top: 8px; color: var(--text-muted); font-size: 0.82rem; }

.field input:hover,
.field select:hover,
.field input:focus,
.field select:focus {
  border-color: rgba(232, 25, 44, 0.55);
  box-shadow: 0 0 0 3px rgba(232, 25, 44, 0.12);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.field input::file-selector-button:hover {
  background: var(--forge-hot);
  transform: translateY(-1px);
}

.site-footer {
  margin-top: 76px;
  border-top: 1px solid rgba(232, 25, 44, 0.2);
  background: #050508;
}

.site-footer-main {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 44px 0 24px;
  flex-wrap: wrap;
}

.site-footer p,
.site-footer li,
.site-footer a { color: rgba(255, 255, 255, 0.55); }

.footer-columns { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-columns h3 { margin: 0 0 10px; color: #fff; font-family: "Syne", sans-serif; font-size: 0.9rem; }
.footer-columns ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-bar { padding: 18px 0 26px; border-top: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.38); font-size: 0.82rem; }

.footer-tool-list {
  gap: 12px;
}

.footer-tool-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-tool-link span:last-child {
  line-height: 1.35;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand p {
  margin: 12px 0 0;
}

.footer-columns {
  align-items: flex-start;
}

.footer-columns > div {
  min-width: 150px;
}

.footer-columns ul li a {
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-columns ul li a:hover {
  color: var(--forge-hot);
  transform: translateX(2px);
}

.footer-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
  line-height: 1.7;
}

.legal-page .copy-block {
  max-width: 100%;
}

.legal-page .copy-block h2 {
  margin-top: 0;
}

.legal-page .copy-block p,
.legal-page .copy-block li {
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .tool-hero-grid,
  .grid-4,
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }

  .hero-visual {
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  .site-header-inner,
  .site-nav,
  .site-footer-main,
  .footer-columns { gap: 14px; }
  .site-header-inner,
  .site-nav { flex-wrap: wrap; }
  .nav-cta { width: 100%; }
  .hero,
  .tool-hero { padding-top: 54px; }

  .format-scene {
    height: 310px;
  }

  .format-file.doc {
    right: 6px;
  }

  .format-file.ppt {
    right: 0;
  }

  .tool-graphic-shell {
    padding-left: 56px;
  }
}

