/* ─────────────────────────────────────────────────────────────────
   Shared stylesheet for the per-tool SEO landings under /tools/.
   Mirrors the design tokens used by the main marketing page at /,
   without bringing the whole monolithic style block into each file.
   ───────────────────────────────────────────────────────────────── */

:root {
  --bg:        #FBFBFD;
  --bg-soft:   #F4F4F8;
  --surface:   #FFFFFF;
  --ink:       #0A0A1F;
  --ink-2:     #1A1A28;
  --ink-3:     #4A4A5E;
  --ink-4:     #6B7280;
  --ink-5:     #9094A6;
  --line:      #E5E5EA;
  --line-2:    #D5D5DD;
  --purple:    #635BFF;
  --purple-d:  #4F46E5;
  --purple-l:  #A5A1FF;
  --green:     #10B981;
  --amber:     #F59E0B;
  --pink:      #EC4899;
  --shadow-1:  0 1px 2px rgba(15,15,31,0.04);
  --shadow-2:  0 4px 14px rgba(15,15,31,0.06);
  --shadow-3:  0 18px 40px rgba(15,15,31,0.08);
  --shadow-p:  0 18px 40px rgba(99,91,255,0.18);
  --r-sm:      8px;
  --r-md:      14px;
  --r-lg:      22px;
  --r-xl:      28px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1000px) { .container { padding: 0 40px; } }

/* ─── Topbar ─── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 251, 253, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 16px; letter-spacing: -0.3px; color: var(--ink);
}
.brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-d) 100%);
  box-shadow: 0 0 14px rgba(99,91,255,0.4);
}
.nav { display: none; gap: 28px; align-items: center; }
.nav > a, .nav > .nav-dd > .nav-dd-trigger {
  font-size: 14px; color: var(--ink-3); font-weight: 500; transition: color 0.15s;
  cursor: pointer; background: none; border: 0; padding: 0;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav > a:hover, .nav > .nav-dd:hover > .nav-dd-trigger { color: var(--ink); }
@media (min-width: 800px) { .nav { display: flex; } }

/* ─── Tools dropdown — identical to the one on the main landing ─── */
.nav-dd { position: relative; }
.nav-dd-trigger::after { content: '▾'; font-size: 9px; color: var(--ink-5); margin-left: 2px; }
.nav-dd-menu {
  display: none;
  position: absolute; top: calc(100% + 14px); left: -16px;
  min-width: 320px;
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-3);
  padding: 8px;
  z-index: 60;
}
.nav-dd:hover::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd-trigger:focus + .nav-dd-menu,
.nav-dd-menu:hover,
.nav-dd-menu:focus-within { display: block; }
.nav-dd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 9px;
  color: var(--ink); text-decoration: none;
  transition: background 0.12s;
}
.nav-dd-item:hover { background: var(--bg-soft); }
.nav-dd-item .icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(99,91,255,0.10); color: var(--purple-d);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex: 0 0 auto;
}
.nav-dd-item .text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.nav-dd-item .title { font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.nav-dd-item .sub { font-size: 11px; color: var(--ink-4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ─── ASC mockup styles (shared with the main landing) ─── */
.asc-lang-chip {
  display: inline-block;
  background: rgba(99,91,255,0.10); color: var(--purple-d);
  padding: 5px 12px; border-radius: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.asc-field { margin-bottom: 16px; }
.asc-field-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--ink-4);
  margin-bottom: 6px;
}
.asc-field-head .count { color: var(--green); font-feature-settings: 'tnum'; font-size: 12px; }
.asc-input {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 11px 14px;
  font-size: 14px; color: var(--ink); font-weight: 600;
  width: 100%; box-sizing: border-box; text-align: left;
}
.asc-banner {
  margin-top: 10px; padding: 9px 11px;
  background: rgba(245,158,11,0.10);
  border-left: 3px solid #F59E0B;
  border-radius: 6px;
  font-size: 11px; color: #92400E; line-height: 1.5;
}
.asc-banner strong { color: #78350F; font-weight: 800; }
.asc-banner .num { color: #B45309; font-weight: 800; font-feature-settings: 'tnum'; }
.asc-banner.excluded {
  background: rgba(107,114,128,0.10);
  border-left-color: #6B7280;
  color: var(--ink-3);
}
.asc-banner.excluded strong { color: var(--ink-2); }
.asc-banner code {
  background: rgba(15,15,31,0.06);
  padding: 1px 5px; border-radius: 4px;
  font-family: 'SF Mono', Menlo, monospace; font-size: 10.5px;
  color: var(--ink-2);
}
.asc-target-line {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--ink-3); margin-top: 14px;
}
.asc-target-line .target-icon { color: #DC2626; font-size: 14px; }
.asc-target-line strong { color: var(--ink); font-weight: 800; }
.asc-chips {
  margin-top: 10px;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
  align-items: center;
}
.asc-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(165,161,255,0.16);
  border: 1px solid rgba(99,91,255,0.20);
  color: var(--ink-2);
  padding: 4px 10px; border-radius: 7px;
  font-size: 12px; font-weight: 600;
  font-family: 'SF Mono', Menlo, monospace;
  opacity: 0;
  animation: chipPop 0.45s ease-out forwards;
}
.asc-chip .vol {
  background: rgba(99,91,255,0.18); color: var(--purple-d);
  padding: 0 5px; border-radius: 4px;
  font-size: 10px; font-weight: 800;
}
.asc-chip.gt {
  background: rgba(16,185,129,0.10);
  border-color: rgba(16,185,129,0.35);
  color: #047857;
}
.asc-chip.gt .vol { background: rgba(16,185,129,0.18); color: #047857; }
.asc-chip.gold {
  background: #FFFFFF;
  border-color: #F59E0B;
  color: #92400E;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.10);
}
.asc-chip.gold .vol { background: rgba(245,158,11,0.20); color: #92400E; }
@keyframes chipPop {
  0%   { opacity: 0; transform: translateY(4px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}
.asc-chip:nth-child(1)  { animation-delay: 0.20s; }
.asc-chip:nth-child(2)  { animation-delay: 0.30s; }
.asc-chip:nth-child(3)  { animation-delay: 0.40s; }
.asc-chip:nth-child(4)  { animation-delay: 0.50s; }
.asc-chip:nth-child(5)  { animation-delay: 0.60s; }
.asc-chip:nth-child(6)  { animation-delay: 0.70s; }
.asc-chip:nth-child(7)  { animation-delay: 0.80s; }
.asc-chip:nth-child(8)  { animation-delay: 0.90s; }
.asc-chip:nth-child(9)  { animation-delay: 1.00s; }
.asc-chip:nth-child(10) { animation-delay: 1.10s; }
.asc-chip:nth-child(11) { animation-delay: 1.20s; }
.asc-chip:nth-child(12) { animation-delay: 1.30s; }
.asc-chip:nth-child(13) { animation-delay: 1.40s; }
.asc-chip:nth-child(14) { animation-delay: 1.50s; }
.asc-chip:nth-child(15) { animation-delay: 1.60s; }
.asc-chip:nth-child(16) { animation-delay: 1.70s; }
.asc-chip:nth-child(17) { animation-delay: 1.80s; }

/* ─── Realistic App Store screenshot phone trio ─── */
/* Three iPhone-frame phones standing side-by-side in the hero. Each phone is
   a self-contained CSS render with: status bar, headline + sub, UI preview,
   and a callout. Different colorways + languages so the lineup reads as
   "AI just generated 3 localizations from the same brief". */
.screenshot-trio {
  display: flex; gap: 18px;
  justify-content: center; align-items: stretch;
  padding: 18px 8px;
  overflow-x: auto;
}
.screenshot-trio .phone {
  flex: 0 0 200px;
  aspect-ratio: 9 / 19.5;
  background: var(--phone-bg, linear-gradient(180deg, #FFE4E1 0%, #FFB6C1 70%));
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 28px;
  box-shadow:
    inset 0 0 0 6px rgba(0,0,0,0.08),
    0 14px 30px rgba(15,15,31,0.12);
  position: relative;
  overflow: hidden;
  padding: 14px 14px 16px;
  display: flex; flex-direction: column;
  color: var(--phone-ink, #7C2D12);
}
/* Notch */
.screenshot-trio .phone::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 22px;
  background: #000; border-radius: 0 0 14px 14px;
  z-index: 2;
}
/* Status bar (time + dots) */
.screenshot-trio .phone .statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9px; font-weight: 800; color: var(--phone-ink, #7C2D12);
  margin-bottom: 14px;
  padding-top: 2px;
  letter-spacing: 0.3px;
}
.screenshot-trio .phone .statusbar .icons { display: inline-flex; gap: 4px; align-items: center; }
.screenshot-trio .phone .statusbar .ico {
  display: inline-block; width: 14px; height: 7px;
  background: currentColor; border-radius: 2px;
  opacity: 0.85;
}
.screenshot-trio .phone .statusbar .ico.battery {
  width: 18px; height: 9px;
  border: 1px solid currentColor; background: transparent;
  border-radius: 2px; position: relative;
}
.screenshot-trio .phone .statusbar .ico.battery::before {
  content: ''; position: absolute; left: 1px; top: 1px;
  width: 12px; height: 5px;
  background: currentColor; border-radius: 1px;
}
.screenshot-trio .phone .headline {
  font-size: 18px; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  color: inherit;
}
.screenshot-trio .phone .subheadline {
  font-size: 10px; line-height: 1.35; opacity: 0.78;
  font-weight: 600;
  margin-bottom: 14px;
}
.screenshot-trio .phone .ui {
  flex: 1;
  background: var(--ui-bg, #FFFFFF);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.screenshot-trio .phone .ui-row {
  height: 8px; border-radius: 4px;
  background: var(--ui-row-bg, rgba(15,15,31,0.08));
}
.screenshot-trio .phone .ui-row.w-90 { width: 90%; }
.screenshot-trio .phone .ui-row.w-70 { width: 70%; }
.screenshot-trio .phone .ui-row.w-50 { width: 50%; }
.screenshot-trio .phone .ui-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
  margin-top: 6px;
}
.screenshot-trio .phone .ui-tile {
  aspect-ratio: 1.2 / 1;
  border-radius: 10px;
  background: var(--ui-tile-bg, linear-gradient(135deg, #FCA5A5, #F87171));
}
.screenshot-trio .phone .ui-tile:nth-child(2) { background: var(--ui-tile-bg-2, linear-gradient(135deg, #A5B4FC, #818CF8)); }
.screenshot-trio .phone .ui-tile:nth-child(3) { background: var(--ui-tile-bg-3, linear-gradient(135deg, #FDE68A, #FCD34D)); }
.screenshot-trio .phone .ui-tile:nth-child(4) { background: var(--ui-tile-bg-4, linear-gradient(135deg, #86EFAC, #4ADE80)); }
.screenshot-trio .phone .callout {
  position: absolute;
  bottom: -8px; right: -6px;
  background: #FFFFFF;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 9px; font-weight: 800;
  color: var(--callout-ink, #DC2626);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
  white-space: nowrap;
}
.screenshot-trio .phone .lang-flag {
  position: absolute;
  top: 10px; left: 12px;
  background: rgba(0,0,0,0.18);
  color: #FFFFFF;
  padding: 2px 7px; border-radius: 999px;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 3;
  backdrop-filter: blur(4px);
}
/* Colorways per phone slot */
.screenshot-trio .phone.coral {
  --phone-bg: linear-gradient(180deg, #FED7D7 0%, #FCA5A5 100%);
  --phone-ink: #7C2D12;
  --ui-row-bg: rgba(124,45,18,0.10);
  --ui-tile-bg:   linear-gradient(135deg, #FECACA, #F87171);
  --ui-tile-bg-2: linear-gradient(135deg, #FED7AA, #FB923C);
  --ui-tile-bg-3: linear-gradient(135deg, #FBCFE8, #F472B6);
  --ui-tile-bg-4: linear-gradient(135deg, #FECACA, #EF4444);
  --callout-ink: #DC2626;
}
.screenshot-trio .phone.indigo {
  --phone-bg: linear-gradient(180deg, #C7D2FE 0%, #818CF8 100%);
  --phone-ink: #1E3A8A;
  --ui-row-bg: rgba(30,58,138,0.12);
  --ui-tile-bg:   linear-gradient(135deg, #BFDBFE, #60A5FA);
  --ui-tile-bg-2: linear-gradient(135deg, #C7D2FE, #818CF8);
  --ui-tile-bg-3: linear-gradient(135deg, #DDD6FE, #A78BFA);
  --ui-tile-bg-4: linear-gradient(135deg, #BAE6FD, #38BDF8);
  --callout-ink: #4F46E5;
}
.screenshot-trio .phone.mint {
  --phone-bg: linear-gradient(180deg, #BBF7D0 0%, #4ADE80 100%);
  --phone-ink: #064E3B;
  --ui-row-bg: rgba(6,78,59,0.12);
  --ui-tile-bg:   linear-gradient(135deg, #D1FAE5, #34D399);
  --ui-tile-bg-2: linear-gradient(135deg, #ECFCCB, #A3E635);
  --ui-tile-bg-3: linear-gradient(135deg, #99F6E4, #2DD4BF);
  --ui-tile-bg-4: linear-gradient(135deg, #BBF7D0, #22C55E);
  --callout-ink: #047857;
}
.screenshot-trio .more-pill {
  align-self: center; padding: 8px 14px;
  background: var(--bg-soft); border: 1px dashed var(--line-2);
  border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--ink-4);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .screenshot-trio { gap: 12px; padding: 12px 4px; }
  .screenshot-trio .phone { flex: 0 0 160px; }
  .screenshot-trio .phone .headline { font-size: 15px; }
}

/* Floating badge for the ASC mockup hero */
.hero-mockup-wrap { position: relative; max-width: 980px; margin: 56px auto 0; }
.hero-floating-card {
  position: absolute; right: -18px; top: 18%;
  z-index: 5;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px;
  box-shadow: var(--shadow-3);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
}
.hero-floating-card .icon-circle {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(16,185,129,0.14); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
@media (max-width: 720px) {
  .hero-floating-card { right: 8px; top: 8px; }
}
.topbar-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 999px;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
  text-decoration: none; border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--purple); color: white; box-shadow: var(--shadow-p); }
.btn-primary:hover { background: var(--purple-d); box-shadow: 0 22px 50px rgba(99,91,255,0.30); }
.btn-ghost { background: var(--surface); color: var(--ink-2); border-color: var(--line-2); box-shadow: var(--shadow-1); }
.btn-ghost:hover { border-color: var(--purple-l); color: var(--purple-d); }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 80px 0 60px; text-align: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99,91,255,0.10), transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 60%, rgba(167,139,250,0.06), transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,91,255,0.08); color: var(--purple-d);
  border: 1px solid rgba(99,91,255,0.20);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(34px, 5.6vw, 64px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.05;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #0A0A1F 0%, #4339A8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  max-width: 880px; margin-left: auto; margin-right: auto;
}
.hero p.hero-lede {
  font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-3);
  max-width: 640px; margin: 0 auto 28px; line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.hero-microcopy { font-size: 12px; color: var(--ink-5); }

/* ─── Sections ─── */
section.block { padding: 80px 0; }
.block-eyebrow {
  display: inline-block; color: var(--purple-d);
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 14px; padding: 4px 10px;
  background: rgba(99,91,255,0.08); border-radius: 999px;
}
.block-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -0.8px;
  color: var(--ink); line-height: 1.12;
  margin-bottom: 14px; max-width: 760px;
}
.block-lede {
  font-size: 17px; color: var(--ink-3); line-height: 1.55;
  max-width: 640px; margin-bottom: 40px;
}

/* ─── Feature grid (3-4 cards) ─── */
.feature-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-1);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  border-color: var(--purple-l);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(99,91,255,0.10); color: var(--purple-d);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 17px; font-weight: 800; color: var(--ink);
  margin-bottom: 6px; letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px; color: var(--ink-3); line-height: 1.55;
}

/* ─── How-it-works steps ─── */
.how-steps {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  counter-reset: how;
}
@media (min-width: 720px) { .how-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .how-steps.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  counter-increment: how;
  position: relative;
}
.step-card::before {
  content: counter(how, decimal-leading-zero);
  position: absolute; top: 18px; right: 22px;
  font-size: 28px; font-weight: 800; color: rgba(99,91,255,0.25);
  font-feature-settings: 'tnum';
  letter-spacing: -1px;
}
.step-card h3 {
  font-size: 16px; font-weight: 800; color: var(--ink);
  margin-bottom: 6px;
}
.step-card p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

/* ─── CTA band ─── */
.cta-band {
  background: linear-gradient(135deg, #0A0A1F 0%, #1F1B5C 100%);
  border-radius: var(--r-xl);
  padding: 56px 36px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 30px 80px rgba(31, 27, 92, 0.30);
}
.cta-band h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800; letter-spacing: -0.6px;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.78); font-size: 16px;
  max-width: 580px; margin: 0 auto 22px; line-height: 1.55;
}
.cta-band .btn-primary { background: #FFFFFF; color: var(--purple-d); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.cta-band .btn-primary:hover { background: #F9FAFB; color: var(--purple-d); }
.cta-band .btn-ghost { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.30); box-shadow: none; }
.cta-band .btn-ghost:hover { border-color: #FFFFFF; color: #FFFFFF; }

/* ─── FAQ (collapsible) ─── */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  transition: border-color 0.15s;
}
.faq details[open] { border-color: var(--purple-l); }
.faq summary {
  font-weight: 700; color: var(--ink); cursor: pointer;
  list-style: none; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--purple); font-weight: 700; font-size: 20px; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin-top: 12px; color: var(--ink-3); font-size: 14px; line-height: 1.6;
}

/* ─── Visual hero panel (per-tool screenshot stand-in) ─── */
.hero-visual {
  max-width: 980px; margin: 56px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow:
    0 1px 2px rgba(15,15,31,0.04),
    0 30px 80px rgba(99,91,255,0.16),
    0 60px 120px rgba(15,15,31,0.05);
  overflow: hidden;
}
.hero-visual .browser-bar {
  display: flex; gap: 6px; padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F8FA 100%);
}
.hero-visual .browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-visual .browser-bar .dot.r { background: #FF5F57; }
.hero-visual .browser-bar .dot.y { background: #FEBC2E; }
.hero-visual .browser-bar .dot.g { background: #28C840; }
.hero-visual .browser-bar .url {
  margin-left: 16px; flex: 1; text-align: center;
  font-size: 12px; color: var(--ink-4);
  font-family: 'SF Mono', Menlo, monospace;
}
.hero-visual .panel {
  padding: 28px 32px; min-height: 280px;
  background: radial-gradient(ellipse at top right, rgba(99,91,255,0.04), transparent 60%), var(--surface);
}

/* ─── Breadcrumb ─── */
/* Visually hidden by default — the hero h1 makes the page's purpose obvious,
   so the redundant "Home › Tools › X" trail just adds noise. The markup
   stays for SEO (search engines surface breadcrumbs in result snippets even
   when the on-page rendering is muted). Re-enable per page by overriding
   .breadcrumb { display: block; } if needed. */
.breadcrumb { display: none; }
.breadcrumb a { color: var(--purple-d); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--ink-5); margin: 0 6px; }
